diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 349fb8b..7a130e1 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -16,7 +16,7 @@ jobs: os: - ubuntu-latest python-version: - - '3.8' + - '3.10' fail-fast: false diff --git a/.virtual_documents/rime/pp_combined_example.ipynb b/.virtual_documents/rime/pp_combined_example.ipynb new file mode 100644 index 0000000..b3f1821 --- /dev/null +++ b/.virtual_documents/rime/pp_combined_example.ipynb @@ -0,0 +1,407 @@ + + + +from rime.process_config import * +from rime.rime_functions import * +from rime.utils import * + +import dask +import dask.dataframe as dd +# from dask.diagnostics import ProgressBar +from dask.diagnostics import Profiler, ResourceProfiler, CacheProfiler, ProgressBar +from dask.distributed import Client + +# from dask.distributed import Client # uncomment this to open Dask client to see performance +import glob +import numpy as np +import pandas as pd +import pyam +import re +import time +import xarray as xr +import yaml + + +# Load a yaml file that will help select multiple climate indicator files (not necessarily needed) +with open("indicator_params.yml", "r") as f: + params = yaml.full_load(f) + + +dask.config.set(scheduler="processes") +dask.config.set(num_workers=num_workers) +client = Client() # uncomment this to open Dask client + + + + + + + + +os.getcwd() + + +df_scens_in = pyam.IamDataFrame('test_data/emissions_temp_AR6_small.xlsx') +dft = df_scens_in.filter(variable=temp_variable) # temp_variable as defined in the config file, = 'AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile' + +# Replace & fill missing SSP scenario allocation +dft = ssp_helper(dft, ssp_meta_col="Ssp_family", default_ssp="SSP2") + + + + + +scenarios = ["SSP1-26", "SSP2-45", "SSP3-Baseline", "SSP5-Baseline"] +variable = ( + "AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile" +) +ssps = df_scens_in.filter(scenario=scenarios, model="IMAGE*", variable=variable) +imps = df_scens_in.filter( + IMP_marker=["CurPol", "ModAct", "SP", "GS", "Neg"], variable=variable +) # ,'Ren-2.0','Neg-2.0' +ssps_imp = ssps.append(imps) +ssps_imp = ssp_helper(ssps_imp, ssp_meta_col="Ssp_family", default_ssp="SSP2") +ssps_imp + + + + + + + + +# Requires some configuration - need to download the data from https://zenodo.org/records/10212339, and set the file paths in the file process_config.py + + + +# ind = "pr" +# var = "pr" +# short = "r10" # params["indicators"][ind][var]["short_name"] +ssp = "ssp2" +ftype = "abs" + + +# published data + +# # Prepare data +# impact_data_dir = 'test_data//' +# files = glob.glob(f"{impact_data_dir}/{var}*{short}_*{ftype}.nc4") +# mapdata = xr.open_mfdataset( +# files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gmt" +# ) +# mapdata = xr.concat([mapdata[x] for x in mapdata.data_vars], dim='gmt').to_dataset(name=f'{var}_{short}') +# mapdata = tidy_mapdata(mapdata) +# mapdata = mapdata.sortby("gmt").drop_duplicates("gmt") + + +# impact_data_dir = '/mnt/c/users/byers/iiasa/ECE.prog - Documents/Research Theme - NEXUS/Hotspots_Explorer_2p0/rcre_testing/rime_testdata' +# files = glob.glob(f"{impact_data_dir}/*{var}*{short}_*{ftype}.nc4") +# files + + + +# Prepare data (using split_files on sharepoint) +# impact_data_dir = '/mnt/c/users/byers/iiasa/ECE.prog - Documents/Research Theme - NEXUS/Hotspots_Explorer_2p0/rcre_testing/rime_testdata' +impact_data_dir = 'test_data' +# indicators = ['dri','iavar'] +ind = 'dri_qtot' + +files = glob.glob(f"{impact_data_dir}/*{ind}_*{ftype}.nc4") +mapdata = xr.open_mfdataset( + files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gwl" +) +mapdata +# mapdata = xr.concat([mapdata[x] for x in mapdata.data_vars], dim='gwl').to_dataset(name=f'{var}_{short}') +mapdata = tidy_mapdata(mapdata) +# mapdata = mapdata.sortby("gwl").drop_duplicates("gwl") + + +mapdata + + +print("Test multiple IAM scenarios, 1 indicator") + +start = time.time() + +# Run function +# Using dask for small numbers of scenarios ~<10 can be slower due to spawning of workers. +# use_dask=True currently broken +map_out_MS = map_transform_gwl_wrapper( + ssps_imp, + mapdata, + years, + caution_checks=True, + use_dask=False, + include_orig_gwl=False, + gwl_name="gwl", + drawdown_max=0.15, + temp_min=1.2, + temp_max=3.0, + interpolation=0.01, +) + +comp = dict(zlib=True, complevel=5) +encoding = {var: comp for var in map_out_MS.data_vars} +filename = f"scenario_maps_multiscenario_{ftype}_test_notebook.nc" +map_out_MS.to_netcdf(filename, encoding=encoding) + +print("FINISHED Test multiple scenarios, 1 indicator") +print(f"{time.time()-start}") + + +map_out_MS + + + + + + + + +# Doesn't work -0 +# AttributeError: 'DataArray' object has no attribute 'rename_vars' +# lines 230-233 in map_transform_gmt + +gwl_name = "gwl" +print("Test 1 scenario, multiple indicators") +start = time.time() +ssp = "ssp2" +mapdata = xr.Dataset() + +# impact_data_dir = '/mnt/p/watxene/ISIMIP_postprocessed/cse/split_files_fixed' +impact_data_dir = 'test_data' +indicators = ['dri','iavar'] +for ind in indicators: + + print(ind) + files = glob.glob(f"{impact_data_dir}/ISI*{ind}*_{ftype}*.nc4") + + a = xr.open_mfdataset( + files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gwl") + for x in a.data_vars: + mapdata[x] = a[x] + + +mapdata = tidy_mapdata(mapdata) +mapdata + + +os.getcwd() + + + + + +map_out_MI = map_transform_gwl_wrapper( + ssps_imp.filter(IMP_marker="CurPol"), + mapdata, + years, + use_dask=False, + include_orig_gwl=False, + gwl_name="gwl", + drawdown_max=0.15, + temp_min=1.2, + temp_max=3.0, + interpolation=0.01, +) + +comp = dict(zlib=True, complevel=5) +encoding = {var: comp for var in map_out_MI.data_vars} +filename = f"scenario_maps_multiindicator_{ftype}_test_notebook.nc" +# map_out_MI.to_netcdf(filename, encoding=encoding) + +print("FINISHED 1 scenario, multiple indicators") +print(f"{time.time()-start}") + + + + + +map_out_MI + + + + + +filename = "test_map_notebook.html" +plot_maps_dashboard( + map_out_MI, + filename=filename, + year=2063, + cmap="magma_r", + shared_axes=True, + clim=None, +) +#os.startfile(filename) # Windows +import webbrowser +webbrowser.open(f'file://{os.path.realpath(filename)}') + + + + + + + + +filesall = glob.glob(fname_input_climate) +files = filesall # [:6] +f = files[-0] +# load input climate impacts data file +ds = xr.open_mfdataset(f) +ds = ds.sel(year=years) +ds + + +varis = list(ds.data_vars.keys())[:lvaris] +dsi = ds[varis] +print(f"# of variables = {len(varis)}") + + + + + +mode = "GMT" +if mode == "GMT": + dfp = df_scens_in.filter(variable=temp_variable) +elif mode == "bypass": + dfp = prepare_cumulative(df_scens_in, years=years, use_dask=True) + ts = dfp.timeseries().apply(co2togmt_simple) + ts = pyam.IamDataFrame(ts) + ts.rename( + { + "variable": {ts.variable[0]: "RIME|GSAT_tcre"}, + "unit": {ts.unit[0]: "°C"}, + }, + inplace=True, + ) + # Export data to check error and relationships + # ts.append(dfp).to_csv('c://users//byers//downloads//tcre_gmt_output.csv') + dfp = ts + dfp.meta = df_scens_in.meta.copy() +dfp = dfp.filter(year=years) + + +# For testing on C1 scenarios +# few_scenarios = True +# very_few_scenarios = False + +# if few_scenarios: +# dfp = dfp.filter(Category=["C1*"]) +# if very_few_scenarios: +# dfp = dfp.filter(model="REMIND 2.1*", scenario="*") + +dfp = ssps_imp + + +# pre-prepare the dataset into correct format +# Assign SSP to meta and select SSP2 in case SSP not present in name +dfp = ssp_helper(dfp, ssp_meta_col="Ssp_family", default_ssp="SSP2", keep_meta=False) + +dft = dfp.timeseries() +dft = dft.join(dfp.meta["Ssp_family"]).reset_index() +# dft = dft.apply(fix_duplicate_temps, years=years, axis=1) + + + + + +start = time.time() +year_res = 10 +parallel = True +if parallel: + """ + For parallel processing, convert dft as a wide IAMC pd.Dataframe + into a dask.DataFrame. + """ + ddf = dd.from_pandas(dft, npartitions=1000) + + # dfx = dft.iloc[0].squeeze() # FOR DEBUIGGING THE FUNCTION + outd = ddf.apply( + table_impacts_gmt, + dsi=dsi, + ssp_meta_col="Ssp_family", + axis=1, + meta=("result", None), + ) + + with ProgressBar(): + # try: + df_new = outd.compute(num_workers=num_workers) +else: + df_new = dft.apply(table_impacts_gmt, dsi=dsi, axis=1) + +expandeddGMT = pd.concat([df_new[x] for x in df_new.index]) +print(f" Done: {time.time()-start}") + +filename = f"RIME_output_{region}_{year_res}yr.csv" + +# expandedd.to_csv(filename, encoding="utf-8", index=False) +print(f" Saved: {region} yrs={year_res}\n {time.time()-start}") +print(f"{len(dsi.data_vars)} variables, {len(dfp.meta)} scenarios") + + + + + +expandeddGMT = pyam.IamDataFrame(expandeddGMT) + + +expandeddGMT.variable + + +# model = "IMAG*" +scenario = [ + "CO_Bridge", + "EN_INDCi2030_3000f", + "EN_NPi2020_400f_lowBECCS", + # 'NGFS2_Current Policies', + "SSP1-26", + "SSP2-45", + # 'SSP3-Baseline', + # 'SSP5-Baseline', + "SusDev_SDP-PkBudg1000", +] +variable = "RIME|sdii|Hazard|Risk score|Population weighted" +# variable = 'RIME|wsi|Exposure|Population|%' +variable = "RIME|cdd|Exposure|Population|%" +expandeddGMT.filter(variable=variable, scenario=scenario, region="GBR").plot() + + +expandeddGMT.filter(variable=variable, scenario=scenario, region="PAK").plot() + + +expandeddGMT.variable + + + + + +imps.scenario + + +color_map = { + "SSP1-26": "AR6-SSP1-2.6", + "SSP2-45": "AR6-SSP2-4.5", + "SSP3-Baseline": "AR6-SSP3-7.0", + "SSP5-Baseline": "AR6-SSP5-8.5", + "NGFS2_Current Policies": "AR6-IP-CurPol", + # 'EN_NPi2020_900f': 'AR6-IMP-Neg2.0', + "EN_INDCi2030_3000f": "AR6-IP-ModAct", + # 'SSP2_openres_lc_50': 'AR6-IMP-Ren2.0', + # AR6-IMP-GS', + "CO_Bridge": "AR6-IMP-GS", + "EN_NPi2020_400f_lowBECCS": "AR6-IMP-Neg", + "SusDev_SDP-PkBudg1000": "AR6-IMP-SP", +} + +pyam.run_control().update({"color": {"scenario": color_map}}) + +ssps_imp.filter( + variable="AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile", + scenario="SSP*", +).plot(legend=False, fill_between=True, color="scenario", title="") + + +ssps_imp.filter( + variable="AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile" +).plot(legend=False, fill_between=True, color="scenario", title="") diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..41987b2 --- /dev/null +++ b/environment.yml @@ -0,0 +1,6 @@ +name: rime +channels: + - defaults + - conda-forge +dependencies: + - python \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index f7c549c..9b39fe8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -11,6 +11,17 @@ files = [ {file = "about_time-4.2.1-py3-none-any.whl", hash = "sha256:8bbf4c75fe13cbd3d72f49a03b02c5c7dca32169b6d49117c257e7eb3eaee341"}, ] +[[package]] +name = "alabaster" +version = "0.7.16" +description = "A light, configurable Sphinx theme" +optional = false +python-versions = ">=3.9" +files = [ + {file = "alabaster-0.7.16-py3-none-any.whl", hash = "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92"}, + {file = "alabaster-0.7.16.tar.gz", hash = "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65"}, +] + [[package]] name = "alive-progress" version = "3.1.5" @@ -48,6 +59,39 @@ doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphin test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] trio = ["trio (>=0.23)"] +[[package]] +name = "attrs" +version = "23.2.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] + +[[package]] +name = "babel" +version = "2.14.0" +description = "Internationalization utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "Babel-2.14.0-py3-none-any.whl", hash = "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287"}, + {file = "Babel-2.14.0.tar.gz", hash = "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363"}, +] + +[package.extras] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] + [[package]] name = "bleach" version = "6.1.0" @@ -88,6 +132,46 @@ PyYAML = ">=3.10" tornado = ">=5.1" xyzservices = ">=2021.09.1" +[[package]] +name = "cartopy" +version = "0.22.0" +description = "A Python library for cartographic visualizations with Matplotlib" +optional = false +python-versions = ">=3.9" +files = [ + {file = "Cartopy-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b17ad0b056b9a632b12954864c685febb0e1d8a4a45423b83eec119a603fcb8a"}, + {file = "Cartopy-0.22.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:bf7ca13a01782810e8b6a9758ed29755b6ce81b5c53721e19cb6636a43b0f575"}, + {file = "Cartopy-0.22.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:604c21046dfbe0c9551b28802901d240a7ce25fcaf0c30db0f230cebf93ae2a5"}, + {file = "Cartopy-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c37d4e2227cb41c971d2bd2555ce081f765d4eaae852def1c059c1d85c8e645"}, + {file = "Cartopy-0.22.0-cp310-cp310-win_amd64.whl", hash = "sha256:3f9c391bd3ba588de397854556dda175edf59f614bbb6dce18c4981154d97d92"}, + {file = "Cartopy-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d9d24ef50991269b57a42bdd4f1156426065fbeb41777c7e28d937e2c4a2ae6"}, + {file = "Cartopy-0.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:472e6713aad729f6fd38bd301666febd23dd3b744b0530cd80e02e242e3f1c74"}, + {file = "Cartopy-0.22.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:319b8244f6d06f600be89ad5eaa85c2524e23b240decd203188da26ff14a346b"}, + {file = "Cartopy-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a401109b88a6bfec1c13dce9b09dc59993c3af426b1879e1e0ee3afd1c293076"}, + {file = "Cartopy-0.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:8ecebbe13d8488c2ec32e7c40222b9f10ba48e386be30c8ec60c867c122399f9"}, + {file = "Cartopy-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fbc761b80d2fad8cb6ea1c7d3388862e9fbc53c17f14baf6d4038561c7865e6f"}, + {file = "Cartopy-0.22.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3b25dd55844f36115e6c3632a16ed545cbee011068777b5a7a49ed3e1dbcafcb"}, + {file = "Cartopy-0.22.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eec1e9b701272f4cfc43d0123b9f69fa146d915580ee47eda875770c704bf413"}, + {file = "Cartopy-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8bdc98a5b196488ea824b6e2f07a3ab63c4f1e99a2ab9fdee514a5f38b00407a"}, + {file = "Cartopy-0.22.0-cp39-cp39-win_amd64.whl", hash = "sha256:c5df7fc17705c93a152f3e82d31adb9c2db50448b38b08c076331c522ce7f844"}, + {file = "Cartopy-0.22.0.tar.gz", hash = "sha256:b300f90120931d43f11ef87c064ea1dacec1b59a4940aa76ebf82cf09548bb49"}, +] + +[package.dependencies] +matplotlib = ">=3.4" +numpy = ">=1.21" +packaging = ">=20" +pyproj = ">=3.1.0" +pyshp = ">=2.1" +shapely = ">=1.7" + +[package.extras] +doc = ["beautifulsoup4", "pydata-sphinx-theme", "sphinx", "sphinx-gallery"] +ows = ["OWSLib (>=0.20.0)", "pillow (>=6.1.0)"] +plotting = ["pillow (>=6.1.0)", "scipy (>=1.3.1)"] +speedups = ["fiona", "pykdtree"] +test = ["coveralls", "pytest (>=5.1.2)", "pytest-cov", "pytest-mpl (>=0.11)", "pytest-xdist"] + [[package]] name = "certifi" version = "2024.2.2" @@ -99,6 +183,39 @@ files = [ {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, ] +[[package]] +name = "cftime" +version = "1.6.3" +description = "Time-handling functionality from netcdf4-python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "cftime-1.6.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b62d42546fa5c914dfea5b15a9aaed2087ea1211cc36d08c374502ef95892038"}, + {file = "cftime-1.6.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eb6dd70b2ccabfe1a14b7fbb0bbdce0418e71697094373c0d573c880790fa291"}, + {file = "cftime-1.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9878bfd8c1c3f24184ecbd528f739ba46ebaceaf1c8a24d348d7befb117a285"}, + {file = "cftime-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:3cf6e216a4c06f9a628cdf8e9c9d5e8097fb3eb02dd087dd14ab3b18478a7271"}, + {file = "cftime-1.6.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8d2c01456d9d7b46aa710a41d1c711a50d5ea259aff4a987d0e973d1093bc922"}, + {file = "cftime-1.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:80eb1170ce1639016f55760847f4aadd04b0312496c5bac2797e930914bba48d"}, + {file = "cftime-1.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d87dadd0824262bdd7493babd2a44447da0a22175ded8ae9e060a3aebec7c5d7"}, + {file = "cftime-1.6.3-cp311-cp311-win_amd64.whl", hash = "sha256:0a38eb9f5c733a23e1714bd3ef2762ed5acee34f127670f8fb4ad6464946f6b3"}, + {file = "cftime-1.6.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:2d113a01ab924445e61d65c26bbd95bc08e4a22878d3b947064bba056c884c4a"}, + {file = "cftime-1.6.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f11685663a6af97418908060492a07663c16d42519c139ca03c2ffb1377fd25"}, + {file = "cftime-1.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a98abb1d46d118e52b0611ce668a0b714b407be26177ef0581ecf5e95f894725"}, + {file = "cftime-1.6.3-cp312-cp312-win_amd64.whl", hash = "sha256:4d6fbd5f41b322cfa7b0ac3aaadeceb4450100a164b5bccbbb9e7c5048489a88"}, + {file = "cftime-1.6.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bedb577bc8b8f3f10f5336c0792e5dae88605781890f50f36b45bb46907968e8"}, + {file = "cftime-1.6.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:022dabf1610cdd04a693e730fa8f71d307059717f29dba921e7486e553412bb4"}, + {file = "cftime-1.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbf782ab4ac0605bdec2b941952c897595613203942b7f8c2fccd17efa5147df"}, + {file = "cftime-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:9eb177a02db7cd84aa6962278e4bd2d3106a545de82e6aacd9404f1e153661db"}, + {file = "cftime-1.6.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3b86be8c2f254147be4ba88f12099466dde457a4a3a21de6c69d52a7224c13ae"}, + {file = "cftime-1.6.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:523b9a6bf03f5e36407979e248381d0fcab2d225b915bbde77d00c6dde192b90"}, + {file = "cftime-1.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a14d2c7d22fd2a6dfa6ad563283b6d6679f1df95e0ed8d14b8f284dad402887"}, + {file = "cftime-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:d9b00c2844c7a1701d8ede5336b6321dfee256ceab81a34a1aff0483d56891a6"}, + {file = "cftime-1.6.3.tar.gz", hash = "sha256:d0a6b29f72a13f08e008b9becff247cc75c84acb213332ede18879c5b6aa4dfd"}, +] + +[package.dependencies] +numpy = {version = ">1.13.3", markers = "python_version < \"3.12.0.rc1\""} + [[package]] name = "charset-normalizer" version = "3.3.2" @@ -363,6 +480,17 @@ diagnostics = ["bokeh (>=2.4.2)", "jinja2 (>=2.10.3)"] distributed = ["distributed (==2024.2.0)"] test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] +[[package]] +name = "deepmerge" +version = "1.1.1" +description = "a toolset to deeply merge python dictionaries." +optional = false +python-versions = "*" +files = [ + {file = "deepmerge-1.1.1-py3-none-any.whl", hash = "sha256:7219dad9763f15be9dcd4bcb53e00f48e4eed6f5ed8f15824223eb934bb35977"}, + {file = "deepmerge-1.1.1.tar.gz", hash = "sha256:53a489dc9449636e480a784359ae2aab3191748c920649551c8e378622f0eca4"}, +] + [[package]] name = "distributed" version = "2024.2.0" @@ -391,6 +519,17 @@ tornado = ">=6.0.4" urllib3 = ">=1.24.3" zict = ">=3.0.0" +[[package]] +name = "docutils" +version = "0.20.1" +description = "Docutils -- Python Documentation Utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6"}, + {file = "docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"}, +] + [[package]] name = "et-xmlfile" version = "1.1.0" @@ -516,6 +655,39 @@ smb = ["smbprotocol"] ssh = ["paramiko"] tqdm = ["tqdm"] +[[package]] +name = "geoviews" +version = "1.11.1" +description = "GeoViews is a Python library that makes it easy to explore and visualize geographical, meteorological, and oceanographic datasets, such as those used in weather, climate, and remote sensing research." +optional = false +python-versions = ">=3.9" +files = [ + {file = "geoviews-1.11.1-py2.py3-none-any.whl", hash = "sha256:0e982259e12a0adf5d31be6a853a17d5b2dff8fff5a445eab0bf5e505db3f588"}, + {file = "geoviews-1.11.1.tar.gz", hash = "sha256:6c65e2122c8b62ee7985bb956369d05953c7704081f90b686a0fdfaf20933d2b"}, +] + +[package.dependencies] +bokeh = ">=3.2.0,<3.4.0" +cartopy = ">=0.18.0" +holoviews = ">=1.16.0" +numpy = "*" +packaging = "*" +panel = ">=1.0.0" +param = "*" +pyproj = "*" +shapely = "*" +xyzservices = "*" + +[package.extras] +all = ["cartopy (>=0.20.0)", "codecov", "datashader", "fiona", "geodatasets", "geopandas", "graphviz", "iris (>=3.5)", "lxml", "matplotlib (>2.2)", "mock", "nbsite (>=0.8.4,<0.9.0)", "nbval", "netcdf4", "pandas", "pooch", "pyct", "pytest", "pytest-cov", "pytest-github-actions-annotate-failures", "rioxarray", "scipy", "selenium", "shapely", "xarray", "xesmf"] +build = ["bokeh (==3.3)", "param (>=1.9.2)", "pyct (>=0.4.4)", "pyviz-comms (>=0.6.0)"] +doc = ["cartopy (>=0.20.0)", "datashader", "fiona", "geodatasets", "geopandas", "graphviz", "iris (>=3.5)", "lxml", "matplotlib (>2.2)", "mock", "nbsite (>=0.8.4,<0.9.0)", "netcdf4", "pandas", "pooch", "pyct", "scipy", "selenium", "shapely", "xarray", "xesmf"] +examples-extra = ["datashader", "fiona", "geodatasets", "geopandas", "iris (>=3.5)", "matplotlib (>2.2)", "mock", "netcdf4", "pandas", "pooch", "pyct", "scipy", "shapely", "xarray", "xesmf"] +recommended = ["datashader", "geopandas", "matplotlib (>2.2)", "netcdf4", "pandas", "pooch", "pyct", "scipy", "shapely", "xarray"] +tests = ["fiona", "nbval", "pytest", "rioxarray"] +tests-ci = ["codecov", "pytest-cov", "pytest-github-actions-annotate-failures"] +tests-core = ["geopandas", "matplotlib (>2.2)", "netcdf4", "pandas", "pooch", "pytest", "scipy", "shapely", "xarray"] + [[package]] name = "grapheme" version = "0.6.0" @@ -605,13 +777,13 @@ files = [ [[package]] name = "httpcore" -version = "1.0.2" +version = "1.0.3" description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpcore-1.0.2-py3-none-any.whl", hash = "sha256:096cc05bca73b8e459a1fc3dcf585148f63e534eae4339559c9b8a8d6399acc7"}, - {file = "httpcore-1.0.2.tar.gz", hash = "sha256:9fc092e4799b26174648e54b74ed5f683132a464e95643b226e00c2ed2fa6535"}, + {file = "httpcore-1.0.3-py3-none-any.whl", hash = "sha256:9a6a501c3099307d9fd76ac244e08503427679b1e81ceb1d922485e2f2462ad2"}, + {file = "httpcore-1.0.3.tar.gz", hash = "sha256:5c0f9546ad17dac4d0772b0808856eb616eb8b48ce94f49ed819fd6982a8a544"}, ] [package.dependencies] @@ -622,7 +794,7 @@ h11 = ">=0.13,<0.15" asyncio = ["anyio (>=4.0,<5.0)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<0.23.0)"] +trio = ["trio (>=0.22.0,<0.24.0)"] [[package]] name = "httpx" @@ -720,6 +892,17 @@ files = [ {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, ] +[[package]] +name = "imagesize" +version = "1.4.1" +description = "Getting image size from png/jpeg/jpeg2000/gif file" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b"}, + {file = "imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"}, +] + [[package]] name = "importlib-metadata" version = "7.0.1" @@ -756,6 +939,41 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "jsonschema" +version = "4.21.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.21.1-py3-none-any.whl", hash = "sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f"}, + {file = "jsonschema-4.21.1.tar.gz", hash = "sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, + {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + [[package]] name = "kiwisolver" version = "1.4.5" @@ -869,6 +1087,20 @@ files = [ {file = "kiwisolver-1.4.5.tar.gz", hash = "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec"}, ] +[[package]] +name = "latexcodec" +version = "2.0.1" +description = "A lexer and codec to work with LaTeX code in Python." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "latexcodec-2.0.1-py2.py3-none-any.whl", hash = "sha256:c277a193638dc7683c4c30f6684e3db728a06efb0dc9cf346db8bd0aa6c5d271"}, + {file = "latexcodec-2.0.1.tar.gz", hash = "sha256:2aa2551c373261cefe2ad3a8953a6d6533e68238d180eb4bb91d7964adb3fe9a"}, +] + +[package.dependencies] +six = ">=1.4.1" + [[package]] name = "linkify-it-py" version = "2.0.3" @@ -1010,49 +1242,62 @@ files = [ [[package]] name = "matplotlib" -version = "3.8.3" +version = "3.7.0" description = "Python plotting package" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" files = [ - {file = "matplotlib-3.8.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:cf60138ccc8004f117ab2a2bad513cc4d122e55864b4fe7adf4db20ca68a078f"}, - {file = "matplotlib-3.8.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f557156f7116be3340cdeef7f128fa99b0d5d287d5f41a16e169819dcf22357"}, - {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f386cf162b059809ecfac3bcc491a9ea17da69fa35c8ded8ad154cd4b933d5ec"}, - {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3c5f96f57b0369c288bf6f9b5274ba45787f7e0589a34d24bdbaf6d3344632f"}, - {file = "matplotlib-3.8.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:83e0f72e2c116ca7e571c57aa29b0fe697d4c6425c4e87c6e994159e0c008635"}, - {file = "matplotlib-3.8.3-cp310-cp310-win_amd64.whl", hash = "sha256:1c5c8290074ba31a41db1dc332dc2b62def469ff33766cbe325d32a3ee291aea"}, - {file = "matplotlib-3.8.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5184e07c7e1d6d1481862ee361905b7059f7fe065fc837f7c3dc11eeb3f2f900"}, - {file = "matplotlib-3.8.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d7e7e0993d0758933b1a241a432b42c2db22dfa37d4108342ab4afb9557cbe3e"}, - {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04b36ad07eac9740fc76c2aa16edf94e50b297d6eb4c081e3add863de4bb19a7"}, - {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c42dae72a62f14982f1474f7e5c9959fc4bc70c9de11cc5244c6e766200ba65"}, - {file = "matplotlib-3.8.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf5932eee0d428192c40b7eac1399d608f5d995f975cdb9d1e6b48539a5ad8d0"}, - {file = "matplotlib-3.8.3-cp311-cp311-win_amd64.whl", hash = "sha256:40321634e3a05ed02abf7c7b47a50be50b53ef3eaa3a573847431a545585b407"}, - {file = "matplotlib-3.8.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:09074f8057917d17ab52c242fdf4916f30e99959c1908958b1fc6032e2d0f6d4"}, - {file = "matplotlib-3.8.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5745f6d0fb5acfabbb2790318db03809a253096e98c91b9a31969df28ee604aa"}, - {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b97653d869a71721b639714b42d87cda4cfee0ee74b47c569e4874c7590c55c5"}, - {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:242489efdb75b690c9c2e70bb5c6550727058c8a614e4c7716f363c27e10bba1"}, - {file = "matplotlib-3.8.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:83c0653c64b73926730bd9ea14aa0f50f202ba187c307a881673bad4985967b7"}, - {file = "matplotlib-3.8.3-cp312-cp312-win_amd64.whl", hash = "sha256:ef6c1025a570354297d6c15f7d0f296d95f88bd3850066b7f1e7b4f2f4c13a39"}, - {file = "matplotlib-3.8.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c4af3f7317f8a1009bbb2d0bf23dfaba859eb7dd4ccbd604eba146dccaaaf0a4"}, - {file = "matplotlib-3.8.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4c6e00a65d017d26009bac6808f637b75ceade3e1ff91a138576f6b3065eeeba"}, - {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7b49ab49a3bea17802df6872f8d44f664ba8f9be0632a60c99b20b6db2165b7"}, - {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6728dde0a3997396b053602dbd907a9bd64ec7d5cf99e728b404083698d3ca01"}, - {file = "matplotlib-3.8.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:813925d08fb86aba139f2d31864928d67511f64e5945ca909ad5bc09a96189bb"}, - {file = "matplotlib-3.8.3-cp39-cp39-win_amd64.whl", hash = "sha256:cd3a0c2be76f4e7be03d34a14d49ded6acf22ef61f88da600a18a5cd8b3c5f3c"}, - {file = "matplotlib-3.8.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fa93695d5c08544f4a0dfd0965f378e7afc410d8672816aff1e81be1f45dbf2e"}, - {file = "matplotlib-3.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9764df0e8778f06414b9d281a75235c1e85071f64bb5d71564b97c1306a2afc"}, - {file = "matplotlib-3.8.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5e431a09e6fab4012b01fc155db0ce6dccacdbabe8198197f523a4ef4805eb26"}, - {file = "matplotlib-3.8.3.tar.gz", hash = "sha256:7b416239e9ae38be54b028abbf9048aff5054a9aba5416bef0bd17f9162ce161"}, + {file = "matplotlib-3.7.0-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:3da8b9618188346239e51f1ea6c0f8f05c6e218cfcc30b399dd7dd7f52e8bceb"}, + {file = "matplotlib-3.7.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:c0592ba57217c22987b7322df10f75ef95bc44dce781692b4b7524085de66019"}, + {file = "matplotlib-3.7.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:21269450243d6928da81a9bed201f0909432a74e7d0d65db5545b9fa8a0d0223"}, + {file = "matplotlib-3.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb2e76cd429058d8954121c334dddfcd11a6186c6975bca61f3f248c99031b05"}, + {file = "matplotlib-3.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de20eb1247725a2f889173d391a6d9e7e0f2540feda24030748283108b0478ec"}, + {file = "matplotlib-3.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5465735eaaafd1cfaec3fed60aee776aeb3fd3992aa2e49f4635339c931d443"}, + {file = "matplotlib-3.7.0-cp310-cp310-win32.whl", hash = "sha256:092e6abc80cdf8a95f7d1813e16c0e99ceda8d5b195a3ab859c680f3487b80a2"}, + {file = "matplotlib-3.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:4f640534ec2760e270801056bc0d8a10777c48b30966eef78a7c35d8590915ba"}, + {file = "matplotlib-3.7.0-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:f336e7014889c38c59029ebacc35c59236a852e4b23836708cfd3f43d1eaeed5"}, + {file = "matplotlib-3.7.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3a10428d4f8d1a478ceabd652e61a175b2fdeed4175ab48da4a7b8deb561e3fa"}, + {file = "matplotlib-3.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46ca923e980f76d34c1c633343a72bb042d6ba690ecc649aababf5317997171d"}, + {file = "matplotlib-3.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c849aa94ff2a70fb71f318f48a61076d1205c6013b9d3885ade7f992093ac434"}, + {file = "matplotlib-3.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:827e78239292e561cfb70abf356a9d7eaf5bf6a85c97877f254009f20b892f89"}, + {file = "matplotlib-3.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:691ef1f15360e439886186d0db77b5345b24da12cbc4fc57b26c4826db4d6cab"}, + {file = "matplotlib-3.7.0-cp311-cp311-win32.whl", hash = "sha256:21a8aeac39b4a795e697265d800ce52ab59bdeb6bb23082e2d971f3041074f02"}, + {file = "matplotlib-3.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:01681566e95b9423021b49dea6a2395c16fa054604eacb87f0f4c439750f9114"}, + {file = "matplotlib-3.7.0-cp38-cp38-macosx_10_12_universal2.whl", hash = "sha256:cf119eee4e57389fba5ac8b816934e95c256535e55f0b21628b4205737d1de85"}, + {file = "matplotlib-3.7.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:21bd4033c40b95abd5b8453f036ed5aa70856e56ecbd887705c37dce007a4c21"}, + {file = "matplotlib-3.7.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:111ef351f28fd823ed7177632070a6badd6f475607122bc9002a526f2502a0b5"}, + {file = "matplotlib-3.7.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f91d35b3ef51d29d9c661069b9e4ba431ce283ffc533b981506889e144b5b40e"}, + {file = "matplotlib-3.7.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0a776462a4a63c0bfc9df106c15a0897aa2dbab6795c693aa366e8e283958854"}, + {file = "matplotlib-3.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0dfd4a0cbd151f6439e6d7f8dca5292839ca311e7e650596d073774847ca2e4f"}, + {file = "matplotlib-3.7.0-cp38-cp38-win32.whl", hash = "sha256:56b7b79488209041a9bf7ddc34f1b069274489ce69e34dc63ae241d0d6b4b736"}, + {file = "matplotlib-3.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:8665855f3919c80551f377bc16df618ceabf3ef65270bc14b60302dce88ca9ab"}, + {file = "matplotlib-3.7.0-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:f910d924da8b9fb066b5beae0b85e34ed1b6293014892baadcf2a51da1c65807"}, + {file = "matplotlib-3.7.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:cf6346644e8fe234dc847e6232145dac199a650d3d8025b3ef65107221584ba4"}, + {file = "matplotlib-3.7.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d1e52365d8d5af699f04581ca191112e1d1220a9ce4386b57d807124d8b55e6"}, + {file = "matplotlib-3.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c869b646489c6a94375714032e5cec08e3aa8d3f7d4e8ef2b0fb50a52b317ce6"}, + {file = "matplotlib-3.7.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4ddac5f59e78d04b20469bc43853a8e619bb6505c7eac8ffb343ff2c516d72f"}, + {file = "matplotlib-3.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb0304c1cd802e9a25743414c887e8a7cd51d96c9ec96d388625d2cd1c137ae3"}, + {file = "matplotlib-3.7.0-cp39-cp39-win32.whl", hash = "sha256:a06a6c9822e80f323549c6bc9da96d4f233178212ad9a5f4ab87fd153077a507"}, + {file = "matplotlib-3.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:cb52aa97b92acdee090edfb65d1cb84ea60ab38e871ba8321a10bbcebc2a3540"}, + {file = "matplotlib-3.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3493b48e56468c39bd9c1532566dff3b8062952721b7521e1f394eb6791495f4"}, + {file = "matplotlib-3.7.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d0dcd1a0bf8d56551e8617d6dc3881d8a1c7fb37d14e5ec12cbb293f3e6170a"}, + {file = "matplotlib-3.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51fb664c37714cbaac69c16d6b3719f517a13c96c3f76f4caadd5a0aa7ed0329"}, + {file = "matplotlib-3.7.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:4497d88c559b76da320b7759d64db442178beeea06a52dc0c629086982082dcd"}, + {file = "matplotlib-3.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9d85355c48ef8b9994293eb7c00f44aa8a43cad7a297fbf0770a25cdb2244b91"}, + {file = "matplotlib-3.7.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:03eb2c8ff8d85da679b71e14c7c95d16d014c48e0c0bfa14db85f6cdc5c92aad"}, + {file = "matplotlib-3.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71b751d06b2ed1fd017de512d7439c0259822864ea16731522b251a27c0b2ede"}, + {file = "matplotlib-3.7.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b51ab8a5d5d3bbd4527af633a638325f492e09e45e78afdf816ef55217a09664"}, + {file = "matplotlib-3.7.0.tar.gz", hash = "sha256:8f6efd313430d7ef70a38a3276281cb2e8646b3a22b3b21eb227da20e15e6813"}, ] [package.dependencies] contourpy = ">=1.0.1" cycler = ">=0.10" fonttools = ">=4.22.0" -kiwisolver = ">=1.3.1" -numpy = ">=1.21,<2" +kiwisolver = ">=1.0.1" +numpy = ">=1.20" packaging = ">=20.0" -pillow = ">=8" +pillow = ">=6.2.0" pyparsing = ">=2.3.1" python-dateutil = ">=2.7" @@ -1086,6 +1331,17 @@ files = [ {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, ] +[[package]] +name = "mistune" +version = "2.0.5" +description = "A sane Markdown parser with useful plugins and renderers" +optional = false +python-versions = "*" +files = [ + {file = "mistune-2.0.5-py2.py3-none-any.whl", hash = "sha256:bad7f5d431886fcbaf5f758118ecff70d31f75231b34024a1341120340a65ce8"}, + {file = "mistune-2.0.5.tar.gz", hash = "sha256:0246113cb2492db875c6be56974a7c893333bf26cd92891c85f63151cee09d34"}, +] + [[package]] name = "msgpack" version = "1.0.7" @@ -1151,6 +1407,50 @@ files = [ {file = "msgpack-1.0.7.tar.gz", hash = "sha256:572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87"}, ] +[[package]] +name = "netcdf4" +version = "1.6.5" +description = "Provides an object-oriented python interface to the netCDF version 4 library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "netCDF4-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d23b97cbde2bf413fadc4697c5c255a0436511c02f811e127e0fb12f5b882a4c"}, + {file = "netCDF4-1.6.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e5edfed673005f47f8d2fbea9c72c382b085dd358ac3c20ca743a563ed7b90e"}, + {file = "netCDF4-1.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10d2ac9ae1308ca837d86c6dc304ec455a85bdba0f2175e222844a54589168dc"}, + {file = "netCDF4-1.6.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a63a2be2f80977ac23bb0aa736c565011fd4639097ce0922e01b0dc38015df2"}, + {file = "netCDF4-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aaceea2097d292bad398d9f9b4fe403efa7b1568fcfa6faba9b67b1630027f9"}, + {file = "netCDF4-1.6.5-cp310-cp310-win_amd64.whl", hash = "sha256:111357d9e12eb79e8d58bfd91bc6b230d35b17a0ebd8c546d17416e8ceebea49"}, + {file = "netCDF4-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1c5fede0b34c0a02a1b9e84116bfb3fcd2f80124a651d4836e72b785d10e2f15"}, + {file = "netCDF4-1.6.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3de5512b9270aa6472e4f3aa2bf895a7364c1d4f8667ce3b82e8232197d4fec8"}, + {file = "netCDF4-1.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b20971a164431f6eca1d24df8aa153db15c2c1b9630e83ccc5cf004e8ac8151d"}, + {file = "netCDF4-1.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad1101d538077152b866782e44458356981526bf2ea9cc07930bf28b589c82a7"}, + {file = "netCDF4-1.6.5-cp311-cp311-win_amd64.whl", hash = "sha256:de4dc973fae9e2bbdf42e094125e423a4c25393172a61958314969b055a38889"}, + {file = "netCDF4-1.6.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:19e16c63cdd7c0dbffe284a4a65f226ba1026f476f35cbedd099b4792b395f69"}, + {file = "netCDF4-1.6.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b994afce2ca4073f6b757385a6c0ffec25ecaae2b8821535b303c7cdbf6de42b"}, + {file = "netCDF4-1.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0187646e3348e7a8cd654617dda65517df138042c94c2fcc6682ff7c8c6654dc"}, + {file = "netCDF4-1.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1ab5dabac27d25fcc82c52dc29a74a6585e865208cce35f4e285df83d3df0b2"}, + {file = "netCDF4-1.6.5-cp312-cp312-win_amd64.whl", hash = "sha256:081e9043ac6160989f60570928eabe803c88ce7df1d3f79f2345dc48f68ef752"}, + {file = "netCDF4-1.6.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9b47b22dda5b25ba6291f97634d7ac67b0a843f8ae5c9d9d5813c15364f66d0a"}, + {file = "netCDF4-1.6.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4609dd62d14798c9524327287091875449d68588c128abb768fc0c76c4a28165"}, + {file = "netCDF4-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2455e9d35fde067e6a6bdc24aa9d44962235a071cec49904d1589e298c23dcd3"}, + {file = "netCDF4-1.6.5-cp38-cp38-win_amd64.whl", hash = "sha256:2c210794d96431d92b5992e46ad8a9f97237bf6d6956f8816978a03dc0fa18c3"}, + {file = "netCDF4-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:18255b8b283d32d3900092f29c67e53aa25bd8f0dfe7adde59fe782d865a381c"}, + {file = "netCDF4-1.6.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:53050562bac84738bbd121fbbee9593d074579f5d6fdaafcb981abeb5c964225"}, + {file = "netCDF4-1.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:938c062382406bca9198b16adddd87c09b00521766b138cdfd11c95546eefeb8"}, + {file = "netCDF4-1.6.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a8300451d7542d3c4ff1dcccf5fb1c7d44bdd1dc08ec77dab04416caf13cb1f"}, + {file = "netCDF4-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a27db2701feef31201c9b20b04a9579196edc20dfc339ca423c7b81e462d6e14"}, + {file = "netCDF4-1.6.5-cp39-cp39-win_amd64.whl", hash = "sha256:574d7742ab321e5f9f33b5b1296c4ad4e5c469152c17d4fc453d5070e413e596"}, + {file = "netCDF4-1.6.5.tar.gz", hash = "sha256:824881d0aacfde5bd982d6adedd8574259c85553781e7b83e0ce82b890bfa0ef"}, +] + +[package.dependencies] +certifi = "*" +cftime = "*" +numpy = "*" + +[package.extras] +tests = ["Cython", "packaging", "pytest"] + [[package]] name = "numpy" version = "1.23.5" @@ -1357,6 +1657,17 @@ toolz = "*" [package.extras] complete = ["blosc", "numpy (>=1.9.0)", "pandas (>=0.19.0)", "pyzmq"] +[[package]] +name = "picobox" +version = "4.0.0" +description = "Dependency injection framework designed with Python in mind." +optional = false +python-versions = ">=3.8" +files = [ + {file = "picobox-4.0.0-py3-none-any.whl", hash = "sha256:4c27eb689fe45dabd9e64c382e04418147d0b746d155b4e80057dbb7ff82027e"}, + {file = "picobox-4.0.0.tar.gz", hash = "sha256:114da1b5606b2f615e8b0eb68d04198ad9de75af5adbcf5b36fe4f664ab927b6"}, +] + [[package]] name = "pillow" version = "10.2.0" @@ -1498,20 +1809,20 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] [[package]] name = "pyam-iamc" -version = "1.7.0" +version = "1.9.0" description = "Analysis & visualization of integrated-assessment scenarios" optional = false -python-versions = "<3.11,>=3.7.1" +python-versions = "<3.12,>=3.7.1" files = [ - {file = "pyam-iamc-1.7.0.tar.gz", hash = "sha256:0af22a23585ed30363e8755a7e2ac4a646df71c5375f57b3a9124fb567cd32e4"}, - {file = "pyam_iamc-1.7.0-py3-none-any.whl", hash = "sha256:512a67ea145a09ab7db34b49ca70e81800f602ee46ad75a179c51f0a95cafb9b"}, + {file = "pyam-iamc-1.9.0.tar.gz", hash = "sha256:a37f853b4e563628e78ff79a639d5636e25cdc2b5db35d13b5ac7c27ccdf6333"}, + {file = "pyam_iamc-1.9.0-py3-none-any.whl", hash = "sha256:91f6841326197c5b32a511c33198e7dcf32cd47e02bb105bb3b0764bf7419acd"}, ] [package.dependencies] httpx = {version = "*", extras = ["http2"]} iam-units = ">=2020.4.21" importlib-metadata = "*" -matplotlib = ">=3.2.0" +matplotlib = ">=3.5.0,<3.7.1" numpy = ">=1.19.0,<1.24" openpyxl = "*" pandas = ">=1.2.0" @@ -1528,11 +1839,45 @@ wquantiles = "*" xlsxwriter = "*" [package.extras] -docs = ["autodocsumm", "kaleido", "nbsphinx", "numpydoc", "pillow", "sphinx", "sphinx-gallery", "sphinxcontrib-bibtex (<2.0)", "sphinxcontrib-programoutput"] +docs = ["autodocsumm", "kaleido", "nbsphinx", "numpydoc", "pillow", "sphinx", "sphinx-gallery"] optional-io-formats = ["datapackage", "pandas-datareader", "unfccc-di-api (>=3.0.1)", "xlrd"] optional-plotting = ["plotly"] tests = ["coverage", "coveralls", "pytest", "pytest-cov", "pytest-mpl"] -tutorials = ["ipykernel", "jupyter-client", "nbconvert", "nbformat", "pypandoc"] +tutorials = ["ipykernel", "jupyter-client", "nbconvert (>=7.3)", "nbformat", "pypandoc"] + +[[package]] +name = "pybtex" +version = "0.24.0" +description = "A BibTeX-compatible bibliography processor in Python" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*" +files = [ + {file = "pybtex-0.24.0-py2.py3-none-any.whl", hash = "sha256:e1e0c8c69998452fea90e9179aa2a98ab103f3eed894405b7264e517cc2fcc0f"}, + {file = "pybtex-0.24.0.tar.gz", hash = "sha256:818eae35b61733e5c007c3fcd2cfb75ed1bc8b4173c1f70b56cc4c0802d34755"}, +] + +[package.dependencies] +latexcodec = ">=1.0.4" +PyYAML = ">=3.01" +six = "*" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "pybtex-docutils" +version = "1.0.3" +description = "A docutils backend for pybtex." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pybtex-docutils-1.0.3.tar.gz", hash = "sha256:3a7ebdf92b593e00e8c1c538aa9a20bca5d92d84231124715acc964d51d93c6b"}, + {file = "pybtex_docutils-1.0.3-py3-none-any.whl", hash = "sha256:8fd290d2ae48e32fcb54d86b0efb8d573198653c7e2447d5bec5847095f430b9"}, +] + +[package.dependencies] +docutils = ">=0.14" +pybtex = ">=0.16" [[package]] name = "pyct" @@ -1600,6 +1945,56 @@ files = [ [package.extras] diagrams = ["jinja2", "railroad-diagrams"] +[[package]] +name = "pyproj" +version = "3.6.1" +description = "Python interface to PROJ (cartographic projections and coordinate transformations library)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pyproj-3.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab7aa4d9ff3c3acf60d4b285ccec134167a948df02347585fdd934ebad8811b4"}, + {file = "pyproj-3.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4bc0472302919e59114aa140fd7213c2370d848a7249d09704f10f5b062031fe"}, + {file = "pyproj-3.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5279586013b8d6582e22b6f9e30c49796966770389a9d5b85e25a4223286cd3f"}, + {file = "pyproj-3.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80fafd1f3eb421694857f254a9bdbacd1eb22fc6c24ca74b136679f376f97d35"}, + {file = "pyproj-3.6.1-cp310-cp310-win32.whl", hash = "sha256:c41e80ddee130450dcb8829af7118f1ab69eaf8169c4bf0ee8d52b72f098dc2f"}, + {file = "pyproj-3.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:db3aedd458e7f7f21d8176f0a1d924f1ae06d725228302b872885a1c34f3119e"}, + {file = "pyproj-3.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ebfbdbd0936e178091309f6cd4fcb4decd9eab12aa513cdd9add89efa3ec2882"}, + {file = "pyproj-3.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:447db19c7efad70ff161e5e46a54ab9cc2399acebb656b6ccf63e4bc4a04b97a"}, + {file = "pyproj-3.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7e13c40183884ec7f94eb8e0f622f08f1d5716150b8d7a134de48c6110fee85"}, + {file = "pyproj-3.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65ad699e0c830e2b8565afe42bd58cc972b47d829b2e0e48ad9638386d994915"}, + {file = "pyproj-3.6.1-cp311-cp311-win32.whl", hash = "sha256:8b8acc31fb8702c54625f4d5a2a6543557bec3c28a0ef638778b7ab1d1772132"}, + {file = "pyproj-3.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:38a3361941eb72b82bd9a18f60c78b0df8408416f9340521df442cebfc4306e2"}, + {file = "pyproj-3.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1e9fbaf920f0f9b4ee62aab832be3ae3968f33f24e2e3f7fbb8c6728ef1d9746"}, + {file = "pyproj-3.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d227a865356f225591b6732430b1d1781e946893789a609bb34f59d09b8b0f8"}, + {file = "pyproj-3.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83039e5ae04e5afc974f7d25ee0870a80a6bd6b7957c3aca5613ccbe0d3e72bf"}, + {file = "pyproj-3.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb059ba3bced6f6725961ba758649261d85ed6ce670d3e3b0a26e81cf1aa8d"}, + {file = "pyproj-3.6.1-cp312-cp312-win32.whl", hash = "sha256:2d6ff73cc6dbbce3766b6c0bce70ce070193105d8de17aa2470009463682a8eb"}, + {file = "pyproj-3.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:7a27151ddad8e1439ba70c9b4b2b617b290c39395fa9ddb7411ebb0eb86d6fb0"}, + {file = "pyproj-3.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4ba1f9b03d04d8cab24d6375609070580a26ce76eaed54631f03bab00a9c737b"}, + {file = "pyproj-3.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18faa54a3ca475bfe6255156f2f2874e9a1c8917b0004eee9f664b86ccc513d3"}, + {file = "pyproj-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd43bd9a9b9239805f406fd82ba6b106bf4838d9ef37c167d3ed70383943ade1"}, + {file = "pyproj-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50100b2726a3ca946906cbaa789dd0749f213abf0cbb877e6de72ca7aa50e1ae"}, + {file = "pyproj-3.6.1-cp39-cp39-win32.whl", hash = "sha256:9274880263256f6292ff644ca92c46d96aa7e57a75c6df3f11d636ce845a1877"}, + {file = "pyproj-3.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:36b64c2cb6ea1cc091f329c5bd34f9c01bb5da8c8e4492c709bda6a09f96808f"}, + {file = "pyproj-3.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd93c1a0c6c4aedc77c0fe275a9f2aba4d59b8acf88cebfc19fe3c430cfabf4f"}, + {file = "pyproj-3.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6420ea8e7d2a88cb148b124429fba8cd2e0fae700a2d96eab7083c0928a85110"}, + {file = "pyproj-3.6.1.tar.gz", hash = "sha256:44aa7c704c2b7d8fb3d483bbf75af6cb2350d30a63b144279a09b75fead501bf"}, +] + +[package.dependencies] +certifi = "*" + +[[package]] +name = "pyshp" +version = "2.3.1" +description = "Pure Python read/write support for ESRI Shapefile format" +optional = false +python-versions = ">=2.7" +files = [ + {file = "pyshp-2.3.1-py2.py3-none-any.whl", hash = "sha256:67024c0ccdc352ba5db777c4e968483782dfa78f8e200672a90d2d30fd8b7b49"}, + {file = "pyshp-2.3.1.tar.gz", hash = "sha256:4caec82fd8dd096feba8217858068bacb2a3b5950f43c048c6dc32a3489d5af1"}, +] + [[package]] name = "python-dateutil" version = "2.8.2" @@ -1704,6 +2099,21 @@ files = [ {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] +[[package]] +name = "referencing" +version = "0.33.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.33.0-py3-none-any.whl", hash = "sha256:39240f2ecc770258f28b642dd47fd74bc8b02484de54e1882b74b35ebd779bd5"}, + {file = "referencing-0.33.0.tar.gz", hash = "sha256:c775fedf74bc0f9189c2a3be1c12fd03e8c23f4d371dce795df44e06c5b412f7"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + [[package]] name = "requests" version = "2.31.0" @@ -1743,6 +2153,114 @@ pygments = ">=2.13.0,<3.0.0" [package.extras] jupyter = ["ipywidgets (>=7.5.1,<9)"] +[[package]] +name = "rpds-py" +version = "0.18.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, + {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01e36a39af54a30f28b73096dd39b6802eddd04c90dbe161c1b8dbe22353189f"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d62dec4976954a23d7f91f2f4530852b0c7608116c257833922a896101336c51"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd18772815d5f008fa03d2b9a681ae38d5ae9f0e599f7dda233c439fcaa00d40"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:923d39efa3cfb7279a0327e337a7958bff00cc447fd07a25cddb0a1cc9a6d2da"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39514da80f971362f9267c600b6d459bfbbc549cffc2cef8e47474fddc9b45b1"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a34d557a42aa28bd5c48a023c570219ba2593bcbbb8dc1b98d8cf5d529ab1434"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:93df1de2f7f7239dc9cc5a4a12408ee1598725036bd2dedadc14d94525192fc3"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:34b18ba135c687f4dac449aa5157d36e2cbb7c03cbea4ddbd88604e076aa836e"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0b5dcf9193625afd8ecc92312d6ed78781c46ecbf39af9ad4681fc9f464af88"}, + {file = "rpds_py-0.18.0-cp310-none-win32.whl", hash = "sha256:c4325ff0442a12113a6379af66978c3fe562f846763287ef66bdc1d57925d337"}, + {file = "rpds_py-0.18.0-cp310-none-win_amd64.whl", hash = "sha256:7223a2a5fe0d217e60a60cdae28d6949140dde9c3bcc714063c5b463065e3d66"}, + {file = "rpds_py-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3a96e0c6a41dcdba3a0a581bbf6c44bb863f27c541547fb4b9711fd8cf0ffad4"}, + {file = "rpds_py-0.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30f43887bbae0d49113cbaab729a112251a940e9b274536613097ab8b4899cf6"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcb25daa9219b4cf3a0ab24b0eb9a5cc8949ed4dc72acb8fa16b7e1681aa3c58"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d68c93e381010662ab873fea609bf6c0f428b6d0bb00f2c6939782e0818d37bf"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b34b7aa8b261c1dbf7720b5d6f01f38243e9b9daf7e6b8bc1fd4657000062f2c"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e6d75ab12b0bbab7215e5d40f1e5b738aa539598db27ef83b2ec46747df90e1"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8612cd233543a3781bc659c731b9d607de65890085098986dfd573fc2befe5"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aec493917dd45e3c69d00a8874e7cbed844efd935595ef78a0f25f14312e33c6"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:661d25cbffaf8cc42e971dd570d87cb29a665f49f4abe1f9e76be9a5182c4688"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1df3659d26f539ac74fb3b0c481cdf9d725386e3552c6fa2974f4d33d78e544b"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a1ce3ba137ed54f83e56fb983a5859a27d43a40188ba798993812fed73c70836"}, + {file = "rpds_py-0.18.0-cp311-none-win32.whl", hash = "sha256:69e64831e22a6b377772e7fb337533c365085b31619005802a79242fee620bc1"}, + {file = "rpds_py-0.18.0-cp311-none-win_amd64.whl", hash = "sha256:998e33ad22dc7ec7e030b3df701c43630b5bc0d8fbc2267653577e3fec279afa"}, + {file = "rpds_py-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7f2facbd386dd60cbbf1a794181e6aa0bd429bd78bfdf775436020172e2a23f0"}, + {file = "rpds_py-0.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d9a5be316c15ffb2b3c405c4ff14448c36b4435be062a7f578ccd8b01f0c4d8"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd5bf1af8efe569654bbef5a3e0a56eca45f87cfcffab31dd8dde70da5982475"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5417558f6887e9b6b65b4527232553c139b57ec42c64570569b155262ac0754f"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:56a737287efecafc16f6d067c2ea0117abadcd078d58721f967952db329a3e5c"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f03bccbd8586e9dd37219bce4d4e0d3ab492e6b3b533e973fa08a112cb2ffc9"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4457a94da0d5c53dc4b3e4de1158bdab077db23c53232f37a3cb7afdb053a4e3"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ab39c1ba9023914297dd88ec3b3b3c3f33671baeb6acf82ad7ce883f6e8e157"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9d54553c1136b50fd12cc17e5b11ad07374c316df307e4cfd6441bea5fb68496"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0af039631b6de0397ab2ba16eaf2872e9f8fca391b44d3d8cac317860a700a3f"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84ffab12db93b5f6bad84c712c92060a2d321b35c3c9960b43d08d0f639d60d7"}, + {file = "rpds_py-0.18.0-cp312-none-win32.whl", hash = "sha256:685537e07897f173abcf67258bee3c05c374fa6fff89d4c7e42fb391b0605e98"}, + {file = "rpds_py-0.18.0-cp312-none-win_amd64.whl", hash = "sha256:e003b002ec72c8d5a3e3da2989c7d6065b47d9eaa70cd8808b5384fbb970f4ec"}, + {file = "rpds_py-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:08f9ad53c3f31dfb4baa00da22f1e862900f45908383c062c27628754af2e88e"}, + {file = "rpds_py-0.18.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c0013fe6b46aa496a6749c77e00a3eb07952832ad6166bd481c74bda0dcb6d58"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e32a92116d4f2a80b629778280103d2a510a5b3f6314ceccd6e38006b5e92dcb"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e541ec6f2ec456934fd279a3120f856cd0aedd209fc3852eca563f81738f6861"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bed88b9a458e354014d662d47e7a5baafd7ff81c780fd91584a10d6ec842cb73"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2644e47de560eb7bd55c20fc59f6daa04682655c58d08185a9b95c1970fa1e07"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e8916ae4c720529e18afa0b879473049e95949bf97042e938530e072fde061d"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:465a3eb5659338cf2a9243e50ad9b2296fa15061736d6e26240e713522b6235c"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ea7d4a99f3b38c37eac212dbd6ec42b7a5ec51e2c74b5d3223e43c811609e65f"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:67071a6171e92b6da534b8ae326505f7c18022c6f19072a81dcf40db2638767c"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:41ef53e7c58aa4ef281da975f62c258950f54b76ec8e45941e93a3d1d8580594"}, + {file = "rpds_py-0.18.0-cp38-none-win32.whl", hash = "sha256:fdea4952db2793c4ad0bdccd27c1d8fdd1423a92f04598bc39425bcc2b8ee46e"}, + {file = "rpds_py-0.18.0-cp38-none-win_amd64.whl", hash = "sha256:7cd863afe7336c62ec78d7d1349a2f34c007a3cc6c2369d667c65aeec412a5b1"}, + {file = "rpds_py-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5307def11a35f5ae4581a0b658b0af8178c65c530e94893345bebf41cc139d33"}, + {file = "rpds_py-0.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:77f195baa60a54ef9d2de16fbbfd3ff8b04edc0c0140a761b56c267ac11aa467"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39f5441553f1c2aed4de4377178ad8ff8f9d733723d6c66d983d75341de265ab"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a00312dea9310d4cb7dbd7787e722d2e86a95c2db92fbd7d0155f97127bcb40"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f2fc11e8fe034ee3c34d316d0ad8808f45bc3b9ce5857ff29d513f3ff2923a1"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:586f8204935b9ec884500498ccc91aa869fc652c40c093bd9e1471fbcc25c022"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddc2f4dfd396c7bfa18e6ce371cba60e4cf9d2e5cdb71376aa2da264605b60b9"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ddcba87675b6d509139d1b521e0c8250e967e63b5909a7e8f8944d0f90ff36f"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7bd339195d84439cbe5771546fe8a4e8a7a045417d8f9de9a368c434e42a721e"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:d7c36232a90d4755b720fbd76739d8891732b18cf240a9c645d75f00639a9024"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6b0817e34942b2ca527b0e9298373e7cc75f429e8da2055607f4931fded23e20"}, + {file = "rpds_py-0.18.0-cp39-none-win32.whl", hash = "sha256:99f70b740dc04d09e6b2699b675874367885217a2e9f782bdf5395632ac663b7"}, + {file = "rpds_py-0.18.0-cp39-none-win_amd64.whl", hash = "sha256:6ef687afab047554a2d366e112dd187b62d261d49eb79b77e386f94644363294"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ad36cfb355e24f1bd37cac88c112cd7730873f20fb0bdaf8ba59eedf8216079f"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:36b3ee798c58ace201289024b52788161e1ea133e4ac93fba7d49da5fec0ef9e"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8a2f084546cc59ea99fda8e070be2fd140c3092dc11524a71aa8f0f3d5a55ca"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e4461d0f003a0aa9be2bdd1b798a041f177189c1a0f7619fe8c95ad08d9a45d7"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8db715ebe3bb7d86d77ac1826f7d67ec11a70dbd2376b7cc214199360517b641"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:793968759cd0d96cac1e367afd70c235867831983f876a53389ad869b043c948"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66e6a3af5a75363d2c9a48b07cb27c4ea542938b1a2e93b15a503cdfa8490795"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ef0befbb5d79cf32d0266f5cff01545602344eda89480e1dd88aca964260b18"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d4acf42190d449d5e89654d5c1ed3a4f17925eec71f05e2a41414689cda02d1"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a5f446dd5055667aabaee78487f2b5ab72e244f9bc0b2ffebfeec79051679984"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9dbbeb27f4e70bfd9eec1be5477517365afe05a9b2c441a0b21929ee61048124"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:22806714311a69fd0af9b35b7be97c18a0fc2826e6827dbb3a8c94eac6cf7eeb"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b34ae4636dfc4e76a438ab826a0d1eed2589ca7d9a1b2d5bb546978ac6485461"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c8370641f1a7f0e0669ddccca22f1da893cef7628396431eb445d46d893e5cd"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c8362467a0fdeccd47935f22c256bec5e6abe543bf0d66e3d3d57a8fb5731863"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11a8c85ef4a07a7638180bf04fe189d12757c696eb41f310d2426895356dcf05"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b316144e85316da2723f9d8dc75bada12fa58489a527091fa1d5a612643d1a0e"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf1ea2e34868f6fbf070e1af291c8180480310173de0b0c43fc38a02929fc0e3"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e546e768d08ad55b20b11dbb78a745151acbd938f8f00d0cfbabe8b0199b9880"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4901165d170a5fde6f589acb90a6b33629ad1ec976d4529e769c6f3d885e3e80"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:618a3d6cae6ef8ec88bb76dd80b83cfe415ad4f1d942ca2a903bf6b6ff97a2da"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ed4eb745efbff0a8e9587d22a84be94a5eb7d2d99c02dacf7bd0911713ed14dd"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c81e5f372cd0dc5dc4809553d34f832f60a46034a5f187756d9b90586c2c307"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:43fbac5f22e25bee1d482c97474f930a353542855f05c1161fd804c9dc74a09d"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d7faa6f14017c0b1e69f5e2c357b998731ea75a442ab3841c0dbbbfe902d2c4"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:08231ac30a842bd04daabc4d71fddd7e6d26189406d5a69535638e4dcb88fe76"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:044a3e61a7c2dafacae99d1e722cc2d4c05280790ec5a05031b3876809d89a5c"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f26b5bd1079acdb0c7a5645e350fe54d16b17bfc5e71f371c449383d3342e17"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:482103aed1dfe2f3b71a58eff35ba105289b8d862551ea576bd15479aba01f66"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1374f4129f9bcca53a1bba0bb86bf78325a0374577cf7e9e4cd046b1e6f20e24"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:635dc434ff724b178cb192c70016cc0ad25a275228f749ee0daf0eddbc8183b1"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:bc362ee4e314870a70f4ae88772d72d877246537d9f8cb8f7eacf10884862432"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4832d7d380477521a8c1644bbab6588dfedea5e30a7d967b5fb75977c45fd77f"}, + {file = "rpds_py-0.18.0.tar.gz", hash = "sha256:42821446ee7a76f5d9f71f9e33a4fb2ffd724bb3e7f93386150b61a43115788d"}, +] + [[package]] name = "scipy" version = "1.12.0" @@ -1844,6 +2362,63 @@ docs = ["entangled-cli[rich]", "mkdocs", "mkdocs-entangled-plugin", "mkdocs-mate rich = ["rich"] test = ["build", "pytest", "rich", "wheel"] +[[package]] +name = "shapely" +version = "2.0.3" +description = "Manipulation and analysis of geometric objects" +optional = false +python-versions = ">=3.7" +files = [ + {file = "shapely-2.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:af7e9abe180b189431b0f490638281b43b84a33a960620e6b2e8d3e3458b61a1"}, + {file = "shapely-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:98040462b36ced9671e266b95c326b97f41290d9d17504a1ee4dc313a7667b9c"}, + {file = "shapely-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:71eb736ef2843f23473c6e37f6180f90f0a35d740ab284321548edf4e55d9a52"}, + {file = "shapely-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:881eb9dbbb4a6419667e91fcb20313bfc1e67f53dbb392c6840ff04793571ed1"}, + {file = "shapely-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f10d2ccf0554fc0e39fad5886c839e47e207f99fdf09547bc687a2330efda35b"}, + {file = "shapely-2.0.3-cp310-cp310-win32.whl", hash = "sha256:6dfdc077a6fcaf74d3eab23a1ace5abc50c8bce56ac7747d25eab582c5a2990e"}, + {file = "shapely-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:64c5013dacd2d81b3bb12672098a0b2795c1bf8190cfc2980e380f5ef9d9e4d9"}, + {file = "shapely-2.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:56cee3e4e8159d6f2ce32e421445b8e23154fd02a0ac271d6a6c0b266a8e3cce"}, + {file = "shapely-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:619232c8276fded09527d2a9fd91a7885ff95c0ff9ecd5e3cb1e34fbb676e2ae"}, + {file = "shapely-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2a7d256db6f5b4b407dc0c98dd1b2fcf1c9c5814af9416e5498d0a2e4307a4b"}, + {file = "shapely-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e45f0c8cd4583647db3216d965d49363e6548c300c23fd7e57ce17a03f824034"}, + {file = "shapely-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13cb37d3826972a82748a450328fe02a931dcaed10e69a4d83cc20ba021bc85f"}, + {file = "shapely-2.0.3-cp311-cp311-win32.whl", hash = "sha256:9302d7011e3e376d25acd30d2d9e70d315d93f03cc748784af19b00988fc30b1"}, + {file = "shapely-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6b464f2666b13902835f201f50e835f2f153f37741db88f68c7f3b932d3505fa"}, + {file = "shapely-2.0.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e86e7cb8e331a4850e0c2a8b2d66dc08d7a7b301b8d1d34a13060e3a5b4b3b55"}, + {file = "shapely-2.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c91981c99ade980fc49e41a544629751a0ccd769f39794ae913e53b07b2f78b9"}, + {file = "shapely-2.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd45d456983dc60a42c4db437496d3f08a4201fbf662b69779f535eb969660af"}, + {file = "shapely-2.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:882fb1ffc7577e88c1194f4f1757e277dc484ba096a3b94844319873d14b0f2d"}, + {file = "shapely-2.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9f2d93bff2ea52fa93245798cddb479766a18510ea9b93a4fb9755c79474889"}, + {file = "shapely-2.0.3-cp312-cp312-win32.whl", hash = "sha256:99abad1fd1303b35d991703432c9481e3242b7b3a393c186cfb02373bf604004"}, + {file = "shapely-2.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:6f555fe3304a1f40398977789bc4fe3c28a11173196df9ece1e15c5bc75a48db"}, + {file = "shapely-2.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a983cc418c1fa160b7d797cfef0e0c9f8c6d5871e83eae2c5793fce6a837fad9"}, + {file = "shapely-2.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18bddb8c327f392189a8d5d6b9a858945722d0bb95ccbd6a077b8e8fc4c7890d"}, + {file = "shapely-2.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:442f4dcf1eb58c5a4e3428d88e988ae153f97ab69a9f24e07bf4af8038536325"}, + {file = "shapely-2.0.3-cp37-cp37m-win32.whl", hash = "sha256:31a40b6e3ab00a4fd3a1d44efb2482278642572b8e0451abdc8e0634b787173e"}, + {file = "shapely-2.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:59b16976c2473fec85ce65cc9239bef97d4205ab3acead4e6cdcc72aee535679"}, + {file = "shapely-2.0.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:705efbce1950a31a55b1daa9c6ae1c34f1296de71ca8427974ec2f27d57554e3"}, + {file = "shapely-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:601c5c0058a6192df704cb889439f64994708563f57f99574798721e9777a44b"}, + {file = "shapely-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f24ecbb90a45c962b3b60d8d9a387272ed50dc010bfe605f1d16dfc94772d8a1"}, + {file = "shapely-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8c2a2989222c6062f7a0656e16276c01bb308bc7e5d999e54bf4e294ce62e76"}, + {file = "shapely-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42bceb9bceb3710a774ce04908fda0f28b291323da2688f928b3f213373b5aee"}, + {file = "shapely-2.0.3-cp38-cp38-win32.whl", hash = "sha256:54d925c9a311e4d109ec25f6a54a8bd92cc03481a34ae1a6a92c1fe6729b7e01"}, + {file = "shapely-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:300d203b480a4589adefff4c4af0b13919cd6d760ba3cbb1e56275210f96f654"}, + {file = "shapely-2.0.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:083d026e97b6c1f4a9bd2a9171c7692461092ed5375218170d91705550eecfd5"}, + {file = "shapely-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:27b6e1910094d93e9627f2664121e0e35613262fc037051680a08270f6058daf"}, + {file = "shapely-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:71b2de56a9e8c0e5920ae5ddb23b923490557ac50cb0b7fa752761bf4851acde"}, + {file = "shapely-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d279e56bbb68d218d63f3efc80c819cedcceef0e64efbf058a1df89dc57201b"}, + {file = "shapely-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88566d01a30f0453f7d038db46bc83ce125e38e47c5f6bfd4c9c287010e9bf74"}, + {file = "shapely-2.0.3-cp39-cp39-win32.whl", hash = "sha256:58afbba12c42c6ed44c4270bc0e22f3dadff5656d711b0ad335c315e02d04707"}, + {file = "shapely-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:5026b30433a70911979d390009261b8c4021ff87c7c3cbd825e62bb2ffa181bc"}, + {file = "shapely-2.0.3.tar.gz", hash = "sha256:4d65d0aa7910af71efa72fd6447e02a8e5dd44da81a983de9d736d6e6ccbe674"}, +] + +[package.dependencies] +numpy = ">=1.14,<2" + +[package.extras] +docs = ["matplotlib", "numpydoc (==1.1.*)", "sphinx", "sphinx-book-theme", "sphinx-remove-toctrees"] +test = ["pytest", "pytest-cov"] + [[package]] name = "six" version = "1.16.0" @@ -1866,6 +2441,17 @@ files = [ {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, ] +[[package]] +name = "snowballstemmer" +version = "2.2.0" +description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms." +optional = false +python-versions = "*" +files = [ + {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, + {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, +] + [[package]] name = "sortedcontainers" version = "2.4.0" @@ -1877,6 +2463,249 @@ files = [ {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, ] +[[package]] +name = "sphinx" +version = "7.2.6" +description = "Python documentation generator" +optional = false +python-versions = ">=3.9" +files = [ + {file = "sphinx-7.2.6-py3-none-any.whl", hash = "sha256:1e09160a40b956dc623c910118fa636da93bd3ca0b9876a7b3df90f07d691560"}, + {file = "sphinx-7.2.6.tar.gz", hash = "sha256:9a5160e1ea90688d5963ba09a2dcd8bdd526620edbb65c328728f1b2228d5ab5"}, +] + +[package.dependencies] +alabaster = ">=0.7,<0.8" +babel = ">=2.9" +colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} +docutils = ">=0.18.1,<0.21" +imagesize = ">=1.3" +Jinja2 = ">=3.0" +packaging = ">=21.0" +Pygments = ">=2.14" +requests = ">=2.25.0" +snowballstemmer = ">=2.0" +sphinxcontrib-applehelp = "*" +sphinxcontrib-devhelp = "*" +sphinxcontrib-htmlhelp = ">=2.0.0" +sphinxcontrib-jsmath = "*" +sphinxcontrib-qthelp = "*" +sphinxcontrib-serializinghtml = ">=1.1.9" + +[package.extras] +docs = ["sphinxcontrib-websupport"] +lint = ["docutils-stubs", "flake8 (>=3.5.0)", "flake8-simplify", "isort", "mypy (>=0.990)", "ruff", "sphinx-lint", "types-requests"] +test = ["cython (>=3.0)", "filelock", "html5lib", "pytest (>=4.6)", "setuptools (>=67.0)"] + +[[package]] +name = "sphinx-mdinclude" +version = "0.5.3" +description = "Markdown extension for Sphinx" +optional = false +python-versions = ">=3.6" +files = [ + {file = "sphinx_mdinclude-0.5.3-py3-none-any.whl", hash = "sha256:02afadf4597aecf8255a702956eff5b8c5cb9658ea995c3d361722d2ed78cca9"}, + {file = "sphinx_mdinclude-0.5.3.tar.gz", hash = "sha256:2998e3d18b3022c9983d1b72191fe37e25ffccd54165cbe3acb22cceedd91af4"}, +] + +[package.dependencies] +docutils = ">=0.16,<1.0" +mistune = ">=2.0,<3.0" +pygments = ">=2.8" + +[[package]] +name = "sphinx-multiversion" +version = "0.2.4" +description = "Add support for multiple versions to sphinx" +optional = false +python-versions = "*" +files = [ + {file = "sphinx-multiversion-0.2.4.tar.gz", hash = "sha256:5cd1ca9ecb5eed63cb8d6ce5e9c438ca13af4fa98e7eb6f376be541dd4990bcb"}, + {file = "sphinx_multiversion-0.2.4-py3-none-any.whl", hash = "sha256:dec29f2a5890ad68157a790112edc0eb63140e70f9df0a363743c6258fbeb478"}, +] + +[package.dependencies] +sphinx = ">=2.1" + +[[package]] +name = "sphinx-rtd-theme" +version = "2.0.0" +description = "Read the Docs theme for Sphinx" +optional = false +python-versions = ">=3.6" +files = [ + {file = "sphinx_rtd_theme-2.0.0-py2.py3-none-any.whl", hash = "sha256:ec93d0856dc280cf3aee9a4c9807c60e027c7f7b461b77aeffed682e68f0e586"}, + {file = "sphinx_rtd_theme-2.0.0.tar.gz", hash = "sha256:bd5d7b80622406762073a04ef8fadc5f9151261563d47027de09910ce03afe6b"}, +] + +[package.dependencies] +docutils = "<0.21" +sphinx = ">=5,<8" +sphinxcontrib-jquery = ">=4,<5" + +[package.extras] +dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client", "wheel"] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "1.0.8" +description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" +optional = false +python-versions = ">=3.9" +files = [ + {file = "sphinxcontrib_applehelp-1.0.8-py3-none-any.whl", hash = "sha256:cb61eb0ec1b61f349e5cc36b2028e9e7ca765be05e49641c97241274753067b4"}, + {file = "sphinxcontrib_applehelp-1.0.8.tar.gz", hash = "sha256:c40a4f96f3776c4393d933412053962fac2b84f4c99a7982ba42e09576a70619"}, +] + +[package.extras] +lint = ["docutils-stubs", "flake8", "mypy"] +standalone = ["Sphinx (>=5)"] +test = ["pytest"] + +[[package]] +name = "sphinxcontrib-bibtex" +version = "2.6.2" +description = "Sphinx extension for BibTeX style citations." +optional = false +python-versions = ">=3.7" +files = [ + {file = "sphinxcontrib-bibtex-2.6.2.tar.gz", hash = "sha256:f487af694336f28bfb7d6a17070953a7d264bec43000a2379724274f5f8d70ae"}, + {file = "sphinxcontrib_bibtex-2.6.2-py3-none-any.whl", hash = "sha256:10d45ebbb19207c5665396c9446f8012a79b8a538cb729f895b5910ab2d0b2da"}, +] + +[package.dependencies] +docutils = ">=0.8,<0.18.dev0 || >=0.20.dev0" +pybtex = ">=0.24" +pybtex-docutils = ">=1.0.0" +Sphinx = ">=3.5" + +[[package]] +name = "sphinxcontrib-devhelp" +version = "1.0.6" +description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" +optional = false +python-versions = ">=3.9" +files = [ + {file = "sphinxcontrib_devhelp-1.0.6-py3-none-any.whl", hash = "sha256:6485d09629944511c893fa11355bda18b742b83a2b181f9a009f7e500595c90f"}, + {file = "sphinxcontrib_devhelp-1.0.6.tar.gz", hash = "sha256:9893fd3f90506bc4b97bdb977ceb8fbd823989f4316b28c3841ec128544372d3"}, +] + +[package.extras] +lint = ["docutils-stubs", "flake8", "mypy"] +standalone = ["Sphinx (>=5)"] +test = ["pytest"] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.0.5" +description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" +optional = false +python-versions = ">=3.9" +files = [ + {file = "sphinxcontrib_htmlhelp-2.0.5-py3-none-any.whl", hash = "sha256:393f04f112b4d2f53d93448d4bce35842f62b307ccdc549ec1585e950bc35e04"}, + {file = "sphinxcontrib_htmlhelp-2.0.5.tar.gz", hash = "sha256:0dc87637d5de53dd5eec3a6a01753b1ccf99494bd756aafecd74b4fa9e729015"}, +] + +[package.extras] +lint = ["docutils-stubs", "flake8", "mypy"] +standalone = ["Sphinx (>=5)"] +test = ["html5lib", "pytest"] + +[[package]] +name = "sphinxcontrib-httpdomain" +version = "1.8.1" +description = "Sphinx domain for documenting HTTP APIs" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" +files = [ + {file = "sphinxcontrib-httpdomain-1.8.1.tar.gz", hash = "sha256:6c2dfe6ca282d75f66df333869bb0ce7331c01b475db6809ff9d107b7cdfe04b"}, + {file = "sphinxcontrib_httpdomain-1.8.1-py2.py3-none-any.whl", hash = "sha256:21eefe1270e4d9de8d717cc89ee92cc4871b8736774393bafc5e38a6bb77b1d5"}, +] + +[package.dependencies] +six = "*" +Sphinx = ">=1.6" + +[[package]] +name = "sphinxcontrib-jquery" +version = "4.1" +description = "Extension to include jQuery on newer Sphinx releases" +optional = false +python-versions = ">=2.7" +files = [ + {file = "sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a"}, + {file = "sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae"}, +] + +[package.dependencies] +Sphinx = ">=1.8" + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +description = "A sphinx extension which renders display math in HTML via JavaScript" +optional = false +python-versions = ">=3.5" +files = [ + {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, + {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, +] + +[package.extras] +test = ["flake8", "mypy", "pytest"] + +[[package]] +name = "sphinxcontrib-openapi" +version = "0.8.4" +description = "OpenAPI (fka Swagger) spec renderer for Sphinx" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sphinxcontrib-openapi-0.8.4.tar.gz", hash = "sha256:df883808a5b5e4b4113ad697185c43a3f42df3dce70453af78ba7076907e9a20"}, + {file = "sphinxcontrib_openapi-0.8.4-py3-none-any.whl", hash = "sha256:50911c18d452d9390ee3a384ef8dc8bde6135f542ba55691f81e1fbc0b71014e"}, +] + +[package.dependencies] +deepmerge = ">=0.1" +jsonschema = ">=2.5.1" +picobox = ">=2.2" +PyYAML = ">=3.12" +sphinx = ">=2.0" +sphinx-mdinclude = ">=0.5.2" +sphinxcontrib-httpdomain = ">=1.5.0" + +[[package]] +name = "sphinxcontrib-qthelp" +version = "1.0.7" +description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" +optional = false +python-versions = ">=3.9" +files = [ + {file = "sphinxcontrib_qthelp-1.0.7-py3-none-any.whl", hash = "sha256:e2ae3b5c492d58fcbd73281fbd27e34b8393ec34a073c792642cd8e529288182"}, + {file = "sphinxcontrib_qthelp-1.0.7.tar.gz", hash = "sha256:053dedc38823a80a7209a80860b16b722e9e0209e32fea98c90e4e6624588ed6"}, +] + +[package.extras] +lint = ["docutils-stubs", "flake8", "mypy"] +standalone = ["Sphinx (>=5)"] +test = ["pytest"] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "1.1.10" +description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "sphinxcontrib_serializinghtml-1.1.10-py3-none-any.whl", hash = "sha256:326369b8df80a7d2d8d7f99aa5ac577f51ea51556ed974e7716cfd4fca3f6cb7"}, + {file = "sphinxcontrib_serializinghtml-1.1.10.tar.gz", hash = "sha256:93f3f5dc458b91b192fe10c397e324f262cf163d79f3282c158e8436a2c4511f"}, +] + +[package.extras] +lint = ["docutils-stubs", "flake8", "mypy"] +standalone = ["Sphinx (>=5)"] +test = ["pytest"] + [[package]] name = "tblib" version = "3.0.0" @@ -2102,4 +2931,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.10, <3.11" -content-hash = "17af8b9b62d1c64977133b92b78c5d597460a95203c5ed5bb57aa1a8d6b79554" +content-hash = "a07d3ecb9ec6479240718b42fec57b544c2fc7f14fdacad466050d3ac6ae72a3" diff --git a/pyproject.toml b/pyproject.toml index 153fa2b..ce76c45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,14 +2,12 @@ name = "rime" authors = ["Edward Byers ", "Mia Werning "] - -author_email = "byers@iiasa.ac.at" description = "Rapid Impact Model Emulator" repository = "https://github.com/iiasa/rime" homepage = "https://iiasa.ac.at/programs/ece" documentation = "https://github.com/iiasa/rime" version = "0.1.0" -license = "GNU CPL v3" +license = "GNU GPL v3" readme = "README.md" keywords = "" @@ -17,18 +15,32 @@ keywords = "" python = ">=3.10, <3.11" alive-progress = "^3.1.5" dask = "^2024.2.0" +distributed = "^2024.2.0" +holoviews = "^1.18.3" +hvplot = "^0.9.2" +matplotlib = "^3.6" numpy = "^1.23" pandas = "^2.2.0" -pyam-iamc = "^1.7" -xarray = "^2024.1.1" +pyam-iamc = "^1.8" +pyyaml = "^6.0.1" +rich = "^13.7.0" scipy = "^1.12.0" -holoviews = "^1.18.3" -matplotlib = "^3.8.3" seaborn = "^0.13.2" -rich = "^13.7.0" -pyyaml = "^6.0.1" -hvplot = "^0.9.2" -distributed = "^2024.2.0" +xarray = "^2024.1.1" +netcdf4 = "^1.6.5" +cartopy = "^0.22.0" +geoviews = "^1.11.1" +pyproj = "^3.6.1" + +[tool.poetry.group.docs] +optional = true + +[tool.poetry.group.docs.dependencies] +sphinx = "^7.2.6" +sphinx-multiversion = "^0.2.4" +sphinx-rtd-theme = "^2.0.0" +sphinxcontrib-bibtex = "^2.6.2" +sphinxcontrib-openapi = "^0.8.3" [build-system] diff --git a/rime/core.py b/rime/core.py new file mode 100644 index 0000000..822cd75 --- /dev/null +++ b/rime/core.py @@ -0,0 +1,232 @@ +import numpy as np +import pandas as pd +import pyam +import xarray as xr +from rime.utils import ssp_helper # Import ssp_helper from rime.utils + + +class RegionArray: + def __init__(self, data_input): + """Initialize the RegionArray class with either a file path, list of file paths or an xarray.Dataset.""" + if isinstance(data_input, xr.Dataset): + self.dataset = data_input + elif isinstance(data_input, str): + self.dataset = xr.open_dataset(data_input) + elif isinstance(data_input, list): + # list of filepaths + self.dataset = xr.open_mfdataset(data_input) + else: + raise ValueError("Input must be an xarray.Dataset, a file path string or a list of file path strings compatible with xarray.open_dataset() or xarray.open_mfdataset().") + + self._validate_and_adjust_dataset() + + def _validate_and_adjust_dataset(self): + """Validate and adjust the dataset dimensions and coordinates as per requirements.""" + # Check dimensions + # Convert all dimension names to lowercase to standardize + self.dataset = self.dataset.rename({dim: dim.lower() for dim in self.dataset.dims}) + + self.dataset = self.dataset.rename({"gmt": "gwl"}) if "gmt" in self.dataset.dims else self.dataset + + # Check dimensions, now using lowercase to ensure case-insensitive comparison + required_dims = ['region', 'year', 'gwl', 'ssp'] + missing_dims = [dim for dim in required_dims if dim not in self.dataset.dims] + if missing_dims: + raise ValueError(f"Dataset is missing required dimensions: {missing_dims}") + + # Ensure the length of 'gwl' is greater than 1 + if len(self.dataset['gwl']) <= 1: + raise ValueError("The 'gwl' dimension must have a length greater than 1.") + + # Validate coordinates + # Skip validation for 'year', only check if region and ssp are strings, gwl should be float + if not all(isinstance(region, str) for region in self.dataset['region'].values): + raise ValueError("All 'region' coordinates should be strings.") + if not all(isinstance(gwl, float) for gwl in self.dataset['gwl'].values): + raise ValueError("All 'gwl' coordinates should be floats.") + if not all(isinstance(ssp, str) for ssp in self.dataset['ssp'].values): + raise ValueError("All 'ssp' coordinates should be strings.") + if not all(isinstance(year, (int, np.int32, np.int64, float, np.float32, np.float64)) for year in self.dataset['year'].values): + raise ValueError("All 'year' coordinates should be ints or floats.") + + # Ensure all 'gwl' coordinate values are > 0.5 + if not all(gwl > 0.5 for gwl in self.dataset['gwl'].values): + raise ValueError("All 'gwl' coordinate values must be greater than 0.5.") + + + def __repr__(self): + """String representation of the dataset for quick inspection.""" + return repr(self.dataset) + + + +class RasterArray: + def __init__(self, data_input): + """Initialize the RasterArray class with a file path, xarray.Dataset, or xarray.DataArray.""" + if isinstance(data_input, xr.Dataset): + self.dataset = data_input + elif isinstance(data_input, xr.DataArray): + # Convert DataArray to Dataset + self.dataset = data_input.to_dataset() + elif isinstance(data_input, str): + self.dataset = xr.open_dataset(data_input) + elif isinstance(data_input, list): + from rime.utils import remove_ssp_from_ds + + self.dataset = xr.open_mfdataset(data_input, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gwl" +) + else: + raise ValueError("Input must be an xarray.Dataset, xarray.DataArray, a file path string, or a list of file path strings.") + + self.tidy_rasterdata() # Clean out any unwanted dimensions and coordinates + self._validate_and_adjust_dataset() + self.xrdataset = self.dataset + + + def _validate_and_adjust_dataset(self): + """Validate and adjust the dataset dimensions and coordinates as per requirements.""" + # Convert all dimension names to lowercase to standardize + self.dataset = self.dataset.rename({dim: dim.lower() for dim in self.dataset.dims}) + + # Check dimensions, now using lowercase to ensure case-insensitive comparison + required_dims = ['lat', 'lon', 'gwl',] + missing_dims = [dim for dim in required_dims if dim not in self.dataset.dims] + if missing_dims: + raise ValueError(f"Dataset is missing required dimensions: {missing_dims}") + + # Ensure the length of 'gwl' is greater than 1 + if len(self.dataset['gwl']) <= 1: + raise ValueError("The 'gwl' dimension must have a length greater than 1.") + + # Validate coordinates for 'lat' and 'lon', ensuring they are floats + if not all(isinstance(lat, (float, np.float32, np.float64)) for lat in self.dataset['lat'].values): + raise ValueError("All 'lat' coordinates must be floats.") + if not all(isinstance(lon, (float, np.float32, np.float64)) for lon in self.dataset['lon'].values): + raise ValueError("All 'lon' coordinates must be floats.") + if not all(isinstance(gwl, (float, np.float32, np.float64)) for gwl in self.dataset['gwl'].values): + raise ValueError("All 'gwl' coordinates must be floats.") + # if not all(isinstance(ssp, str) for ssp in self.dataset['ssp'].values): + # raise ValueError("All 'ssp' coordinates should be strings.") + + # Ensure all 'gwl' coordinate values are > 0.5 + if not all(gwl > 0.5 for gwl in self.dataset['gwl'].values): + raise ValueError("All 'gwl' coordinate values must be greater than 0.5.") + + def tidy_rasterdata(self): + """Clean out any unwanted dimensions and coordinates.""" + dvs = self.dataset.data_vars + self.dataset = self.dataset.rename({"threshold": "gwl"}) if "threshold" in self.dataset.dims else self.dataset + self.dataset = self.dataset.rename({"threshold": "gwl"}) if "threshold" in self.dataset.coords else self.dataset + self.dataset = self.dataset.rename({"gmt": "gwl"}) if "gmt" in self.dataset.dims else self.dataset + print(self.dataset.dims) + self.dataset = self.dataset.set_index({"lon": "lon", "lat": "lat", "gwl": "gwl"}).reset_coords() + self.dataset = self.dataset.sortby("gwl") + self.dataset = self.dataset.drop_vars([x for x in self.dataset.data_vars if x not in dvs]) + + + def __repr__(self): + """String representation of the dataset for quick inspection.""" + return repr(self.dataset) + +class GMTPathway: + """ + A class for processing global mean temperature pathways from input data files or existing dataframes, + with a focus on filtering and analyzing temperature-related variables. + + The class supports input data in the form of a CSV or Excel file path, or an existing `pyam.IamDataFrame`. + It determines the appropriate temperature variables to filter on, either automatically (if there's only one unique variable in the input data) + or based on user specification. The class also uses the `ssp_helper` function from `rime.utils` for further data processing. + + Attributes: + data_input (str or pyam.IamDataFrame): The input data source, which can be a file path (CSV or Excel) or an existing `pyam.IamDataFrame`. + temperature_variable (str or list of str, optional): The name(s) of the temperature variable(s) to filter on. + If not provided and the input data contains multiple variables, an error is raised. + ssp_meta_col (str, optional): The metadata column name used in the `ssp_helper` function to identify the SSP of scenarios. Defaults to "Ssp_family". + default_ssp (str, optional): The default SSP scenario to use in the `ssp_helper` function if none is specified in the data. Defaults to "SSP2". This is needed when using exposure and vulnerability data. + df (pyam.IamDataFrame): The processed `IamDataFrame` after filtering based on temperature variables and applying the `ssp_helper` function. + + Methods: + _load_dataframe(): Loads the input data into a `pyam.IamDataFrame`, automatically detecting the file type if a file path is provided. + _ensure_temperature_variable(): Validates the existence of specified temperature variables in the dataframe, raising an error if any are missing. + _process_dataframe(): Filters the dataframe based on specified temperature variables and applies the `ssp_helper` function for further processing. + + Raises: + ValueError: If the input data type is unsupported, or if specified temperature variables are not found in the dataframe variables. + + Example: + >>> gmt_pathway = GMTPathway('path/to/data.csv', temperature_variable=['Surface Temperature'], ssp_meta_col='Scenario Family', default_ssp='SSP3') + >>> print(gwl_pathway.df) # Display the processed IamDataFrame + """ + def __init__(self, data_input, temperature_variable=None, ssp_meta_col="Ssp_family", default_ssp="SSP2"): + self.data_input = data_input + self.temperature_variable = temperature_variable + self.ssp_meta_col = ssp_meta_col + self.default_ssp = default_ssp + self.df = self._load_dataframe() + self._process_dataframe() + self._ensure_temperature_variable() + self.index = self.df.index + self.meta = self.df.meta + + # if len(self.df.meta==0): + # raise ValueError("Empty dataframe.") + + def _load_dataframe(self): + """Load the input file into a pyam.IamDataFrame.""" + if isinstance(self.data_input, pyam.IamDataFrame): + return self.data_input + elif self.data_input.endswith(('.xlsx', '.xls', 'csv')): + return pyam.IamDataFrame(self.data_input) + else: + raise ValueError("Unsupported type. Please provide a pyam.IamDataFrame, CSV or Excel file.") + + def _process_dataframe(self): + """Filter the dataframe based on the temperature variable and apply the ssp_helper function.""" + print(self.temperature_variable) + + unique_vars = self.df.variable + if isinstance(self.temperature_variable, (str, list)): + print(f'Temperature_variable(s) provided: {self.temperature_variable}') + + # 1 variable provided + # Determine temperature_variable based on the unique values in the 'variable' column + elif len(unique_vars) == 1 and self.temperature_variable is None: + self.temperature_variable = unique_vars + print('Only one variable detected - assuming that this is a temperature pathway') + + # more than 1 provided and none specified - raise error + elif len(unique_vars) > 1 and self.temperature_variable is None: + print(unique_vars) + print('case21') + raise ValueError("Multiple variables found. Please specify the temperature_variable(s) as str or list of strings.") + else: + raise ValueError("iiidunnoo1") + + if self.temperature_variable is not None: + + filtered_df = self.df.filter(variable=self.temperature_variable) + self.df = ssp_helper(filtered_df, self.ssp_meta_col, self.default_ssp) # Use imported ssp_helper + # print('case31') + + else: + print(len(self.df.variable)) + # print('case41') + raise ValueError("fucked1") + + def _ensure_temperature_variable(self): + variables = self.df.variable + if isinstance(self.temperature_variable, list): + missing_vars = [var for var in self.temperature_variable if var not in variables] + if missing_vars: + raise ValueError(f"Specified temperature variables {missing_vars} not found in dataframe variables.") + elif isinstance(self.temperature_variable, str): + if self.temperature_variable not in variables: + raise ValueError(f"Specified temperature variable '{self.temperature_variable}' not found in dataframe variables.") + else: + raise ValueError("temperature_variable must be a string or a list of strings.") + + def __repr__(self): + """String representation of the processed IamDataFrame for quick inspection.""" + return repr(self.df) + + diff --git a/rime/generate_aggregated_inputs.py b/rime/generate_aggregated_inputs.py index 5a9500a..7e80701 100644 --- a/rime/generate_aggregated_inputs.py +++ b/rime/generate_aggregated_inputs.py @@ -107,8 +107,8 @@ df = df.timeseries().reset_index() df.dropna(how="all", inplace=True) - df[["SSP", "GMT"]] = df.scenario.str.split("_", expand=True) - df["GMT"] = df["GMT"].str.replace("p", ".").astype("float") + df[["SSP", "GWL"]] = df.scenario.str.split("_", expand=True) + df["GWL"] = df["GWL"].str.replace("p", ".").astype("float") # df.drop(columns=['model', 'scenario'], inplace=True) @@ -129,7 +129,7 @@ print("alive bar present") # Apply function here for vari in small_vars: - df_ind = loop_interpolate_gmt( + df_ind = loop_interpolate_gwl( df.loc[df.variable.str.startswith(vari)], yr_start, yr_end ) # dfbig = pd.concat([dfbig, df_ind]) @@ -146,7 +146,7 @@ "region", "unit", "SSP", - "GMT", + "GWL", ], value_vars=years, var_name="year", @@ -160,7 +160,7 @@ print(indicator) dx = ( dfp.loc[dfp.variable == indicator] - .set_index(["gmt", "year", "ssp", "region"]) + .set_index(["gwl", "year", "ssp", "region"]) .to_xarray() ) # dx.attrs['unit'] = dx.assign_coords({'unit':dx.unit.values[0,0,0,0]}) diff --git a/rime/pp_combined_example.ipynb b/rime/pp_combined_example.ipynb index 82bd19a..ea26041 100644 --- a/rime/pp_combined_example.ipynb +++ b/rime/pp_combined_example.ipynb @@ -10,664 +10,30 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 29, "id": "553e322c", "metadata": {}, "outputs": [ { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - " var py_version = '3.3.4'.replace('rc', '-rc.').replace('.dev', '-dev.');\n", - " var reloading = false;\n", - " var Bokeh = root.Bokeh;\n", - "\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks;\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - " if (js_modules == null) js_modules = [];\n", - " if (js_exports == null) js_exports = {};\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - "\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " if (!reloading) {\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " }\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - " window._bokeh_on_load = on_load\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " var skip = [];\n", - " if (window.requirejs) {\n", - " window.requirejs.config({'packages': {}, 'paths': {'jspanel': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/jspanel', 'jspanel-modal': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal', 'jspanel-tooltip': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip', 'jspanel-hint': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint', 'jspanel-layout': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout', 'jspanel-contextmenu': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu', 'jspanel-dock': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock', 'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@7.2.3/dist/gridstack-all', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'jspanel': {'exports': 'jsPanel'}, 'gridstack': {'exports': 'GridStack'}}});\n", - " require([\"jspanel\"], function(jsPanel) {\n", - "\twindow.jsPanel = jsPanel\n", - "\ton_load()\n", - " })\n", - " require([\"jspanel-modal\"], function() {\n", - "\ton_load()\n", - " })\n", - " require([\"jspanel-tooltip\"], function() {\n", - "\ton_load()\n", - " })\n", - " require([\"jspanel-hint\"], function() {\n", - "\ton_load()\n", - " })\n", - " require([\"jspanel-layout\"], function() {\n", - "\ton_load()\n", - " })\n", - " require([\"jspanel-contextmenu\"], function() {\n", - "\ton_load()\n", - " })\n", - " require([\"jspanel-dock\"], function() {\n", - "\ton_load()\n", - " })\n", - " require([\"gridstack\"], function(GridStack) {\n", - "\twindow.GridStack = GridStack\n", - "\ton_load()\n", - " })\n", - " require([\"notyf\"], function() {\n", - "\ton_load()\n", - " })\n", - " root._bokeh_is_loading = css_urls.length + 9;\n", - " } else {\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n", - " }\n", - "\n", - " var existing_stylesheets = []\n", - " var links = document.getElementsByTagName('link')\n", - " for (var i = 0; i < links.length; i++) {\n", - " var link = links[i]\n", - " if (link.href != null) {\n", - "\texisting_stylesheets.push(link.href)\n", - " }\n", - " }\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " if (existing_stylesheets.indexOf(url) !== -1) {\n", - "\ton_load()\n", - "\tcontinue;\n", - " }\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " } if (((window['jsPanel'] !== undefined) && (!(window['jsPanel'] instanceof HTMLElement))) || window.requirejs) {\n", - " var urls = ['https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/jspanel.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock.js'];\n", - " for (var i = 0; i < urls.length; i++) {\n", - " skip.push(urls[i])\n", - " }\n", - " } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n", - " var urls = ['https://cdn.holoviz.org/panel/1.3.8/dist/bundled/gridstack/gridstack@7.2.3/dist/gridstack-all.js'];\n", - " for (var i = 0; i < urls.length; i++) {\n", - " skip.push(urls[i])\n", - " }\n", - " } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n", - " var urls = ['https://cdn.holoviz.org/panel/1.3.8/dist/bundled/notificationarea/notyf@3/notyf.min.js'];\n", - " for (var i = 0; i < urls.length; i++) {\n", - " skip.push(urls[i])\n", - " }\n", - " } var existing_scripts = []\n", - " var scripts = document.getElementsByTagName('script')\n", - " for (var i = 0; i < scripts.length; i++) {\n", - " var script = scripts[i]\n", - " if (script.src != null) {\n", - "\texisting_scripts.push(script.src)\n", - " }\n", - " }\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n", - "\tif (!window.requirejs) {\n", - "\t on_load();\n", - "\t}\n", - "\tcontinue;\n", - " }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " for (var i = 0; i < js_modules.length; i++) {\n", - " var url = js_modules[i];\n", - " if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n", - "\tif (!window.requirejs) {\n", - "\t on_load();\n", - "\t}\n", - "\tcontinue;\n", - " }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " element.type = \"module\";\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " for (const name in js_exports) {\n", - " var url = js_exports[name];\n", - " if (skip.indexOf(url) >= 0 || root[name] != null) {\n", - "\tif (!window.requirejs) {\n", - "\t on_load();\n", - "\t}\n", - "\tcontinue;\n", - " }\n", - " var element = document.createElement('script');\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.type = \"module\";\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " element.textContent = `\n", - " import ${name} from \"${url}\"\n", - " window.${name} = ${name}\n", - " window._bokeh_on_load()\n", - " `\n", - " document.head.appendChild(element);\n", - " }\n", - " if (!js_urls.length && !js_modules.length) {\n", - " on_load()\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.3.4.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.3.4.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.3.4.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.3.4.min.js\", \"https://cdn.holoviz.org/panel/1.3.8/dist/panel.min.js\"];\n", - " var js_modules = [];\n", - " var js_exports = {};\n", - " var css_urls = [];\n", - " var inline_js = [ function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - "function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - "\ttry {\n", - " inline_js[i].call(root, root.Bokeh);\n", - "\t} catch(e) {\n", - "\t if (!reloading) {\n", - "\t throw e;\n", - "\t }\n", - "\t}\n", - " }\n", - " // Cache old bokeh versions\n", - " if (Bokeh != undefined && !reloading) {\n", - "\tvar NewBokeh = root.Bokeh;\n", - "\tif (Bokeh.versions === undefined) {\n", - "\t Bokeh.versions = new Map();\n", - "\t}\n", - "\tif (NewBokeh.version !== Bokeh.version) {\n", - "\t Bokeh.versions.set(NewBokeh.version, NewBokeh)\n", - "\t}\n", - "\troot.Bokeh = Bokeh;\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " }\n", - " root._bokeh_is_initializing = false\n", - " }\n", - "\n", - " function load_or_wait() {\n", - " // Implement a backoff loop that tries to ensure we do not load multiple\n", - " // versions of Bokeh and its dependencies at the same time.\n", - " // In recent versions we use the root._bokeh_is_initializing flag\n", - " // to determine whether there is an ongoing attempt to initialize\n", - " // bokeh, however for backward compatibility we also try to ensure\n", - " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n", - " // before older versions are fully initialized.\n", - " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n", - " root._bokeh_is_initializing = false;\n", - " root._bokeh_onload_callbacks = undefined;\n", - " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n", - " load_or_wait();\n", - " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n", - " setTimeout(load_or_wait, 100);\n", - " } else {\n", - " root._bokeh_is_initializing = true\n", - " root._bokeh_onload_callbacks = []\n", - " var bokeh_loaded = Bokeh != null && (Bokeh.version === py_version || (Bokeh.versions !== undefined && Bokeh.versions.has(py_version)));\n", - " if (!reloading && !bokeh_loaded) {\n", - "\troot.Bokeh = undefined;\n", - " }\n", - " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n", - "\tconsole.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - "\trun_inline_js();\n", - " });\n", - " }\n", - " }\n", - " // Give older versions of the autoload script a head-start to ensure\n", - " // they initialize before we start loading newer version.\n", - " setTimeout(load_or_wait, 100)\n", - "}(window));" - ], - "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n var py_version = '3.3.4'.replace('rc', '-rc.').replace('.dev', '-dev.');\n var reloading = false;\n var Bokeh = root.Bokeh;\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n run_callbacks();\n return null;\n }\n if (!reloading) {\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'jspanel': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/jspanel', 'jspanel-modal': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal', 'jspanel-tooltip': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip', 'jspanel-hint': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint', 'jspanel-layout': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout', 'jspanel-contextmenu': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu', 'jspanel-dock': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock', 'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@7.2.3/dist/gridstack-all', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'jspanel': {'exports': 'jsPanel'}, 'gridstack': {'exports': 'GridStack'}}});\n require([\"jspanel\"], function(jsPanel) {\n\twindow.jsPanel = jsPanel\n\ton_load()\n })\n require([\"jspanel-modal\"], function() {\n\ton_load()\n })\n require([\"jspanel-tooltip\"], function() {\n\ton_load()\n })\n require([\"jspanel-hint\"], function() {\n\ton_load()\n })\n require([\"jspanel-layout\"], function() {\n\ton_load()\n })\n require([\"jspanel-contextmenu\"], function() {\n\ton_load()\n })\n require([\"jspanel-dock\"], function() {\n\ton_load()\n })\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 9;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n var existing_stylesheets = []\n var links = document.getElementsByTagName('link')\n for (var i = 0; i < links.length; i++) {\n var link = links[i]\n if (link.href != null) {\n\texisting_stylesheets.push(link.href)\n }\n }\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n if (existing_stylesheets.indexOf(url) !== -1) {\n\ton_load()\n\tcontinue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } if (((window['jsPanel'] !== undefined) && (!(window['jsPanel'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/jspanel.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu.js', 'https://cdn.holoviz.org/panel/1.3.8/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.3.8/dist/bundled/gridstack/gridstack@7.2.3/dist/gridstack-all.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.3.8/dist/bundled/notificationarea/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } var existing_scripts = []\n var scripts = document.getElementsByTagName('script')\n for (var i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n\texisting_scripts.push(script.src)\n }\n }\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n var url = js_exports[name];\n if (skip.indexOf(url) >= 0 || root[name] != null) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.3.4.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.3.4.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.3.4.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.3.4.min.js\", \"https://cdn.holoviz.org/panel/1.3.8/dist/panel.min.js\"];\n var js_modules = [];\n var js_exports = {};\n var css_urls = [];\n var inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n\ttry {\n inline_js[i].call(root, root.Bokeh);\n\t} catch(e) {\n\t if (!reloading) {\n\t throw e;\n\t }\n\t}\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n\tvar NewBokeh = root.Bokeh;\n\tif (Bokeh.versions === undefined) {\n\t Bokeh.versions = new Map();\n\t}\n\tif (NewBokeh.version !== Bokeh.version) {\n\t Bokeh.versions.set(NewBokeh.version, NewBokeh)\n\t}\n\troot.Bokeh = Bokeh;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n var bokeh_loaded = Bokeh != null && (Bokeh.version === py_version || (Bokeh.versions !== undefined && Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n\troot.Bokeh = undefined;\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n\tconsole.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n\trun_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", - " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", - "}\n", - "\n", - "\n", - " function JupyterCommManager() {\n", - " }\n", - "\n", - " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", - " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", - " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", - " comm_manager.register_target(comm_id, function(comm) {\n", - " comm.on_msg(msg_handler);\n", - " });\n", - " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", - " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", - " comm.onMsg = msg_handler;\n", - " });\n", - " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", - " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", - " var messages = comm.messages[Symbol.asyncIterator]();\n", - " function processIteratorResult(result) {\n", - " var message = result.value;\n", - " console.log(message)\n", - " var content = {data: message.data, comm_id};\n", - " var buffers = []\n", - " for (var buffer of message.buffers || []) {\n", - " buffers.push(new DataView(buffer))\n", - " }\n", - " var metadata = message.metadata || {};\n", - " var msg = {content, buffers, metadata}\n", - " msg_handler(msg);\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " return messages.next().then(processIteratorResult);\n", - " })\n", - " }\n", - " }\n", - "\n", - " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", - " if (comm_id in window.PyViz.comms) {\n", - " return window.PyViz.comms[comm_id];\n", - " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", - " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", - " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", - " if (msg_handler) {\n", - " comm.on_msg(msg_handler);\n", - " }\n", - " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", - " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", - " comm.open();\n", - " if (msg_handler) {\n", - " comm.onMsg = msg_handler;\n", - " }\n", - " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", - " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", - " comm_promise.then((comm) => {\n", - " window.PyViz.comms[comm_id] = comm;\n", - " if (msg_handler) {\n", - " var messages = comm.messages[Symbol.asyncIterator]();\n", - " function processIteratorResult(result) {\n", - " var message = result.value;\n", - " var content = {data: message.data};\n", - " var metadata = message.metadata || {comm_id};\n", - " var msg = {content, metadata}\n", - " msg_handler(msg);\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " }) \n", - " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", - " return comm_promise.then((comm) => {\n", - " comm.send(data, metadata, buffers, disposeOnDone);\n", - " });\n", - " };\n", - " var comm = {\n", - " send: sendClosure\n", - " };\n", - " }\n", - " window.PyViz.comms[comm_id] = comm;\n", - " return comm;\n", - " }\n", - " window.PyViz.comm_manager = new JupyterCommManager();\n", - " \n", - "\n", - "\n", - "var JS_MIME_TYPE = 'application/javascript';\n", - "var HTML_MIME_TYPE = 'text/html';\n", - "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", - "var CLASS_NAME = 'output';\n", - "\n", - "/**\n", - " * Render data to the DOM node\n", - " */\n", - "function render(props, node) {\n", - " var div = document.createElement(\"div\");\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(div);\n", - " node.appendChild(script);\n", - "}\n", - "\n", - "/**\n", - " * Handle when a new output is added\n", - " */\n", - "function handle_add_output(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - " if (id !== undefined) {\n", - " var nchildren = toinsert.length;\n", - " var html_node = toinsert[nchildren-1].children[0];\n", - " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var scripts = [];\n", - " var nodelist = html_node.querySelectorAll(\"script\");\n", - " for (var i in nodelist) {\n", - " if (nodelist.hasOwnProperty(i)) {\n", - " scripts.push(nodelist[i])\n", - " }\n", - " }\n", - "\n", - " scripts.forEach( function (oldScript) {\n", - " var newScript = document.createElement(\"script\");\n", - " var attrs = [];\n", - " var nodemap = oldScript.attributes;\n", - " for (var j in nodemap) {\n", - " if (nodemap.hasOwnProperty(j)) {\n", - " attrs.push(nodemap[j])\n", - " }\n", - " }\n", - " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", - " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", - " oldScript.parentNode.replaceChild(newScript, oldScript);\n", - " });\n", - " if (JS_MIME_TYPE in output.data) {\n", - " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", - " }\n", - " output_area._hv_plot_id = id;\n", - " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", - " window.PyViz.plot_index[id] = Bokeh.index[id];\n", - " } else {\n", - " window.PyViz.plot_index[id] = null;\n", - " }\n", - " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - "}\n", - "\n", - "/**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - "function handle_clear_output(event, handle) {\n", - " var id = handle.cell.output_area._hv_plot_id;\n", - " var server_id = handle.cell.output_area._bokeh_server_id;\n", - " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", - " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", - " if (server_id !== null) {\n", - " comm.send({event_type: 'server_delete', 'id': server_id});\n", - " return;\n", - " } else if (comm !== null) {\n", - " comm.send({event_type: 'delete', 'id': id});\n", - " }\n", - " delete PyViz.plot_index[id];\n", - " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", - " var doc = window.Bokeh.index[id].model.document\n", - " doc.clear();\n", - " const i = window.Bokeh.documents.indexOf(doc);\n", - " if (i > -1) {\n", - " window.Bokeh.documents.splice(i, 1);\n", - " }\n", - " }\n", - "}\n", - "\n", - "/**\n", - " * Handle kernel restart event\n", - " */\n", - "function handle_kernel_cleanup(event, handle) {\n", - " delete PyViz.comms[\"hv-extension-comm\"];\n", - " window.PyViz.plot_index = {}\n", - "}\n", - "\n", - "/**\n", - " * Handle update_display_data messages\n", - " */\n", - "function handle_update_output(event, handle) {\n", - " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n", - " handle_add_output(event, handle)\n", - "}\n", - "\n", - "function register_renderer(events, OutputArea) {\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[0]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " events.on('output_added.OutputArea', handle_add_output);\n", - " events.on('output_updated.OutputArea', handle_update_output);\n", - " events.on('clear_output.CodeCell', handle_clear_output);\n", - " events.on('delete.Cell', handle_clear_output);\n", - " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n", - "\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " safe: true,\n", - " index: 0\n", - " });\n", - "}\n", - "\n", - "if (window.Jupyter !== undefined) {\n", - " try {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " } catch(err) {\n", - " }\n", - "}\n" - ], - "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.holoviews_exec.v0+json": "", - "text/html": [ - "
\n", - "
\n", - "
\n", - "" - ] - }, - "metadata": { - "application/vnd.holoviews_exec.v0+json": { - "id": "p1002" - } - }, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "if (typeof IPython !== 'undefined') { IPython.OutputArea.prototype._should_scroll = function(lines){ return false; }}" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "The autoreload extension is already loaded. To reload it, use:\n", + " %reload_ext autoreload\n" + ] } ], "source": [ + "%load_ext autoreload\n", + "%autoreload 2\n", "from rime.process_config import *\n", "from rime.rime_functions import *\n", "from rime.utils import *\n", + "from rime.core import GMTPathway\n", + "from rime.core import RasterArray\n", + "from rime.core import RegionArray\n", + "\n", + "\n", "\n", "import dask\n", "import dask.dataframe as dd\n", @@ -693,7 +59,6 @@ "metadata": {}, "outputs": [], "source": [ - "\n", "# Load a yaml file that will help select multiple climate indicator files (not necessarily needed)\n", "with open(\"indicator_params.yml\", \"r\") as f:\n", " params = yaml.full_load(f)" @@ -708,7 +73,7 @@ "source": [ "dask.config.set(scheduler=\"processes\")\n", "dask.config.set(num_workers=num_workers)\n", - "# client = Client() # uncomment this to open Dask client" + "client = Client() # uncomment this to open Dask client" ] }, { @@ -726,15 +91,15 @@ "source": [ "### Import scenarios data\n", "\n", - "Load an IAMC scenarios dataset. \n", - "Decide whether using global mean temperature or CO2 mode. \n", + "Load an IAMC scenarios dataset. We can use the one that comes with the package.\n", + "Filter for IPCC IMP and core IMAGE SSP scenarios.\n", "Assign SSPs if missing and fix duplicate temperatures. " ] }, { "cell_type": "code", "execution_count": 4, - "id": "4b0e602b", + "id": "0f6cae87-9717-4304-b841-5d61e87b55d3", "metadata": {}, "outputs": [ { @@ -742,103 +107,49 @@ "output_type": "stream", "text": [ "pyam - INFO: Running in a notebook, setting up a basic logging at level INFO\n", - "pyam.core - INFO: Reading file emissions_temp_AR6_small.xlsx\n", - "/home/byers/py311/lib/python3.10/site-packages/pyam/core.py:2692: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + "pyam.core - INFO: Reading file test_data/emissions_temp_AR6_small.xlsx\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/utils.py:347: FutureWarning: The previous implementation of stack is deprecated and will be removed in a future version of pandas. See the What's New notes for pandas 2.1.0 for details. Specify future_stack=True to adopt the new implementation and silence this warning.\n", + " df.set_index(index + REQUIRED_COLS + extra_cols)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", " index = pd.unique(index)\n", - "pyam.core - INFO: Reading meta indicators\n", - "/home/byers/py311/lib/python3.10/site-packages/pyam/core.py:2692: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", - " index = pd.unique(index)\n", - "/home/byers/rime/rime/utils.py:92: FutureWarning: A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.\n", - "The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.\n", - "\n", - "For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.\n", - "\n", - "\n", - " dft[ssp_meta_col].replace(\n", - "/home/byers/py311/lib/python3.10/site-packages/pyam/core.py:2692: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", - " index = pd.unique(index)\n" + "pyam.core - INFO: Reading meta indicators\n" ] - } - ], - "source": [ - "df_scens_in = pyam.IamDataFrame(fname_input_scenarios)\n", - "dft = df_scens_in.filter(variable=temp_variable)\n", - "\n", - "# Replace & fill missing SSP scenario allocation\n", - "dft = ssp_helper(dft, ssp_meta_col=\"Ssp_family\", default_ssp=\"SSP2\")" - ] - }, - { - "cell_type": "markdown", - "id": "cfa7b099-a70c-4d72-953a-4467e8e8ffcc", - "metadata": {}, - "source": [ - "### Build a dataset to compare SSPs and IMPs" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "0f6cae87-9717-4304-b841-5d61e87b55d3", - "metadata": {}, - "outputs": [ + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile\n", + "Temperature_variable(s) provided: AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile\n" + ] + }, { "name": "stderr", "output_type": "stream", "text": [ - "/home/byers/py311/lib/python3.10/site-packages/pyam/core.py:2692: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", " index = pd.unique(index)\n", - "/home/byers/py311/lib/python3.10/site-packages/pyam/core.py:2692: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", " index = pd.unique(index)\n", - "/home/byers/rime/rime/utils.py:92: FutureWarning: A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.\n", - "The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.\n", - "\n", - "For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.\n", - "\n", - "\n", - " dft[ssp_meta_col].replace(\n", - "/home/byers/py311/lib/python3.10/site-packages/pyam/core.py:2692: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", " index = pd.unique(index)\n" ] - }, - { - "data": { - "text/plain": [ - "\n", - "Index:\n", - " * model : COFFEE 1.1, GCAM 5.3, IMAGE 3.0, IMAGE 3.0.1, ... WITCH 5.0 (6)\n", - " * scenario : CO_Bridge, EN_INDCi2030_3000f, ... SusDev_SDP-PkBudg1000 (9)\n", - "Timeseries data coordinates:\n", - " region : World (1)\n", - " variable : ... (1)\n", - " unit : K (1)\n", - " year : 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, ... 2100 (86)\n", - "Meta indicators:\n", - " Category (object) C3, C7, C6, C8, C1 (5)\n", - " Category_name (object) C3: limit warming to 2°C (>67%), ... (5)\n", - " Category_subset (object) C3x_NZGHGs, C7, C6, C8, C1a_NZGHGs (5)\n", - " Subset_Ch4 (object) Limit to 2C (>67%) immediate 2020 action, ... (3)\n", - " Category_Vetting_historical (object) C3, C7, C6, C8, C1 (5)\n", - " ..." - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" } ], "source": [ + "df_scens_in = pyam.IamDataFrame('test_data/emissions_temp_AR6_small.xlsx')\n", "scenarios = [\"SSP1-26\", \"SSP2-45\", \"SSP3-Baseline\", \"SSP5-Baseline\"]\n", "variable = (\n", " \"AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile\"\n", ")\n", - "ssps = df_scens_in.filter(scenario=scenarios, model=\"IMAGE*\", variable=variable)\n", + "ssps = df_scens_in.filter(scenario=scenarios, model=\"IMAGE*\")#, variable=variable)\n", "imps = df_scens_in.filter(\n", - " IMP_marker=[\"CurPol\", \"ModAct\", \"SP\", \"GS\", \"Neg\"], variable=variable\n", - ") # ,'Ren-2.0','Neg-2.0'\n", + " IMP_marker=[\"CurPol\", \"ModAct\", \"SP\", \"GS\", \"Neg\"])#, variable=variable) # ,'Ren-2.0','Neg-2.0'\n", "ssps_imp = ssps.append(imps)\n", - "ssps_imp = ssp_helper(ssps_imp, ssp_meta_col=\"Ssp_family\", default_ssp=\"SSP2\")\n", - "ssps_imp" + "# ssps_imp = ssp_helper(ssps_imp, ssp_meta_col=\"Ssp_family\", default_ssp=\"SSP2\")\n", + "ssps_imp = GMTPathway(ssps_imp, temperature_variable=variable)" ] }, { @@ -859,91 +170,247 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 44, "id": "256391d3-798f-4c63-b5b8-0f3b2e1da325", "metadata": {}, "outputs": [], "source": [ - "# Requires some configuration - need to download the data from https://zenodo.org/records/10212339, and set the file paths in the file process_config.py" + "# Requires some configuration -\n", + "# Either use the existing test data in the repo or download the full data from https://zenodo.org/records/10212339, and set the file paths in the file process_config.py" ] }, { "cell_type": "code", - "execution_count": 7, - "id": "f4c31c82", + "execution_count": 9, + "id": "cb9a7897-1964-4349-b2e3-7928b8c9ae1c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Test multiple IAM scenarios, 1 indicator\n" + "FrozenMappingWarningOnValuesAccess({'lon': 720, 'lat': 360, 'gwl': 5})\n" ] }, { - "ename": "OSError", - "evalue": "no files to open", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[7], line 14\u001b[0m\n\u001b[1;32m 10\u001b[0m ssp \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mssp2\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 13\u001b[0m files \u001b[38;5;241m=\u001b[39m glob\u001b[38;5;241m.\u001b[39mglob(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mimpact_data_dir\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;130;01m\\\\\u001b[39;00m\u001b[38;5;132;01m{\u001b[39;00mind\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;130;01m\\\\\u001b[39;00m\u001b[38;5;124m*\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mshort\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mssp\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m*\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mftype\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.nc4\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m---> 14\u001b[0m mapdata \u001b[38;5;241m=\u001b[39m \u001b[43mxr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_mfdataset\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 15\u001b[0m \u001b[43m \u001b[49m\u001b[43mfiles\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpreprocess\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mremove_ssp_from_ds\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcombine\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mnested\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconcat_dim\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mgmt\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\n\u001b[1;32m 16\u001b[0m \u001b[43m)\u001b[49m\n\u001b[1;32m 18\u001b[0m mapdata \u001b[38;5;241m=\u001b[39m tidy_mapdata(mapdata)\n\u001b[1;32m 20\u001b[0m map_out_MS \u001b[38;5;241m=\u001b[39m map_transform_gmt_wrapper(\n\u001b[1;32m 21\u001b[0m ssps_imp,\n\u001b[1;32m 22\u001b[0m mapdata,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 29\u001b[0m interpolation\u001b[38;5;241m=\u001b[39minterpolation,\n\u001b[1;32m 30\u001b[0m )\n", - "File \u001b[0;32m~/py311/lib/python3.10/site-packages/xarray/backends/api.py:990\u001b[0m, in \u001b[0;36mopen_mfdataset\u001b[0;34m(paths, chunks, concat_dim, compat, preprocess, engine, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 987\u001b[0m paths \u001b[38;5;241m=\u001b[39m _find_absolute_paths(paths, engine\u001b[38;5;241m=\u001b[39mengine, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 989\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m paths:\n\u001b[0;32m--> 990\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mno files to open\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 992\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m combine \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnested\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 993\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(concat_dim, (\u001b[38;5;28mstr\u001b[39m, DataArray)) \u001b[38;5;129;01mor\u001b[39;00m concat_dim \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", - "\u001b[0;31mOSError\u001b[0m: no files to open" + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/rime/rime/core.py:114: UserWarning: rename 'threshold' to 'gwl' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " self.dataset = self.dataset.rename({\"threshold\": \"gwl\"}) if \"threshold\" in self.dataset.coords else self.dataset\n" ] + }, + { + "data": { + "text/plain": [ + " Size: 10MB\n", + "Dimensions: (lon: 720, lat: 360, gwl: 5)\n", + "Coordinates:\n", + " * lon (lon) float32 3kB -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n", + " * lat (lat) float32 1kB 89.75 89.25 88.75 88.25 ... -88.75 -89.25 -89.75\n", + " * gwl (gwl) float64 40B 1.2 1.5 2.0 2.5 3.0\n", + "Data variables:\n", + " dri_qtot (gwl, lat, lon) float64 10MB dask.array" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "# Doesn't work -0\n", - "# ValueError: 'threshold' is not present in all datasets.\n", - "\n", - "print(\"Test multiple IAM scenarios, 1 indicator\")\n", - "start = time.time()\n", + "# load data from test data within repo\n", "\n", - "ind = \"precip\"\n", - "var = \"sdii\"\n", - "short = \"sdii\" # params[\"indicators\"][ind][var][\"short_name\"]\n", "ssp = \"ssp2\"\n", + "ftype = \"abs\"\n", + "impact_data_dir = 'test_data' # test data in the repo\n", + "ind = 'dri_qtot'\n", + "files = glob.glob(f\"{impact_data_dir}/*{ind}_*{ftype}.nc4\")\n", "\n", + "mapdata = RasterArray(files)\n", + "mapdata" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "af9212c3-d414-4e6f-b89a-a9d65bd48cbc", + "metadata": {}, + "outputs": [], + "source": [ + "# Prepare data (using split_files on sharepoint)\n", + "# impact_data_dir = '/mnt/c/users/byers/iiasa/ECE.prog - Documents/Research Theme - NEXUS/Hotspots_Explorer_2p0/rcre_testing/rime_testdata'\n", + "# impact_data_dir = 'test_data'\n", + "# # indicators = ['dri','iavar']\n", + "# ind = 'dri_qtot'\n", "\n", - "files = glob.glob(f\"{impact_data_dir}\\\\{ind}\\\\*{short}_{ssp}*{ftype}.nc4\")\n", - "mapdata = xr.open_mfdataset(\n", - " files, preprocess=remove_ssp_from_ds, combine=\"nested\", concat_dim=\"gmt\"\n", - ")\n", + "# files = glob.glob(f\"{impact_data_dir}/*{ind}_*{ftype}.nc4\")\n", + "# mapdata = xr.open_mfdataset(\n", + "# files, preprocess=remove_ssp_from_ds, combine=\"nested\", concat_dim=\"gwl\"\n", + "# )\n", "\n", - "mapdata = tidy_mapdata(mapdata)\n", + "# mapdata.data" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "f4c31c82", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test multiple IAM scenarios, 1 indicator\n", + "Single indicator mode (multi-scenarios possible)\n", + "COFFEE_1_1_EN_NPi2020_400f_lowBECCS\n", + "GCAM_5_3_NGFS2_Current Policies\n", + "IMAGE_3_0_EN_INDCi2030_3000f\n", + "IMAGE_3_0_1_SSP1-26\n", + "IMAGE_3_0_1_SSP2-45\n", + "IMAGE_3_0_1_SSP3-Baseline\n", + "IMAGE_3_0_1_SSP5-Baseline\n", + "REMIND-MAgPIE_2_1-4_2_SusDev_SDP-PkBudg1000\n", + "WITCH_5_0_CO_Bridge\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/setuptools_scm/_integration/setuptools.py:30: RuntimeWarning: \n", + "ERROR: setuptools==59.6.0 is used in combination with setuptools_scm>=8.x\n", + "\n", + "Your build configuration is incomplete and previously worked by accident!\n", + "setuptools_scm requires setuptools>=61\n", + "\n", + "Suggested workaround if applicable:\n", + " - migrating from the deprecated setup_requires mechanism to pep517/518\n", + " and using a pyproject.toml to declare build dependencies\n", + " which are reliably pre-installed before running the build tools\n", + "\n", + " warnings.warn(\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/setuptools_scm/_integration/setuptools.py:30: RuntimeWarning: \n", + "ERROR: setuptools==59.6.0 is used in combination with setuptools_scm>=8.x\n", + "\n", + "Your build configuration is incomplete and previously worked by accident!\n", + "setuptools_scm requires setuptools>=61\n", + "\n", + "Suggested workaround if applicable:\n", + " - migrating from the deprecated setup_requires mechanism to pep517/518\n", + " and using a pyproject.toml to declare build dependencies\n", + " which are reliably pre-installed before running the build tools\n", + "\n", + " warnings.warn(\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/setuptools_scm/_integration/setuptools.py:30: RuntimeWarning: \n", + "ERROR: setuptools==59.6.0 is used in combination with setuptools_scm>=8.x\n", + "\n", + "Your build configuration is incomplete and previously worked by accident!\n", + "setuptools_scm requires setuptools>=61\n", + "\n", + "Suggested workaround if applicable:\n", + " - migrating from the deprecated setup_requires mechanism to pep517/518\n", + " and using a pyproject.toml to declare build dependencies\n", + " which are reliably pre-installed before running the build tools\n", + "\n", + " warnings.warn(\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/setuptools_scm/_integration/setuptools.py:30: RuntimeWarning: \n", + "ERROR: setuptools==59.6.0 is used in combination with setuptools_scm>=8.x\n", + "\n", + "Your build configuration is incomplete and previously worked by accident!\n", + "setuptools_scm requires setuptools>=61\n", + "\n", + "Suggested workaround if applicable:\n", + " - migrating from the deprecated setup_requires mechanism to pep517/518\n", + " and using a pyproject.toml to declare build dependencies\n", + " which are reliably pre-installed before running the build tools\n", + "\n", + " warnings.warn(\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/rime/rime/rime_functions.py:317: UserWarning: rename 'gwl' to 'year' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " updated_data = updated_data.rename({\"gwl\":\"year\"})\n", + "/home/byers/rime/rime/rime_functions.py:317: UserWarning: rename 'gwl' to 'year' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " updated_data = updated_data.rename({\"gwl\":\"year\"})\n", + "/home/byers/rime/rime/rime_functions.py:317: UserWarning: rename 'gwl' to 'year' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " updated_data = updated_data.rename({\"gwl\":\"year\"})\n", + "/home/byers/rime/rime/rime_functions.py:317: UserWarning: rename 'gwl' to 'year' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " updated_data = updated_data.rename({\"gwl\":\"year\"})\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FINISHED Test multiple scenarios, 1 indicator\n", + "7.238605499267578\n" + ] + } + ], + "source": [ + "print(\"Test multiple IAM scenarios, 1 indicator\")\n", "\n", - "map_out_MS = map_transform_gmt_wrapper(\n", + "start = time.time()\n", + "\n", + "# Run function\n", + "# Using dask for small numbers of scenarios ~<10 can be slower due to spawning of workers.\n", + "# use_dask=True works, but unintended behavious, only produces data for 1 IAM scenario, not all. Check aggregation\n", + "map_out_MS = map_transform_gwl_wrapper(\n", " ssps_imp,\n", " mapdata,\n", " years,\n", - " use_dask=True,\n", - " gmt_name=\"gmt\",\n", - " temp_min=1.2,\n", - " temp_max=3.5,\n", + " caution_checks=True,\n", + " use_dask=False,\n", + " include_orig_gwl=False,\n", + " gwl_name=\"gwl\",\n", " drawdown_max=0.15,\n", - " interpolation=interpolation,\n", + " temp_min=1.2,\n", + " temp_max=3.0,\n", + " interpolation=0.01,\n", ")\n", "\n", "comp = dict(zlib=True, complevel=5)\n", "encoding = {var: comp for var in map_out_MS.data_vars}\n", - "filename = f\"{output_folder_maps}scenario_maps_multiscenario_{ftype}_test_notebook.nc\"\n", + "filename = f\"scenario_maps_multiscenario_{ftype}_test_notebook.nc\"\n", "map_out_MS.to_netcdf(filename, encoding=encoding)\n", "\n", "print(\"FINISHED Test multiple scenarios, 1 indicator\")\n", "print(f\"{time.time()-start}\")" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "d596a52f-3304-4cbb-b0cb-c86e83e39ecf", - "metadata": {}, - "outputs": [], - "source": [ - "mapdata" - ] - }, { "cell_type": "code", "execution_count": null, @@ -951,7 +418,7 @@ "metadata": {}, "outputs": [], "source": [ - "map_out_MS" + "map_out_MS.COFFEE_1_1_EN_NPi2020_400f_lowBECCS.sel(year=2050).plot()" ] }, { @@ -959,7 +426,7 @@ "id": "f31bf98d", "metadata": {}, "source": [ - "## Example 2: 1 scenario, multiple indicators\n" + "## Example 2: ONE scenario, multiple climate indicators\n" ] }, { @@ -972,7 +439,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 14, "id": "85bab5fb", "metadata": {}, "outputs": [ @@ -980,21 +447,41 @@ "name": "stdout", "output_type": "stream", "text": [ - "Test 1 scenario, multiple indicators\n", - "cdd\n" + "Test 1 scenario, multiple climate indicators\n", + "dri\n", + "FrozenMappingWarningOnValuesAccess({'lon': 720, 'lat': 360, 'gwl': 5})\n", + "iavar\n", + "FrozenMappingWarningOnValuesAccess({'lon': 720, 'lat': 360, 'gwl': 5})\n", + "FrozenMappingWarningOnValuesAccess({'lon': 720, 'lat': 360, 'gwl': 5})\n" ] }, { - "ename": "OSError", - "evalue": "no files to open", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[8], line 30\u001b[0m\n\u001b[1;32m 26\u001b[0m \u001b[38;5;28mprint\u001b[39m(short)\n\u001b[1;32m 27\u001b[0m files \u001b[38;5;241m=\u001b[39m glob\u001b[38;5;241m.\u001b[39mglob(\n\u001b[1;32m 28\u001b[0m os\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mjoin(impact_data_dir, ind, \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m*\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mshort\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mssp\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m*\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mftype\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.nc4\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 29\u001b[0m )\n\u001b[0;32m---> 30\u001b[0m mapdata[short] \u001b[38;5;241m=\u001b[39m \u001b[43mxr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_mfdataset\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 31\u001b[0m \u001b[43m \u001b[49m\u001b[43mfiles\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpreprocess\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mremove_ssp_from_ds\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcombine\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mnested\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconcat_dim\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mgmt\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\n\u001b[1;32m 32\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m[short]\n\u001b[1;32m 34\u001b[0m mapdata \u001b[38;5;241m=\u001b[39m tidy_mapdata(mapdata)\n", - "File \u001b[0;32m~/py311/lib/python3.10/site-packages/xarray/backends/api.py:990\u001b[0m, in \u001b[0;36mopen_mfdataset\u001b[0;34m(paths, chunks, concat_dim, compat, preprocess, engine, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 987\u001b[0m paths \u001b[38;5;241m=\u001b[39m _find_absolute_paths(paths, engine\u001b[38;5;241m=\u001b[39mengine, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 989\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m paths:\n\u001b[0;32m--> 990\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mno files to open\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 992\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m combine \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnested\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 993\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(concat_dim, (\u001b[38;5;28mstr\u001b[39m, DataArray)) \u001b[38;5;129;01mor\u001b[39;00m concat_dim \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", - "\u001b[0;31mOSError\u001b[0m: no files to open" + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/rime/rime/core.py:114: UserWarning: rename 'threshold' to 'gwl' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " self.dataset = self.dataset.rename({\"threshold\": \"gwl\"}) if \"threshold\" in self.dataset.coords else self.dataset\n", + "/home/byers/rime/rime/core.py:114: UserWarning: rename 'threshold' to 'gwl' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " self.dataset = self.dataset.rename({\"threshold\": \"gwl\"}) if \"threshold\" in self.dataset.coords else self.dataset\n" ] + }, + { + "data": { + "text/plain": [ + " Size: 16MB\n", + "Dimensions: (lon: 720, lat: 360, gwl: 5)\n", + "Coordinates:\n", + " * lon (lon) float32 3kB -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n", + " * lat (lat) float32 1kB 89.75 89.25 88.75 ... -88.75 -89.25 -89.75\n", + " * gwl (gwl) float64 40B 1.2 1.5 2.0 2.5 3.0\n", + "Data variables:\n", + " dri_qtot (gwl, lat, lon) float64 10MB dask.array\n", + " iavar_qtot (gwl, lat, lon) float32 5MB dask.array" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ @@ -1002,36 +489,29 @@ "# AttributeError: 'DataArray' object has no attribute 'rename_vars'\n", "# lines 230-233 in map_transform_gmt\n", "\n", - "gmt_name = \"gmt\"\n", - "print(\"Test 1 scenario, multiple indicators\")\n", - "start = time.time()\n", + "gwl_name = \"gwl\"\n", + "print(\"Test 1 scenario, multiple climate indicators\")\n", "ssp = \"ssp2\"\n", "mapdata = xr.Dataset()\n", - "indicators = [\n", - " \"cdd\",\n", - " \"precip\",\n", - " \"dri\",\n", - " # \"dri_qtot\",\n", - " # \"ia_var\",\n", - " # \"ia_var_qtot\",\n", - " \"sdd_18p3\",\n", - " \"sdd_24p0\",\n", - " \"seas\",\n", - " \"wsi\",\n", - "] #'heatwave']\n", "\n", + "# impact_data_dir = '/mnt/p/watxene/ISIMIP_postprocessed/cse/split_files_fixed'\n", + "impact_data_dir = 'test_data'\n", + "indicators = ['dri','iavar']\n", "for ind in indicators:\n", - " for var in params[\"indicators\"][ind]:\n", - " short = params[\"indicators\"][ind][var][\"short_name\"]\n", - " print(short)\n", - " files = glob.glob(\n", - " os.path.join(impact_data_dir, ind, f\"*{short}_{ssp}*{ftype}.nc4\")\n", - " )\n", - " mapdata[short] = xr.open_mfdataset(\n", - " files, preprocess=remove_ssp_from_ds, combine=\"nested\", concat_dim=\"gmt\"\n", - " )[short]\n", "\n", - "mapdata = tidy_mapdata(mapdata)" + " print(ind)\n", + " files = glob.glob(f\"{impact_data_dir}/ISI*{ind}*_{ftype}*.nc4\")\n", + " \n", + " # a = xr.open_mfdataset(\n", + " # files, preprocess=remove_ssp_from_ds, combine=\"nested\", concat_dim=\"gwl\")\n", + "\n", + " a = RasterArray(files)\n", + " \n", + " for x in a.xrdataset.data_vars:\n", + " mapdata[x] = a.xrdataset[x]\n", + "\n", + "mapdata = RasterArray(mapdata)\n", + "mapdata" ] }, { @@ -1039,28 +519,67 @@ "id": "cc24e437", "metadata": {}, "source": [ - "### Run transformation (12 impact indicators) (faster with dask=False)" + "### Run transformation (2 impact indicators) (faster with dask=False)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "id": "bd26a126", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n", + "/home/byers/rime/rime/rime_functions.py:317: UserWarning: rename 'gwl' to 'year' does not create an index anymore. Try using swap_dims instead or use set_index after rename to create an indexed coordinate.\n", + " updated_data = updated_data.rename({\"gwl\":\"year\"})\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Single scenario mode, multiple indicators possible\n", + "Warning! Max temperature above 3.0°C 3.05, data thereafter not possible\n", + "Warning! Min temperature below 1.2°C 1.12, data before not possible\n", + "Warning! Provided scenario temperatures are higher than the available climate impacts GWLs. Setting temp_max to 3.0\n", + "Warning! Provided scenario temperatures are lower than the available climate impacts GWLs. Setting temp_min to 1.2\n", + "FINISHED 1 scenario, multiple indicators\n", + "1.7668366432189941\n" + ] + } + ], "source": [ - "map_out_MI = map_transform_gmt_wrapper(\n", - " ssps_imp.filter(IMP_marker=\"CurPol\"),\n", + "# Notes - works with use_dask=False\n", + "# True gives problem that DataArray is being passed to map_transform_gwl instead of DS\n", + "# Approx error L279. mapdata_interp should be a DS\n", + "# Possibly its empty, cannot convert to \n", + "# AttributeError: 'DataArray' object has no attribute 'data_vars'\n", + "\n", + "\n", + "start = time.time()\n", + "map_out_MI = map_transform_gwl_wrapper(\n", + " ssps_imp.df.filter(IMP_marker=\"CurPol\"),\n", " mapdata,\n", " years,\n", " use_dask=False,\n", - " gmt_name=\"gmt\",\n", + " include_orig_gwl=False,\n", + " gwl_name=\"gwl\",\n", + " drawdown_max=0.15,\n", + " temp_min=1.2,\n", + " temp_max=3.0,\n", + " interpolation=0.01,\n", ")\n", "\n", "comp = dict(zlib=True, complevel=5)\n", "encoding = {var: comp for var in map_out_MI.data_vars}\n", - "filename = f\"{output_folder_maps}scenario_maps_multiindicator_{ftype}_test_notebook.nc\"\n", - "# map_out_MI.to_netcdf(filename, encoding=encoding)\n", + "filename = f\"scenario_maps_multiindicator_{ftype}_test_notebook.nc\"\n", + "map_out_MI.to_netcdf(filename, encoding=encoding)\n", "\n", "print(\"FINISHED 1 scenario, multiple indicators\")\n", "print(f\"{time.time()-start}\")" @@ -1076,10 +595,587 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "id": "169f89a5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 75MB\n",
+       "Dimensions:     (lat: 360, lon: 720, year: 18)\n",
+       "Coordinates:\n",
+       "  * lon         (lon) float32 3kB -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n",
+       "  * lat         (lat) float32 1kB 89.75 89.25 88.75 ... -88.75 -89.25 -89.75\n",
+       "  * year        (year) int64 144B 2015 2020 2025 2030 ... 2085 2090 2095 2100\n",
+       "Data variables:\n",
+       "    dri_qtot    (lat, lon, year) float64 37MB dask.array<chunksize=(360, 720, 1), meta=np.ndarray>\n",
+       "    iavar_qtot  (lat, lon, year) float64 37MB dask.array<chunksize=(360, 720, 1), meta=np.ndarray>\n",
+       "Attributes:\n",
+       "    model:     GCAM 5.3\n",
+       "    scenario:  NGFS2_Current Policies
" + ], + "text/plain": [ + " Size: 75MB\n", + "Dimensions: (lat: 360, lon: 720, year: 18)\n", + "Coordinates:\n", + " * lon (lon) float32 3kB -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n", + " * lat (lat) float32 1kB 89.75 89.25 88.75 ... -88.75 -89.25 -89.75\n", + " * year (year) int64 144B 2015 2020 2025 2030 ... 2085 2090 2095 2100\n", + "Data variables:\n", + " dri_qtot (lat, lon, year) float64 37MB dask.array\n", + " iavar_qtot (lat, lon, year) float64 37MB dask.array\n", + "Attributes:\n", + " model: GCAM 5.3\n", + " scenario: NGFS2_Current Policies" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "map_out_MI" ] @@ -1094,10 +1190,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "id": "b407883b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Warning: 2063 not in original data, interpolating now\n" + ] + } + ], "source": [ "filename = \"test_map_notebook.html\"\n", "plot_maps_dashboard(\n", @@ -1108,7 +1212,17 @@ " shared_axes=True,\n", " clim=None,\n", ")\n", - "os.startfile(filename)" + "\n", + "from sys import platform\n", + "if platform == \"linux\" or platform == \"linux2\":\n", + " # linux\n", + " import webbrowser\n", + " webbrowser.open(f'file://{os.path.realpath(filename)}')\n", + "# elif platform == \"darwin\":\n", + " # OS X\n", + "elif platform == \"win32\":\n", + " # Windows...\n", + " os.startfile(filename) # Windows\n" ] }, { @@ -1116,12 +1230,23 @@ "id": "53155084", "metadata": {}, "source": [ - "## Process corresponding table data, aggregated by country" + "## Process corresponding table data, aggregated by country or R10 region" + ] + }, + { + "cell_type": "markdown", + "id": "0f911d96-a2fe-49dd-928b-06216e9d37e8", + "metadata": {}, + "source": [ + "### Select scenarios data\n", + "Load an IAMC scenarios dataset (done previously at the beginning). \n", + "Decide whether using global mean temperature or CO2 mode. \n", + "Assign SSPs if missing and fix duplicate temperatures. " ] }, { "cell_type": "markdown", - "id": "534c8807", + "id": "87519f52-b034-4231-9b25-7a7d6f42064f", "metadata": {}, "source": [ "### Import the climate impacts database files\n", @@ -1134,30 +1259,77 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 45, "id": "a9ee85cf", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + " Size: 230MB\n", + "Dimensions: (gwl: 251, year: 91, ssp: 3,\n", + " region: 10)\n", + "Coordinates:\n", + " * gwl (gwl) float64 2kB 1.2 ... 3.5\n", + " * year (year) int64 728B 2010 ... ...\n", + " * ssp (ssp) \n", + " cdd|Exposure|Land area|% (gwl, year, ssp, region) float64 5MB dask.array\n", + " cdd|Exposure|Land area|High (gwl, year, ssp, region) float64 5MB dask.array\n", + " cdd|Exposure|Land area|High|% (gwl, year, ssp, region) float64 5MB dask.array\n", + " cdd|Exposure|Land area|Low (gwl, year, ssp, region) float64 5MB dask.array\n", + " cdd|Exposure|Land area|Low|% (gwl, year, ssp, region) float64 5MB dask.array\n", + " ... ...\n", + " pr_r10|Hazard|Difference (gwl, year, ssp, region) float64 5MB dask.array\n", + " pr_r10|Hazard|Difference|Land area weighted (gwl, year, ssp, region) float64 5MB dask.array\n", + " pr_r10|Hazard|Difference|Population weighted (gwl, year, ssp, region) float64 5MB dask.array\n", + " pr_r10|Hazard|Risk score (gwl, year, ssp, region) float64 5MB dask.array\n", + " pr_r10|Hazard|Risk score|Land area weighted (gwl, year, ssp, region) float64 5MB dask.array\n", + " pr_r10|Hazard|Risk score|Population weighted (gwl, year, ssp, region) float64 5MB dask.array" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "filesall = glob.glob(fname_input_climate)\n", + "# input_table_impacts_dir = '/home/byers/Sharepoint/ECE.prog - Documents/Research Theme - NEXUS/Hotspots_Explorer_2p0/rcre_testing/testing_3/aggregated_region_datafiles/'\n", + "input_table_impacts_dir = 'test_data'\n", + "region_choice = 'R10'\n", + "filesall = glob.glob(f'{input_table_impacts_dir}/*{region_choice}.nc')\n", "files = filesall # [:6]\n", - "f = files[-0]\n", + "\n", "# load input climate impacts data file\n", - "ds = xr.open_mfdataset(f)\n", - "ds = ds.sel(year=years)\n", + "ds = xr.open_mfdataset(files)\n", + "ds = RegionArray(files)\n", "ds" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 54, "id": "d1e3f825", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "# of variables = 42\n" + ] + } + ], "source": [ - "varis = list(ds.data_vars.keys())[:lvaris]\n", - "dsi = ds[varis]\n", - "print(f\"# of variables = {len(varis)}\")" + "lvaris = 00\n", + "if lvaris>1:\n", + " varis = list(ds.dataset.data_vars.keys())[:lvaris]\n", + " dsi = ds[varis]\n", + "else:\n", + " dsi = ds \n", + "print(f\"# of variables = {len(dsi.dataset.data_vars.keys())}\")" ] }, { @@ -1173,63 +1345,70 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 60, "id": "e3551368", "metadata": {}, - "outputs": [], - "source": [ - "mode = \"GMT\"\n", - "if mode == \"GMT\":\n", - " dfp = df_scens_in.filter(variable=temp_variable)\n", - "elif mode == \"bypass\":\n", - " dfp = prepare_cumulative(df_scens_in, years=years, use_dask=True)\n", - " ts = dfp.timeseries().apply(co2togmt_simple)\n", - " ts = pyam.IamDataFrame(ts)\n", - " ts.rename(\n", - " {\n", - " \"variable\": {ts.variable[0]: \"RIME|GSAT_tcre\"},\n", - " \"unit\": {ts.unit[0]: \"°C\"},\n", - " },\n", - " inplace=True,\n", - " )\n", - " # Export data to check error and relationships\n", - " # ts.append(dfp).to_csv('c://users//byers//downloads//tcre_gmt_output.csv')\n", - " dfp = ts\n", - " dfp.meta = df_scens_in.meta.copy()\n", - "dfp = dfp.filter(year=years)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7f799e2a", - "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "\n", + "Index:\n", + " * model : COFFEE 1.1, GCAM 5.3, IMAGE 3.0, IMAGE 3.0.1, ... WITCH 5.0 (6)\n", + " * scenario : CO_Bridge, EN_INDCi2030_3000f, ... SusDev_SDP-PkBudg1000 (9)\n", + "Timeseries data coordinates:\n", + " region : World (1)\n", + " variable : ... (1)\n", + " unit : K (1)\n", + " year : 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, ... 2100 (86)\n", + "Meta indicators:\n", + " Category (object) C3, C7, C6, C8, C1 (5)\n", + " Category_name (object) C3: limit warming to 2°C (>67%), ... (5)\n", + " Category_subset (object) C3x_NZGHGs, C7, C6, C8, C1a_NZGHGs (5)\n", + " Subset_Ch4 (object) Limit to 2C (>67%) immediate 2020 action, ... (3)\n", + " Category_Vetting_historical (object) C3, C7, C6, C8, C1 (5)\n", + " ..." + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# For testing on C1 scenarios\n", + "# Choose size of scenario set, comment out as appropriate.\n", + "\n", + "# 1. Computational test - lots of scenarios (~1200)\n", + "# dfp = df_scens_in.filter(variable=temp_variable)\n", + "# dfp = dfp.filter(year=years)\n", + "# dfp = GMTPathway(dfp, temperature_variable=temp_variable)\n", + "\n", + "\n", + "# 2. For testing on C1 scenarios (97)\n", "# few_scenarios = True\n", "# very_few_scenarios = False\n", "\n", "# if few_scenarios:\n", - "# dfp = dfp.filter(Category=[\"C1*\"])\n", + "# dfp = dfp.df.filter(Category=[\"C1*\"])\n", "# if very_few_scenarios:\n", - "# dfp = dfp.filter(model=\"REMIND 2.1*\", scenario=\"*\")\n", + "# dfp = dfp.df.filter(model=\"REMIND 2.1*\", scenario=\"*\")\n", "\n", - "dfp = ssps_imp" + "# 3. Use the small set as loaded at the start\n", + "dfp = ssps_imp\n", + "\n", + "dfp" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 61, "id": "ebe93e79-94ce-4127-9ef6-5aa1f789766f", "metadata": {}, "outputs": [], "source": [ - "# pre-prepare the dataset into correct format\n", - "# Assign SSP to meta and select SSP2 in case SSP not present in name\n", - "dfp = ssp_helper(dfp, ssp_meta_col=\"Ssp_family\", default_ssp=\"SSP2\", keep_meta=False)\n", + "# pre-prepare the dataset into correct format - IAMC wide timeseries format\n", "\n", - "dft = dfp.timeseries()\n", + "dft = dfp.df.timeseries()\n", "dft = dft.join(dfp.meta[\"Ssp_family\"]).reset_index()\n", "# dft = dft.apply(fix_duplicate_temps, years=years, axis=1)" ] @@ -1244,13 +1423,48 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 64, "id": "d4d94aa4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n", + "/home/byers/rime/rime/rime_functions.py:159: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " idf = pd.concat([idf, edf]).reset_index(drop=True)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Done: 6.4104859828948975\n", + " Saved: COUNTRIES yrs=5\n", + " 6.4106457233428955\n", + "42 variables, 9 scenarios\n" + ] + } + ], "source": [ "start = time.time()\n", - "year_res = 10\n", + "year_res = 5\n", "parallel = True\n", "if parallel:\n", " \"\"\"\n", @@ -1261,7 +1475,7 @@ "\n", " # dfx = dft.iloc[0].squeeze() # FOR DEBUIGGING THE FUNCTION\n", " outd = ddf.apply(\n", - " table_impacts_gmt,\n", + " table_impacts_gwl,\n", " dsi=dsi,\n", " ssp_meta_col=\"Ssp_family\",\n", " axis=1,\n", @@ -1272,16 +1486,16 @@ " # try:\n", " df_new = outd.compute(num_workers=num_workers)\n", "else:\n", - " df_new = dft.apply(table_impacts_gmt, dsi=dsi, axis=1)\n", + " df_new = dft.apply(table_impacts_gwl, dsi=dsi, axis=1)\n", "\n", - "expandeddGMT = pd.concat([df_new[x] for x in df_new.index])\n", + "expandeddGWL = pd.concat([df_new[x] for x in df_new.index])\n", "print(f\" Done: {time.time()-start}\")\n", "\n", "filename = f\"RIME_output_{region}_{year_res}yr.csv\"\n", "\n", "# expandedd.to_csv(filename, encoding=\"utf-8\", index=False)\n", "print(f\" Saved: {region} yrs={year_res}\\n {time.time()-start}\")\n", - "print(f\"{len(dsi.data_vars)} variables, {len(dfp.meta)} scenarios\")" + "print(f\"{len(dsi.dataset.data_vars)} variables, {len(dfp.meta)} scenarios\")" ] }, { @@ -1294,30 +1508,122 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 65, "id": "d1cc8871", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/utils.py:347: FutureWarning: The previous implementation of stack is deprecated and will be removed in a future version of pandas. See the What's New notes for pandas 2.1.0 for details. Specify future_stack=True to adopt the new implementation and silence this warning.\n", + " df.set_index(index + REQUIRED_COLS + extra_cols)\n", + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n" + ] + } + ], "source": [ - "expandeddGMT = pyam.IamDataFrame(expandeddGMT)" + "expandeddGWL = pyam.IamDataFrame(expandeddGWL)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 72, "id": "4d08042a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['RIME|cdd|Exposure|Land area',\n", + " 'RIME|cdd|Exposure|Land area|%',\n", + " 'RIME|cdd|Exposure|Land area|High',\n", + " 'RIME|cdd|Exposure|Land area|High|%',\n", + " 'RIME|cdd|Exposure|Land area|Low',\n", + " 'RIME|cdd|Exposure|Land area|Low|%',\n", + " 'RIME|cdd|Exposure|Population',\n", + " 'RIME|cdd|Exposure|Population|%',\n", + " 'RIME|cdd|Exposure|Population|High',\n", + " 'RIME|cdd|Exposure|Population|High|%',\n", + " 'RIME|cdd|Exposure|Population|Low',\n", + " 'RIME|cdd|Exposure|Population|Low|%',\n", + " 'RIME|cdd|Hazard|Absolute',\n", + " 'RIME|cdd|Hazard|Absolute|Land area weighted',\n", + " 'RIME|cdd|Hazard|Absolute|Population weighted',\n", + " 'RIME|cdd|Hazard|Difference',\n", + " 'RIME|cdd|Hazard|Difference|Land area weighted',\n", + " 'RIME|cdd|Hazard|Difference|Population weighted',\n", + " 'RIME|cdd|Hazard|Risk score',\n", + " 'RIME|cdd|Hazard|Risk score|Land area weighted',\n", + " 'RIME|cdd|Hazard|Risk score|Population weighted',\n", + " 'RIME|pr_r10|Exposure|Land area',\n", + " 'RIME|pr_r10|Exposure|Land area|%',\n", + " 'RIME|pr_r10|Exposure|Land area|High',\n", + " 'RIME|pr_r10|Exposure|Land area|High|%',\n", + " 'RIME|pr_r10|Exposure|Land area|Low',\n", + " 'RIME|pr_r10|Exposure|Land area|Low|%',\n", + " 'RIME|pr_r10|Exposure|Population',\n", + " 'RIME|pr_r10|Exposure|Population|%',\n", + " 'RIME|pr_r10|Exposure|Population|High',\n", + " 'RIME|pr_r10|Exposure|Population|High|%',\n", + " 'RIME|pr_r10|Exposure|Population|Low',\n", + " 'RIME|pr_r10|Exposure|Population|Low|%',\n", + " 'RIME|pr_r10|Hazard|Absolute',\n", + " 'RIME|pr_r10|Hazard|Absolute|Land area weighted',\n", + " 'RIME|pr_r10|Hazard|Absolute|Population weighted',\n", + " 'RIME|pr_r10|Hazard|Difference',\n", + " 'RIME|pr_r10|Hazard|Difference|Land area weighted',\n", + " 'RIME|pr_r10|Hazard|Difference|Population weighted',\n", + " 'RIME|pr_r10|Hazard|Risk score',\n", + " 'RIME|pr_r10|Hazard|Risk score|Land area weighted',\n", + " 'RIME|pr_r10|Hazard|Risk score|Population weighted']" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "expandeddGMT.variable" + "expandeddGWL.variable" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, "id": "0457fa1e-09db-4557-83e5-7f4e13064d84", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAyAAAAHHCAYAAABHrjx7AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy88F64QAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3QUZRfA4d9m03uHBEICoXcF6b1K713pTZrwiQhYABWRJiJIRwQB6UVAepXeIdJbKCGQAul9d74/1iyEBEhCNpvAfc7JUWZmZ+5seWfuvE2lKIqCEEIIIYQQQmQDE2MHIIQQQgghhHh3SAIihBBCCCGEyDaSgAghhBBCCCGyjSQgQgghhBBCiGwjCYgQQgghhBAi20gCIoQQQgghhMg2koAIIYQQQgghso0kIEIIIYQQQohsIwmIEEIIIYQQItvk2ATE398flUrF77//buxQ3hk+Pj707NnT2GGkKSkpiVGjRuHl5YWJiQmtW7c2dkgZcuDAAVQqFevWrTN2KMCzeA4cOGDsUF4rp5YFab2HPXv2xMfHx2gxpUdaMapUKsaPH2+UeLJTZs/z999/R6VScfr06dduW6dOHerUqZPx4N5Cyb/d3FDOZIU6derk2GtobpJctvr7+xs7lAwZP348KpUqS/eZXdfq8ePHZ/u1K8cmIDmVRqNhyZIl1KlTB2dnZywsLPDx8aFXr17pujhlh8uXLzN+/Phc9+N9ld9++42pU6fSvn17li5dyogRI166rVarZdmyZVSuXBlnZ2fs7OwoWrQo3bt35/jx4waNc+XKlfz8888GPcacOXNQqVRUrlzZoMcRxufj40Pz5s2NHYbIgXx8fFCpVPo/GxsbKlWqxLJly1Jtm9YDkOSkSqVScfjw4VSvURQFLy8vVCpVqu/g88d98W/gwIFZf7JZLCoqinHjxvHhhx/i7Oz82gccV65c4cMPP8TW1hZnZ2c+/vhjgoOD03Wsnj17vvS9srS0zKIzevslJ7PJf2q1mgIFCtCmTRvOnz9v7PDe2Jw5c3LcQ7aAgACaNWuGvb09JUuWZMuWLam22bBhA+7u7oSHh2d4/6ZZEaQheHt7Exsbi5mZmbFD0YuNjaVt27bs2LGDWrVqMXbsWJydnfH392fNmjUsXbqUe/fukT9/fqPGefnyZSZMmECdOnUylNFeu3YNE5OcmZPu27ePfPnyMWPGjNduO2zYMH799VdatWpFt27dMDU15dq1a2zfvp1ChQpRpUoVg8W5cuVK/v33X4YPH26wY6xYsQIfHx9OnjzJzZs3KVy4cIb3UatWLWJjYzE3NzdAhFkrJ5YFkLvew9eJjY3F1DTHXg6yzNt2nuXLl+ezzz4DIDAwkEWLFtGjRw/i4+Pp169fuvZhaWnJypUrqVGjRorlBw8e5MGDB1hYWKT5uoYNG9K9e/dUy4sWLZrBs8h+ISEhfPvttxQoUIBy5cq98unygwcPqFWrFg4ODvzwww9ERUUxbdo0/Pz8OHnyZLp+/xYWFixatCjVcrVa/San8U7q0qULTZs2RaPRcOXKFebOncv27ds5fvw45cuXN3Z4mTZnzhxcXV1T1aAZ8zrTo0cPAgICmDx5MkeOHKFDhw5cvXpVf18ZFxfHyJEj+f7773FwcMjw/t+4JI6OjsbGxuZNd5NKTnw68Pnnn7Njxw5mzJiR6gZz3Lhx6bo5zmkURSEuLg4rK6uXXmhygqCgIBwdHV+73ePHj5kzZw79+vVjwYIFKdb9/PPP6X5qlVPduXOHo0ePsmHDBgYMGMCKFSsYN25chvdjYmKS435fL0pKSkKr1WJubp6jYo2Li8Pc3DxXvIfp9bacR1q0Wi0JCQlYWlq+deeZL18+PvroI/2/e/bsSaFChZgxY0a6E5CmTZuydu1afvnllxTJ2cqVK6lQoQIhISFpvq5o0aIpjp1d3uSeI/m1Hh4eBAYGkjdvXk6fPs0HH3zw0tf88MMPREdHc+bMGQoUKABApUqVaNiwIb///jv9+/d/7XFNTU2N8l7lFFl5n/j++++neC+rV69Oy5YtmTt3LvPnz8+SY+QkxrrOxMbGsm/fPg4cOECtWrUYOHAgR48eZefOnQwYMACAadOm4eDgQN++fTN1jAw97k5u33b58mW6du2Kk5NTiqcmy5cvp0KFClhZWeHs7Eznzp25f/9+qv38+uuvFCpUCCsrKypVqsQ///yTqt3sy9p979u3j5o1a2JjY4OjoyOtWrXiypUracZ58+ZNevbsiaOjIw4ODvTq1YuYmJgU24aEhHD16tVUy1/04MED5s+fT8OGDdN8uq1Wqxk5cmSK2o9z587RpEkT7O3tsbW1pX79+qmaAL2szWBy9fjzzaiSm2McPnyYSpUqYWlpSaFChVJUuf/+++906NABgLp16+qrK5Of8CTvY+fOnVSsWBErKyv9jzatPiBhYWEMHz4cLy8vLCwsKFy4MJMnT0ar1abYbtWqVVSoUAE7Ozvs7e0pU6YMM2fOfOV7CrqC6bPPPtPvv1ixYkybNg1FUYBn34P9+/dz6dKlVOfzojt37qAoCtWrV0+1TqVS4e7unmLZ7du36dChA87OzlhbW1OlShW2bduWYpu0PgtI3TazTp06bNu2jbt37+rjfLEGSqvVMnHiRPLnz4+lpSX169fn5s2br32fkq1YsQInJyeaNWtG+/btWbFiRZrbve7zSKtd6T///EOHDh0oUKAAFhYWeHl5MWLECGJjY1PsOzExkatXrxIYGPjaeHv27ImtrS23b9+mcePG2NjY4Onpybfffqv/jOHZ5zxt2jR+/vlnfH19sbCw4PLly2mWBcn7vXfvHs2bN8fW1pZ8+fLx66+/AuDn50e9evWwsbHB29ublStXpojryZMnjBw5kjJlymBra4u9vT1NmjThwoULKbZLfp9WrVrFV199Rb58+bC2tiYiIuK1bXMVRcHHx4dWrVqlWhcXF4eDg4O+IE+v59+nBQsW6N+nDz74gFOnTqXaftOmTZQuXRpLS0tKly7Nxo0b09zvi30j7t69y6BBgyhWrBhWVla4uLjQoUOHLG/WWbp0aerWrZtquVarJV++fLRv316/bNq0aVSrVg0XFxesrKyoUKFCmn2qVCoVQ4YMYcWKFZQqVQoLCwt27NiRJecZExPDgAEDcHFxwd7enu7du/P06dPXnmd8fDzjxo2jcOHC+t/WqFGjiI+PT7Fdeq9HL+Pm5kbx4sW5detWul/TpUsXQkND2b17t35ZQkIC69ato2vXrpmK41We/w7PmDEDb29vrKysqF27Nv/++2+KbZN/57du3aJp06bY2dnRrVu3dB0nudw+ePAggwYNwt3dXX99trCwIG/evOnaz/r162nevLk++QBo0KABRYsWZc2aNek861dTFIW6devi5uZGUFCQfnlCQgJlypTB19eX6Oho4Nk9w9WrV+nYsSP29va4uLjw6aefEhcXl2K/SUlJfPfdd/pywsfHh7Fjx6b63p0+fZrGjRvj6uqKlZUVBQsWpHfv3vr1LyvrXlU2p/WZabVafv75Z0qVKoWlpSV58uRhwIAB6foNvUy9evUA3bU/2dq1a/X3oq6urnz00UcEBASkeF16r00ZOfe0LFmyhHr16uHu7o6FhQUlS5Zk7ty5Kbbx8fHh0qVLHDx4UH/vkHw//LLjZ+QcAwICaN26Nba2tri5uTFy5Eg0Gs0r446Li0NRFJycnABd2eno6KgvmwICAvjxxx+ZOXNmplvOZKoGpEOHDhQpUoQffvhB/0FNnDiRr7/+mo4dO9K3b1+Cg4OZNWsWtWrV4ty5c/qn13PnzmXIkCHUrFmTESNG4O/vT+vWrXFycnpt06U9e/bQpEkTChUqxPjx44mNjWXWrFlUr16ds2fPprrZ69ixIwULFmTSpEmcPXuWRYsW4e7uzuTJk/XbzJ49mwkTJrB///5Xdhzcvn07SUlJfPzxx+l6jy5dukTNmjWxt7dn1KhRmJmZMX/+fOrUqcPBgwcz3X7/5s2btG/fnj59+tCjRw9+++03evbsSYUKFShVqhS1atVi2LBh/PLLL4wdO5YSJUoA6P8LuqZWXbp0YcCAAfTr149ixYqleayYmBhq165NQEAAAwYMoECBAhw9epQxY8YQGBio7+uwe/duunTpQv369fXv7ZUrVzhy5AiffvrpS89FURRatmzJ/v376dOnD+XLl2fnzp18/vnnBAQEMGPGDNzc3Pjjjz+YOHEiUVFRTJo0KdX5PM/b2xvQ/Tg7dOiAtbX1S4//+PFjqlWrRkxMDMOGDcPFxYWlS5fSsmVL1q1bR5s2bV762rR8+eWXhIeH8+DBA31tmK2tbYptfvzxR0xMTBg5ciTh4eFMmTKFbt26ceLEiXQdY8WKFbRt2xZzc3O6dOnC3LlzOXXqVIoneJn9PNauXUtMTAyffPIJLi4unDx5klmzZvHgwQPWrl2r3y4gIIASJUrQo0ePdLVZ1Wg0fPjhh1SpUoUpU6awY8cOxo0bR1JSEt9++22KbZcsWUJcXBz9+/fHwsICZ2fnVMnu8/tt0qQJtWrVYsqUKaxYsYIhQ4ZgY2PDl19+Sbdu3Wjbti3z5s2je/fuVK1alYIFCwK6xHPTpk106NCBggUL8vjxY+bPn0/t2rW5fPkynp6eKY713XffYW5uzsiRI4mPj09XdbhKpeKjjz5iypQpPHnyBGdnZ/26LVu2EBERkemnoitXriQyMpIBAwagUqmYMmUKbdu25fbt2/qmart27aJdu3aULFmSSZMmERoaSq9evdLVRPTUqVMcPXqUzp07kz9/fvz9/Zk7dy516tTh8uXLr/xdZUSnTp0YP348jx49SnFDePjwYR4+fEjnzp31y2bOnEnLli3p1q0bCQkJrFq1ig4dOrB161aaNWuWYr/79u1jzZo1DBkyBFdX15c2Rc3oeQ4ZMgRHR0fGjx/PtWvXmDt3Lnfv3tXfJKRFq9XSsmVLDh8+TP/+/SlRogR+fn7MmDGD69evs2nTJv226b0evUxSUhIPHjzQ3zSkh4+PD1WrVuXPP/+kSZMmgO56Fx4eTufOnfnll1/SfF1cXFyatSP29vbp+n0sW7aMyMhIBg8eTFxcHDNnzqRevXr4+fmRJ0+eFOfUuHFjatSowbRp0zL83Rs0aBBubm588803+pv49AoICCAoKIiKFSumWlepUiX+/vvvdO8rrffK3Nwce3t7VCoVv/32G2XLlmXgwIFs2LAB0LWsuHTpEgcOHEhVg9CxY0d8fHyYNGkSx48f55dffuHp06cpHkj27duXpUuX0r59ez777DNOnDjBpEmTuHLliv5hRFBQEI0aNcLNzY3Ro0fj6OiIv7+/PobMeNlnNmDAAH7//Xd69erFsGHDuHPnDrNnz+bcuXMcOXIkU81sk5NtFxcXAP3+P/jgAyZNmsTjx4+ZOXMmR44cSXEvChm7NmXW3LlzKVWqFC1btsTU1JQtW7YwaNAgtFotgwcPBnStM4YOHYqtrS1ffvklQIrfwIsyeo6NGzemcuXKTJs2jT179jB9+nR8fX355JNPXnoMJycnfH19+eGHH/jhhx84evQo58+fZ9asWQCMGjVKf/3NNCUDxo0bpwBKly5dUiz39/dX1Gq1MnHixBTL/fz8FFNTU/3y+Ph4xcXFRfnggw+UxMRE/Xa///67Aii1a9fWL7tz544CKEuWLNEvK1++vOLu7q6Ehobql124cEExMTFRunfvnirO3r17p4inTZs2iouLS5rntH///lee+4gRIxRAOXfu3Cu3S9a6dWvF3NxcuXXrln7Zw4cPFTs7O6VWrVqpjv+iJUuWKIBy584d/TJvb28FUA4dOqRfFhQUpFhYWCifffaZftnatWtfek7J+9ixY0ea63r06KH/93fffafY2Ngo169fT7Hd6NGjFbVardy7d09RFEX59NNPFXt7eyUpKenlb0gaNm3apADK999/n2J5+/btFZVKpdy8eVO/rHbt2kqpUqXStd/u3bsrgOLk5KS0adNGmTZtmnLlypVU2w0fPlwBlH/++Ue/LDIyUilYsKDi4+OjaDQaRVHS/iwURVH279+f6n1u1qyZ4u3tnepYyduWKFFCiY+P1y+fOXOmAih+fn6vPa/Tp08rgLJ7925FURRFq9Uq+fPnVz799NMU26Xn80gr9piYmFTbTZo0SVGpVMrdu3f1y5J/m89/V16mR48eCqAMHTpUv0yr1SrNmjVTzM3NleDg4BT7tLe3V4KCglLsI62yIHm/P/zwg37Z06dPFSsrK0WlUimrVq3SL7969aoCKOPGjdMvi4uL03++zx/HwsJC+fbbb/XLkt+nQoUKpXp/0noPe/TokeLzv3btmgIoc+fOTfHali1bKj4+PopWq33JO6fj7e2tNGvWLNV74eLiojx58kS/fPPmzQqgbNmyRb+sfPnyioeHhxIWFqZftmvXLgVI9R198f1J67tw7NgxBVCWLVv2ypgzIvn9mTVrVorlgwYNUmxtbVPE8WJMCQkJSunSpZV69eqlWA4oJiYmyqVLl1IdL7PnmVwGVKhQQUlISNAvnzJligIomzdv1i+rXbt2imvZH3/8oZiYmKQoZxRFUebNm6cAypEjR/TL0ns9UhTdd6NRo0ZKcHCwEhwcrPj5+Skff/yxAiiDBw9OsW3yd3Xt2rWpzunUqVPK7NmzFTs7O/370aFDB6Vu3br64zz/HVQU3fv4sr8///xTv13y9/X580leZmVlpTx48EC//MSJEwqgjBgxQr8s+Xc+evTo174fL0o+vxo1aryyLDx16lSq8uXFdWl95z///HMFUOLi4vTLateunapcTD6HtP4aN26cYtv58+crgLJ8+XLl+PHjilqtVoYPH55im+TvSMuWLVMsHzRokAIoFy5cUBRFUc6fP68ASt++fVNsN3LkSAVQ9u3bpyiKomzcuFH/PXiZtMo6RXl12fziZ/bPP/8ogLJixYoUy3fs2JFqefLxnr/mJh9rwoQJSnBwsPLo0SPlwIEDynvvvacAyvr165WEhATF3d1dKV26tBIbG6t/7datWxVA+eabb1LF+bprU0bOPa37ubTKmMaNGyuFChVKsaxUqVIpyo0X34vk42fmHJ+/pimKorz33ntKhQoVUiwbN25cquvC3r17FScnJ/33Nfm7eOTIEcXKykrx9/dPFW9GZKre5MVRLjZs2IBWq6Vjx46EhITo//LmzUuRIkXYv38/oKvmCw0NpV+/finamnbr1u21T2wCAwM5f/48PXv2TPEksWzZsjRs2DDNJxEvxlmzZk1CQ0OJiIjQLxs/fjyKorz2aVPya+zs7F65Hegyzl27dtG6dWsKFSqkX+7h4UHXrl05fPhwihgyomTJktSsWVP/bzc3N4oVK8bt27fTvY+CBQvSuHHj1263du1aatasiZOTU4rPtUGDBmg0Gg4dOgSAo6Mj0dHRKarw0+Pvv/9GrVYzbNiwFMs/++wzFEVh+/btGdpfsiVLljB79mwKFizIxo0bGTlyJCVKlKB+/fopqij//vtvKlWqlKIZoa2tLf3798ff35/Lly9n6viv0qtXrxRPB5M/y/R8fitWrCBPnjz6JisqlYpOnTqxatWqFNWpmf08rKys9P8fHR1NSEgI1apVQ1EUzp07p1/n4+ODoigZGrFjyJAh+v9PbiKTkJDAnj17UmzXrl073Nzc0r3f59ueOjo6UqxYMWxsbOjYsaN+ebFixXB0dEzxHltYWOirjTUaDaGhodja2lKsWDHOnj2b6jg9evRI8f6kV9GiRalcuXKKpnJPnjxh+/btdOvWLdNDNnbq1ClFmfni9yi5vOzRo0eKzoENGzakZMmSr93/8+eamJhIaGgohQsXxtHRMc33J7OKFi1K+fLlWb16tX6ZRqNh3bp1tGjRIkUcz///06dPCQ8Pp2bNmmnGU7t2bYOcZ//+/VM8pf3kk08wNTV95ZPwtWvXUqJECYoXL56iHE1uOpJ8fYT0X4+S7dq1Czc3N9zc3ChTpgx//PEHvXr1YurUqel6fbKOHTsSGxvL1q1biYyMZOvWra9tftWqVSt2796d6i+tJnVpad26Nfny5dP/u1KlSlSuXDnN9/JVT2pfp1+/fpnu7J3c/DSt/pHJ7fJfbKKaFktLyzTfqx9//DHFdv3796dx48YMHTqUjz/+WP8EOi3JT8+TDR06FED//iX/93//+1+K7ZIHLUhuapz8tHzr1q0kJia+9lzS68XPbO3atTg4ONCwYcMUv4MKFSpga2ub4nfwKuPGjcPNzY28efNSp04dbt26xeTJk2nbti2nT58mKCiIQYMGpeg30axZM4oXL56qeTWk/9qUWc+XMeHh4YSEhFC7dm1u376dqZGjMnOOad0Lp+eeo169ety7d4/jx49z7949ZsyYgVarZdiwYXz22Wd4e3szd+5cihcvTrFixZg3b16GziVTTbCSmzEku3HjBoqiUKRIkTS3Ty6w7969C5Bq1B5TU9PXjtaU/Nq0mguVKFGCnTt3puro9HybTUB/wX769Cn29vavPN6LkrePjIx87bbBwcHExMS8NFatVsv9+/cpVapUhmKA1OcEuvPKSBvKFz+/l7lx4wYXL1586Q1hclvVQYMGsWbNGpo0aUK+fPlo1KgRHTt25MMPP3zl/u/evYunp2eqpC65eVXyZ55RJiYmDB48mMGDBxMaGsqRI0eYN28e27dvp3Pnzvzzzz/6/afVFO7545cuXTpTMbzMq76Tr6LRaFi1ahV169ZN0da1cuXKTJ8+nb1799KoUSMg85/HvXv3+Oabb/jrr79SxZOZgjKZiYlJikQcno2U82Jb+/R+N0F3UX/xu+ng4ED+/PlT3dg7ODikOCetVsvMmTOZM2cOd+7cSZHAJVflZzauF3Xv3p0hQ4Zw9+5dvL29Wbt2LYmJieluzpmW132Pkn87aZXJL0uynhcbG8ukSZNYsmQJAQEBKdpEv+67EBwcnOL9tLW1TdUU8XmdOnVi7NixBAQEkC9fPg4cOEBQUBCdOnVKsd3WrVv5/vvvOX/+fIo27Gklcen9vDJ6ni++n7a2tnh4eLyyb8yNGze4cuXKa8vRzKhcuTLff/89Go2Gf//9l++//56nT59meMQcNzc3GjRowMqVK4mJiUGj0aTof5OW/Pnz06BBg0zHntZ3M61+Faampm80suSb/HaTbx5f7DMB6PtbpOfBhFqtTvd7tXjxYnx9fblx4wZHjx596f5ffP98fX0xMTHRfxfv3r2LiYlJqvutvHnz4ujoqC8jateuTbt27ZgwYQIzZsygTp06tG7dmq5du2Z6YJq0PrMbN24QHh6eqh9msvT+Dvr370+HDh0wMTHB0dFR388LXn2fWLx48VTDTWfk2pRZR44cYdy4cRw7dixV367w8PAMjx6V0XNM6zqZkXtGW1vbFPdJS5Ys4dGjR4wePZo9e/bw+eefs3z5clQqFV27dqVYsWLpfgiRqQTkxR+EVqtFpVKxffv2NJ80vOriY0gve+rx/EUmvYoXLw7oOrdm5VBvL3sC+rIOQllxTul9kqvVamnYsCGjRo1Kc33yD9Xd3Z3z58+zc+dOtm/fzvbt21myZAndu3dn6dKl6Y7LEFxcXGjZsiUtW7bU979JvhFMr4x+Rq+S2c9v3759BAYGsmrVKlatWpVq/YoVK/QJSGY+D41GQ8OGDXny5AlffPEFxYsXx8bGhoCAAHr27PnSfhhZLSO1DC97L9PzHv/www98/fXX9O7dm++++w5nZ2dMTEwYPnx4mueamdqPZJ07d2bEiBGsWLGCsWPHsnz5cipWrPjSvlfpkZVlW1qGDh3KkiVLGD58OFWrVsXBwQGVSkXnzp1f+1344IMPUjw8GDdu3Csn/+vUqRNjxoxh7dq1DB8+nDVr1uDg4JAiYf7nn39o2bIltWrVYs6cOXh4eGBmZsaSJUtSDTAA6f+83uQ800ur1VKmTBl++umnNNd7eXllet+urq76G9vGjRtTvHhxmjdvzsyZM1M9+X6drl270q9fPx49ekSTJk3SNepgdni+tjIz3uS36+HhAZDmgBuBgYH6ucCy0oEDB/QJj5+fH1WrVk3X6152nXpdLWvy/DDHjx9ny5Yt7Ny5k969ezN9+nSOHz+Ora1thq+BaX1mWq0Wd3f3lw6ckt6a7yJFirxR4ptRb3L9v3XrFvXr16d48eL89NNPeHl5YW5uzt9//62vTTC0rBzqOSIigi+//JJp06ZhY2PDn3/+Sfv27fUTQycPjGPQBORFvr6+KIpCwYIFXzkGePJN382bN1MEmJSUhL+/P2XLln3ta69du5Zq3dWrV3F1dTXIcMDJmjRpglqtZvny5a99cunm5oa1tfVLYzUxMdFfdJKfXIaFhaUo8DP79B9eX+Ckl6+vL1FRUen6sZubm9OiRQtatGiBVqtl0KBBzJ8/n6+//vql81R4e3uzZ88eIiMjU9SCXL16Vb8+K1WsWJGDBw8SGBiIt7c33t7eL/2Mnj/+85/R89L6jLJ6FtRkK1aswN3dXT/K0/M2bNjAxo0bmTdvnv5im9HPw8/Pj+vXr7N06dIUY/tntBlXWrRaLbdv305RNly/fh3AaLOGr1u3jrp167J48eIUy8PCwnB1dc3SYzk7O9OsWTNWrFhBt27dOHLkiMEnq0z+7t64cSPVurS+8y9at24dPXr0YPr06fplcXFxqX4DaVmxYkWKZikvPmF8UcGCBalUqRKrV69myJAhbNiwgdatW6e4sVu/fj2Wlpbs3LkzxfIlS5a8Np5Xyeh53rhxI8W1KyoqisDAQJo2bfrSY/j6+nLhwgXq169vsPIhWbNmzahduzY//PADAwYMyNA1sU2bNgwYMIDjx4+naBJnKGl9N69fv260MiEt+fLlw83NLc1Jhk+ePJnl804EBgYydOhQGjVqpB/0onHjxmleC2/cuJGidufmzZtotVr9++ft7Y1Wq+XGjRspBm15/PgxYWFhqfZZpUoVqlSpwsSJE1m5ciXdunVj1apV9O3bN0PXwJfx9fVlz549VK9e/Y2Swld5/j4xuYljsmvXrqU65/Rcm97k3Lds2UJ8fDx//fVXilrrtJqbpbdsyOg5ZqVvv/2WggUL6kc1e/jwIe+9955+vaenZ4YmhcySWefatm2LWq1mwoQJqZ7AKYpCaGgooLsBdHFxYeHChSQlJem3WbFixWurgzw8PChfvjxLly5N8UX4999/2bVr1ysvAK+S3mEPvby86NevH7t27dKPAvA8rVbL9OnTefDgAWq1mkaNGrF58+YU1XiPHz/WT/iU3KTL19cXQN+fAnTt79+k5iD5opOem4VX6dixI8eOHWPnzp2p1oWFhek/w+TPN5mJiYk+mUyr6jpZ8mRCs2fPTrF8xowZqFQq/YgsGfHo0aM0+24kJCSwd+/eFFXSTZs25eTJkxw7dky/XXR0NAsWLMDHx0ffhjytz0ij0aSaZwR07/2bNFdKS2xsLBs2bKB58+a0b98+1d+QIUOIjIzkr7/+AjL3eSQ/JXn+96soSrqGUk6P5z9jRVGYPXs2ZmZm1K9fP0v2n1FqtTpVWbV27dpUwxhmlY8//pjLly/z+eefo1arU4zuZAjPl5fPfx93796drr5Nab0/s2bNStdTv+rVq9OgQQP93+sSENDVghw/fpzffvuNkJCQVM2v1Go1KpUqxfH9/f1TjCCVGRk9zwULFqRoJz937lySkpJeWVZ17NiRgIAAFi5cmGpdbGxsipGZ3nQYXoAvvviC0NDQNI/3Kra2tsydO5fx48fTokWLTB8/vTZt2pTi93by5ElOnDiRqXLfkNq1a8fWrVtTTCmwd+9erl+/rh/yPqv069cPrVbL4sWLWbBgAaampvTp0yfNms0XH0Yl35ckv3/J90QvPuxIrolLHjnu6dOnqfafnFglXy+8vb1Rq9UproGgmzwvvTp27IhGo+G7775LtS4pKemN71dAd4/p7u7OvHnzUlzrtm/fzpUrV1KNlgevvza9ybmndV0NDw9P88GJjY1Nut6DzJxjVrh+/TqzZ89m5syZ+mQpT548+ge2oBttM73DW0MW1oB8//33jBkzRj+srp2dHXfu3GHjxo3079+fkSNHYm5uzvjx4xk6dCj16tWjY8eO+Pv78/vvv+Pr6/vaDHDq1Kk0adKEqlWr0qdPH/0wvA4ODq+s4n+VjAx7OH36dG7dusWwYcP0N4ROTk7cu3ePtWvXcvXqVf2Nxffff8/u3bupUaMGgwYNwtTUlPnz5xMfH8+UKVP0+2zUqBEFChSgT58++puT3377DTc3N+7du5epcypfvjxqtZrJkycTHh6OhYWFfhzqjPj888/566+/aN68uX6o3+joaPz8/Fi3bh3+/v64urrSt29fnjx5Qr169cifPz93795l1qxZlC9f/qXD5QK0aNGCunXr8uWXX+Lv70+5cuXYtWsXmzdvZvjw4fob/4x48OABlSpVol69etSvX5+8efMSFBTEn3/+yYULFxg+fLj+Cffo0aP1Q08OGzYMZ2dnli5dyp07d1i/fr2+CrlUqVJUqVKFMWPG6IdTXbVqVYokOlmFChVYvXo1//vf//jggw+wtbV944v5X3/9RWRkJC1btkxzfZUqVXBzc2PFihV06tQpU59H8eLF8fX1ZeTIkQQEBGBvb8/69evTfDDg7+9PwYIF0z0Mr6WlJTt27KBHjx5UrlyZ7du3s23bNsaOHZuhDudZqXnz5nz77bf06tWLatWq4efnx4oVK9J1s5wZzZo1w8XFhbVr19KkSZMM/xYzY9KkSTRr1owaNWrQu3dvnjx5wqxZsyhVqhRRUVGvfG3z5s35448/cHBwoGTJkhw7dow9e/ak2T8mK3Ts2JGRI0cycuRInJ2dU9W6NmvWjJ9++okPP/yQrl27EhQUxK+//krhwoW5ePFipo+b0fNMSEigfv36dOzYkWvXrjFnzhxq1Kjx0t8m6JLPNWvWMHDgQPbv30/16tXRaDRcvXqVNWvW6Odkgjcfhhd0N6ClS5fmp59+YvDgwRka2rRHjx7p3vb69essX7481fI8efLQsGHD176+cOHC1KhRg08++YT4+Hh+/vlnXFxcXtrkN6vNnj2bsLAwHj58COieVj948ADQNc1Lbps/duxY1q5dS926dfn000+Jiopi6tSplClThl69eqXrWElJSWm+V6CrebKxsWHJkiVs27aN33//Xd9/YtasWXz00UfMnTuXQYMGpXjdnTt3aNmyJR9++CHHjh1j+fLldO3alXLlygFQrlw5evTowYIFCwgLC6N27dqcPHmSpUuX0rp1a31N3tKlS5kzZw5t2rTB19eXyMhIFi5ciL29vT6JcXBwoEOHDsyaNQuVSoWvry9bt27NUP+l2rVrM2DAACZNmsT58+dp1KgRZmZm3Lhxg7Vr1zJz5szX9jt6HTMzMyZPnkyvXr2oXbs2Xbp00Q9R6+Pjw4gRI1Jsn55r05uce3JNVosWLRgwYABRUVEsXLgQd3f3VM36KlSowNy5c/n+++8pXLgw7u7uqWo4MnOOWWXEiBF06tSJSpUq6Ze1b9+eVq1aMXbsWED3G9q6dWv6d5qRIbOShxhLHp7sRevXr1dq1Kih2NjYKDY2Nkrx4sWVwYMHK9euXUux3S+//KJ4e3srFhYWSqVKlZQjR44oFSpUUD788EP9NmkNcaYoirJnzx6levXqipWVlWJvb6+0aNFCuXz5crriTGs41YwMe6goipKUlKQsWrRIqVmzpuLg4KCYmZkp3t7eSq9evVIN0Xv27FmlcePGiq2trWJtba3UrVtXOXr0aKp9njlzRqlcubJibm6uFChQQPnpp59eOgzvi8MhKkrqYR8VRVEWLlyoFCpUSFGr1SnO72X7SF734hCCkZGRypgxY5TChQsr5ubmiqurq1KtWjVl2rRp+uEo161bpzRq1Ehxd3fXn8OAAQOUwMDAV7+Z/+1/xIgRiqenp2JmZqYUKVJEmTp1aqrhSdM7DG9ERIQyc+ZMpXHjxkr+/PkVMzMzxc7OTqlataqycOHCVPu9deuW0r59e8XR0VGxtLRUKlWqpGzdujXVfm/duqU0aNBAsbCwUPLkyaOMHTtW2b17d6rvTlRUlNK1a1fF0dExxXCnaQ2DqSgv/54/r0WLFoqlpaUSHR390m169uypmJmZKSEhIen6PNIaWvDy5ctKgwYNFFtbW8XV1VXp16+fcuHChVTx+fn5pXtozB49eig2NjbKrVu3lEaNGinW1tZKnjx5lHHjxqUYBjf5fZg6dWqqfbxsqEcbG5tU277se/Li9z4uLk757LPPFA8PD8XKykqpXr26cuzYsVS/pZd9bs+ve9UwvM9LHiZz5cqVaa5Py8uG4U3rfeKFIWYVRVcmlyhRQrGwsFBKliypbNiwIc0YX3zt06dPlV69eimurq6Kra2t0rhxY+Xq1atplhFZpXr16mkOG5ps8eLFSpEiRRQLCwulePHiypIlS9Ic9pI0hqF9fl1mzjO5PD548KDSv39/xcnJSbG1tVW6deuWYlh4RUm7PE5ISFAmT56slCpVSrGwsFCcnJyUChUqKBMmTFDCw8P122V0GN6XleXJQ9sn/2ZeNwxvRo/DK4bhTWs4/bSG4Z06daoyffp0xcvLS7GwsFBq1qypH0I22ct+5+nxuvNLHpI+rb8Xh1z/999/9eWXo6Oj0q1bN+XRo0ep9pnRYXiTj3X//n3FwcFBadGiRap9tmnTRrGxsVFu376tKMqz78jly5eV9u3bK3Z2doqTk5MyZMiQFMOyKoqiJCYmKhMmTFAKFiyomJmZKV5eXsqYMWNSDB189uxZpUuXLkqBAgUUCwsLxd3dXWnevLly+vTpFPsKDg5W2rVrp1hbWytOTk7KgAEDlH///TfdZXOyBQsWKBUqVFCsrKwUOzs7pUyZMsqoUaOUhw8f6rd51TC8aZV9L1q9erXy3nvvKRYWFoqzs7PSrVu3FEM+Px/n665NGTn3tMqjv/76SylbtqxiaWmp+Pj4KJMnT1Z+++23VOf36NEjpVmzZoqdnV2K39HLhgHOyDm+KK040xqGN9m2bdsUW1vbFJ9RskmTJimenp6Kh4eHMnny5DRf/zIZSkAMRaPRKM7Ozi+98Aghco5ff/1VsbGxSfMC/KI3uYF42wwfPlyxs7N7ZSIpxNvkdQnI2yatBCSrve5B8NsgrQQkq8m1KaVXJSCGkiV9QDIieXr35y1btownT55kuspZCJF99u/fz7Bhw145U6tIKS4ujuXLl9OuXbssm0VcCCGEyK2ypA9IRhw/fpwRI0bQoUMHXFxcOHv2LIsXL6Z06dJZ3qFLCJH11q5da+wQco2goCD27NnDunXrCA0N5dNPPzV2SELkarGxsa8d6MPZ2TnDc6EIIbJXticgPj4+eHl58csvv+g79Hbv3p0ff/xRCgwhxFvl8uXLdOvWDXd3d3755ZcsH7ZTiHfN6tWrX9v5+0068QshsodKebE9lBBCCCFEDhQYGMilS5deuU2FChX08zcIIXImSUCEEEIIIYQQ2SbbO6ELIYQQQggh3l3Z3gdEvDu0Wi0PHz7Ezs7utZNMCiGEECJnUBSFyMhIPD099ZPyCpGVJAERBvPw4UO8vLyMHYYQQgghMuH+/fv6mdmFyEqSgAiDsbOzA3QFmL29vZGjEUIIIUR6RERE4OXlpb+OC5HVJAERBpPc7Mre3l4SECGEECKXkebTwlCkYZ8QQgghhBAi20gCIoQQQgghhMg2koAIIYQQQgghso0kIEIIIYQQQohsIwmIEEIIIYQQIttIAiKEEEIIIYTINpKACCGEEEIIIbKNJCBCCCGEEEKIbCMJiBBCCCGEECLbSAIihBBCCCGEyDaSgAghhBBCCCGyjSQgQgghhBBCiGwjCYgQQuRyiqKgTUgwdhhCCCFEukgCIoQQuZgmMhL/zp25Wb8+8bfvGDscIYQQ4rUkARFCiFxKSUjgwbBhxF24iCY4hIeff46SmGjssIQQQohXkgRECCFyIUVRCPz6G2KOHcfE2hoTBwfiLl0i+NdfdRskJcD9U6Aoxg1UCCGEeIEkIEIIkQuFzJpN+ObNoFaTb+bPeEyYAEDogoXEnDwOy9vC4gawY7SRIxVCCCFSkgRECCFymbD16wmZMweAvOPHYVuzJvYfNsahdWvQann46UA0Nw7rNj4xD27sMV6wQgghxAskARFCiFwk6p/DBH4zDgCXgQNw6tBBvy7PV19i5mJD4tN4Hp9zhEJ1dSs2D4LoUCNEK4QQQqQmCYgQQuQScVeuEPDpp6DRYN+yBW6ffppivfrqWjzL3wWVQvhtKyJc+oBrMYh6DFuGSX8QIYQQOYIkIEIIkQskBgZyf8BAtDExWFeqhOf336NSqZ5tcH0XbPsMa7cEXBqXBSDw24kk1poMJmZwdSucW26k6IUQQohnJAERQogcThMZyf0BA0kKCsK8sC/5Z89CZW7+bIP7p2BtT1A0UK4rbpP/wLJUKbTh4QQt3w71vtRtt/0LeHLbKOcghBBCJJMERAghcjAlMZGATz8l/vp11G6uFJg/H7WdHQSchX3fw5yqutGuEqOhUB1oMROVhQV5/xsVK2LLVuJcGoN3dd02G/qDJsm4JyWEEOKdJgmIEELkUIqiEPjNOKKPHkNlbY3Xr7Mxu7wAZpSChXXh0FQIugwqNRRrBh2XgamuZsSqdCnsmnwIikLwz79Am3lgYQ8PTsHhn4x8ZkIIId5lkoAIIUQOFfLrHMI3bgS1mvw/Tcfq5hw48jNEBICZDZRoCW0WwOc3octKsHRI8Xr3Tz8FtZqogweJuRkETafpVvzzE0QEZv8JCSGEEICpsQMQQgihoygKCXfuEHXwENH/HCL66DEA8n7zDbbKUbi4Slfb0epXKNUGzCxfuT9zHx8c27cnbPVqgqZNx3vlClSnF8P9E3BwMrT4ORvOSgghhEhJpSgyLqMwjIiICBwcHAgPD8fe3t7Y4QiRY8XfvMnTlSuJOniIxICAFOtcB32CWw0n+GuIbkGLX6BCj3TvO/FxELcaN0aJiyP/r7OxK2wFS5roEpnBJ8G1cFaeihDiLSDXb2Fo0gRLCCGMKP7GDfy7duPpyj9JDAhAZWaGTfXq5BkzmkLb/8ataSnY8t98HzVHZij5ADDL445z9+4ABM2YgZK/MhRprBsxa993WX06QgghxGtJAvKOmDt3LmXLlsXe3h57e3uqVq3K9u3bX7p9YmIi3377Lb6+vlhaWlKuXDl27NiRjREL8fZLfPSIe/36o42IwLJcWfLPnUPRE8cpsHgRzj16YGEVBWt66JKFsp2g3leZOo5L3z6YODiQcPMW4Zv/ggbjABVc3qQbTUsIIYTIRpKAvCPy58/Pjz/+yJkzZzh9+jT16tWjVatWXLp0Kc3tv/rqK+bPn8+sWbO4fPkyAwcOpE2bNpw7dy6bIxfi7aSJiOB+v/4kPXqEeaFCFJg/H7u6dTGxttZtEB4AKzpCQiT41ISWs+H5iQczQG1vj2v//gAEz5qF1rGwLqEB2DM+C85GCCGESD/pA/IOc3Z2ZurUqfTp0yfVOk9PT7788ksGDx6sX9auXTusrKxYvjx9sylLG1Ih0qZNSOB+n77EnDqFqZsbPqv+xCxfvmcbxIbBbx9C8BVwKw69d4KV45sdMz6eW40/JOnRI9xHjcKlTT2YXRE0CfDxRvCt90b7F0K8PeT6LQxNakDeQRqNhlWrVhEdHU3VqlXT3CY+Ph5Ly5Qj7FhZWXH48OGX7jc+Pp6IiIgUf0KIlBStlodffEHMqVOY2NjgtXBByuQjMQ5WddMlH7Z5odvaN04+AEwsLHAbquvIHjx7NgmRKqj438OHPeNBq33jYwghhBDpIQnIO8TPzw9bW1ssLCwYOHAgGzdupGTJkmlu27hxY3766Sdu3LiBVqtl9+7dbNiwgcDAl88dMGnSJBwcHPR/Xl5ehjoVIXKtoMlTiNy+A8zMyD97FpbFiz9bqdXCxgFw97Bu0sCP1oNjgSw7tkPr1lhXqoQSE8PDz0ehVBsO5nYQeEHXH0QIIYTIBtIE6x2SkJDAvXv3CA8PZ926dSxatIiDBw+mmYQEBwfTr18/tmzZgkqlwtfXlwYNGvDbb78RGxub5v7j4+OJj4/X/zsiIgIvLy+pwhXiPzGnT3P3o48B8Jw6FYcWzZ+tVBTYMQZOzAUTM13yUah2lseQ+PAht1u1RhsZieuQIbiVjoIDP4BzIfjk2GvnFhFCvP2kCZYwNKkBeYeYm5tTuHBhKlSowKRJkyhXrhwzZ85Mc1s3Nzc2bdpEdHQ0d+/e5erVq9ja2lKoUKGX7t/CwkI/ylbynxBCR1EUgmf+AoBjhw4pkw+AY7N1yQdAm3kGST4AzDw9yTtuHAAhc+cSa1MLbPPAk9uw91uDHFMIIYR4niQg7zCtVpuixiItlpaW5MuXj6SkJNavX0+rVq2yKToh3i4xJ04Qc+oUKjMzXAd9knKl3zrY9d8Qu42+hzLtDRqLQ/Nm2DdvDhoNAV+OR9twmm7F8V/h1j6DHlsIIYSQBOQdMWbMGA4dOoS/vz9+fn6MGTOGAwcO0K1bNwC6d+/OmDFj9NufOHGCDRs2cPv2bf755x8+/PBDtFoto0aNMtYpCJFrpaj96NgRMw+PZytvH4SNA3X/X2UwVBuaLTHl/eZrTD09SLx3j0drTz7rkL5pEMQ8yZYYhBBCvJskAXlHBAUF0b17d4oVK0b9+vU5deoUO3fupGHDhgDcu3cvRQfzuLg4vvrqK0qWLEmbNm3Ily8fhw8fxtHR0UhnIETuFX34MLHnzqGysMBlQP9nKx756Ua80iZCqTa62o9sora3x/PHH0GlInzdeiLU9cClCEQG6mZel+6BQgghDEQ6oQuDkU5sQuhqP/w7diLOzw/nnj3JM/oL3Yqwe7CoIUQ90k00+NF6MLXI9viCpk8ndOEi1I6OFFw4EbONHUCbBK3mwHvdsj0eIYTxyfVbGJrUgAghhAFF7T9AnJ8fKisrXPr11S2MeQLL2+mSD/eS0Gm5UZIPALehQ7EoWQJNWBiBM/9Eqf1fU8zto+DJHaPEJIQQ4u0mCYgQQhiIoigEz5oFgPNH3TB1cYHEWPizC4RcB/t80G1dlkw0mFkqc3PyTZ2KysKC6MOHeXrXHQpUg4Qo3ZwkmiSjxSaEEOLtJAmIEEIYSOTu3cRfuYKJtTXOvXuDVgPr+8L942DhoEs+HPK9fkcGZuHri/uozwEImjad+HKjdRMh3j8BpxcbOTohhBBvG0lAhBDCABStlpBZswFw6tEdU0dH2P4FXN0KanPoshLypJ4E1FicunbFplZNlIQEAr77GW3t/4YFPjgF4iONG5wQQoi3iiQgQghhAJE7dhB/4wYmdna49OwJR36GUwt1K9vMB58axgwvFZVKhefEiaidnIi/epXgf8LA2RdiQuDobGOHJ4QQ4i0iCYgQQmQxRaMhePavADj37IHafzvsGa9b2XgSlG5rvOBewdTNDY+JuqGAn/y+lGj3rroVx2ZDVLARIxNCCPE2kQRECCGyWMS2bSTcvo3awQHnWj6webBuRdUhUHWQUWN7Hbt69XDs2BEUhYfztqFxLq/rkH5oqrFDE0II8ZaQBEQIIbKQkpRE8K//1X50bIp6S3/dvBql20HD74wcXfrkGf0F5t7eJD16RMjDMrqFp3+TYXmFEEJkCUlAhBAiC4Vv/ovEu/dQOzninLBcV3vgUxNazwWT3FHkmlhbk+frrwF4uu0Qia41dbO17//ByJEJIYR4G+SOq6EQQuQCSkICIXPmAOBSxRmT+MdGn2gws2yqV8O6ShWUxESCr/83VLDfGgi8aNzAhBBC5HqSgAghRBYJ27iJxIAA1M5OONke1S1s9atRJxrMLJVKhftn/wMgfPc/xLl+qFuxd4IRoxJCCPE2kARECCGygDYhgZB58wBwreqAiVoLxZpCvveNHFnmWZUpg13jxqAoBJ+zABNTuLkH7vxj7NCEEELkYpKACCFEFghbu5akwEBM3ZxxtD6mW1hnjHGDygJuwz8FtZqoI6eIcWqpW/j3SEiMNW5gQgghci1JQIQQ4g1p4+IInTcfANdKtpioFSjREjzKGjmyN2dRsCCO7dsDEHQ4CsXaHYKvPpvXRAghhMggSUCEEOINha1eTVJwMKZ5XHGwPg6o3oraj2SugwahsrQk9sK/RHkM1C08MU/XHEsIIYTIIElAhBDiDWhjYghZsBAA1w+sMFGjm+k8T0njBpaFzPK449y9OwBBq/ejVOirW7FpEESHGjEyIYQQuZEkIEII8Qae/vknmtBQzDzccbQ+ASoTqD3a2GFlOZe+fTBxcCDh5i3CYz8A12IQ9Ri2DANFMXZ4QgghchFJQIQQIpM0UdGELlwEgOsHZqhMgDIdwa2ocQMzALW9Pa79+wMQPGc+2uZzwMQMrm6Fs8uMHJ0QQojcRBIQIYTIpKfLl6MJC8M8Xx4cLE+BSg21Rxk7LINx+qgbph4eJD16xNO9F6G+brZ0doyG0FvGDU4IIUSuIQmIEEJkgiYyktAlSwBwrWCiq/0o3wVcfI0bmAGZWFjgNmQIACELFqAp1R18akJiDKzvC5pEI0cohBAiN5AERAghMuHJsmVow8MxL+CBveUZ3SR9td7e2o9kDq1bYV7YF214OKG//Q5t5oGlAzw8CwenGDs8IYQQuYAkIEIIkUGa8HCe/L4UALf3tLraj/c+Bidv4waWDVRqNe7/+x+gS8IS48yh+Qzdyn+mwb3jRoxOCCFEbiAJiBBCZFDo77+jjYzEwicfdpbnQG0OtUYaO6xsY1u3Llbvv48SF0fIr79C6XZQtjMoWtjQD+IijB2iEEKIHEwSECGEyICkp095ulQ36pNr+QRUKqBCT3DIb9S4spNKpcL9M10tSNj69cTfvgNNp4BDAQi7B9vf/qZoQgghMk8SECGEyIAnvy1BGxODhW9+7CwugNoCavzP2GFlO+sKFbCtUwc0GoJnztT1A2m7QDcPyoU/4d8Nxg5RCCFEDiUJiBBCpFNSaChPVqwAwK1MjK7244M+YO9h3MCMxO1/I0ClInLnTmIvXgTvqs+Ssa3DIfyBUeMTQgiRM0kCIoQQ6RS6aDFKTAyWhb2wtfgXTK2gxghjh2U0lkWL4tCqFQBBU6ehKArUGQ2e70NcOGwcCFqtkaMUQgiR00gCIoQQ6ZAYFMTTlSsBcCsToav9qNQPbN2NG5iRuQ0bisrcnJhTp3j655+gNoO2C8HMGvz/gWOzjB2iEEKIHEYSECGESIfQRYtQ4uOxKuaNjfkVMLOB6p8aOyyjM/P0xH3kZwAETZ5C/K1b4FoYPpyk22DvdxB4wYgRCiGEyGkkARFCiNdIfPyYsFWrAXAr+URX+1FlINi4GjewHMLpo4+wqV4dJT6egJGfo01IgPd7QLFmoE2E9f0gIcbYYQohhMghJAERQojXCJ2/ACUhAauSPlibXwNzO6g6xNhh5RgqExM8Jv2A2tGR+CtXdKNiqVTQchbY5oGQa7D7G2OHKYQQIoeQBEQIIV4h8eFDwtauBcCtWLCu9qPqILB2Nm5gOYyZuzse338H6IYqjj5+AmxcoPUc3QanFsL1XUaMUAghRE4hCcg7Yu7cuZQtWxZ7e3vs7e2pWrUq27dvf+Vrfv75Z4oVK4aVlRVeXl6MGDGCuLi4bIpYiJwhZN58lMRErEsXxMbiBlg4QJVBxg4rR7Jr0ADHDu1BUXg4ejSa8HAo3AAqD9RtsHkQRAUbN0ghhBBGJwnIOyJ//vz8+OOPnDlzhtOnT1OvXj1atWrFpUuX0tx+5cqVjB49mnHjxnHlyhUWL17M6tWrGTt2bDZHLoTxJDx4QNgG3YR6bkUf6RZWGwJWjsYLKofLM3o0Zt4FSHr0iMDx43VD8zYYD24lIDoY/hoCimLsMIUQQhiRJCDviBYtWtC0aVOKFClC0aJFmThxIra2thw/fjzN7Y8ePUr16tXp2rUrPj4+NGrUiC5dunDy5MlsjlwI4wmZOxeSkrAp64u1+S2wcnr2NF+kycTGhnxTp4JaTeT2HYRv3gxmVtBuEajN4foOOL3Y2GEKIYQwIklA3kEajYZVq1YRHR1N1apV09ymWrVqnDlzRp9w3L59m7///pumTZu+dL/x8fFERESk+BMit0q4e5fwTZsBcCt8X7ew2jCwtDdiVLmDVdmyuA0ZDMDj774n4cEDyFsa6o/TbbDzSwi6asQIhRBCGJMkIO8QPz8/bG1tsbCwYODAgWzcuJGSJUumuW3Xrl359ttvqVGjBmZmZvj6+lKnTp1XNsGaNGkSDg4O+j8vLy9DnYoQBhcyZy5oNNiU98XK3B+sXaBSf2OHlWu49O+P1fvvo42O5uHno1CSknR9Z3zrQVIcrOsNidKnTAgh3kWSgLxDihUrxvnz5zlx4gSffPIJPXr04PLly2lue+DAAX744QfmzJnD2bNn2bBhA9u2beO777576f7HjBlDeHi4/u/+/fuGOhUhDCr+9h3Ct2wBwK2Qv25h9eFgYWu0mHIblVqN55TJmNjYEHvuHCELFoCJCbSeBzZuEHRJhuYVQoh3lEpRpDfgu6pBgwb4+voyf/78VOtq1qxJlSpVmDp1qn7Z8uXL6d+/P1FRUZiYvD53jYiIwMHBgfDwcOztpdmKyD0CRn5OxNat2L5fGK+ih8DGHT69AObWxg4t1wn/6y8ejvoC1Gp8Vq7Aqlw5uLEbVrTXbdBlNRT70LhBCiFSkOu3MDSpAXmHabVa4uPj01wXExOTKslQq9UASM4q3mbxN28SsW0bAG4Fb+sW1hghyUcm2bdogX3TpqDREPD5KDRR0VCk4bOhjDcPgshHxg1SCCFEtpIE5B0xZswYDh06hL+/P35+fowZM4YDBw7QrVs3ALp3786YMWP027do0YK5c+eyatUq7ty5w+7du/n6669p0aKFPhER4m0U/OuvoCjYlcmDpdkDsM0LFXsZO6xcS6VSkXf8OEw9PEi8d4/Hk37QrWgwHvKWgZhQ2DgAtFqjximEECL7mBo7AJE9goKC6N69O4GBgTg4OFC2bFl27txJw4YNAbh3716KGo+vvvoKlUrFV199RUBAAG5ubrRo0YKJEyca6xSEMLi4a9eJ3L4DANd8foAKmk3XDSMrMk1tb4/n5B+516Mn4es3YFurNvaNG0G732BBbbh9AI7O1NU0CSGEeOtJHxBhMNKGVOQ2D4YOI3L3buy8Yslf/Sl8OBmqyLwfWSVo+nRCFy7CxMGBQps2YubhAWeWwpZhug0+/BGqfGLcIIUQcv0WBidNsIQQAoi7fJnI3bsBBbfSkVB1iCQfWcxt6FAsS5dGGx7Ow1FfoGg08H53qDZUt8GO0XDgR5kpXQgh3nKSgAghBBA8fRIA9t6xWFRrAQ1fPuS0yByVuTn5pk/DxNqamFOnCF2wAFQq3Xtd7yvdRgcmwc6x0idECCHeYpKACCHeebHH9xF15DSoFFwbFNHNVZGOoaZFxpl7e5Pnm68BCJ79KzHnzumSkFqfQ5P/hv0+Pgf+GgKaJCNGKoQQwlDkCiuEeKdpggMI/EzXBMihqBkWg9eAmaWRo3q7ObRqhX3z5qDR8HDk52giI3UrKvfXJX8qNZxfAet6ShIihBBvIUlAhBDvLCU2mgcftSA+VIvaSsFtyhKwdjZ2WG+95KF5zfLnJzEggEfjxj+bX6h8F+i4DNTmcGULHPzRuMEKIYTIcpKACCHeSYpWy8NeTYi5G4uJqUKBmT9iVqyiscN6Z6htbck3bSqo1UT8/TfhGzc9W1miObSeq/v/Q9PA/7BRYhRCCGEYkoAIId5JwcM7EHE+GFQK+b4ejGWt1sYO6Z1jVb48bkN1zd8eff898XfuPFtZpj2U/whQYEN/iHlinCCFEEJkOUlAhBDvnKc/DiV012UAPPq3wLbTUCNH9O5y6dcX60qVUGJieDjyc5SEhGcrm0wGl8IQEQB/DZXheYUQ4i0hCYgQ4p0S+cc0Hi3dDYBr83I4jphq5IjebSq1Gs+pU1A7OBB36RJBP898ttLCFtotBhMzuLoVziwxXqBCCCGyjCQgQoh3RuyeNQT8uAgUFQ4VPXCdstLYIQnALE8ePH6YCMCT334j6vCRZys9y0ODcbr/3zEWgq5mf4BCCCGylCQgQoh3QsLFI9wf+Q2KRoVNIRs8Fm1FJXN95Bh29evj1LULAA9HjyYpNPTZyiqDwbc+JMXCut6QGGekKIUQQmQFufoKId56SQ9ucb9fPzRxKizc1ORbvhWVpbWxwxIvcB81CosiRdCEhPBwzBiU5NnQTUygzTywcYOgS7D7a+MGKoQQ4o1IAiKEeKtpI5/yoHtbEsIVzGzBa9lq1M55jR2WSIOJpSWe06ehsrAg+tA/PP3jj2crbd11kxQCnFwA17YbJ0ghhBBvTBIQIcRbS0lM4OHHTYh9mICJuYLX3FmYFSxl7LDEK1gWLYr7F6MACJo2nbgrV56tLNJA1xwLYNMgiAg0QoRCCCHelCQgQoi3kqLV8nhQayKvhqMyUfCa+AUWHzQwdlgiHZy6dMG2fn2UxEQC/vcZ2piYZysbjIO8ZSH2CWzsD1qN8QIVQgiRKZKACCHeSk8m9OfpP7qJ7Tw/7Yx1i15Gjkikl0qlwuP77zDNk4eEO3d49MMPz1aaWkD738DMGu4cgiMzX74jIYQQOZIkIEKIt07Ewm8JWq0bytW9Q1XsB4w3bkAiw0ydnPCcPBlUKsLXrSdix45nK12LQJMpuv/fPxEenDFOkEIIITJFEhAhxFslZttSHs7Qze/hVMMH5wmLjByRyCybKpVxGdAfgMCvvyExIODZyvc+glJtQZsE63tDXISRohRCCJFRkoAIId4a8af3cX/MJBStCtviDuSZu1nm+sjl3AYPxqpcObSRkQSM/BwlKUm3QqWC5jPAoQA89Ydtnxk1TiGEEOknV2YhxFsh6c5l7n8yGG2CCisPM/It3YbKzNzYYYk3pDIzw3P6NExsbYk9d46QOXOfrbRyhHaLQKUGvzVwYZXR4hRCCJF+koAIIXI9bZA/93t0IjESzBxU5P9jPSYOLsYOS2QR8/z5yTt+PAAh8+YRdfjIs5UFKkOdMbr/3/YZhN7K/gCFEEJkiCQgQojcKeQmHJmJsrARAZ3rEheUhNpSocCC+ZjmL2Ls6EQWc2jeDIc2bUCr5cGgQUTu3ftsZc3/gXcNSIiC9X0gKcF4gQohhHgtSUCEELnL+ZUw+wOYXQFl1zc82nyVqIeWqNTgNXUC5uVqGjtCYSB5J4zHrmEDlIQEHgz7lLBNm3QrTNTQdgFYOcHDc7DvO6PGKYQQ4tUkARFC5B5+62DTJxByHUxMeRJUlrCbNqBS4fnzL1g17GTsCIUBmZibk2/GDBxatwaNhsDRY3jyx3LdSod80HK27v+P/gI39750P0IIIYxLEhAhRO5w96gu+QD4oC8R5eYTtD8EgDyjv8C+YUMjBpc5EXGJbLsYyP/WnGfgH2c4fjvU2CHleCpTUzx+mIhT948BeDxxIsG//oqiKFCiOVTsrdtw40CICjZipEIIIV7G1NgBCCHEa4XcgD+7gCYBijcnxq0TD/v0BcCp+8c49+hh5ADT73ZwFPuuBrH3ShCn/J+QpFX063ZcekTdYm6M+rA4JTzsjRhlzqYyMSHPmDGo7R0ImT2bkFmzURIScR8xHBr/AHePQfAVXcLadQ3IUMxCCJGjqBRFUV6/mRAZFxERgYODA+Hh4djby82UyKSoYFhUH8LuQr6KxNeahX/33mjDw7Fr2IB8P/+MSq02dpQvlZCk5ZT/E/ZeCWLf1cf4h8akWF/IzYb6xd2JSdCw+tR9krQKKhW0fS8//2tUlHyOVkaKPHd4smwZj3+YBED+uXOwq1sXHl+CBXVBEw+NJ0HVQUaOUojcRa7fwtAkAREGIwWYeGMJMbC0OQScAScflJ47ufNRf+Jv3MCyXFm8f/8dE6ucd4MeEhXP/qtB7LsaxD83QoiKT9KvM1ebULmQM3WLuVOvuDs+rjb6dXdCopm26xrbLgbqtjU14aPK3nxSxxc3O4tsP4/c4tEPP/B02R+onZwouHkTZu7ucHIh/D0S1ObQdw94lDN2mELkGnL9FoYmCYgwGCnAxBvRamHNx3B1q250oz57CD9+jYcjR2Jib4/v9r8xdckZc30oisLlwAj2XQli79UgLjwI4/mS1dXWgnrF3ahXPA81irhia/Hq1q8X7ofx4/arHPuvT4iVmZpe1X3oX6sQjtYyueKLtAkJ+HfqTPyVK1hXrUKBxYtRqVSwqhtc2wYuhaH/QbCwNXaoQuQKcv0WhiYJiDAYKcDEG7m0Cdb2ALUFdN+Mkr8St1u0JOH2bVyHDcVtUM5oVqPVKoxYc57N5x+mWF4mnwN1i7tTv7g7ZfI5YGKiytB+FUXh8M0Qpu26zoX7YQDYWZjSr1YhelX3wc7SLKtO4a0Qf/s2d9q1R4mNxe2z/+Harx/EPIG51SHyIbz3EbT61dhhCpEryPVbGJokIMJgpAATmabVwrzqEHQZao2Cel8SvmUrDz//HBMHBwrv3YPaNmc8zf52y2V+O3IHUxMVdYq5U7+EO3WLuZPXwTJL9q8oCnuuBDF91zWuPooEwMnajIG1fele1Qcr85zb/yW7ha1bR+BXX4OpKT4rV2BVtizc+QeWtgAUaP8blG5n7DCFyPHk+i0MTYYGEULkPFc265IPCweoOghFoyFkzhwAXHr1zDHJx6J/bvPbkTsA/NSpPIt6VKRLpQJZlnwAqFQqGpbMw9/DajKry3sUcrXhaUwik7ZfpdbU/Sw96k98kibLjpebObRrh12TDyEpiYDPRqKJioKCNaHmZ7oNtgyHp/7GDFEIIQSSgLwz5s6dS9myZbG3t8fe3p6qVauyffv2l25fp04dVCpVqr9mzZplY9TinaTVwoHJuv+v8glYORGxbRsJd+6gdnDA6aOPjBvff7ZdDOT7bVcAGNOkOC3LeRr0eCYmKlqU82TXiFpMbV+W/E5WBEfGM+6vS9SbdpDVp+6RpNEaNIacTqVS4TFhAmaeniTev8+jCd/qVtQZDfkrQXwErO8LmkTjBiqEEO84SUDeEfnz5+fHH3/kzJkznD59mnr16tGqVSsuXbqU5vYbNmwgMDBQ//fvv/+iVqvp0KFDNkcu3jmXN+nmcLBwgCqfoCQlETJnLgDOvXrliNqPk3eeMGLNeQB6VPWmf61C2XZsU7UJHSp6se+zOnzXujR57C0ICIvli/V+NJxxiM3nA9Bq392WtWp7ezynTQO1mogtWwjfvBnUZtBuEVjYw4NTcOBHY4cphBDvNOkD8g5zdnZm6tSp9OnT57Xb/vzzz3zzzTcEBgZiY2Pz2u1B2pCKTNBqYW5VCL4KdcZAndGEb97Mwy9Go3Z0xHfPHtS26fv+GcrNoEjazT1GeGwijUrmYe5HFVBnsIN5VopL1LD8+F3mHLjFk+gEAIrlsWNEw6I0LpVHNxrUOyhk7lyCZ/6CibU1BTesx9zHB/5dD+t6AyrosUXXPEsIkYpcv4WhSQ3IO0ij0bBq1Sqio6OpWrVqul6zePFiOnfu/MrkIz4+noiIiBR/QmTI5Y265MPCASoPRElKIvi/vh/OvXsbLfkIjYpn/ZkHDFpxhlazjxAem8j7BRz5pct7Rk0+ACzN1PStWYhDo+oyslFR7CxNufY4koHLz9By9hH2XwviXXzO5NK/P9YffIA2JoaAz0aiJCToOqC/9xGgwIZ+EB1q7DCFEOKdJDUg7xA/Pz+qVq1KXFwctra2rFy5kqZNm772dSdPnqRy5cqcOHGCSpUqvXS78ePHM2HChFTL5QmKSBetBuZW+6/2YyzU+YKwTZsIHD0m22s/FEXh+uMo9lx5zL6rQZy99zTFvB4lPOxZ0bcyzjY5b06O8JhEFv7XOT4mQdc5/QMfJz5rVIwqhVLOm5I8f8neK0GYqU3oUsnrrZpnJPHRI+60ao0mPBzn3r3JM+pzSIiG+bUh9AYUawqdV8I7WkskxMtIDYgwNElA3iEJCQncu3eP8PBw1q1bx6JFizh48CAlS5Z85esGDBjAsWPHuHjx4iu3i4+PJz4+Xv/viIgIvLy8pAAT6eO3Dtb3AUsHGO6H1sSK2y1akHj33rN5HQwoPknDidtP2HvlMXuvBvHgaWyK9SU97GlQwp16JfJQNhPzemS30Kh45h28xbJjd4lP0nVOr1HYlRENi5Kk0bLz0mN2XX6U4jyT5xnpXaNgqskSNVqFs/eecubuU94v4ESlgs7Zej6ZFbl3Lw8GDwHAa+FCbGvWgMALsKgBaBKg6TSoZNjvlhC5jSQgwtAkAXmHNWjQAF9fX+bPn//SbaKjo/H09OTbb7/l008/zdD+pQAT6abVwJyqEHIN6n6JUutzHo76gogtW1A7O1N49y5M0tn3KCNCo+LZfy2YvVcec+h6MNEJz4azNTc1obqvC/VL5KFecXc8Ha2y/PjZ4VF4HLP332D1qfskalIX95ZmJtQs4sb9JzEp5hn5pI4vnSoW4Oy9p+y89Ig9Vx4TEpWgf13NIq6MbFSMcl6O2XUqmfbo2295uvJP1C4uFNq8CVNXVzg+F3aM1k102W8f5C1t7DCFyDHk+i0MTRKQd1i9evUoUKAAv//++0u3+f333xk4cCABAQG4uLi8dLu0SAEm0u3UYtj2P33tR/CCpbqRr9RqvObPx7ZG9Sw5jKIo3AjSNa3aeyV10yo3OwvqF3enfok8VC/sgrW56ct3lsvcfxLDL3tvsP7sA+wszahfwp1GJfNSu6gbVuZqtFqFrX6B/Lz7OrdDotPch52lKeW9HDl2K5Sk/0baalgyD581KkrxvDn3N66Ni8O/Q0fib9zApmZNvObP03XOX9kJbuwEt+LQbz+YWxs7VCFyBLl+C0OTBOQdMWbMGJo0aUKBAgWIjIxk5cqVTJ48mZ07d9KwYUO6d+9Ovnz5mDRpUorX1axZk3z58rFq1aoMH1MKMJEutw/A8nagTYKG3xL2yIvAL78EwOP773Bs3/6Ndp+QpOXknSe6pOPqY+4/Sdm0qpSnvT7pKJMLmla9qbhEDWoTFWbqtMcgSdJo2XAugJl7bhAQFkseewsalcxLo1J5qFLIBTO1CfefxPDznhtsPPcAraLrQtG8rCcjGhShkJvxh0lOS/yNG9xp3wElPh73UaNw6d0LokN0/Y6iHkOl/tB0qrHDFCJHkOu3MDRJQN4Rffr0Ye/evQQGBuLg4EDZsmX54osvaNiwIaCbeNDHxydFbci1a9coXrw4u3bt0m+XEVKAidcKugKLG+kmiCvdnui8vbk3cCAkJeEycADuw4dnardPoxM4cD2IPVeCOHQtmMj4JP2655tW1S/hjodD7mxaZWgJSVoeR8SRz9HqpUnZzaBIZuy5wbaLgQCYqKDd+/kZVr8IXs4paxMCwmLZfekRFx+EU9XXhdbv5XtpEmQoT1et5tH48WBmhs+ff2JVuhTc2gd/tAGVGgYdA7di2RqTEDmRXL+FoUkCIgxGCjDxSpGPYVF9CL8PBaoSV3U6dz/uiTYqCvvmzfGcOiVDc1jcDtY1rdpzJYjT/k94fi4+V1tz6v1Xy1GziOtb1bQqJ7j0MJwZu6+z50oQAGZqFZ0/KECr8p4cuxXKzsuP+Dcg5bDcXs5WfFK7MO0r5MfcNHsSEUVRCBj2KZG7d2PmXYCC6zfoRlb7sytc26YbFavLn9kSixA5mVy/haFJAiIMRgow8VIJ0bCkKQSeB2dfklqv5k6PASQFBmJVsQIFfvsNE/NXDwer1SqcfxDGrkuP2X35EbeCU/ZbKJ7XjvoldElH+fyOb33Tqpzg7L2n/LTrOodvhqRap1LBB97OlM3vwKbzAfoO7R4Olgys7UunD7ywNFMbPEZNWBi327QlKTAQh9at8fxxEgRfhzlVQNFAz7/BJ2v6HIm3nKLAhVWgaKFkK7DI5uaHCTGw5VMo0QJKtszSXcv1WxiaJCDCYAxZgK3oN4zSzRtSrlWLLN2vyAZaDazqBte3g7UL9NnNw+m/Eb5hA+YFC+Lz50rUjo5pvjQ+ScOxW6HsuvyY3ZcfExz5bNhnM7WKKoVc9P05XmwCJLLPsVuhzNh9ncuBEVQu6EyjUnmoXyIPrrYWAMQmaPjz5D3mH7rF4wjdZ1jK0551A6thZW74JCTm9Gnudu8BWi2eU6fg0KIFbB0Bp3+DfBWg716ZG0S8WkI0bBoElzfp/m1uB2U7QsVekLeM4Y8fdh9WdYVHF/8bvONfsMy666wkIMLQJAERBmOoAmzfjNmcO74DMMHBNC8NPu2HT6UPsmz/wsB2j4MjP+uGP+2xhQQlL7eaNgONBp/Vq7AqVy7F5hFxiRy4FsyuS484cC2YqOf6c9hamFK3uDsNS+ahTjE37C3NsvlkMiY6MZrxR8djrjZncPnBeNp6Gjsko4pL1LD2zAN+2nWNpzGJdKiQn6kdyr3+hVkgePavhMyejYmNDQU3bsDc2RJ+eQ8SoqD9EijdNlviELnQ07u6hyiP/cDEDOw9Iezus/X5P4AKvaBUG8OMrOZ/BNZ0h5gQ3UOcjsvAp0aWHkISEGFokoAIgzFUAbZm1o88PHoFjTb0vyXmuFrmpfmE0bj4FMiy4wgDCLuvu8nTJkL736B0Ox6OGUv4xo3Y1KpJgQUL9JtGxycxat1Fdl1+lGL+Cnc7CxqWzEOjUnmpUsgZC1PDPzHPConaRIbuHcqRh0cAsFBb0Kt0L3qV6oW12btdW3P0VggfLTqBVoEp7cvSsaKXwY+pJCVxt2dPYk+fwbJsWXxWLEd1dAbsnwhOPjD4JJhaGDwOkcv4H/7v5j8UbNyg03LIXwnuHIQzS+DqNt2IfqCrmSjbWVcr4l7izY+tKHBqkW7+Gm0S5C0LnVeAY9Zf9yQBEYYmCYgwGEMVYA+jHvLTiamw2Z98QTZolTAAVCor8trno83Ub7FykAIzR0pu5uJTE3puJeHu3We1H2tWY1W2LKAbCrbfstPsvxYMQGF3Wxr9l3TkhlnIX6QoCt8c/YZNNzdhZWpFCecSnA06C4C7tTv/q/A/mhZsmqFO92+b2ftuMG3XdSzNTNg0uHq2zCuS+PAht9u0RRsejku/vrgPHQi/vA9Rj+DDH6HKJwaPQeQSL978e5TX3fw75E+5XeRjOL8czixNWSviVUWXiJRsDWaWGT9+Ujz8PRLOLtP9u3R7aDnLYHPXSAIiDE0SEGEwhi7Azj4+y5Sjkyi2Q41DOChKFAAmKnsKePrQavIETM1ydpOcd8rztR89t4FPjWe1H7VrUWD+fEB3s/7Vpn9ZceIelmYmLO1VicqFMjYJZk4z5/wc5l6Yi4nKhFn1ZlEzX0323NvD9NPTCYgKAKC8W3lGVxpNKddSRo7WOLRahZ6/n+LQ9WAKudnw15Aa2FoYfrSyiF27CBj2KahUFFi8CBuLG7BlGFg5wbDzYOVo8BhEDpeUANs/hzO/6/5dpoPu5t/sFUN4a7Vwex+cXgLXtusGOADd96pcV6jQE9yKpu/4kY9g9cfw4CSggoYToNowg/ZTkgREGJokIMJgsqMA0ypaNt/czLwjs6hz0BPzmDggDgBTlRPFSpXhw69HGeTYIoPSWfux4NAtfvj7KioVzPuoAo1L5TVy4G9m/fX1jD82HoBvqn5Dh6Id9OvikuJYdnkZi/wWEZukmyCxlW8rPn3/U9ys3VLtKyIhglOPTuFl50VRp3TevOQiT6ITaDrzHx5FxNGqvCc/dyqfLbVCgePHE7ZqNWo3VwqtX4fp2pYQfBWqfwoNvzX48UUOFhWku/m/fxxQQYPxuu9FRr6XEYFw7g9drUjEg2fLvWvoakVKtHh5c78HZ2B1N4gM1DXpavcbFGnwJmeUvpAlAREGJgmIMJjsLMCiE6NZ5LeILcdW8+HxoqgSwgBdO1wLlRvl69WiRv9eBo1BvEJatR+jxxC+aVOK2o9tFwMZvFLXNOnr5iXpU6OgMaN+Y4ceHGLYvmFoFA39y/Zn6HtD09zu7qObLDwzj80hOwGwNrWmf9n+fFzyYyISIth/fz977+7lROAJkhTd97qxT2OGlB+Cj4NPdp1Otjhz9wmd5h8nSaswsU1pulX2NvgxtXFx+HfoQPyNm9jUqonX/9qgWtUZ1ObQbz/kLW3wGIQRaBLh9+YQdg/KdYYKPXT9f5I9PKfrbB4RABYOun5rb3Lzr9XAzT26WpEbO3XD94KuI3n5brpaERffZ9ufXwlbhoMmHtyKQ+eVKdcbkCQgwtAkAREGY4wC7EHkA3468xPXT56g/oWiaJNCAN1X3MYkL9W6tqVsi6bZEot4TjpqP87cfUqXhcdJSNLSs5oP41qUzJV9ImISYzj9+DRHHx5lw40NxCbF0tK3Jd9X/15/PoqiEHL/LrfPnOT22VM8vHEVFAXXMsU5WPA+p5IuA+Bk4URYfBgKz4ppLzsvHkQ+QEFBrVLTtkhbBpYbiLu1u1HO1xAWHrrNxL+vYGqionMlLwbW9iW/k2E76sddv45/h44o8fHkGT0aZ/O/4foOcC0G/Q8YrK29MKJzy2Hz4OcWqMC3nq5WIjEW/hoKSXHgUgS6rALXwll37PAHuuOfWQqRD58tL1hbd/x7J+DEXN2yYs2g7XywsMu647+GJCDC0CQBEQZjzALs9KPTTDk1BfWZECpf80ajDf5vjRoHszw0HDEQ7wrvZ2tM76wUtR+6Sd4efjGa8M2bsa1dG6/587gbGk2bOUd5Ep1AgxLuzP+4Iupc1NH8adxTNt3cxJGAI5wNOkuiNlG/rppnNWbXm41Ko3D/sh+3z+qSjojgoJQ7UalAUVCpTLB7vzAb3S9wX6XbprRLaep716dBgQb4OPhw7ck1Zp2bxcEHBwGwVFvSrUQ3epfpjb157r9ZUBSF/625wMZzuv4xpiYq2r2fn0F1ffF2sTHYcZ/++SePJnwLZmb4LJmL1YHeug7pFXpCi5kGO64wAk0SzK4IT+/o+mREBsLt/am3K9II2i3SNX8yVBw3dulG0LqxG3jhlqz2aKj9BZiYGOb4LyEJiDA0SUCEwRi7ANNoNWy+tZlfzv5C8TM2FL/ngkZ58t9ac1yt8tLiu7E4e+V/5X7EG0qu/ShYSzfvh7+/rvZDq8Vn7RriChWj3dyj3A6Jpkw+B1YPqIK1ueE7H2eVJ3FP6L69O3cjno1442HjQTXPalSyK49nkAX+Z89w1+8cSfHPJk40NTOnQJlyFHq/EoXe/4CEuFiOrPqDGyePAqA2M8Ot+ntUb9MFn7xF0jz2mcdn+PnMz5wPPg+Avbk9fcr0oWvxrliaZmKknRzm+O1QZu27wZGbuiG31SYqWpX35MumJXCxzfohchVF4cHQoUTt2Yu5jw8Fp3+KydrOgAIdlkKp1ll+TGEkF1bBxgG65k/D/cDcBp7cgbNLdTUT0cFQYwTU+xpMsmmo77B7ulGuzv4BiTHQeo6uf4gRGPv6Ld5+koAIg8kpBVh0YjQLLy5kmd9SGpwpiEewFVolHACVyhpPRw9aT/kOSylks95raj/cf/2Vjxed5KT/E/I5WrFxUDXc7XPPjXNsUix9d/XlYvBF8trkpUfJHpTSFCD22gNunznF49s3Umxv6+xCofc/oND7lShQuixmFqnPNfDGNQ6tXMKDy/8CYG5lRYVmranQrDUW1qmf/iuKwoH7B/jl3C/cDLsJ6Ib2HVRuEK0Kt8LUJHPJ3MOohwRGB1LOrVyG9hEUE8Tee3vZe3cvT+Kf0LFoR9oVaYeZOvMj0p25+5RZ+25w4L9hmT/wceLPflUwVWf9U2FNWBi3W7ch6dEjHNq0wbO+BRz+SfcEfOBhg8y5ILKZVgO/VoLQm7pO5TVGpFyflKCb58PewyjhodXo+qdkZrjeLJJTrt/i7SUJiDCYnFaA3Y+8z4wzM9h3azetT5TGPkKLokQDoMaOggUK0HzSRNSmuefpe473itoP7zWrGXNZw+bzD7GzMGX9oGoUzZN9bZzflEarYcSBEey/vx+PBEcGJDQl5N+rRD0JTbFdXt8iFKpQiULvV8Ldp1C6+rUoioL/+TP8s2oZwf63AbC0saViy3a8/2ELzCxT35hotBq23t7Kr+d/JTA6EAAfex+GvT+MBgUapOu4/uH+7Lm3hz1393Ap9JJ+H0PfG0pD74Yv3UdAVAB77u5h993dXAi+kGp9ftv8DHlvCE0KNsFElfmk4ey9p3RffJKo+CQG1vZldJPimd7Xq0SfPMm9nr1Aq8Vzyo84PP4FAk7r5nLouQ3UUkbkan7rYH0f3ZC4w/2ytW9FbpHTrt/i7SMJiDCYnFqAnXp0isknJ3M/4BZtTpbDLDYSFF3TGHMcKFelIrVGjHjNXsRr+R+GZa10k3alUfuxpt0IZu27iamJit97VaJGEVdjR5xuiqIw8cREVl9bjVOsFe1PFyQxUpfMmlpY4F3mPXwr6JpW2Tg6Zf44Wi03Th3j6JoVhD64B4C1gyOVWnWgXMMmmJqbp3pNvCae1VdXs9BvIWHxYYCuD8nwCsOp7FE51Xlcf3pdn3Qk16AAqFBhbWZNdKLuvEq5lGJ4heFU8agCwO3w2+y5q3vdlSdXUuy3nFs5Gno3xNTElIUXFxIap0vKijkV49P3P6VGvhqZHmDgb79ABq3QjZS2uEdF6pfIk6n9vE7wL7MImTMHExsbCi6dhfmWjhAfoWuPX3esQY4psoFWC3OqQMg1qPcV1Prc2BHlSDn1+i3eHpKACIPJyQWYRqth081N/HLuF9SBiTQ7UxISQkgeutdBcaBe784U+tA47W9zvZAbsKgBxIVB6XbQ/rcUtR83J8xi6Dld0jelfVk6VvQybrwZtNhvMT+f/RnLBDXdz5cmISQMtwI+1OzaE69SZdNMDN6EVqvh2pFDHF27krDHutoNW2cXqrTtROm6DVGbpm7eFJUQxe+XfmfZ5WX6OUaqeVZj2PvD0Gg17Lm3h71393Iv8p7+NaYqUyp5VKKBdwPqetXFUm3JssvLWHppKTFJMQBUyFOBsLgwboXf0r/ORGVChTwVaFCgAfUL1CePzbOkICYxhhVXVvDbv78RlaibLLSsW1n6l+lPrfy1MpWIjP/rEr8f9cfByoxtw2oYZIQsJSmJu917EHv2LJZly+Izth2qTf1AZQI9toBPjSw/psgGlzbC2p66JnXD/QzXuTyXy8nXb/F2kAREGExuKMCiEqJY4LeA5ZeX43PfmZqXCqNNSp4oSk0+E0uaTBiHQ9GSRo0zV4kOgUX14ak/5P9Ad7NmZqWv/YgoX4luhTqRpFUYUrcwIxsXM3bEaUpKSCD43h2cPPJhaWML6GoXNt/czHfHv0OtUdH78vsk3g/BzsWNrt9Pw9bZsDO2a5KSuHRwD8fXryYyVNcfwt4tD1Xbd6FkzbqYqFN3lg2JDWHBxQWsvb6WJG1SqvUWaguqeVajgXcDauevjYNF6huy0NhQFvotZPW11fp9mJqYUtmjMg0LNKSOVx1crF597mFxYSz+dzF/Xv2TeI0u+SzmVIy+ZfvSsEBD1Bno6JuQpKXD/GNcuB9GOS9H1g6oirlp1vcHSQwI4HabtmgjInDp1w/3wrd0HZTtPOGTI2DtnOXHFAak1cL8mvD4X93oUnXHGDuiHCs3XL9F7iYJiDCY3FSA3Y+4z7TT09h3bx+1L5fH94E5Ws1jANSKOSWd7Kk/fTZqW1sjR5rDJcbC0pbw4CQ4ekPfvYRiz6H9Zyk6qg8misKntYdx3akALct5MrNz1s90nZSYyP1LF7l15iQPLvvhkr8A1Tp0wyX/62tZYsLDuH32FLfOnOTuxXMkxsdhZmWFedXCXPAO5XTIOeI0caBAj1sVUV0PxsLahs7fTsHVy/AT5iVLSkzEb+8OTmxcQ3TYUwCcPPNTrX0XilWtiSqNITvvR97n1/O/8vftv7EytaJ2/trU965PzXw1sTZLXw3Cg8gH/H3nbzxsPKjtVTtTQ/6GxIaw7PIyVl9dra9V8bH3oXfp3jT3bY6ZSfo6qz94GkOzXw4THptIz2o+jG9ZKsOxpEfEzl0EfKqb+brA/NnYXBgFoTd0czN0XpGxGbGFcV3ZqptV3NwORvjp+oCINOWm67fInSQBEQaTGwuwQw8OMenEJIKfPKH52arYhQWBNgIAu0QLatarTvHBI3LlBHkGp9XC+t66Jg6WDiT12sXnB+LYfD6AEaf/pMH9M5zIU4KlLYbRspwng+r6YmGaNcNbxkZG/Jc4nMD/wjkS42JTrFepTChVpz5V23fF3tVNv1xRFELv3+XWmZPcOnOCwJvX4bkiMUmtYKrRfdYxFkmcLxJOWBErmt8vgfb0XdSmprQb+y1epcpmyXlkVGJ8HOd3/c3JzeuIi9R9T10L+FCtYzcKV6yS5vc0MiESc7U5FuqsH8Y2I8Ljw1l5ZSXLrywnIkEXu4eNB71K96JN4TbpGkZ475XH9Fl6GoDJ7crQsaKXQX6bgePGE7Z6NWo3VwotmITpujagSYCm06BSvyw/njAARYH5teDRRag5Eup/beyIcrTceP0WuYskIMJgcmsBFpcUx+J/F7PYbzGuoZ40Ol8SVew1QAOY4BWvovFXY3CoWMXYoeYse8bD4RlgYgYfb2RjWEFGrL6AZ1QwC/dOwURRMJn3O0VrV8qSm8SI4CBunj7O5eOHeHz9GmifFWU2Ts74vl8Jr9JluXb0EDdPHQd0c2u892ELCpQux53zp7l95iThQY9T7DfEIYH77jHcd4/lqX0CRQIdqHjTBfMojX7f0U9188k0HfY5JarXfuNzeVMJsTGc/fsvTm/dSHyMrtN4nkJFqN7pI3zKvZ+jE+boxGjWXFvD0ktL9Z3VXSxd6FGqBx2LdcTG7NUTD/64/SrzDur6o5TOZ8+QukVoVDIPJlk4kaU2NpY7HTqQcPMWNrVr4dWjPKpdo0FtAf32Qd7SWXYsYQBJ8bBjDJxeDGY2MOJfaT73Grn1+i1yD0lAhMHk9gLsbsRdJh6fyPGHJ/jgdhVK3VKh/Nc/xExrTlk7a2pMn4Wpk1Tjc207/NlZ9/+t55FUphONZhzidkg0vwVuw+PEfv2s55mVXFvhd2w/V078Q2xAypnEn9gl8CBPHCUr12JAw89wfK55xcPrV/hn5VIeXPk31X41JgoPXWK5nyeWB+6xxFhq8HXwpVq+alTzrEaFPBUwU0y5uGcHxzesIjZCN4dMza49qdSqfabPxxDioqI4vXUjZ//eTGJ8HACexUpSo9NHr6ylSUpMRKVSGXUI6rikODbd3MRv//6mH0bY3tyebiW60a1EtzT7pgAkabT8tPs6vx/1JyZBlyQWz2vHkHqFaVLaA3UWJSJx167j36EDSkIC7l98gYv533BjJ7gWg/4HwDzrO8KLLBD+ANb00A2jDFJrlU65/fotcj5JQITBvA0FmKIobLy5kcknJ6OKMqPxxerYh/rDf/OHOMabUbdxXQoOGJJmu/t3glara9rw2A+qDIYPf2DjuQeMWH2B4klPmfH3JP2s51ZlymRo14pWy63L5zj+z1YenfdDFRb37LAoBDnFcz9vLObFPDF3ceBE4AkAHC0cGfreUNoVaYfaRE1MYgwnA09y/OjfxB68jDomiQDXOO7niSHQJQ5razuqelalumd1qnpWJa9N3jTjSYiN4cKeHZhZWFKuYZMcW7MQExHOyU1rubDrb5ISEwAoUKY81Tt+hGdR3dwZsVGR3D5zkhsnj3H34jlUJiZUaNaKCs1a6zvdp0VRFIOed6I2kW23t7HYbzH+Ef4AWJta06lYJ7qX6o6rVdrDNT+JTmDx4dssPXqXqHhdR3lfNxuG1CtMi7KeWTJp4ZOVK3n87XdgZobPkrlYHegNUY+gQk9oMfON9y+y2K39uvk+YkLB0hHaLoSijYwdVa7wNly/Rc4mCYgwmLepAHsQ+YCvjnzFmcdn8A4pSr2LhVDirgIKKkWNb4KWBt9NxKaMcfoCGNWVLbD6I13HzuEX0Vg60fCng//VfvyNx4l9mar9CAi4xbIJn2Ee/mzkJo2JwkPXWOIK2uHzfgUqFapBhTwV9E/Hjz48ypSTU/RDxBZxKoKjhSPngs6lGAFKrVJTzq2cPuko6VIyQ6Mw5RZRT0I5sWkNF/fsRKvRnX/B8hXQJCVx/7Ifilab6jUWNjZ80KId7zVpgbmlFaBr7nbj5DFunjrGw+tX8ChSnBqdPiZ/ScM1PdJoNey+t5tFFxdx7ek1AMxNzGlTpA29S/fG09YzzdeFxySy5Ogdfjt8h4g43Tn7uFgzqE5h2ryfD7M3SEQUReHB0KFE7dmLubc3BX8agcnaToACbRZAuU6Z3rfIQlotHJ4O+yYCCniUg47LwMnH2JHlGm/T9VvkTJKACIN52wowraLlj8t/8MvZX9Akaal5ow4F/SNRNI8AsEgyo2o+N8r/MAO17avbrb81nq/9qPU51PuKTecCGL76/BvVfoRFhDD7895YhWlJMNXyxFOFQ+nCvFe5PpW9q730KThAkjaJNdfW8Ov5X/WdmwHy2eajumd1qnlWo5JHJezM353ZjyOCgzi2fhWXDu5JkXS4FfChcKWqFP6gKuGPH3FkzXL9hIdW9g4Ur1aLgKuXCfK/leZ+vcu+R/WOH+FRxHBDKSuKwqEHh1jgt4CLwRcB3XwlzQo1o0+ZPhR0KJjm6yLjEll27C6LD9/hSbSuFiifoxWf1PGlQ8X8mR4AQRMWxu3WbUh69AiHNm3wbGAJ/0wHVND8J6jYO1P7FVkk9ils/ASub9f9+/3u0GQqmL1+UAPxzNt2/RY5jyQgwmDe1gLsVtgtxvwzhitPruAY407L8zUxCf8XFF3zIPcYaPhRJ/J0/CjHNtHJMs8Pa5lFtR/xCXFMHf0RVgFxxFpq+fCrL6lYpHqGQwuLC2PjzY1YqC2onq86BewKvP2fx2s8DQzg3/27sbKzp3ClajjmSdnUTKvVcO3oPxxdu4KwR4H65SqVCfmKl6TwB1XJV7wk/+7fjd++XfpalUIVKlG940e4+xQyWOyKonDq0SkW+C3QN7VToaKRTyP6lelHMee0k6CYhCRWHL/H/EO3CYnSzT+S196SgbUL0blSASzNMp6IxJw6xd0ePUGrxXPKZBxUe+HM77qVdcZC7VEyPK8xBF6ENR/r5iBSW0Cz6fD+x8aOKld6W6/fIueQBEQYzNtcgCVqE1lwcQELLy5Eo9VQ8XEtyv1rjSbhCgAmipoSikKdH2dg6etr5GgNRFF0k3o98tMPa5lc+1FME8bPf08CjSZDtR9arZbJ3/XG/HIIiWotVf43iDoVmxv4RMSLtBoNlw7t5eG1K3gWLYFvxcpY26fsBB4e9Ihj61dx+eA+FEVXq1K0So10z7nyJi4EX2DRxUUceHBAv6x2/tr0LdOX8u7l03xNXKKGVSfvMe/gbR5F6B4WuNpaMKBWIbpVKYC1ecY64AfPmk3Ir79iYmNDwQ3rMb+1HA5N0a38oC80mQJvYbO+HOvcCtj2P0iK081B1OkPXdMrkSlv8/Vb5AySgAiDeRcKML9gP8YeHot/hD+WiTa0vtoaq4fXUDS6WaqtE9TULFmEkl9/j4nlW9YE4Oo2WNUVzG1huF/K2o9Hf+NxPOO1HzPn/I+kg9fRouDbuzVtG8toNTndk4cPOLp2JdeOHgJ0tSUlatSmavuuOOb1MOixrz25xmK/xey8uxPtf0lQpbyV6Fe2H5XzVk6zxis+ScPa0w+Ye+AWAWG6+WKcbczpU6Mg3at6Y2eZvokQlaQk7vbsSezpM1iWKYPPiuWozi+Fvz8HFCjZStfp2dS486289RLjYPsoOLtU9+8ijaHtfJlk8A29C9dvYVySgAiDeVcKsNikWGaencmKKysAKBNThcqnvUmKOgskgAKesRoafvIJrk1bGjfYrJKi9uMzqP/NG9d+LFk7mSfr/gHAsXkl+nz8jSHPQGSx4Lt3OLp2hX7OFRO1mlJ1GlClbecUkz8awt2Iuyz2W8yWW1tIUnTNwsq6lqVf2X7Uzl87zUQkUaNl49kAfj1wk7uhuhnZHazM6F29ID2r++Bg9fpEJPHhQ263aYs2PByHdm3x+PZbVFc2w4b+oE0E3/rQba3UhBjK07uwpjsEngdUUPdLXXn0ro5ImIXeleu3MB5JQITBvGsF2LGHx/j6yNc8jnmMqWJGu8Ce2F7yR5N4HQC1Vk1ZMzU1pvyCef78Ro72DaWj9sOmdi0KzJ+frt1tPriMa/NWo9aqUFfyYfhnsw18AsJQHt26wZE1y/E/fwYAtakpZRs2oXLrjtg4GvapdGBUIEsuLWHDjQ3Ea3T9PYo6FaVvmb408m6U5khnSRotWy4+ZPa+m9wK1g2vbWdhSo9qPvSpURAnG/NXHjNy714eDBkKioJdw4Z4TpuKScAx+LMrJEZD7dFQd0zWn+y77uYeWN9X1+ncygnaLYLCDYwd1VvjXbt+i+wnCYgwmHexAAuPD2fSyUlsu70NgPLmlfngaFmSQk6jaHWzZ9vFq6hT6X2KjPwSlfmrb25yJEXRjXz16CLU+B80GMeCQ7f44e+rKWs/1qzGquzrhyU+7LeLQ5N/xiLRhERfR0Z9txQTtTwxzu0eXL3E0dXLuX/ZDwBTCwve+7AFH7Roi5WdYcuDkNgQll1exuqrq4lJ0tVueNt706d0H5oXao6ZOnXthkarsP3fQGbtvcm1x5EAuNlZ8NeQ6ng4WL3yeBE7d/Fw5EiUxESsP/iA/HN+RX1nB2zoC6igx19QsFaWn+c7SauFf6bB/h/QVS+/pxti17GAsSN7q7yL12+RvSQBEQbzLhdgO/138t3x7wiPD8dcZU4XhmC+7z6JsWeBJFBUFIhLov7wz3Cul8ue2l39G1Z10dV+fHqRnf6JDFx+BkWBZSE7cTu8O921H//eP8f6cWOxjVYT727BiCnLsLJ6R4YwfgcoisK9fy9wZNUfBN78by4PKyve+7AlFZq1MngiEh4fzsorK1l+Zbl+SOa8NnnpVaoXbYu0xdI0db8srVZh1+XHTNx1kAdP46ngWZg/+1d57fwh0cdP8GDwYLTR0VgUL47XgvmYHZsA55aDbV4YeBhsDdsU7a0X+xQ2DNDNQA+6CSA/nCxD7BrAu3z9FtlDEhBhMO96ARYUE8Q3R7/hSMARAKq4VOO983WIv3ocbaJuXgW1Vk05a0uq/zgTc4+0Z9/OURQFFtSGwAtQYwQXiw+n4/xjxCVqGVjYnFYzRqS79iMg7D5zxvbHOVRNvK0JA6bMx8XFsJ2WhXEoisKdc6c5vPoPgv1vA+hmk2/UlIrN2xi8aVZ0YjRrrq1h6aWlhMaFAuBi6UL3Ut3pVKwTNma6pDc8Ppztd7az6eYmLoVeAiApsgRNvT5ieqvX99+Ku3yZe/0HoAkJwSx/fgrM/QXzXT0h+KqueVDXtdI/IbMCL8DqjyHsLpha6obYfe8jY0f11nrXr9/C8CQBEQYjBZjuxmvt9bVMOz2N2KRY7MzsGOA5isjV90gIO4WifQqATYIJdatWouj/RqMyzdhwoNnq2nb4szOY2fCw1wlaLblGcGQ8tYu6MfH6RiI3bcKmVk0KLFjwyt2ExT5l0jfdcb+nkGQGnb6djE+hUtl0EsJYFK2Wm6ePc3z9av3khqbmFpSt35iKLdti5/zyCSazQlxSHJtubuK3f38jMFo3z4m9uT0dinbgQdQD9t3bR6I2UReXyhSNokFBd4ksYv8eX1QZTKW8lV45n0zCvXvc69uPxHv3UDs74/XjaKwO9dUND9tgAtQYbtBzzHUUBZLiX12LIUPsZju5fgtDkwTkHTF37lzmzp2Lv78/AKVKleKbb76hSZMmL31NWFgYX375JRs2bODJkyd4e3vz888/07Rp03QdUwqwZ/zD/Rl7eCx+Ibr28I29G1M5qA2Bf+8lMfYckAgKeCSqaDRsOK516xs34LQoCiyoA4Hnia8yjJZXGnLtcSTF89rxZ7P8PGrdUlf7sXoVVuVefnMQlxTHN5M/Is/FOLQqhQaffcZ7H9TLvvMQRpdcI3J8/Sp90yy1qSml6zakUqsO2Lu5G/T4idpEtt3exmK/xfhH+KdYV8ypGK0Lt6ZpoaaEx4cz9O/p+Mf/g0qlG+a3rFtZ+pfpT638tV6aiCSFhHCvf3/iL1/BxNqa/J+2wObODDAxhV47wOsDg55frvH0LqztAY8vQZmOUHUQ5HnuQURSvG6I3eRJHos0grYLZIjdbCDXb2FokoC8I7Zs2YJaraZIkSIoisLSpUuZOnUq586do1Sp1E+eExISqF69Ou7u7owdO5Z8+fJx9+5dHB0dKfeKm8vnSQGWUpI2iUV+i5h3YR4aRYOrlSujy3/NvTVPiL56DE2i7kbMRFFTytKK2pOmY5Evn5Gjfs61HfBnJxQzGwa7LeHv20m421mwaXB1mPI94Rs2YFOzJgUWvrz2I0mbxNfz+uJ6MASA8j26UL9pt+w6A5HDKIrCPb8LHFv/JwFXdU2eTNRqStSsS+U2HXHK62nQ42u0Gvbc28PW21vxtPGkdeHWlHApkWKbhCQtbRZs5Wb8ViycTqGodMP8FnMqRt+yfWlYoGGao2tpoqJ4MGQoMcePg5kp+dr4YG9yCBwKQN89YJfHoOeW4z0/itXzCtaGKoPAvQSs7QkPz6IbYnesbsJTacKWLeT6LQxNEpB3mLOzM1OnTqVPnz6p1s2bN4+pU6dy9epVzMzSNzHXi6QAS9ulkEuMOTyGO+F3AGhduDWtHftxYs5m4p6e1U9iaJlkSs0yJSg9dgImxh4tS1FgYV14eI6Dbl3pcb85VmZq1gyoSjFtOLeaNH1t7YeiKExc8xkWG69hoqgo0LgWHXqPyuYTETnVg8v/cmzDKu75nQd0ExoWr16Lym064pLfuCMcBYTF0uyXfwiPf8J7ZS4QoNmnH13Lx96H3qV7pzm6ljYhgYejviByxw5QqchTXY1z/nu6ZkQfbwQXX2OcjnFptfDPdNg/Ed0oVu9D7S/gwp9w5S/4b0JJVCa6/7dygraLoEguG6wjl5PrtzA0SUDeQRqNhrVr19KjRw/OnTtHyZIlU23TtGlTnJ2dsba2ZvPmzbi5udG1a1e++OIL1OkcIlUKsJeLS4pj9rnZLLu8DAWFvDZ5+bbatzw5Y82dDX8RH3sBlDgAXBJMadzjIzxatzdewNd3wsqOJJpYUjnmZ56q7FnwcUUalszDwy+/JHz962s/ft0zhYglBzBPMsGxfDF6j572yrb04t308PoVjm9YzZ1zp3ULVCqKVqpG5badcPcpZLS49l19TO/fdTFN6ehLqMn+FKNruVq50qFoBzoU7YCb9bPRrhSNhscTf+DpypUAuLyvxq3IfVQ2rvDROt0wsu+K2DDYOACu79D9u0IvaDL52WzxYffgxHw4uwziI8CjvG6IXSdvY0X8zpLrtzA0SUDeIX5+flStWpW4uDhsbW1ZuXLlS/tzFC9eHH9/f7p168agQYO4efMmgwYNYtiwYYwbNy7N18THxxMfH6//d0REBF5eXlKAvcLZx2f56shX3I+8D0CnYp34pPQwNi/YT+S5IyQlXAZApZhQ0MScRhMmYlOsWPYGqSiwsB48PMv8pOZMSurK181L0qdGQRLu3+fWh010tR+r/sSqfPk0d7H6zDKuzlqJbawp5t7ufDJxPqaZrFkT74bHt29yfMNqbp46pl/mW7EyVdp2Jq9vEaPENHnHVeYeuIWthSl/DalOHkcVa66t4Y/LfxAcq6u5NFWZ0tC7IV1KdKG8W3lUKhWKohA6bx7BM38BwKGUBR6l7qCytIVOy8G3rlHOJ1vFR+r6kIXeBLUFNP/p5aNYxUfCg9PgXe1ZciKylSQgwtAkAXmHJCQkcO/ePcLDw1m3bh2LFi3i4MGDadaAFC1alLi4OO7cuaOv8fjpp5+YOnUqgYGBae5//PjxTJgwIdVyKcBeLSYxhhlnZrDq2ioA8tvm5/sa3+OuLcLW6cuIe+iHVhMAgKnWjPfzeVLt+8mobW2zJ8Dru2BlB2IUC2rG/0yzqmWZ0LIUKpWKh199Rfi69djUqEGBRQvTfPnem7vYM2UqruEW4GTNoKmLDD7/g3h7BN/z58SG1Vw7fliXDAM+5StQpW1n8hUr8ZpXZ60kjZaui05w8s4Tiue1Y9Pg6liaqUnUJLL33l5WXl3JuaBz+u2r56vOrLqz9E2znq5ew6MJE0CrxbaIDfnK3cDE3AzazofS7bL1XLLdoWmw7zuw84Auq8CzvLEjEq8gCYgwNElA3mENGjTA19eX+WlMGFe7dm3MzMzYs2ePftn27dtp2rQp8fHxmKfRJ0FqQN7M8cDjfHPkGwKjA1GhonvJ7gx5bwinTwfgt3gVsVGXULS65h7WSebUa1yfov0GGbYZk6KQMK8u5o/PMT+pGcd8h7Ooe0VM1Sa62o8mTSEpCe8/V2L9XuqmJOcenWXppFF4PbJEa6mmz49zcPbIQR3rRa4RGnCfkxvXcOXIQRStrp+AV6myVGnbGa9SZbKtOV9QRBxNf/mHkKgEOlX0YnL7lPPdXAm9wqprq9h6aysJ2gS6FO/C2Mpj9esjdu/m4WcjURISsCpgi1fFG6jNgTbzoVynbDmHbBcXATPL6jqct10IZTsaOyLxGpKACEOT4STeYVqtNkXC8Lzq1atz8+ZNtP9d6AGuX7+Oh4dHmskHgIWFBfb29in+RPpV8ajChpYbaFukLQoKSy8vpePWjjgWjmXA/LF4Ne+HhWV5wIwY0wS27t3OHx07EHLsqMFiir6yE/PH54hVzNnv3InZXd/H9L8ZoUPmz4ekJGyqV08z+bgddpt5s3TJh2ICnUZ/L8mHyDSXfF40GfIZvWfMp0y9RpioTbl/6SJrvxvLqnFfcOf8GbLjeZq7vSW/dH4PlQpWn77PujMPUqwv4VKCCdUm8FOdnwD48+qfbLm1Rb/evmFDCixehImdHbH3orj7f/buOzqK6m3g+He2pvdAII1QA6H3KL2FIiL6Q0TpWFAEBRVfiiIioAKCgCgqRXpRkCqISAfpoQVCCT0JJaSXrff9I7K6JoEACQlwP+fsOezMnZlnJ8vMPnPb7gqYMhVY8w5cP1Xo8ReJfd9nJx/e5R//mh5JkvJF1oA8IYYNG0a7du0ICgoiNTWVRYsW8cUXX7Bx40Zat25Nz5498ff3Z/z48QBcvnyZsLAwevXqxcCBAzlz5gx9+/Zl0KBBjBgxIl/HlE9Q7t/2K9sZtXsUNzNvolbU9Knah/41+mM0KPw8aREp0Ucxm04DoAg15V29aTNuPA4lC2ZozxupBjYdv0ydP16ikuUMC1UdaT7oB0p7OAJgvHIlu++H2UzwokU41bZPQK6lX2PY9J6EHcpuetJ6wDtUb9K6QGKTJICUm9fZt+oXjm/5HYspe/JAv3IVaPD8S5Src+fJAgvC1M1n+GrTaRy0KlYNaEQlP9ccZaYfns7MozNxUDuwoP0CKnn9038rKzqaS6++iuXGTTRuGoIaXUVfvhK8uhl0ToUa+0NlSIUp1WTtxyNG3r+lwiYTkCdEv3792Lx5M3Fxcbi7u1O9enU+/PBDWrfO/lHYrFkzypQpw9y5c23b7Nmzh8GDBxMZGYm/vz/9+vWTo2A9RElZSYzbN47fzv8GQFn3sox5egzVfatz7uJNtkyaRerNs1gt2X1yNEJH/arVaTBsBKr76OB9LSWLDcfjWX8sjv0XEhijns0rms1kCD0XX9lF5Yr/dPyN++gjkpb/jPNTTxE0e5bdflKMKbwzqwdVtplRCYXaL/yP5i/2vv8TIUl3kHYrgQNrV3Bk0wbMxuwaXd/gEBo+35UK9Z9CKaR5I6xWQe+5+9l++gZlfZ1Z83YjnPUauzIWq4W3Nr/F7tjdBLkGsfiZxbjp/rkWGq9c4XK/VzFevIhaLwhschPH1i/Ds1MLJeYisWMSbP40u/ZjwD7IZc4UqfiR92+psMkERCo08gJWMDZf2syYPWNIyEpApajoWaUnA2oOwEHjwJbtRzgzdzmpGedApALgaHWk1fOdqdjt5XwfY8up67yx4CBGc3aTu1fV6xipXYhA4VbHOXjX6Wwra7xylXNt2/5d+7EQp9q1besMFgPvLO1H8Lpb6MwqQp4Op/PA4XK4XanQZSQncWDdr0RuXIcpKxMAL/9AGnZ+kUpPNUF1hwcnhowMtA56VPf44zghzUCHqTuJT8miY43STH2pZo7velJWEl3XdiU2PZZmAc34usXXqJR/kiLzrVtcfv0Nso4fR1FbCWiUiMvbM6BaEQ67XVAMqTClOmTegs7fP759XB5D8v4tFTaZgEiFRl7ACk6yIZnP933O2pi1QPbkZ2OeHkPNEjUxWaysmLuSW9v2kmE4A2Q3R/FSudL+vcGUrFv/jvuOik2hy3e7STdaqOrvxjv+p2l19D0UBESMg/ABduXjPvqYpOXLcX4qnKDZs23LLVYLH/42GLdlp3HO0uBdsTw9Rk1ArZHD7UoPT2ZqCod+W83h39ZgyEgHwMOvFA2ee5HKjZuj1mTXUqTcvMHpPTs4tXsH12LO4F7Sj/qduhDWtMU9fWcPXrxF15l/YbYKRj8bRq+nyuQoc+LmCXr+1hOj1cigWoN4rfprduut6elcGfQO6bt2gSIo/XQW7l9sfvQnKtzxFWwenV378dZeUGvuvo1ULMj7t1TYZAIiFRp5ASt4Wy9v5dM9n3Ij8wYqRUWfsD68VfMtdGodN5Iz+G3SdyTFXMFkOgMIQEUZ95K0HTMG55J+OfZ3LSWL577ZRVxyFk+V8+anCC3aeR3AnAl1+0GHSfCvJ7p2tR8LF+BUpw6QPcv5uJ1jSJu3A58UPY4lfOg7fjoOD2uoYEn6D0NGOoc3rOXgul/JSsuuHXTzLUnlRk25fOIYsadP5rqdq48v9Z/9H1Wbt0aTx4Ab/zVr53nGrI1Cq1ZY+kY4tYM8c5RZcWYFo3Znz6H0dOmn6RbajUb+jVD/XesijEZi/+//SFmf3eSyRFNnvL/Z9ejOg2FI+7vvh6z9eBTJ+7dU2GQCIhUaeQErHMmGZL7Y9wVrYrJH1qnoWZFxjcbZOrieOH2Rg1PnkJB4Das5e4JDldBQu1ptGv3fMNR/9w/JMJrpOvMvjl1NppyvMytfCcZtQQSkXYPyraDb0hxPLOM+HkXSsmU4hTckeM4c2/K1Z9ew6evJBF13Qu3sSO/x0/DIJeH5r/RkA+eP3CQm8gbXL6QQWNmL+h1D8PRzLpBzJUnGrEyO/L6eA2tXkpGc9M8KRSEgNIxKTzUhpGYdzuzbzYE1K0hPSgTAxdOLuh1foHqrCLR6hzseQwjB24sOs+5YHKXcHVg7sBHeLjkTh68OfMXcE3MRZN92A1wCeCn0JZ4r/xzueneE1cq10R+RuHQFAN7NyuA7Y12h9WMpVDsnwx+fyNqPR5S8f0uFTSYgUqGRF7DC9cfFP/h0z6ckGhLRqDS8VeMt+lTtg0alQQjBtj92cWHJBm5lXEJYbwGgx5GWXbpS8fkXeHPBQX6Puoa/k4WVEQZKHJgEN05CiSrQdyM42P/NTLGxnI1oCyYTwQvm41S3LgBmq5k3JzxL6CEVqFV0++QLSlfMe4K4lIRMYg7fICbyBnHnkuE/VyBFgUoN/ajXIQQ3H8eCPWnSE8tkyOLY5o1cPRWFf2gVKjR8GlcvH/syRgPH//ydfat/IS3hJgBO7h7U6fAcNdu0R+eY9+hUqVkmOn2zi5gb6TQq78NPfeujVuXs+3Q59TLLopex4swKUozZ8/o4qB349OlPaRfSLnvW9PFDuTEvu7mle+2SlJq9HsXhERoZy672YybUeKmoI5Lukbx/S4VNJiBSoZEXsMJ3M/Mmn+75lC2XtwBQ3ac6YxuNpYx7GQAMJjPrf5zPjT2nSTWeAZEFgJPiTpKvA097nqGR5iQqqzF7h84l4LXN4BGU41hxn3xC0pKlODVoQPBPc23LV5z8meOf/4hzloZGPfvQoEPOcf4T49OJibzBuUM3uHEp1W5diTJulKvli2+QK0e3XOHC0ewffiq1QpVGpanbrgzOHo9oMxTpkWQxmzixbTP7fl1O8vVrADi4uFK7/bPUatsRB+fcmxaevpZKp+m7yDRZGNSiPEPaVMq1HECmOZPfzv/GopOLiE6MRq/WM7/dfCp7ZyfvSZM/IO77NSAUnMu7ELDgN1QePnnur9hIT4Bf+kLMVvAqlz3ylaz9eOTI+7dU2GQCIhUaeQF7OIQQrIlZw/i940kzpeGgdmBwncG8FPqSbbSd+Ju32D55GtcvpmAwnSa72kEhSLHSPuQvnP0CoVI7qP8aeJXNcQxTXBxn20SAyUTQvJ9wrp/dsd1kNfHmhGepfEiNys2RgTMWodFqs5/iXk3j3KEbnDt8g8S4dNu+FAVKlfegbC1fytb0xdXLvnlL/Plk9q6K4cqp7KYwaq2Kas0CqB0RhKNL/trkS1JBsJjNnNq1jb0rl5EYdxUAvZMztdo+Q+32nXB0zXld+/XwVd5dGgnArF51aVn5znPzWIWVgX8OZPuV7fi7+LP0maW4690BSF0wiavjf0BYFBxLaQlYuApN6ZCC/ZAFKfYwLO0ByZdB6wQvLYJyzYs6Kuk+yPu3VNhkAiIVGnkBe7ji0uL4aPdH7I3bC2TPrD7m6TH4Of/TFyPy6HGiZ8wmLiULi+USAApaqlZrSIsPB6PR5v4DP270aJIWL8Gpfn2C5/1kW748aiknv5iDc5aGxr36EVy5JecOX+fc4Ruk3Mi0lVOpFQJCPSlb05eQGr44ud09kbganchfq2KIj0kGQOugpkbLQGq2CkLvKJ+oSg+P1Wohes9O9q5YSsKV7P83WgdHarZpT50Oz+HsYd/p/KNfjzP/r4soCrQN86N/03LUCPTIc//JhmReWvsSV9Ku0Mi/Ed+0/Mb28CBjw0IuDx2D1aig81QImjMfbWidQvus9+3QPFj3PlgM2TUfLy2EEnk3xXwUWY1GFK32iRhWXN6/pcImExCp0MgL2MNnFVaWnFrC5IOTybJk4ap1ZViDYTxT9hnbTdNqFVy9lsqhb5Zw7twuhDUBAI3izNMdnqNO95fsbrCm+HjOtW6DMJkI+uknnBtk134YLUb6T3iWsMMaFL0zXqXfIj3JYttOrVURVMWLcrVLUKaaN3qnex+OVwjBxeMJ7F0dw83LaQDonTTUjgimWrMAtHo5qZn08AirlTP79/DXiqXcuBADgEanp3rLCOo++7ytT4nBbOH95UdZcyTWtu3T5b15s2l5ni7vnesP2FO3TtF9fXcMFgNv1XiLN2u+aVtn2LeJS28OwpwOakfwfuNNPLr3Q+1SDAZrMBtg/Qdw6O8HE5XaQ+fvwMG9aOMqQEIIbs2ezfXJU9CXL4/Hi11w79gRtatrUYdWaOT9WypsMgGRCo28gBWdC8kXGLFzBEdvHgWgVVArPgr/CC8HL7tyiZcTWDf+e67dOgwiAwAnnQ9t3niDco3CAYj/dAyJixbhVK8ewfPnYbVYuXomiQ1/7CB51yIUazoax+ZoHGqh1asJruZNuVolCArzQudQMDUVwio4d/gG+9bEkBifHaejm4667YIJa+SPWvsIjhIkPbKEEMQc2s9fK5YQf/Y0ACq1hipNmlO34/N4+wcC2X1Cvtt2jtWRsZit2bfamoEefN+zDiVcc46stfrcakbsHIGCwvSW02kS0MS2znT6MJd7v4LhVvZ+VG5ueL7cDa/u3dH4FFHfkOQrsKwnXD0IKNBiBDR6Dx7FUbvyYM3KIu7jj0lZvcZuueLggFu7dni82AXHmjknoHzUyfu3VNhkAvIIuXnzJnv37sVisVCvXj1KlSpV1CHdkbyAFS2z1czs47P5NvJbzMKMl4MXn4R/QvOgnG2yL++JYsPM+aRkngTMAHi5h9D+9T4k9umN2aKgGjWD2ExPLhy9iSHDjNlwBHPGZlA5U63VcCrULU1gFS802sKrlbBaBaf3xbN/7XlSbmZ3qHfx0lOvQwihDf1QqR+fHz5S8SeE4OLRw+xduYwrJ49nL1QUytdtSP1O/6NUhexO6FcSM/hxx3mW7r9MpslCgxAvFr7aAE0u39fP/vqMpdFLcdW5svSZpQS6BtrWWa+eIHlEe26d0GFMzU7uFZ0O986d8X33HTSeOecfKTQx2+DnvpBxExw84H+zsofvfoyYrl3jytsDyTp2DNRqSnzwPopKTeKypRjPnrOV01eogEeXLrh3eha1++NR8yPv31JhkwnII+KXX36hX79+VKxYEZPJRHR0NN988w19+vQp6tDyJC9gxcPJhJMM3zmcs0lnAehcvjND6w3FRZdzJJ9jSzaxfc0asswxfy9R42INxOIZgVD9q7mHg5G0G9+jMRtp1L0vDTo+/xA+yT8sZisnd8dxYN150pOzR/DyKOlExGth+AQ8vs0ipOIr9vRJ9q36hXMH/rItC6xSjfqd/kdwjdooisLZ62l0mr6TdKOFN5qWZVi7nH0kjBYjfTb04ejNo4R6hTK/3XwcNP+qLTmyFPHL66TGOpBwow5Z0ecB0JUpQ9CsH9H6+xfuBxUCdk+DP0aBsIJfdeg6HzzLFO5xH7LMI0e48vZAzDduoHZ3x//rKTg3bAhkJ56ZhyNJWraMlA0bEFnZD0MUvR63thF4vPgijrVrP9K1IvL+LRU2mYAUU2lpabj8axbp6tWr8/PPP1OxYkUA1q1bx2uvvUZsbGxeuyhy8gJWfBgsBqYfns5PJ35CICjtXJpPn/6UBqUa5ChrNVvYOWk+hyN3YrbGZy9UHHHxaUzlJm0IrO7JJyt7UD1Sh8rVkYEzFuZ7xuiCZjZaOL79Kgc3XCQrzYSbjwNdR9RHJzupS0Uk4col9q9ewcmdW7BasvtE+ZYpS/1nX6Biw0b8duI6AxYdAmBmjzpEhOWcsDM+PZ4X17xIoiGRTuU6MebpMfY/Zn8dAJELEM5+ZNSbRuzozzHHxaEpUYLAH37AoVLFwvlwhlRY9TZE/Zr9vsbL8MxXoH285utJ3byZq4OHIIxG9BUqEDDjG3SBgbmWtaSkkLxmDUlLl2E4fdq2XFeuHJ4vdsHt2Wcfbs1UAZH3b6mwyQSkmKpUqRJffvklnTp1AqB27dpMnTqVRo0aATB79mw+/fRTLly4UIRR3pm8gBU/B+IPMHLXSK6mZQ8p2qViF4bUGZJrbYgxOZXNn39PzNVDZBmyR6LyLOWP4anSXF+3B5csDU169qNeh84P9TPkJivdxLKx+0m9lUWFeiVp3bfKI/30UXr0pdy8waH1v3L0j42YDNlPyN1L+lG/0//4NT2Q2bsv4KrXsGZgI8r45OxM/lfcX7yx6Q2swsrH4R/TpWKXf1Ya0+H75nAzGsq1xNRyOpffeAPDmbOoXF0JnPENTvXqFewHMhvhxxYQfwxUWmj3OdTtlz2u9mPEajBwrlVrzDdu4NKyJaW/+CJfnf2FEGQdPUrismWkrP8NkZk9CqCi0+EaEYHni11wrFv3kbkuyfu3VNhkAlJMXbhwgQEDBqDT6fjmm284d+4cL730EhaLBbPZjEqlYu7cubRv376oQ82TvIAVT+mmdCYfnMzS6KUA+Dn7MSp8FI38G+Va3mqxcHTzRnYvX0hmSrJtudrFkQHfLkCrKx6TBMbHJLNi4iGEVdCiZyiVnypd1CFJEplpqURuXMuh39aQlZo98/nT3XozMa40By4mEurnysq3nsZRl7Pv1Kxjs5hyaApalZaf2v5ENd9q/6y8FgU/NAdzFrQajaVaHy6/NYDMgwdRdDr8v5qEa6sC7JNxYDasHQyOXvDyUgisX3D7LkZuLVzItTGfoSlVivIbN6DcR+2uJTWVlLVrSVy2HMPJk7blupAQPF58EffnOt1zrUjy6tXcWrgQ56eewuOF/6ELKNymdvL+LRU2mYAUc4sXL+bjjz9m0KBBvPrqq5w9exaLxUJoaCgODjlHUSlO5AWseNsXt49Ru0dxJe0KAJ3KdeKDeh/YJkH7rwMX/2LG9/9HpRgnNFYVzXu/Tu12zz7MkO/qwG8X2LsqBo1OxYvD6+HpVwyGKZUkwGTIYt+qX/jrl8UoioqWQz6m3++J3Ewz8kLtACZ2qZ7j6bgQgsFbB7P50mb8nP1Y+sxS+5HsDv4EawaBoobuv2D1D+fqe++TtnkzqFSU+uwzPJ4vgBpKsxGm1c6eYLDtF9Cw/4PvsxiyGo2caxOBOT4ev1Ef49mt2wPtTwhB1vETJC1bRvK6dYiM7BH8FK0W19at8XjxRZwa1L9jrYgwm7k+cRK35s79Z6Gi4NyoER4vdsG1WTMU7b0PcX438v4tFTaZgDwCkpKSeP/99zl27Bjff/89NWrUKOqQ8kVewIq/DFMG0w5PY+HJhQgE3g7eDGswjDbBbexuijHJMfT8rSfJhmSauYfzTvCrlKtZr9g1J7BaBau/juRqdCLeAS7878M6hToqlyTdCyEEG775iqgdW3By96By/1H0XX4aq4BxnavxcoOgHNukGlN5ed3LXEi5QINSDZjZaiZqlfr2DuGXV+H4z6DWwfPfIyp1JH70aJKW/wxaLWUWLcKxWtUHC/zAHFj7LriUhHeOPHZ9Pm5LXLKU+E8+QVOyJOU2/Y6qAPu2WdLSSVm3jqTly8k6fty2XBccnD2vyHPPofH2tt8mOZmrg4eQvns3AB4vdcV48SIZe/4Z6EDt64PH8y/gO+Ct+6qtyYu8f0uFTSYgxdj69es5efIkNWrUoFWrVmzbto0BAwbQrl07Pv30Uxwdi/dNQF7AHh2R1yP5aNdHXEi5AECzgGaMaDgCP2c/rmdcp8f6HsSmx1LNpxo/tvkRJ61T0QZ8B+lJBpZ8to+sNBPVmgfQpGshdciVpPtgMmSxaOT73Lx0Af/QKiQ06ceETWfRqVX8/GY41QM8cmxzNvEsL69/mUxzJn3C+vBunXdtM6VjyoIVr8HJ1YAC7Scg6r3K1UGDSN30B9rAQEJW/HL/k+aZjTCtDiRfgojxEP7WfX/24kyYTJyLaIspNpaSw4fj1bNHoR0r88QJkpYvJ2XNWqzp6dkLtVpcW7XE88UXcWrQAGNMDJcHDMB08RKKoyOlx4/DrW1bAIwXL5L0888krViJJSEBfWgoIStXFOgDIXn/lgqbTECKqffee48FCxbQvHlz9u/fT+/evfnoo48wGo2MGTOG5cuXM3nyZNq1a1fUoeZJXsAeLUaLkR+O/cCPx37EbDXjpHHi7Vpv8+vZXzmdeJpgt2DmtZuXYzLD4ujCsZus+yZ7Esb2b1YjpIZvEUckSf9IjLvKgmGDMWZmUKfDcywQNfnj5DX8PRxZN6gRHk45n2Svj1nPhzs+BKCMWxleCn2JTuU6ZQ8gYbVkz0Z+YFZ24SYfYKn9NueffwFTbCyu7dri/9VX9/cD9XYzr8e89iPpl1+IGzEStY8P5f/YhOohNHG2pqeTvH49Sct/JuvoUdtybVAQloQErOnpaEuXJuCb6ThUzjlkszAaSf1zC4peh2vznPM7PQh5/5YKm0xAiilvb29+//136tSpw61bt2jYsCGn/zXEX1RUFG+88QY7duwowijvTF7AHk1nE8/yyZ5POHLjiG2Zj6MP89vNJ8A1oAgjuzc7l5/hyObL6J01vDSyPi6exbvPlPRkObNvN6snjQOg5YAPGPSXlUu3MmhWyZfZveqhUuVMFn468RPfHfmONFMaAE4aJzqW60i30G6Ucy8L2yfAlrHZhWv3JDOwDxd69AKzGb9PPsHzpa73FqTFlN33I+kSRIyD8AEP9JmLK2E2c65de0yXL1Piww/x7tP7oceQdfIkScuXk7x6Dda0v/++9erh//UUNF4P/6GPvH9LhU1OG1xMOTs7c/589gRTly9fztHhvEqVKsU6+ZAeXeU9yzOv3TxGNBiBs9YZV60rM1rOeKSSD4DwzuXwDXLFkG5m0+worFb5rEUqPirUf4q6f0/guWP2dMaGO6HXqNgafYPpW87muk2vsF780eUPRjYYSTn3cmSYM1gavZTnVj3HstPLoelQeGYKKCo4NA/HmG8pMWQwANfGjSMrOvregjyyJDv5cC4BdYrvpLcPKnntWkyXL6P28sKz64tFEoND5cr4ffwxFbZvo9T48ZQcPoyg2bOKJPmQpIdB1oAUUwsXLuS1117Dw8ODjIwMfvrpJ9ucII8K+QTl0ZdmTMMiLHmOjFXcJV3PYNnY/ZgMFuo9E0L9Z0KKOiRJsrFaLCwfM4IrJ7M7JesDKrDcVIFLTkHM69eAxhXybjoohGB//H7mR81n65WtaBQNc9rOoWaJmnByDSzvDVYzov1XXJm1n7Rt29CFhBDy83JUzvkYHc5iyu77kXQR2nwGTw0smA9dzAiLhZgOz2C8cAHf94bg89prRR1SsSDv31JhkwlIMZaQkEBMTAwVKlTAw8OjqMO5Z/ICJhUH0Xvj+WNOFIoCzw2pRekKj96sxNLjKzM1he0L5xC1fQtWixmAmzpvTvnWYeqIvgR655wk9N+EEHyw/QM2XthICccSLO24FB9HH9g1FTZ9BGo95i6/cv6N4ZivXcPt2Y6U/uKLu/cHObwAVg0AJx949yjoHs8hrZPXriP2/fdRu7tTbvPmfE06+CSQ92+psMkmWMWYt7c39erVeySTD0kqLio18CO0oR9CwO+zoshKMxV1SJJk4+jqRkT/d3h1+o/UeaYzWgcHfIwJNLr6O/MGv8H+9attM6nnRlEURj81mrLuZbmeeZ2h24ditpoh/G2o0AYsBjSbBuH/+RhQqUhZvYa44SMQpjv8P7CYYfvE7H8/PeixTT5M169zY9pUALz69JbJhyQ9RDIBkSTpsdf4pYp4lHQiPcnA5nknkRW/UnHj6uVDsx79eP2buVR99iUy1Y44GJLZ/tP3/DCgL3t+WUxmWmqu2zprnZncfDJOGif2x+9n6qGpoFLBc9+Ba2lIOINT3HxKfTYG1GqSV67kytsDsWZm5h7MsWWQeB6cvKHeq4X4qYtO5rFjXPhfF0wXL6H28cHzlVeKOiRJeqLIBESSpMeezkFDm35hqDQKF47e5NjWq0UdkiTlysHFhYhXuhM+bDJbvBuTrHElMzWF3csW8sNbfdix+CesVkuO7cq6l+WzRp8BMOfEHDZd3ATO3vC/Wdmd0o8uxSMkk4Bp01D0etK2beNS7z6YExPtd2Qxw7Yvs//91ONZ+5G8Zi0Xu/fAfP06uvLlKLNo4f3PkyJJ0n2RCYgkSU8E3yBXnupcHoAdy06zeW4UKTfzeAIsSUWsZbUAWjz3HPMDXuZPvza4+QdjMmSx79fl7F62KNdtWge3pndYbwBG7hzJ2cSzEPwUNB+eXWD9+7hWLUXQnDmo3N3JPHKEi690xxQb+89Oji75u/bDB+o/Xh2yhdXK9a8mE/vBBwiDAZdmzSizZAm6oJwz0EuSVLhkAiJJ0hOjeosAqjQqDQJO/RXPwlF/sWPpaTJSjEUdmiTl8E6rijSqWIITjuVYXOp/NO7zJgB7Vy7l3MF9uW9T+x3q+dUjw5xBl7Vd+HD7h0RWaokIaQqmDFjeG6eqlSizcAEaPz+MMTFceKkbWadPZ498tX1C9o6efuexqv2wpKZyZcDbJHz/PQDer71GwDfTUbvcuZO/JEmFQ46CJRUaOYqGVFxdO5/CX6vOceVUdvMTjV5NzVaB1G1XBrVGPpeRio9b6UaembqD2OQs2lfz4wXDfiI3rkXv7Ez38V/jUdIvxzY3M2/ywbYPOHDtgG1ZZY8KdLsURbtb8TjU6gHPTsMUH8+lV1/FePYcKjc3At99FqfTX4Kzb/as549JApJ1+jRXBw7CePEiik5HqbGf4d6xY1GHVazJ+7dU2GQCIhUaeQGTirvLJ2/x16/nuH4xu3Nvlcalaf5KaBFHJUn2Dl9K5MWZezBZBCPaVsD5j5nEnYmmRJlyvDTmS7Q6fa7bRSVEseTUEtafX4/BYgDA3WLh+dR0uj41Ev96r2FJTubym2+ReegQihr8w2/h2nfkIzHvhzCZuPntdxivXMbzxRdxrFMnx/DCyWvXEffRR4jMTDSlShEw9Wscq1UroogfHfL+LRU2mYBIhUZewKRHgRCC03vj+eOnkyAg4rWqlK9ToqjDkiQ78/dc4KNVJ1CrFOa+WJFj0z8mMzWFqs3bENF/0B23TcpKYuXZlSyNXsrVtOwBGFRC0NSvAd2qv0p9z5rEvtqVtINnQBH4fTQSz5e7P4yPdd/MN25wZfBgMg8ctC1zqFIFz549cGvfHkVRuDZhAonz5gPg/FQ4pSdNQuMp5wHKD3n/lgqbTECkQiMvYNKjZM+v5zi04SI6Rw1dR9TDzcexqEOSJBshBIOXRvJrZCwlXPX80NqNzV99hhBW2rwxiGot2tx1Hxarhe2Xt7J4y/+xR/lnbpEQtzK8FHueRutTST/nBIDP22/jM+Ctu09YWAQyDh3i6jvvYr5xA5WzMy7Nm5O6aRPCkF3Lo/bxQVPCF0PUSQC833gD30EDUdTqogz7kSLv31JhkwmIVGjkBUx6lFgsVn6ddIj4mBRKhrjR+f3aqNWyP4hUfGQYzTz3zS5OX0ujQYgX7/hcZM+yBai1Wlr1e4vKjZuh1mjvvqOUWGJ+aMwSrYVVHh5kiOxhfZ0sVj48WZnKa04A4PHii/h9/BGKRlMg8QuLBVSq+05qhBAkzl/AtS+/BLMZXflyBEybhj4kBHNiIknLlpO4cCHm69cBULm4UPqLz3Ft2bJA4n+SyPu3VNhkAiIVGnkBkx41KTczWTp2P8ZMM7UjggnvXK6oQ5IkO+dupNFp+i7SDGbeaFKG0OO/EPP3iFgu3j7U7fAc1VpGoHO4Sw3emT9g4QukKQqrPXxY4qThvC47eWlz0Eq/TVYUAU5NGhM4eTIq5wfrkJ7+119c/eADVHoHPF95BY8Xnkd9D/cFa0YGcR+PImXtWgDc2rej1JgxOeISJhMpG38n89AhvHr2QFemzAPF/aSS92+psMkE5Anx7bff8u2333LhwgUAwsLC+Pjjj2nXrl2u5efOnUufPn3slun1erKysnItnxt5AZMeRWcPXmfjD8dBgWcH1iSwildRhyRJdn47FsebCw8BMKNrNXwu7ePQ+lWkJ2WP6ubg7ELNts9Qq21HnNzc897RplGwawoAwqUkf3X9gcVnfmHblW3UiTYzaJUVvRkSg71wn/YFVSo8fc+1F0IIbs2ezfVJX4HValuuODnh0bkznt1fQR8Scsd9GC9e5MrAQRhOnwa1mpJDP8CzZ89i2TzscSHv31JhkwnIE2LNmjWo1WoqVKiAEIKffvqJCRMmcPjwYcLCwnKUnzt3Lu+88w7R0dG2ZYqiULJkyXwfU17ApEfVloWniNoRi6ObjpdG1sfJTVfUIUmSnbHrovhhx3lc9RpWD2xEoJuWqB1/cmDNChLjsicW1Oj0VG3emrrPdMa9RC7XbosJ5naAy3uh/UTbxINX067y8+mfObL1Z15fcBP3DLjuDoteLcvTT3WlQ9kOeDt63zVGS1o6cSNGkLpxIwDunTvjWLsWifPmYzhzxlbOuWkTvHr0xPnpp3IkFal/biH2ww+xpqai9vEhYPJXONWrd7+nTconef+WCptMQJ5gXl5eTJgwgX79+uVYN3fuXN59912SkpLue//yAiY9qkxGCz9/foBbsem4ejvQoGMIFer7oVLJJ65S8WCyWHnlh73su3CLUD9XVrz1FE46DVarhbP79rBv1S9ci8n+ka+oVIQ+1YR6z76Ab/B/ahuM6XDlAIQ0gf/8+LdYLew7uBrlvbG4X08nzQEmvKDmTLCWxgGNea78czQOaIxWlbPfiSHmPFcGDsR47hxotfiNGI5H164oioIQgoy//uLWvPmkbd0Kf/8M0ZUvh1f3Hrh3ehZFp+PG9OkkfPsdAI61auE/ZQraknKEuodB3r+lwiYTkCeQxWJh+fLl9OrVi8OHD1OlSpUcZebOncurr76Kv78/VquV2rVrM27cuFxrS24zGAwY/h6FBLIvYIGBgfICJj2SbsWms/rrw6QnZ8+S7lXamYadylKmuo9s+iEVC9dTsmg/dSc30wx0ruXPVy/WsH03hRBcPnGUfat+5uLRw7ZtQmrWoX6nLvhXDsvzeyysVhLj43D19kard8CcmMiFN9/AFHkMs1rhmw4Ku8KyB2jwcvCic/nOvFnzTfTq7PlIUv/4g9gP/w9rejqaEiXw/3oKTrVq5Xos44UL3Fq4iORffsGakQGAyt0dXXAwWUePAuD5yiuU/HAoik7WRD4sMgGRCptMQJ4gx44dIzw8nKysLFxcXFi0aBHt27fPteyePXs4c+YM1atXJzk5mYkTJ7J9+3ZOnDhBQEBArtt88sknjB49OsdyeQGTHlUmo4VjW65waONFDBlmAPzKutHwuXL4V5TzCUhFb29MAi//uBeLVfDZc1Xp3jA4R5lrMWfZt/oXzvy1CyGy+2GUqlCJep3+R/k6DVBU2clEwpVLRO3Ywqld20i5cR0HZxeqt2pLzYhncHZ2IXboh6T+/jsAJ7vW5evKF7llyO530rFsRz4L/5Sb06aTMHMmAE516+I/ZTIaH5+7fg5LairJK1Zwa/4CTFeuAKA4OFDq09G4P/vsg58o6Z7IBEQqbDIBeYIYjUYuXbpEcnIyP//8Mz/++CPbtm3LtQbkv0wmE5UrV6Zbt26MGTMm1zKyBkR6XGWlmzi86RJHN1/GbMr+ARcU5kXDTuXwDXIt4uikJ933288xbv0pdGoVy/qHUzPQI9dySfFxHFi7guNb/8BiMgHgVTqACg2e4vzhg1y/cM5WVlFUtmRFpVZTsWEjarXtiHrFKm7NnQuA24tdONS9Nh/99QmO6WYmbw3C/cj57P326kmJ999H0eZjWOB/ERYLaVu3krZzJ54vvYRDpUr3eDakgiATEKmwyQTkCdaqVSvKlSvHzL+fVt1Nly5d0Gg0LF68OF/l5QVMetykJxs4sP4CUTtisVqzL53l65agQceyeJR0KuLopCeVEII3Fxxiw4l4/D0cWTOwEV7OeTdXSk9K5NBvqzny+3oMGem25Sq1mpBadancqDlla9Xl4rFIDq7/lStRx21lSlesTEUXTxzmLkAlBM5Nm3CoTRk8v5xHiWQQeh3+Y8fh/kyHQv3MUuGS92+psMkE5AnWokULgoKCmPv306w7sVgshIWF0b59e7766qt87V9ewKTHVfKNDPatOc/p/ddAgKJSqPxUKep1KIOLp0NRhyc9gVKzTDw7fRfnb6bTuIIPc/vUR32XQRMMGRkc/eM34s+eJrBqDSo2fDrXYXuvnT/H4d9Wc3LnNqyW7KaILi6uBMRcJvBaItq/h9eN94DvXnJjYt+fCXQLLPDPKD088v4tFTaZgDwhhg0bRrt27QgKCiI1NZVFixbxxRdfsHHjRlq3bk3Pnj3x9/dn/PjxAHz66ac0bNiQ8uXLk5SUxIQJE/j11185ePBgvppsgbyASY+/m1fS2LvqHBeOJQCg1qqo3iyA2hHBOLjcW9MTSXpQ0fGpPPfNLjJNFga1rMCQ1hULdP/pSYlE/r6eI5vWk5mSDIDaKghMSKZmuVDGtklhf8ZJynuUZ2H7hThpZa3go0rev6XCpirqAKSH4/r16/Ts2ZNKlSrRsmVL9u/fb0s+AC5dukRcXJytfGJiIq+99hqVK1emffv2pKSksHv37nwnH5L0JPAJcKHDgBp0fr82pcq7YzFZObzpEvNH7ubA+vMYs8xFHaL0BKnk58r456sBMHXzGbacul6g+3f28OTpF1/h9W/m0Kb/IHyCymBRKVzw9SC6eijj20/D19GXs0lnGbFzBFZhvftOJUl6IskaEKnQyCco0pNECMHF4wn8tSqGhCtpADi6aqnbPoSwxqVRa+TzHunh+OjX48z/6yLujlrWDmxEoFfh1EQIITi7bw9rpnyOsFpp3vt11HWD6bOhDyaribdqvsWbNd4slGNLhUvev6XCJu+IkiRJBUBRFMpU86Hr8Hq07lcFN19HMlNN7Fh6moWj/iL6rzhbx3VJKkwjn6lMjUAPkjNNvLXwEFkmS6EcR1EUKjR4iqbd+wKwdd6PeN9Q81HDjwCYETmDPy/9WSjHliTp0SYTEEmSpAKkqBQq1vPj5U8a0PTlSji560hNyOKPuSdZ+tk+YiJvICuepcKk16iZ8UptPJ20HLuazOg1Jwr1eLXbdyL06aYIq5U1Uz6nlXdjXg59GYBhO4ZxLuncXfYgSdKTRiYgkiRJhUCtVlG1iT/dx4QT3rkceicNt2LT+e27Y/zy5UGuRicWdYjSY8zfw5Gp3WqhKLB432WWHbhcaMdSFIU2bwzEN6gMGclJrJk0nndrvkN9v/pkmDMY9Ocgkg3JhXZ8SZIePTIBkSRJKkRanZraEcH0+CycOm2D0ehUXDufwq+TD7N6aiTXL6YUdYjSY6pxBV+GtMoeCeujX49z/GrhJQFavQPPvj8SB2cX4s5Gs/On2UxsOpHSzqW5lHqJoduHYrEWTlMwSZIePbITulRoZCc2ScopPdnAwfUXOLEzFqsl+/JbrnYJGjwbgqefcxFHJz1urFbBq/MO8Oep6wR5ObHm7Ua4OxXeENHnIw+y4vNPQAiqtYzAu0lN3jz4HpnmTPqE9WFI3SGFdmyp4Mj7t1TYZAIiFRp5AZOkvCXfyGTf2hhO78uezFClUej0Ti1KV/Ao6tCkx0xyhokO03ZwJTGTRuV9GP98tUIbGQtg76/L2bn4p+w3ioJLaDC/uO4lzjuL8U3G80zZZwrt2FLBkPdvqbDJBEQqNPICJkl3l3A1jR1LT3P1dBIunnq6jqyPg7OcxFAqWMevJvP8t7sxmq2oVQodq5fijablqFyqcK7Nl44f4eC6X4k5tN+27JarkTNlMxnZdxrV/WoWynGlgiHv31JhkwmIVGjkBUyS8seYZWbZuP0kX88kpIYP7fpXQ1GUog5LeswcupTIV7+fZufZm7ZlzSr50r9pORqEeBXKd+5W7FUOb1jN8a1/YDYYADDoBfXbPkd4+//h7OFZ4MeUHpy8f0uFTSYgUqGRFzBJyr8bl1L5+csDWM2Cxl0rUr15QFGHJD2mjl1J5rvt5/jtWBy3p6apGehB/6blaFOlJCpVwSciWWlpHNi0mm2rF+GQkb1MpdYQ+nQT6j7TGd/gkAI/pnT/5P1bKmwyAZEKjbyASdK9OfLnZXYuO4NKo/C/D+viG+ha1CFJj7GLCel8vz2G5QevYDRbASjn68wbTcrRqVZp9Bp1gR/z3K2zfDirH+XOaimR5ACAolLReejHhNSqW+DHk+6PvH9LhU0mIFKhkRcwSbo3QgjWf3uMC0dv4lHSiS7D6qJz0BR1WNJj7kaqgbm7zzN/z0VSsswAlHTTM/a5arSqUrLAj7f9ynbe3vw23kla/ne9DllnY9E7O9N93BQ8/EoV+PGkeyfv31Jhk/OASJIkFROKotCiZyjOHnqSrmWwY+npog5JegL4uur5ICKU3cNaMqJ9ZUq66bmWYmDAokOFMndIk4AmDKo9iJseRmaX349bmQAM6emsmjQWU1ZWgR9PkqTiRyYgkiRJxYiji47WfaugKHBqTzzRe+OLOiTpCeGi1/Bak7JsH9qcZpV8MZit9F9wkMR0Y4Efq1/VfrQt0xajyszPlU/h4ObGzUsX2Pjd18iGGZL0+JMJiCRJUjHjX9GTuh2yO+VuXRRN0rWMIo5IepLoNWq+7lqLYG8nriRmMmjJYSzWgk0KFEVh9FOjCfUKJVZJ4FBDAyq1mug9Ozi4dmWBHkuSpOJHJiCSJEnFUN32ZfCv6IHZYGHDD8cxmyxFHZL0BHF30jKzRx0ctWp2nLnJxN+jC/wYTlonpjSfgqfek32a0yQ/5QvA9oVzuXT8SIEfT5Kk4kMmIJIkScWQSqXQum8Yjq5aEq6ksWv52aIOSXrChPq58cX/qgPw7dbsYXsLmr+LP5OaTUKtqPnFZS+6akEIYWXtlC+IO1vwSY8kScWDHAVLKjT5HUXDYrFgMpkeYmSS9OiIPZPIlgXZP8Se7lKeMlV9ijgi6Unz3dazLD94BUetmukv16aMj3OBH2NtzFq+P/I9GqGiy+kwsq4lAFCibHnCmrQkqFp1VKq7Dwus1WpRqwt++OAnjRwFSypsMgGRCs3dLmBCCOLj40lKSnr4wUnSI8SQYcKYaQEFnN11qNSy8lp6eIQQJKQZyTJbUasUXPRqnHWaAp+wMMmQRIYpAzUqXKwOWIxG+PsXiqJWo3N0ROfggKLc+fvv4eGBn59foczs/qSQCYhU2OQA81KRuZ18lChRAicnJ3mzkKQ8CCFIuZmJ2WhFrVXh7uOIUgizVUtSXoIsVi7fysRoye6LZFEUnB00eDrp0GsLpsbBKqxcTbtKljkLnUpHKUc/TBkZZKWnYf37uBqtDveSfqhUOZMQIQQZGRlcv34dgFKl5JwiklRcyQREKhIWi8WWfHh7exd1OJJU7OlK6bkVl46wCozp4OKpQ62RNSHSw1PJyZHkDBM30wxkmiykmCAl2YSrAwR6OqIpgJq5MroyxCTHYLaauWK8iouTCx4eJdAYBWm3bmG1WDCmJONeMvcaDkdHRwCuX79OiRIlZHMsSSqm5N1LKhK3+3w4OTkVcSSS9GhQa1S4eTsA2U2yEmLTSb2VhcVsLeLIpCeFSlHwdNZRvoQLZX1dcHfUogCpWSYu3cookPk7tGotwW7BOGocEQhSjalcTrvCJXM8Vnc9iqKQlZ5GRnJinvu4fV+RfQslqfiSCYhUpGSzK0nKP72TFo+STmj1ahCCzFSjTESkh05RFFz0GoK9nSlfwgWVopBmMBOfXDCzmDtoHCjrUZZyHuXwdvRGo9JgsVpIsCSR4Zj9PU9NSMCQkfv8OPK+IknFn0xAJEmSHiE6Bw0eJZ3wKGGfiNyKTSftVhZWi0xEpIfHUach0DO72dONNANJGQU3a7qDxgE/Zz8qeFYgyC0IvVpPhtaE2SE7wUi+Ho9Z1nJI0iNJJiCSJEmFpEyZMkyZMqXA96soCjrH7ETEvYQTGp06uwNuqpGEq+mkJT4aiYgQgtdffx0vLy8URSEyMvKO5Zs1a8a77777UGKT8s/dSYevqx6AK4mZZBoLdtJMlaLCVedKkFsQapWaZL0BoVVhtVhIuhaH1Vr8v+uSJNmTCYgk3Yf4+HgGDhxI2bJl0ev1BAYG0rFjRzZv3mxXbvfu3bRv3x5PT08cHByoVq0aX331FRaL/Q1aUZQcr0aNGj3QekVRWLJkCQBbt27Ns0x8fHyen3PQoEHUqVMHvV5PzZo183Vuvv/+e5o1a4abmxuKohTYMMtz587NNX4HBwdbmd69e6MoCp9//rndtr/++mu+m2XcPldhYWE5/k4eHh7MnTvX9r5MmTK2OJydnalduzbLly+3rd+/fz+vv/46ALdu3WLgwIFUqlQJR0dHgoKCGDRoEMnJyXbHuHTpEh06dMDJyYkSJUrwwQcfYDabbetXrFhB69at8fX1xd3dnWYtGrPvyA77RCTFyJfjJhMcFIyDgwMNGjRg3759+fr8/yaEoF27diiKwq+//npPcd4+l7Vr10av11O+fHm7cwewYcMG5s6dy9q1a4mLi6Nq1ar3HGNB+vffU61WU7p0afr160di4j/9DfL7fyklJYURI0YQGhqKg4MDfn5+tGrVihUrVtj1lTh79ix9+vQhICAAvV5PSEgI3bp148CBA7Yy27Zto0WLFnh5eeHk5ESFChXo1asXRmPB1TY8KD83B1z0GqxCcPFWOuZCSIB1ah0BLgEAJDlkgUrBbDCQcuOabZQsSZIeDTIBkaR7dOHCBerUqcOff/7JhAkTOHbsGBs2bKB58+YMGDDAVm7lypU0bdqUgIAAtmzZwqlTp3jnnXf47LPPeOmll3J02JwzZw5xcXG21+rVqx9ofVxcHM8995xdmejo6BxlSpQoccfP27dvX7p27Zrv85ORkUHbtm0ZPnx4vrfJLzc3txzxX7x40a6Mg4MDX3zxhd2PxvsRExPDvHnz7lru008/JS4ujsOHD1OvXj26du3K7t27AfD19bV1iI2NjSU2NpaJEydy/Phx5s6dy4YNG+jXr59tXxaLhQ4dOmA0Gtm9ezc//fQTc+fO5eOPP7aV2b59O61bt2b9+vUcPHiQ5s2b8+yzzxJ16hiefk64+zqyZv1KRn02nCEDP+SPdTuoUrkqERERtuFJ82vKlCm5Jm75ifP8+fN06NCB5s2bExkZybvvvsurr77Kxo0bbWXOnTtHqVKleOqpp/Dz80OjKfqBGW//PS9dusTChQvZvn07gwYNylHuTv+XkpKSeOqpp5g3bx7Dhg3j0KFDbN++na5duzJ06FBb0nngwAHq1KnD6dOnmTlzJlFRUaxcuZLQ0FDee+89AKKiomjbti1169Zl+/btHDt2jGnTpqHT6XIkyEVJURSCvJzQqVUYzVYuJ2YWSKf0/3LRueDn7IdVBSlOJlAgKy2NG5fOk3LjOuZilJRJknQHQpIKSXJysgBEcnJyjnWZmZkiKipKZGZmFkFkD6Zdu3bC399fpKWl5ViXmJgohBAiLS1NeHt7i+effz5HmdWrVwtALFmyxLYMECtXrszzmA+6fsuWLQKwxXevRo0aJWrUqHFP2zzoMf9rzpw5wt3d/Y5levXqJZ555hkRGhoqPvjgA9vylStXivxe7m7H/cEHH4jAwECRlZVlW+fu7i7mzJljex8cHCwmT55se28ymYSTk5P4v//7v1zX/9eyZcuETqcTJpNJCCHE+vXrhUqlEvHx8bYy3377rXBzcxMGgyHP/VSpUkWMHj3a9r5+/frijdffFDevpoprF5JFXEyi8CtZSoweNUZYLNZ8nYfDhw8Lf39/ERcXl+P7lZ84hw4dKsLCwuz22bVrVxERESGEyP5bkT3NnABEcHDwXWNq2rSpeOedd2zvb926JXr06CE8PDyEo6OjaNu2rTh9+rQQQgir1Sp8fHzE8uXLbeVr1Kgh/Pz8bO937NghdDqdSE9PF0Lk/vcaM2aMqFKliu19fr7Xb775pnB2dhZXr17NsS41NVWYTCZhtVpFWFiYqFOnjrBYLDnK3d7/5MmTRZkyZfI8VnGTYTCJY1eSxJHLiSIuKaNQjmG1WsWVlCvi+I3j4kz8KXH90gURd/a07RV/8YI4GhkpMjLufnyT0ShMd/i/9aS60/1bkgqCrAGRig0hBBlGc5G8RD6f1N26dYsNGzYwYMAAnJ2dc6z38PAA4PfffychIYH3338/R5mOHTtSsWJFFi9e/EDnS8qdWq1m3LhxTJs2jStXrtz3ft59913MZjPTpk3L9zYajQatVpvvpjG3Zxm+/eR/z549VKtWjZIlS9rKREREkJKSwokTJ3Ldh9VqJTU1FS8vLwCMRiMHDx6kbbs2eJVyxs3HEa1OQ5Onm7F71x5uXU0jI8WAsOb9nc/IyODll1/mm2++wc/PL8f6/MS5Z88eWrVqZbddREQEe/bsAeDrr7/m008/JSAggLi4OPbv35+fU2and+/eHDhwgNWrV7Nnzx6EELRv3x6TyYSiKDRp0oStW7cCkJiYyMmTJ8nMzOTUqVNAdtOmevXq5Tkc+NWrV1mzZg0NGjTId0xWq5UlS5bwyiuvULp06RzrXVxc0Gg0REZGcuLECd57771cJ9W7fS3x8/MjLi6O7du35zuGouSo0+D/d6f066kGkjMLvpO4oiiUcimFo8YRg9pMkosRrY87eqfsa7IxK5OM5CR+/fJTjm7egMmQc3SuhCuX+OPHGczo141v+r7Eb9MnceXUiUKptZEkKaeir++WpL9lmixU+Xjj3QsWgqhPI3DS3f2/w9mzZxFCEBoaesdyp0+fBqBy5cq5rg8NDbWVua1bt252k2YtWLDArgnVva6H7OYbQUFBtvcBAQF264ODg/P8YVscJScn4+LiYrescePG/Pbbb3bLOnfuTM2aNRk1ahSzZs26r2M5OTkxatQohg8fzmuvvYa7u/sdyxuNRiZNmkRycjItWrS46/5v3rzJmDFjbH1EILtv0b9/1AO293n11Zk4cSJpaWm8+OKLtv1aLBZKliyZ3UfGWYveSYN/YCnObjuD1SpISzSQkWLEyV2Po7M2x6zqgwcP5qmnnqJTp065HjM/ceZVJiUlhczMTNzd3XF1dUWtVuea5NzNmTNnWL16Nbt27eKpp54CYOHChQQGBvLrr7/SpUsXmjVrxsyZM4Hspmu1atXCz8+PrVu3EhoaytatW2natKndfj/88ENGjhyJxWIhKyuLBg0a8NVXX+U4fl7/l27evEliYuJdrxFnzpwBuGu5Ll26sHHjRpo2bYqfnx8NGzakZcuW9OzZEzc3tzufpCLi6aQj02jhZpqBy7cy0JdwwaGAZku/TaWoCHQNJCY5BqPFSLzlBiqdCjdHFzTpAhSFpPg4Nn0/nR2LfqJ6q7bUaN2OazFnidy4lkvHj9rtL2rHFqJ2bMHLP5DqLSOo0qQFjq7F8/xK0uNAJiCSdA/u9enYvZSfPHmy3RPjUqVKPdB6IMcT2B07duDq6mp7r9Vq8x1fYVm4cCFvvPGG7f1vv/1G48aNcy3r6urKoUOH7Jbdnvn4v7744gtatGiRay1UfvXr149JkybxxRdfMG7cuFzL3P7BmpWVhYuLC59//jkdOnS4435TUlLo0KEDVapU4ZNPPrnv+BYtWsTo0aNZtWrVHfvyKIqCRqdGo1Ph6uVAerIRq8VK2q0sMpKNOHvocHDWoigKq1ev5s8//+Tw4cP3HdfDcPLkSTQajV3thLe3N5UqVeLkyZMANG3alHfeeYcbN26wbds2mjVrZktA+vXrx+7duxk6dKjdfj/44AN69+6NEILLly8zfPhwOnTowPbt2+0S/Lz+L+X3/3x+y6nVaubMmcNnn33Gn3/+yd69exk3bhxffPEF+/bty3EdKC783B3INFlIN5i5mJBB+RLOqHOp6XkQWrWWsh5lScpKIsmQhNFiJMmcglVlJctRENKmGZc37yDlxjX2/bqcfb/+M0CEoqgoV7cBtdo+g1bvwNHNGzm1exu3rl5m67wf2bFoLhUaPE21FhEEhlWTc4tIUgGTCYhUbDhq1UR9GlFkx86PChUqoCiKrQlHXipWrAhk/0i6/XT2306ePEmVKlXslvn5+VG+fPk89/mg6wFCQkJsTTuKi2effdbuR6S/v3+eZVUq1V0/421NmjQhIiKCYcOG0bt37/uKTaPRMHbsWHr37s3bb7+da5nbP1hdXFxstQ53kpqaStu2bXF1dWXlypV2SaCfn1+O0aquXbtmW/dvS5Ys4dVXX2X58uV2iaePjw9qtdq23b/34+fnh6NrdrKRmW4iI9mA1WIlNeHvRMRdz+bNmzl37lyO78kLL7xA48aN2bp1a77i9PPzyzUGNze3PJPGglatWjW8vLzYtm0b27ZtY+zYsfj5+fHFF1+wf/9+TCZTjv+fPj4+tu9YhQoVmDJlCuHh4WzZssXuPOf1f8nX1xcPD498XyNOnTpFrVq17vpZ/P396dGjBz169GDMmDFUrFiR7777jtGjR99126Kg+rtT+tnraRjMFi7fyiTY26nAf8hrVVp8nXzxcfQh05xJkiGJRFMiZmFmLhv4+vOvSYk6x6H1q7ly8jgOrm5Ub9GGGm3a4+bzT9JeqkIlmvV8lVO7tnF08waunz/HqV3bOLVrG56lSlOtRQRhTVvi5O5RoPFL0pNK9gGRig1FUXDSaYrkld+bopeXFxEREXzzzTekp6fnWH97yNk2bdrg5eXFpEmTcpRZvXo1Z86coVu3bg90vh4Xrq6ulC9f3vYqyB+nn3/+OWvWrLH1O7gfXbp0ISwsLM8ferd/sPr5+d31e5SSkkKbNm3Q6XSsXr3abghhgPDwcI4dO2Y3WtWmTZtwc3OzS1gXL15Mnz59WLx4cY7aFp1OR506deyGhLZarWzevJnw8HAAFJWCk6sO79IuuHjqUakULGYrKQmZvNFnEPv/Osjhw4eJjIy0zc0xefJk5syZk+84w8PDcwxLvWnTJlsMD6py5cqYzWb27t1rW5aQkEB0dLQtBkVRaNy4MatWreLEiRM0atSI6tWrYzAYmDlzJnXr1s21L9e/3a71yMzMzFdcKpWKl156iYULFxIbG5tjfVpaGmazmZo1a1KlShUmTZqU6zwWdxq+2tPTk1KlSuV6DSpOtGqVLelIyTJxPdVQaMdSFAUnrROlXUpTxr0MGpWGW1m3GLJ9CMF16tL1k8/pP3M+b8yYS+OXe9slH7fpnZyo0bodPT7/mu7jp1C9VVt0jo4kxsWyfeEcZr7ZmzVfjefC0cMIOfeIJD0QmYA8Ib799luqV6+Om5sbbm5uhIeH52g3n5clS5agKEqOIV2fVN988w0Wi4X69evzyy+/cObMGU6ePMnUqVNtP66cnZ2ZOXMmq1at4vXXX+fo0aNcuHCBWbNm0bt3b/73v//Z2uwXlKSkJOLj4+1e//2Bcv369RxlTHeYSfjs2bNERkYSHx9PZmam7Qfp7U7WV69eJTQ01O5peHx8PJGRkZw9exaAY8eOERkZya1btx74MwohcsQfHx+f50Rk1apV45VXXmHq1KkPdNzPP/+c2bNnP9APvtvJR3p6OrNmzSIlJcUW/+3hVNu0aUOVKlXo0aMHR44cYePGjYwcOZIBAwag12dP9LZo0SJ69uzJpEmTaNCggW0f/55PZMiQIfzwww/89NNPnDx5kjfffJP09HT69OljF5OiUnBy0+Pl74Kzhx5FpeDj6UtgyXL4e5elQtlKhIWFARAUFERISEi+4+zfvz8xMTEMHTqUU6dOMWPGDJYtW8bgwYPv+xz+W4UKFejUqROvvfYaO3fu5MiRI3Tv3h1/f3+7vivNmjVj8eLF1KxZExcXF1QqFU2aNGHhwoU5+n9Adg1VfHw8cXFx7Nu3jw8++ABfX98cNSV3+r80duxYAgMDadCgAfPmzSMqKoozZ84we/ZsatWqRVpaGoqiMGfOHE6fPk3jxo1Zv349MTExHD16lLFjx9o+w8yZM3nzzTf5/fffOXfuHCdOnODDDz/kxIkTdOzYsUDOZWFy0mnw98h+qHAtJYuUQuiU/l9qlRovBy+ctc4cvXGUMX+NQQiBs4cnGp0uX/soWbY8rV97mze+m0ebNwbhV74iVouZ03t38cvYj5j1zmvsXbmMtMQHv65J0hOpaAbfkh621atXi3Xr1onTp0+L6OhoMXz4cKHVasXx48fvuN358+eFv7+/aNy4sejUqdM9HfNxHYZXCCFiY2PFgAEDRHBwsNDpdMLf3188++yzYsuWLXbltm/fLiIiIoSbm5vQ6XQiLCxMTJw4UZjNZrtyFMAwvLm9xo8fL4T4Z+jQ3F579uzJc79NmzbNdZvz588LIbK/H4Dd5x41alSu2/x7+Nr7MWfOnDw/Q1xcnBAie2jX/35Pz58/L3Q63T0Pw/vfYVbbtGmT43PcbZjdf6+/09/g9vkUQogLFy6Idu3aCUdHR+Hj4yPee+892zC9QuT9N+nVq5fdsadNmyaCgoKETqcT9evXF3/99dddP7vFYhVpiVni+sUUce1Csrh2IVkkxKYJQKxYscKu7N3ivP2Za9asKXQ6nShbtmyO78DkyZPzNfzuvz97bsPwuru7C0dHRxEREWEbhve2w4cPC0B8+OGHdscFxIYNG+zKBgcH251TX19f0b59e3H48GG7z5Sf/0tJSUni//7v/0SFChWETqcTJUuWFK1atRIrV64UVus/QyFHR0eLnj17itKlSwudTieCg4NFt27dxKFDh4QQQhw6dEh0795dhISECL1eL7y9vUWTJk3E6tWr833eioMrt9LFkcuJ4vjVJJFlNN99gwdw+/6y68IuUf2n6qLq3KpiQdSCB97vtfPnxB+zZoipvbqIiS92EBNf7CAmvdRRbPphurDmMpTyo0wOwysVNkUIOebck8rLy4sJEybYTYT2bxaLhSZNmtC3b1927NhBUlJSjtmQ7yQlJQV3d3fbUKP/lpWVxfnz5wkJCcnRDEWSpKJltVjJSDGSmWqydZbW6tU4e+jROciug9K9swpBzI10MoxmHLRqyvm6oFYVTsfuf99flp5bysQDE1Erar5v/T31S9V/4P2bDFmc/msXR//YQOzp7AEPGnR+kUYv9XzgfRcXd7p/S1JBkE2wnkAWi4UlS5aQnp5+x/bYn376KSVKlMgzQfkvg8FASkqK3UuSpEePSq3CxdMBL39nHF11oCiYDBaSrmWQdC0Dk6H4zMAtPRpUikKwtxMatYosk4UriRkPZc6NnlV68kzZZ7AIC+9te48LyRceeJ9avQNhTVvSbcwE2r6V3aRw78plnNy17YH3LUlPCpmAPEGOHTuGi4sLer2e/v37s3LlyhwjMd22c+dOZs2axQ8//JDv/Y8fPx53d3fbKzAwsKBCl6QC065dO1xcXHJ95TXU7uNk4cKFeX7+2/09blOrs4ft9S7tjKNLdtt5Y5aZxPh0kq9nYDIWXCJy6dKlPONycXHh0qVLBXYsqWho1SqCvZxQUEjONHEjrfA6pd+mKAqjwkcR5h1GkiGJTqs60f+P/qyPWU+mOX8DC9xJWNOW1O34PAC/f/s18WdP32ULSZIAZBOsJ4jRaOTSpUskJyfz888/8+OPP7Jt27YcSUhqairVq1dnxowZtGvXDsiecfhuTbAMBgMGwz83lJSUFAIDA2UTLKlYuXr1ap4jGnl5edlmFH9cpaam5hge9zatVktwcHCe25pNVjKSDWSl/9ORWO+kxdlDh+YBJ5ozm81cuHAhz/VlypSxzRgvPdoS0gxcTcpEAcr4OOPqULDzEeV2f7mWfo0Pd3zIwWsHbeWctc60CmrFs+Wepa5fXVTK/T2TtVotrJrwGTGH9uPi6cUr46fg4vloX0dkEyypsMkE5AnWqlUrypUrZ5sp+LbIyEhq1aplN+nW7VGGVCoV0dHRlCtX7q77l31AJOnxZDZaSE82Ysj4JxFxcNbi7K5HrZUV69KdCSG4kphJYoYRtUqhQgkXdJqCmyn9TveXiykXWXNuDWtj1nI17aptuZ+zH8+UfYaOZTtS1qPsPR/TkJHBopHvcevqZfzKV6TrqM/zPeJWcSQTEKmwyQTkCdaiRQuCgoKYO3eu3fKsrCzbEKq3jRw5ktTUVL7++msqVqyILh8XVpmASNLjzWS0kJ5kwJhpti1zdNHh5K5DrZGJiJQ3q1Vw7mYamUYLjn93SlcVUKf0/NxfhBAcvn6Y1edW8/uF30k1pdrWhXmH0bFcR9qWaYu3o3e+j5sYH8ui4UPISk8j9OmmtOk/CK1O/8CfpyjIBEQqbDIBeUIMGzaMdu3aERQURGpqKosWLeKLL75g48aNtG7dmp49e+Lv78/48eNz3T4/TbD+SyYgkvRkMBnMpCcZMWb9nYgoCk4uWpzcdajUMhGRcmc0Wzl7PQ2z1YqHk45AT8cCmSn9Xu8vBouBrZe3svbcWnZe3YlZZH+PNYqGp/2fpmO5jjQLbIZeffdk4tLxI/w89iOE1Yre2ZkqjVtQvWUEPkFlHvBTPVwyAZEKm2xQ+4S4fv06PXv2JC4uDnd3d6pXr25LPiC7A6hKJX8oSJJ077R6DR4lNRizzKQnGTAZLGSkGslMM+HopsPJTVdgT7elx4dOoyLIy4nzN9NJyjDipFXj4/rwawz0aj0RZSKIKBPBraxb/Hb+N9acW8OJhBNsu7KNbVe24ap1pU2ZNrxe/XVKu5TOc19BVWvQYdAHbF84h5Qb1zm8YQ2HN6yhVIVKVG/ZlsqNm6OWfZkkSdaASIVH1oBI0pNHCIEx00x6shHz36NkZc+4rsPRVSYiUk43Ug3EJWeioBDi44zLA841U1D3l5ikGNbEZPcXiU+PByDAJYDFHRbj4eBxx22tVgsXj0ZybPNGzh3ci9WS/X+hQv2n6Dj4/1CK+QM/WQMiFTaZgEiFRiYgkvTkEkJgyDCTnmzAYvp7EAu1gpObHkcXLYpMRKS/CSG4nJhJUoYRjUpF+RIu6B6gD1FB31+swsrBawf5aNdHXE27Sn2/+nzX+ju0qvyN3pWelMjxLZvY8/MiLGYzDV94iadf7P7AcRUmmYBIha14p+CSJEmPoQsXLqAoCpGRkUUdSqFRFAUHZy1epZxx83ZArVFhtQjSErNIiE0nI8WIsD7Y869du3ZRrVo1tFotzz33XMEELj10iqIQ4OGIo1aN2Wrl4q10rA/43ShIKkVFPb96TGsxDSeNE/vi9zFh/4R8b+/s4UmDzi/S6rW3AfjrlyVE79lRWOFK0iNBJiCSdI969+5t92Ond+/eKIpC//79c5QdMGAAiqLQu3fvHOv27NmDWq2mQ4cOuR7HaDQyYcIEateujbOzM+7u7tSoUYORI0cSGxub4/j/fbVt2zbPz7BixQrq1q2Lh4cHzs7O1KxZk/nz59/1s2/dupXatWuj1+spX758jhHU7ldu8SuKwpIlS2zHVRSFsLAwLBb7ye88PDzyHUeZMmWYMmWK3XtFUfjrr7/syr377rs0a9bM9v6TTz6xxaTRaPDx8aFJkyZMmTLFbu6b286ePUufPn0ICAhAr9cTEhJCt27dOHDgAACBgYHExcVRtWpVAI4cOUK3bt0IDAzE0dGRypUr8/XXX+fY793O/7fffkv16tVxc3PDzc2N8PBwfvvtN7syWVlZDBgwAG9vb1xcXHjhhRfynBfkvxISEmjbti2lS5dGr9cTGBjI22+/TUpKSp5xVqhQgSU/L8KrtDOuXg6o1CqsFitTv55GcHAZHBwcaNCgAfv27bvnOIcMGULNmjU5f/58gX0XpaKhUmXPlK5WKWQaLVxNynwoM6XfiwqeFRjfOHuglsWnFrP89PJ72r5qs1bUeaYzABtmTOFazNm7bCFJjy+ZgEhSAQgMDGTJkiV2E9xlZWWxaNEigoKCct1m1qxZDBw4kO3bt9slFJA9qWPr1q0ZN24cvXv3Zvv27Rw7doypU6dy8+ZNpk2bZle+bdu2xMXF2b0WL16cZ7xeXl6MGDGCPXv2cPToUfr06UOfPn3YuHFjntucP3+eDh060Lx5cyIjI3n33Xd59dVX77jNvZgzZ06Oz/Dfp9oxMTHMmzevQI53m4ODAx9++OFdy4WFhREXF8elS5fYsmULXbp0Yfz48Tz11FOkpv4zhOeBAweoU6cOp0+fZubMmURFRbFy5UpCQ0N57733AFCr1fj5+dkm1jt48CAlSpRgwYIFnDhxghEjRjBs2DCmT59u229+zn9AQACff/45Bw8e5MCBA7Ro0YJOnTpx4sQJW5nBgwezZs0ali9fzrZt24iNjeX555/P17lSqVR06tSJ1atXc/r0aebOncsff/xhl3znFefvv/+Oo6sO79LObNyyhlGfDee9QR+yae12KpWvQkSbCOLj/0kw8hPnuXPnaNGiBQEBAXh4eOTrM0jFl06jJsjLCQVIzDByK91Y1CHl0CKoBQNrDQRg3F/jOBB/4J62b/JKb0Jq1sFsNPDrxM9IT0osjDAlqfgTklRIkpOTBSCSk5NzrMvMzBRRUVEiMzOzCCJ7ML169RKdOnXK8b5q1apiwYIFtuULFy4U1atXF506dRK9evWy20dqaqpwcXERp06dEl27dhVjx461Wz9+/HihUqnEoUOHco3BarXmGc/9qlWrlhg5cmSe64cOHSrCwsLslnXt2lVEREQ88LEBsXLlyjzXb9myRQDigw8+EIGBgSIrK8u2zt3dXcyZMydfxwkODhaTJ0+2ez9o0CCh0+nEunXrbMvfeecd0bRpU9v7UaNGiRo1auTY38mTJ4VOpxMjRowQQmT/XcLCwkSdOnWExWLJUT4xMVEIIcT58+cFIA4fPpxnrG+99ZZo3ry57f39nn9PT0/x448/CiGESEpKElqtVixfvtzuMwBiz549d9xPXr7++msREBBwT3HWr19fvPXWWyIjxSBuXE4VcTGJwq9kKTHyw09EWlKWuHUr8Y5x3j5//37l9zsgFX/XUzLFkcuJ4ujlJJGWZbrn7Qv7/mK1WsX7W98XVedWFY0XNxZXUq/c0/ZZ6Wli9rtviIkvdhALRwwRJoOhUOJ8EHe6f0tSQZA1IFLxIQQY04vmVQBV/X379mXOnDm297Nnz6ZPnz65ll22bBmhoaFUqlSJ7t27M3v2bLvmBosXL6Z169bUqlUr1+0LYqz824QQbN68mejoaJo0aZJnuT179tCqVSu7ZREREezZs6fAYrmbd999F7PZnKMG6EGEhITQv39/hg0bhtVqvadtQ0NDadeuHStWrAAgMjKSEydO8N577+U6rPW9PKVPTk7Gy8vL9v5ez7/FYmHJkiWkp6cTHh4OZNe0mEwmu/2EhoYSFBR0X3/H2NhYVqxYQdOmTfMdp9Fo5ODBg7Ru3Tq7RsTfGXcfJ5o2bsb+g/tITzKwZeNOTCYTLVq0zDXO203Y3NzcmDJlCnFxcXTt2vWe45eKJx8XPe6OWgSCi7cyMFnu7f9lYVMUhU+f/pTKXpVJNCQy6M9BZJgy8r293smZ54Z+hIOzC3Fnotn0/bRi19xMkgqbHIxaKj5MGTAu7/HVC9XwWNA5P9AuunfvzrBhw7h48SKQ3UF2yZIlbN26NUfZWbNm0b179igobdu2JTk5mW3bttn6HZw+fdquDwJA586d2bRpEwDVq1dn9+7dtnVr167FxcXF/iMNH87w4cPzjDc5ORl/f38MBgNqtZoZM2bY5oXJTXx8PCVLlrRbVrJkSVJSUsjMzMTR0THPbfOjW7duqNVqu2VRUVF2TdicnJwYNWoUw4cP57XXXsPd3f2BjnnbyJEjmTNnDgsXLqRHjx73tG1oaCi///47AGfOnLEtexC7d+9m6dKlrFu3zrYsv+f/2LFjhIeHk5WVhYuLCytXrqRKlSq2feh0uhyJUMmSJYmPj893fN26dWPVqlVkZmbSsWNHfvzxx3zHmZiYiMVisZVRFAVHVx2BZfw5t/Usao2Ka9evodPpsKRrSFcbbMP33o7zdhM2RVFwd3fHz88v37FLxZ+iKAR4OmEwp5FlsnAxIYOyvs6oCvDBy4Ny1DgytcVUXlr7EqcTTzN853C+avYVKiV/z3U9S/nzzOD/45dxHxO1Yws+QWWo9+wLhRy1JBUfsgZEkgqIr68vHTp0YO7cucyZM4cOHTrg4+OTo1x0dDT79u2jW7duAGg0Grp27cqsWbPuuP8ZM2YQGRlJ3759yciwf9p2u739v1+5dYr/N1dXVyIjI9m/fz9jx45lyJAhuSZLD8LFxcX2uls8kydPzvEZSpfOmZD269cPb29vvvjiiwKL09fXl/fff5+PP/4Yo/He2p0LIWw1UgXxFPP48eN06tSJUaNG0aZNm3vevlKlSkRGRrJ3717efPNNevXqRVRU1APH9W+TJ0/m0KFDrFq1inPnzjFkyJAH3qeiKKhUCl6lnXF0yR7eVFgF6UkGEq6mkZ5kyG5sJT0R1CqFYK/sTukZRjOxSZl33+gh83P2Y0rzKWhVWjZf2sy3R769p+2Dq9Wkea/XANi+aC4xh/YXRpiSVCzJGhCp+NA6ZddEFNWxC0Dfvn15++3soRa/+eabXMvMmjULs9ls9+NaCIFer2f69Om4u7tToUIFoqOj7bYrVaoUgF2znNucnZ0pX778PcWqUqls29SsWZOTJ08yfvz4HDUvt/n5+eUYhejatWu4ubnlWfvx72Fm7zaWvJ+fX74+g0ajYezYsfTu3dt2rgvCkCFDmDFjBjNmzLin7U6ePElISAgAFStWBODUqVN5Np+7k6ioKFq2bMnrr7/OyJEj7dbl9/zrdDrbeaxTpw779+/n66+/ZubMmfj5+WE0GklKSrKrBbl27do91SL4+fnh5+dHaGgoXl5eNG7cmI8++ohSpUrdNU61Wo1arc61zO1ajaAyARiNRqwaA1rFEYvJSnqygbi4eDzdvbFarKjU8vnZ406vVRPo5cSFm+ncSjfipFPj5fzwZ0q/k5olavJRw4/4ePfHfHfkO8p7lCeiTET+t494hpuXLnJ08wbWTf2Slz+bhHdA7gOXSNLjRF7BpeJDUbKbQRXFq4Cq9tu2bYvRaMRkMhERkfMmZDabmTdvHpMmTbJ70n/kyBFKly5tG7mqW7dubNq0icOHDxdIXPlhtVpzHVL2tvDwcDZv3my3bNOmTbb+BbkpX7687VWiRIkCi7VLly6EhYUxevToAtuni4sLH330EWPHjrUb1epOTp06xYYNG3jhheymEzVr1qRKlSpMmjQp1/4kSUlJee7rxIkTNG/enF69ejF27Ngc6+/n/IP937VOnTpotVq7/URHR3Pp0qW77udO+wdsx7hbnDqdjjp16tiVsVqtbN682Vbmdpy7/tqePY+IjyPnL57lytXLVK9ch4Sr6aQlZt1XvNKjxc1Bi59b9mSCV5OySDeYiziinDpX6EyPKtlNN0fuHMnJhJP53lZRFFr0fYOAKlUxZmby65djyExNufuGkvSIkzUgklSA1Go1J0+etP37v9auXUtiYiL9+vXL0X/hhRdeYNasWfTv35/Bgwezbt06WrZsyahRo2jcuDGenp6cPn2a3377Lce+DQZDjjb8t+eryM348eOpW7cu5cqVw2AwsH79eubPn8+33/7ThGDYsGFcvXrVNuxt//79mT59OkOHDqVv3778+eefLFu2zK6fwoNISkrK8RlcXV1xds69b87nn3+ea5L3IF5//XUmT57MokWLaNCggd06s9lMfHw8VquVhIQEtm7dymeffUbNmjX54IMPgOwfE3PmzKFVq1Y0btyYESNGEBoaSlpaGmvWrOH3339n27ZtOY57/PhxWrRoQUREBEOGDLGdB7Vaja+vL5C/8z9s2DDatWtHUFAQqampLFq0iK1bt9qG6nV3d6dfv34MGTIELy8v3NzcGDhwIOHh4TRs2PCu52f9+vVcu3aNevXq4eLiwokTJ/jggw94+umnKVOmTL7jHDJkCL169aJu3brUr1+fKVOmkJ6ebhu0Ibc4B//fQBo2aEjDhg0xGy3ZExkKyEo3yRqRx5yvq55Mk4XkTBPnbqTh6qDFx0WHi15ToANyPIghdYYQkxTDrthdDNoyiMUdFuPjmPv197/UGi0dBw9j0YghJF2LY83kz3lh+KeoNfInmvQYK8ohuKTH25M2DG9e/j0M7zPPPCPat2+fa7m9e/cKQBw5ckQIIURWVpb4/PPPRY0aNYSjo6PQ6/UiNDRUDB48WFy6dMnu+PxnSFJAVKpUKc+YRowYIcqXLy8cHByEp6enCA8PF0uWLMnxOf89FK0Q2cPh1qxZU+h0OlG2bNkCG/o0t/gBMX78eNtxAdswtre1adPmnoZgzW0Y3n+/F0KIRYsWCSDHMLy3Y1Kr1cLLy0s0atRITJ482W5I4Nuio6NFz549RenSpYVOpxPBwcGiW7dutmGV/zsM77/3/+9XcHCw3X7vdv779u0rgoODhU6nE76+vqJly5bi999/tyuTmZkp3nrrLeHp6SmcnJxE586dRVxcXL7O359//inCw8OFu7u7cHBwEBUqVBAffvhhjr9Lfr4n06ZNE0FBQUKn04n69euLv/76K19xWq1WkZVuFAmxacLN1V18PWGGuH4xRaTeyhRmc86hj6XHg9liFRdupokjlxNtr1NxKeJmapawWKx2ZYvq/pJsSBbPrHhGVJ1bVXRf110YzPc2vO6Ni+fF1z3/Jya+2EFsnDlVGA05ry0PixyGVypsihBy7DepcKSkpODu7k5ycnKO9v9ZWVmcP3+ekJAQHBwciihCSZIeVUIIjJlm0pONmI0WILsGysFFi5ObDrVG1og8jgwmCwnpRhLTjVj+/vmiVaso5+uMTpNdM1yU95fzyed5Zd0rpJpS6Vy+M6OfGn1PtTRnD+xl1cTPQAj0Ts5Ubtyc6i0j8A0OKcSoc7rT/VuSCoK8QkuSJEmPHEVR0Dtp8fRzwt3XEY1OjRCCzFQjCbHppN7KwmIuXvNHSA9Or1VT2sOR0FKulHZ3RKdWYbJYuZiQgdVa9M9TQ9xDmNB0AipFxcqzK1l4cuE9bV++bgPavTUYN9+SGDLSidy4lnlDB7JwxBCObt6IMav4jQYmSfdDJiCSJD0WFi5caDfs779fYWFhRR3eI6F///55nsO7DaNcVOwSkRJOaPVqsCUiaaQmyETkcaRWqfBx1VPW1wWNSkWmycKVpMxiMaHf0/5PM6RO9tDUEw5MYPfV3XfZwl6VJi14deoPvDBiDBUbPI1KrSH+7Gk2fT+N797oye/fTyP+7Oli8Vkl6X7JJlhSoZFNsKSHKTU1NcfQrrdptVqCg4MfckSPnuvXr5OSkvsIPG5ubgU6kllhEUJgyrKQnmzAZLDYlju66HByl02zHkdpWWbO30xHICjl7oirVhT5/UUIwUe7PmLVuVW46lxZ1H4RZdzL3Ne+MpKTOLFtM8f+/J3EuKu25b7BIVRv2ZbKjZuhd3qwiXT/SzbBkgqbTECkQiMTEEmSipIxy0x6kn0i4uCixdlNj1orE5HHyc1UA7HJmSgolHZVcT32SpHfX4wWI3039uXIjSOUcSvDwg4LcdPd/495IQRXTh7n2OaNnN67C4vJBICjmztvfDsXtUZbUKHLBEQqdPIKLEmSJD2WdA4aPP2c8SjphM4he0jTrDQTCbFppNzMxGyy3GUP0qPC20WHp5MOgSAu2YC5GPQH0al1TGk+hZJOJbmQcoGh24disd7/d05RFAKrVKP9wPd547t5NO/1Gt4BQZSrU79Akw9JehhkAiJJkiQ91nQOGjxKOtknIukmbsWmy0TkMaEoCv4ejjhq1VisVm6lGTAUg7+rj6MPU1tMxUHtwK6ru5h8cHKB7NfRxZXa7TvRa+I3tOjzRoHsU5IeJpmASJIkSU+E24mIp59MRB5HKpVCsLcTapWC0SKY/Efx6KhdxbsKYxqNAeCnqJ9YdXZVge1bURS0etmMWXr0yAREkiRJeqJo9bcTEWd0jvaJSPKNTNu8ItKjR6dRU8rdAQXYFHWNeXsuFnVIALQt05Y3qmfXVIzeM5rI65FFG5AkFTGZgEiSJElPJK1ejUeJ7ERE/3ciYsgwcSsuneTrGXad16VHh7Nei5tjdp+IMWuj2BuTUMQRZXur5lu0DGqJyWri3S3vEp8eX9QhSVKRkQmIJEmS9ETT6tW4l3DCs5QzeqfsH66GTDOJ8ekkyUTkkeTqoKF5pRKYrYIBiw4Rl1z0E/ipFBXjGo2jomdFErISGPTnIDJMGUUdliQVCZmASNI96t27N88995zde0VRcp2obcCAASiKQu/evXOs27NnD2q1mg4dOuR6HKPRyIQJE6hduzbOzs64u7tTo0YNRo4cSWxsbI7j//fVtm3bPD/DihUrqFu3Lh4eHjg7O1OzZk3mz59/18++detWateujV6vp3z58sydO/eO5bOysujduzfVqlVDo9HYnbcHdf78eV5++WVKly6Ng4MDAQEBdOrUiVOnTtnKbNu2jRYtWuDl5YWTkxMVKlSgV69eGI1G2+f59zkrWbIkL7zwAjExMbZ9fP/99zRr1gw3NzcURSEpKemusR05coRu3boRGBiIo6MjlStX5uuvv85RzmAwMGLECIKDg9Hr9ZQpU4bZs2c/+MmR7otWp8bd1xGvfyUiRpmIPLLea1ORUD9XbqYZ6b/gEFnFoI+Pk9aJqS2m4qn35OStk3y066Ni0U9Fkh42mYBIUgEIDAxkyZIlZGb+85QtKyuLRYsWERQUlOs2s2bNYuDAgWzfvt0uoYDsH6atW7dm3Lhx9O7dm+3bt3Ps2DGmTp3KzZs3mTZtml35tm3bEhcXZ/davHhxnvF6eXkxYsQI9uzZw9GjR+nTpw99+vRh48aNeW5z/vx5OnToQPPmzYmMjOTdd9/l1VdfveM2FosFR0dHBg0aRKtWrfIsd69MJhOtW7cmOTmZFStWEB0dzdKlS6lWrZotQYiKiqJt27bUrVvXdv6mTZuGTqfDYrH/IRIdHU1sbCzLly/nxIkTdOzY0VYmIyODtm3bMnz48HzHd/DgQUqUKMGCBQs4ceIEI0aMYNiwYUyfPt2u3IsvvsjmzZuZNWsW0dHRLF68mEqVKj3YyZEemOZ2IlLaGQfn/yQi1zIwGcxFHKGUH446Dd/3qIu7o5Yjl5P4eNXxYvFj39/Fn8nNJ6NRafj94u+M3jOaC8kXijosSXq4hCQVkuTkZAGI5OTkHOsyMzNFVFSUyMzMLILIHkyvXr1Ep06dcryvWrWqWLBggW35woULRfXq1UWnTp1Er1697PaRmpoqXFxcxKlTp0TXrl3F2LFj7daPHz9eqFQqcejQoVxjsFqtecZzv2rVqiVGjhyZ5/qhQ4eKsLAwu2Vdu3YVERER+dp/QcUphBCHDx8WgLhw4UKeZSZPnizKlClzx/1s2bJFACIxMdG2bOHChQIQp06dumvZe/HWW2+J5s2b297/9ttvwt3dXSQkJNzX/qSHx2Q0i+QbGeLahWTbKzE+XRizTEUdmpSL/95ftp++LkL+b60I/nCtGLXquLiUkF7EEWb7OfpnUXVuVdur29puYmHUQnEr81ZRh3bH+7ckFQRZAyIVG0IIMkwZRfISBfBUrG/fvsyZM8f2fvbs2fTp0yfXssuWLSM0NJRKlSrRvXt3Zs+ebRfD4sWLad26NbVq1cp1e0VRHjje24QQbN68mejoaJo0aZJnuT179uSoxYiIiGDPnj0FFkt++fr6olKp+Pnnn3PUZtzm5+dHXFwc27dvv6d9Ozo6AtiaaRWU5ORkvLy8bO9Xr15N3bp1+fLLL/H396dixYq8//77drVoUvGg0apx8/lPjUiWmcT4DJKuZWDMkjUixVnjCr4MbRsKwNzdF2gyYQs9Zu1l3dE4DOaia5b1QsUX+Lr51zTyb4RaUXPs5jHG7xtPi2UtGLptqOwfIj3WNEUdgCTdlmnOpMGiBkVy7L0v78VJ6/RA++jevTvDhg3j4sXsYR937drFkiVL2Lp1a46ys2bNonv37kB286nk5GS2bdtGs2bNADh9+rTt37d17tyZTZs2AVC9enV2795tW7d27VpcXFzsyg8fPvyOzYaSk5Px9/fHYDCgVquZMWMGrVu3zrN8fHw8JUuWtFtWsmRJUlJSyMzMtP1wfxj8/f2ZOnUqQ4cOZfTo0dStW5fmzZvzyiuvULZsWQC6dOnCxo0badq0KX5+fjRs2JCWLVvSs2dP3Nzcct1vXFwcEydOxN/fv0CbQu3evZulS5eybt0627KYmBh27tyJg4MDK1eu5ObNm7z11lskJCTYJbJS8XE7EXFy15GRbCQr3YQxy4wxy4zWQYOzmw6tg7pAHxBIBeONJmUp4+3Egr8usfPsTXacyX55Oet4vpY/L9UPpHwJ14ceV4ugFrQIasHNzJtsOL+BNTFriEqI4rcLv2GympjUbBIqRT4rlh4/8lstSQXE19eXDh06MHfuXObMmUOHDh3w8fHJUS46Opp9+/bRrVs3ADQaDV27dmXWrFl33P+MGTOIjIykb9++ZGTYPxm73S/j36/cOsX/m6urK5GRkezfv5+xY8cyZMiQXJOlh61du3a4uLjg4uJCWFhYnuUGDBhAfHw8CxcuJDw8nOXLlxMWFmZL0tRqNXPmzOHKlSu2WoZx48YRFhZGXFyc3b4CAgJwdnamdOnSpKen88svv6DT6Qok3uPHj9OpUydGjRpFmzZtbMutViuKorBw4ULq169P+/bt+eqrr/jpp59kLUgxdzsR8S7tgoNLdo2IKctM0vUMEuMzMGSYikVfA+kfiqLQtmopFrzagB1DmzOwRXlKuum5lW7kx53nafXVdv737W6WH7hMhvHh12j5OPrQvUp3lj6zlFltZqFVafnj0h98e+Tbhx6LJD0MsgZEKjYcNY7sfXlvkR27IPTt25e3334bgG+++SbXMrNmzcJsNlO6dGnbMiEEer2e6dOn4+7uToUKFYiOjrbbrlSpUgB2zXhuc3Z2pnz58vcUq0qlsm1Ts2ZNTp48yfjx43PUvNzm5+fHtWvX7JZdu3YNNze3Aq39+PHHH20/wLVa7R3Lurq60rFjRzp27Mhnn31GREQEn332mV1Njr+/Pz169KBHjx6MGTOGihUr8t133zF69GhbmR07duDm5kaJEiVwdb23p6B3ijcqKoqWLVvy+uuvM3LkSLt1pUqVwt/fH3d3d9uyypUrI4TgypUrVKhQ4Z7ikB4+tVaFm7cjzu56MlKMZKWZMBstJN/IRK1V4eSmw8FZK2tEiplALyfea1OJd1pWYNvpGyzZf5k/T13nwMVEDlxMZPSaKDrX8ufDdqG46B/+z6T6perzcfjHfLTrI7478h3lPcoTUSbiocchSYVJJiBSsaEoygM3gypqbdu2xWg0oigKERE5bxhms5l58+YxadIku6fhAM899xyLFy+mf//+dOvWjZEjR3L48OE8+4EUNKvVisFgyHN9eHg469evt1u2adMmwsPDCzQOf3//+9pOURRCQ0Ptmqb9l6enJ6VKlSI9Pd1ueUhICB4eHvd13LziPXHiBC1atKBXr16MHTs2x/qnn36a5cuXk5aWZms+d/r0aVQqFQEBAfcVi1Q01BoVrl4OOLnryEwxkplmwmKykpqQRXqSMTsRcdGiUslEpDjRqFW0rFySlpVLcj0li58PXWHp/stcTMhg/l8XuZKYwY+96qEugr/bc+Wf42ziWX6K+omRO0cS6BpIFe8qDz0OSSossgmWJBUgtVrNyZMniYqKQq1W51i/du1aEhMT6devH1WrVrV7vfDCC7ZmWIMHDyY8PJyWLVvy9ddfc+jQIc6fP8/GjRv57bffcuzbYDAQHx9v97p582aecY4fP55NmzYRExPDyZMnmTRpEvPnz7f1SwEYNmwYPXv2tL3v378/MTExDB06lFOnTjFjxgyWLVvG4MGDbWWmT59Oy5Yt7Y4VFRVFZGQkt27dIjk52dZE7EFERkbSqVMnfv75Z6Kiojh79iyzZs1i9uzZdOrUCYCZM2fy5ptv8vvvv3Pu3DlOnDjBhx9+aBtmN7/i4+OJjIzk7NmzABw7dsz2efJy/PhxmjdvTps2bRgyZIjtb3Ljxg1bmZdffhlvb2/69OlDVFQU27dv54MPPqBv374PtT+NVHDUahUung54+7vg7KFHpVawWqykJWaRcDWN9CQDVou1qMOUclHCzYG3mpVny3vNmN27LnqNii3RN/hyw6m7b1xIBtcZTCP/RmRZshj05yBuZuZ9TZekR04RjsAlPUQzZswQ1apVE66ursLV1VU0bNhQrF+/Ps/yv/zyi6hTp45wd3cXTk5OokaNGmLevHn3dMwnbRjevPx7GN5nnnlGtG/fPtdye/fuFYA4cuSIEEKIrKws8fnnn4saNWoIR0dHodfrRWhoqBg8eLC4dOmS3fGBHK9KlSrlGdOIESNE+fLlhYODg/D09BTh4eFiyZIlOT5n06ZN7ZZt2bJF1KxZU+h0OlG2bFkxZ84cu/WjRo0SwcHBdsuCg4Nzje9B3LhxQwwaNEhUrVpVuLi4CFdXV1GtWjUxceJEYbFYhBBCHDp0SHTv3l2EhIQIvV4vvL29RZMmTcTq1avtPg93GVp31KhRucb/38+en23+e25OnjwpWrVqJRwdHUVAQIAYMmSIyMjIeJBTIxUjVotVZKQYxM0rqbbhe69fTBEpCZnCbLIUdXiPrYK4v6yOvCqCP8weunf5gcsFGN29STGkiI4rO4qqc6uKl9e9LFINqQ/luHIYXqmwKULInnJPgjVr1qBWq6lQoQJCCH766ScmTJjA4cOHc+04u3XrVhITEwkNDUWn07F27Vree+891q1bl2vTotykpKTg7u5OcnJyjlGHsrKyOH/+PCEhITg4OBTIZ5QkSSqOhBAYMsxkpBgxG/8Z9tXBRYuTmw6NNmdtqXT/Cur+Mun3aKb9eRadWsXi1xtQJzhn/7uH4WLKRV5e9zIpxhQc1A40D2pOx7IdCS8djkZVOC3p73T/lqSCIBOQJ5iXlxcTJkygX79++Spfu3ZtOnTowJgxY/JVXiYgkiRJ/xBCYMyykJFswGT4JxHRO2lxcteh1clEpCAU1P3FahW8ufAgG09cw8dFx6q3G+HvUTTNIw9eO8gnuz/hQsoF2zJvB2/ahbSjY7mOVPaqXKCDHcgERCpssg/IE8hisbBkyRLS09Pz1YFY5HOiOoPBQEpKit1LkiRJyqYoCnpHDZ5+zniUdELnmP302pBhIjEu3TapoXwuWDyoVApfvViTyqXcuJlm5LWfDhTJEL0AdUrWYfVzq1nUfhEvh76Mp96ThKwEFpxcwJt/vIlZyMkwpUeLHAXrCXLs2DHCw8PJysrCxcWFlStXUqVK3qNq3OtEdePHj7cb2lSSJEnKnc5Bg85Bg8loISPZiCHjn0kNNTo1zu46dI4aOYRvEXPWa/ihZx06Td9FVFwKzSdupUudQF6sG0iQ98MdtVFRFKr5VqOabzXer/c+u6/uZm3MWkq7lEaruvOQ5ZJU3MgmWE8Qo9HIpUuXSE5O5ueff+bHH39k27ZteSYhVquVmJgY0tLS2Lx5M2PGjOHXX3/Nc54Ig8FgN4xrSkoKgYGBsgmWJEnSXZhNFjJTTGSmm+Dv27KcS+T+FMb95eDFRN6Yf4CbaUbbskblfehaL5A2YSXRax6v5nOyCZZU2GQC8gRr1aoV5cqVY+bMmfkq/+qrr3L58mU2btyYr/KyD4gkSdK9sVis2XOJpP4zm7pKrZJzidyDwrq/GMwW/oi6zpL9l9h59ubtPJEKJVxY3j8cDyddgR2rqMkERCpssg/IE+xuE889aHlJkiTp3tjmEgmQc4kUN3qNmg7VSzG/XwO2f9CcQS0r4O2s48z1NAYsOoRJ/l0kKd9kH5AnxLBhw2jXrh1BQUGkpqayaNEitm7daqvN6NmzJ/7+/owfPx7I7s9Rt25dypUrh8FgYP369cyfP59vv/22KD+GJEnSE0GlUnB21+PkqiMr3URGihGL2Up6soGMFCOOLloc3XSoNfI5YlEI9HJiSOuKtKvqxwvf7mbX2QQ+WxvF6E5Vizo0SXokyATkCXH9+nV69uxJXFwc7u7uVK9enY0bN9o6lV+6dAmV6p8bWXp6Om+99RZXrlzB0dGR0NBQFixYQNeuXYvqI0iSJD1xFJWCo2t286t/zyWSkWokI82Io7MWRzc9Gq1MRIpC5VJuTO5akzfmH+SnPRep6OfKKw2CizosSSr2ZB8QqdDIPiCSJEkFS84lcndFcX/5ZstZJmyMRqNSmN+vAeHlvB/KcQuL7AMiFTb5yESSJEmSHhE55hJx+M9cItflXCJF4a1m5Xi2RmnMf09eeCkho6hDkqRiTSYgknSPevfuzXPPPWf3XlEU+vfvn6PsgAEDUBSF3r1751i3Z88e1Go1HTp0yPU4RqORCRMmULt2bZydnXF3d6dGjRqMHDmS2NjYHMf/76tt27Z5foYVK1ZQt25dPDw8cHZ2pmbNmsyfP/+un33r1q3Url0bvV5P+fLlmTt37h3LZ2Vl0bt3b6pVq4ZGo7E7bw/q/PnzvPzyy5QuXRoHBwcCAgLo1KkTp06dspXZtm0bLVq0wMvLCycnJypUqECvXr0wGo22z/Pvc1ayZEleeOEFYmJiALh16xYDBw6kUqVKODo6EhQUxKBBg0hOTs53nGfPnsXV1RUPDw+75XPnzs3xN5O1gdK90Dlo8CjphKefM3qn7HkgjJlmkq5lkHQtA0OGSSYiD4miKHz5v+rUCHAnKcNEv5/2k5plKuqwJKnYkgmIJBWAwMBAlixZQmZmpm1ZVlYWixYtIigoKNdtZs2axcCBA9m+fbtdQgHZc6q0bt2acePG0bt3b7Zv386xY8eYOnUqN2/eZNq0aXbl27ZtS1xcnN1r8eLFecbr5eXFiBEj2LNnD0ePHqVPnz706dPnjkMsnz9/ng4dOtC8eXMiIyN59913efXVV++4jcViwdHRkUGDBtGqVas8y90rk8lE69atSU5OZsWKFURHR7N06VKqVatGUlISAFFRUbRt25a6devazt+0adPQ6XRYLBa7/UVHRxMbG8vy5cs5ceIEHTt2xGKxEBsbS2xsLBMnTuT48ePMnTuXDRs20K9fv3zH2a1bNxo3bpzrejc3N7u/2cWLFx/ovEhPJq1ejbuvI16lnXF00YICJoOF5BuZ3IpLJytNJiIPg4NWzfc961LSTc+Z62m8syQSi1Wed0nKjeyELkkFoHbt2pw7d44VK1bwyiuvANm1DEFBQYSEhOQon5aWxtKlSzlw4ADx8fHMnTuX4cOH29ZPnjyZnTt3cuDAAWrVqmVbHhQURNOmTXP8mNDr9fj5+eU73v9OJvnOO+/w008/sXPnTiIiInLd5rvvviMkJIRJkyYBULlyZXbu3MnkyZPz3MbZ2dk2ctquXbtsycGDOnHiBOfOnWPz5s0EB2d3+AwODubpp5+2lfn999/x8/Pjyy+/tC0rV65crjVDJUqUwMPDg1KlSvHxxx/zyiuvcPbsWapWrcovv/xit/3YsWPp3r07ZrMZjebOl9CRI0cSGhpKy5Yt2b17d471iqLc099Nku5Eo1Xj6u2Ik7uezNTsuUQsJispCZmokuRcIg9DSTcHfuhZly7f7eHPU9f5csMphrWvXNRhSVKxI2tApGJDCIE1I6NIXgXxdLBv377MmTPH9n727Nn06dMn17LLli0jNDSUSpUq0b17d2bPnm0Xw+LFi2ndurVd8vFvBTkrshCCzZs3Ex0dTZMmTfIst2fPnhy1GBEREezZs6fAYskvX19fVCoVP//8c47ajNv8/PyIi4tj+/bt97RvR0dHAFszrf+63SnzbsnHn3/+yfLly/nmm2/yLJOWlkZwcDCBgYF06tSJEydO3FOskpQbtebvuUT8nbPnElHJuUQepuoBHkzsUgOAmdtj+PnglSKOSJKKH1kDIhUbIjOT6Np1iuTYlQ4dRHFyeqB9dO/enWHDhtma0ezatYslS5awdevWHGVnzZpF9+7dgezmU8nJyWzbts1WM3H69OkctRSdO3dm06ZNAFSvXt3uifratWtxcXGxKz98+HC7WpX/Sk5Oxt/fH4PBgFqtZsaMGbZhmXMTHx9PyZIl7ZaVLFmSlJQUMjMzbT/cHwZ/f3+mTp3K0KFDGT16NHXr1qV58+a88sorlC1bFoAuXbqwceNGmjZtip+fHw0bNqRly5b07Nkzz1Fd4uLimDhxIv7+/lSqVCnH+ps3bzJmzBhef/31O8aXkJBA7969WbBgQZ7HqlSpErNnz6Z69eokJyczceJEnnrqKU6cOEFAQMA9nhFJykmlVt1xLhEHFy1Oci6RQtGxRmnOXEtl6p9nGb7iGCE+TtQJ9irqsCSp2JBXHUkqIL6+vnTo0IG5c+cyZ84cOnTogI+PT45y0dHR7Nu3j27dugGg0Wjo2rUrs2bNuuP+Z8yYQWRkJH379iUjw36Eldv9Mv79yq1TFduC2AAAPGdJREFU/L+5uroSGRnJ/v37GTt2LEOGDMk1WXrY2rVrh4uLCy4uLoSFheVZbsCAAcTHx7Nw4ULCw8NZvnw5YWFhtiRNrVYzZ84crly5wpdffom/vz/jxo0jLCyMuLg4u30FBATg7OxM6dKlSU9P55dffkGn09mVSUlJoUOHDlSpUoVPPvnEtjwsLMwWb7t27QB47bXXePnll+9YoxQeHk7Pnj2pWbMmTZs2ZcWKFfj6+jJz5sx7PWWSdEe35xLxKu2Mm48jGp0aIQSZqUYSrqaRcjMTkzH3mkTp/r3bqiJtw/wwWqy8Mf8gVxLlyFiSdJusAZGKDcXRkUqHDhbZsQtC3759efvttwHybHoza9YszGYzpUuXti0TQqDX65k+fTru7u5UqFCB6Ohou+1KlSoFZHcg/y9nZ2fKly9/T7GqVCrbNjVr1uTkyZOMHz8+R83LbX5+fly7ds1u2bVr13BzcyvQ2o8ff/zR1plfq9XesayrqysdO3akY8eOfPbZZ0RERPDZZ5/Z1eT4+/vTo0cPevTowZgxY6hYsSLfffcdo0ePtpXZsWMHbm5ulChRAldX1xzHSU1NpW3btri6urJy5Uq7uNavX4/JlD3aze3z8Oeff7J69WomTpwI/N280GpFo9Hw/fff07dv3xzH0Gq11KpVi7Nnz+b3VEnSPVEUBQdnLXonDaYsCxkpRoxZZrLSTWSlm9A5anBy09mG9pUejEql8FXXGlz8NoOTcSm8Nu8gP/cPx1kvz68kyf8FUrGhKMoDN4Mqam3btsVoNKIoSq4ds81mM/PmzWPSpEm0adPGbt1zzz3H4sWL6d+/P926dWPkyJEcPnw4z34gBc1qtWIwGPJcHx4ezvr16+2Wbdq0ifDw8AKNw9/f/762UxSF0NDQXDt73+bp6UmpUqVIT0+3Wx4SEpJjmNzbUlJSiIiIQK/Xs3r16hxD5d7uBP9ve/bsseubsmrVKr744gt2796d5+ezWCwcO3aM9u3b5xm/JBUERVHQOWrQOWowGbITEUOGCWOmGWOmGa1enZ2IOGoKtL/Zk8hJp+HHXnXpNH0nJ+NSGLIskm9fqSMHApCeeDIBkaQCpFarOXnypO3f/7V27VoSExPp168f7u7uduteeOEFZs2aRf/+/Rk8eDDr1q2jZcuWjBo1isaNG+Pp6cnp06f57bffcuzbYDAQHx9vt0yj0eTaBAxg/Pjx1K1bl3LlymEwGFi/fj3z58+3jVgFMGzYMK5evcq8efMA6N+/P9OnT2fo0KH07duXP//8k2XLlrFu3TrbNtOnT2flypVs3rzZtiwqKgqj0citW7dITU0lMjISyK51uV+RkZGMGjWKHj16UKVKFXQ6Hdu2bWP27Nl8+OGHAMycOZPIyEg6d+5MuXLlyMrKYt68eZw4cSLHMMZ5SUlJoU2bNmRkZLBgwQJSUlJISUkBspvc5fY3huwRwv7twIEDqFQqqlatalv26aef0rBhQ8qXL09SUhITJkzg4sWLvPrqq/dzSiTpvtwewtds0pGRYiQr3WQbwletUeHoKkfOelD+Ho7M7FGXbt//xcYT15j8x2nea5Ozj5kkPUlkAiJJBSyvTseQ3fyqVatWOZIPyE5AvvzyS44ePUr16tXZvHkzU6ZMYc6cOQwbNgyr1UpISAjt2rVj8ODBdttu2LDB1kTrtkqVKtlNyvdv6enpvPXWW1y5cgVHR0dCQ0NZsGABXbt2tZWJi4vj0qVLtvchISGsW7eOwYMH8/XXXxMQEMCPP/5oV9Nz8+ZNzp07Z3es9u3b281vcbtG50FGHgsICKBMmTKMHj2aCxcuoCiK7f3tc1O/fn127txJ//79iY2NtfUp+fXXX2natGm+jnPo/9u777imrv4P4J8EwgyEIRBBpmzUigvBgVQUrbuttlQFLWqHrauO6s9HqlYcLVWrVaxarK2ItT52OqoCjoqICihCcSBSlWEZYUNCzu8Pyn2MrLARvu/XK68295577vfcQ7w5OePeuIGYmBgAqDHE7cGDB7CysmpyGfLy8jB37lxkZmZCX18f/fv3x+XLl+Hs7NzkPAlpKlWBCnQNNaH97BK+sqqVs4rzy6GhLYCmjgCqarU3ukn9+lvqY+OrvfHR0QTsiLgHW2MhJvVtWm8vIZ0Bj9HTiUgrKSgogEgk4pYtfVZZWRkePHgAa2trevozIYR0MHI5Q1mxFKWFFaiU/m/JXoGGKrR0BB16eFZHvr9sPJmMPedToa7Kx5F33NHXXK+9Q6pVffdvQloCrYJFCCGEEAV8Pg9aOmow6K4NPWMtqGtWDZiQlskgeVqKnCfFKJHQ80Qaa7mPI0Y6GqNcJse8g9eQKSlr75AIaRfUACGEEEJIraonrIuMtWBoJoSWrhp4fB7kMjmK8suR87gYBTmlkNEyvkpR4fOw7c2+sDcRIruwHPO+u4ZSunakC6IGCCGEEEIa9L8nrAuhY6gBVUHV80TKiqTIzShGXlYJykukzZrf1RXoaAiwz28g9LUEuPlIgmU/JtA1I10ONUAIIYQQojQ+nwdNoRr0u2tBz0QL6lo1h2cV0/CselkYaiFkRn+o8nn47WYGdkTQ839I10INEEIIIYQ0Go/Hg5qGKkRGNYdnFdPwrAa52Rji08lVS3N/ceYOTt7KaOeICGk71AAhhBBCSLNUD8/qVtfwrMxiGp5VizcHWWD2ECsAwJIfEpD4WNK+ARHSRqgBQgghhJAWwatreNa/DzfMeUzDs573f684Ybi9EUqllZh78BqyC2llLNL5UQOEEEIIIS2qzuFZlVXDs/75d3iWlIZnQVWFjx2+rrAx0kaGpAzvfHcdZVK6LqRzowYIIYQQQlpNjeFZairAv8Oz8v4dnlXWxYdniTQF2O8/ECJNAeLS87Hyv7e69PUgnR81QAghhJB2lpaWBh6Ph/j4+HY5/6xZszB58uRWPQc3PEtcPTxLAKBqeFbBv8OzuvLDDa27aWPX9H5Q4fNwPO4xQs6ntndIhLQaaoAQ0kizZs0Cj8cDj8eDQCCAtbU1li9fjrIyxXG71Wmef4WHhwMAoqKiwOPxoK+vX+PY2NhYLn216vT5+fkK711cXFBZqdhdr6enhwMHDnDvraysuPw0NTVhZWWFadOmISIiosHyNjbOZzk6OkJdXR2ZmZkNnqc2z8atra2Nfv364ejRo9z+Tz75BH379lV4X9s1d3R0rPMc//3vfzFq1CgYGRlBV1cX7u7uOH36dL1xlZWVYdasWejduzdUVVWb9MUtPDwcPB6vwWObEp+yzp8/j5dffhkGBgbQ0tKCnZ0d/P39UVFR0SL5HzhwgKsDFRUV6Ovrw83NDevWrYNE0raTbRMSEjBx4kQYGxtDQ0MDVlZWeOONN5CdnQ3gfw2A6peOjg5cXFwwf/583L17t85y8fl89OjRA7Nnz+byqk1Tjnnes58HFRUVmJqaIiAgAHl5eU27KM303//+F6NHj4ahoWGdjaeysjLMnz8fhoaGEAqFeO2115Cdnf3v8CxNGJoJkVOQielvT4WFnTEsevbAh+8vRl5WkcLqWVFRUejXrx/U1dVha2ur8O9bZzLEths+meAMANhy+i+cScpq54gIaR3UACGkCcaMGYOMjAykpqZi69at2LNnDwIDA2ukCw0NRUZGhsLr+S+cOjo6OH78uMK2/fv3w8LCQqlYUlNTcfDgwQbTrVu3DhkZGUhJScHBgwehp6cHb29vbNiwQanzNDbOS5cuobS0FK+//jq+/fZbpc5RX9xxcXEYOHAg3njjDVy+fLnO9C4uLjWu+aVLl+pMf+HCBYwaNQonTpzA9evX4eXlhQkTJiAuLq7OYyorK6GpqYkFCxbA29u70WVKS0vD0qVLMWzYsAbTNiU+ZSQlJWHMmDEYMGAALly4gFu3bmHHjh1QU1Or0aBtDl1dXWRkZODRo0e4fPky5s2bh4MHD6Jv37548uRJi52nPk+fPsXIkSNhYGCA06dPIzk5GaGhoTA1NUVxcbFC2rNnzyIjIwMJCQkICgpCcnIyXnrpJZw7d67Ocu3duxcnT57EzJkz642jKcc8r/rzkJ6ejkOHDuHChQtYsGBBo/JoKcXFxRg6dCg2b95cZ5rFixfj119/xdGjR3H+/Hk8efIEr7766v8S8BimvfUawJMj4tx57Nq2B0d+PIRP1gUiN6MY+Vkl+CvpDsaNGwcvLy/Ex8dj0aJFmDNnTos1xDuame5WmDnYEowBC8PjkJxR0N4hEdLyGCGtRCKRMABMIpHU2FdaWsqSkpJYaWlpO0TWPP7+/mzSpEkK21599VXm6uqqsA0AO378eJ35REZGMgBs9erVzNvbm9teUlLCRCIR+89//sOe/YhWp8/Ly1N4v2zZMmZubs7Kysq4tCKRiIWGhnLvLS0t2datW2vEsGbNGsbn89lff/3VYnFWmzVrFvv444/ZyZMnmb29fY39T548Ya+88grT0NBgVlZW7NChQzXifP69VCplWlpa7OOPP2aMMRYYGMheeuklbv/z75vK2dmZrV27Vqm0tf091EcmkzEPDw+2b9++Rh/blPjqsnXrVmZlZVVvmtqu59atW5mlpSX3PjIykg0cOJBpaWkxkUjEPDw8WFpaGmOMsdDQUCYSiWrkm5WVxbp168amT5/ObausrGRBQUHMysqKaWhosD59+rCjR49y+8zMzNiuXbsU8rlx4wbj8Xjc+epy/PhxpqqqyqRSaZ1pHjx4wACwuLg4he2VlZVsxIgRzNLSkslksjrLtWHDBsbn81lJSUmt+Td0zPPnl8lkbPbs2czBwYE9fPiQMVb753j9+vXM2dmZe69MnclkMrZ48WImEomYgYEBW7ZsGfPz81P4WywoKGBvvfUW09LSYmKxmH3xxRfM09OTLVy4UOlrl5+fzwQCAVePjDGWnJzMALDo6GjGGGMnTpxgfD6fZWZmMsYYk8vlbMeXO5muji77+85TlpUmYR+8s5A5Ojix4vwyVimrZIwx9sYbbzAfH5/aLvULfX+pViGrZG/tjWaWK35jHhvPsaeFZQ0f1ILqu38T0hKoB4R0GIwxSMsr2+XFmjHZLzExEZcvX4aamlqTjp85cyYuXryI9PR0AMCxY8dgZWWFfv36KXX8okWLIJPJsGPHjkafe+HChWCM4eeff27ROAsLC3H06FHMmDEDo0aNgkQiwcWLFxXS+Pn54cmTJ4iKisKxY8fw9ddfNzgcRVVVFQKBoMWGCNVGLpejsLAQBgYGrZL/unXrYGxsjICAgCYd31LxicViZGRk4MKFC03OQyaTYfLkyfD09MTNmzcRHR2NefPm1Tkkr5qxsTGmT5+OX375hett2bhxIw4ePIiQkBDcvn0bixcvxowZM3D+/Hnw+Xz4+voiLCxMIZ9Dhw5hyJAhsLS0bLCsMpkMx48fb/Rnnc/nY+HChXj48CGuX79eZzpNTU3I5XLIZDKl867rmPLyckydOhXx8fG4ePFinb2Mjx8/xq+//go3NzelzwkAwcHBOHDgAL755htcunQJubm5NXo3lyxZgj///BO//PILzpw5g4sXL+LGjRuNOs/169chlUoVegkdHR1hYWGB6OhoAEB0dDR69+4NExMTAFVDV8eNfwUFhQXIzHsILV01XIuLxTCPESh65uGG3iNHcXl0RgIVPr56qx+sDLXwOL8U7353HeUyWhmLdB6q7R0AIdVkFXJ8vfB8u5x73nZPCNRVlE7/22+/QSgUQiaToby8HHw+Hzt37qyRztfXFyoqivkmJSUpfKEwNjbG2LFjceDAAaxZswbffPMN3n77baVj0dLSQmBgIFatWoW5c+dCJBIpfayBgQGMjY2RlpbWYNrGxBkeHg47Ozu4uLgAAN58803s37+fG3L0119/4ezZs4iNjcWAAQMAAPv27YOdnV2d56+oqEBwcDAkEglefvnlOtPdunULQqFQYduMGTMQEhLSYBkB4PPPP0dRURGmTZumVPrGuHTpEvbv39+sicYtFd/UqVNx+vRpeHp6QiwWY/DgwRg5ciT8/Pygq6urVB4FBQWQSCQYP348evbsCQBwcnJS6lhHR0cUFhYiJycHIpEIQUFBOHv2LNzd3QEANjY2uHTpEvbs2QNPT09Mnz4dwcHBSE9Ph4WFBeRyOcLDw7F69eoGzzV48GCsWrUKb731Ft59910MGjQIL7/8Mvz8/Lgvvg3FClQNnRs0aFCN/Xfv3kVISAgGDBgAHR0dpcr//DE5OTkAgKKiIowbNw7l5eWIjIys8XlesWIFVq9ejcrKSpSVlcHNzQ1ffPGFUuestm3bNqxcuZIbChUSEqIwnKmwsBDffvstwsLCMHLkSADghqw1RmZmJtTU1KCnp6ew3cTEhJsXlpmZWaMOqt8/zcnGgEH9kZP3FD0sTKEqUIFMWomyIim0BCIUFBQgL6cAegY6DTZ6X0R6WmrY5z8QU3b9iWsP87D6eCK2vN6nU5aVdD3UA0JIE1SPRY6JiYG/vz9mz56N1157rUa6rVu3Ij4+XuFV20387bffxoEDB5Camoro6GhMnz69UfEEBATA0NCw3rHYdWGMcTc0FxcXCIVCCIVCjB07tslxfvPNN5gxYwb3fsaMGTh69CgKCwsBACkpKVBVVVXoPbG1tYW+vn6NvFasWAGhUAgtLS1s3rwZmzZtwrhx4+osj4ODQ41rvm7dOqWuRVhYGNauXYsffvgBxsbGSh1Tm/T0dO46CoVCBAUFobCwEDNnzsTevXvRrVu3JuWrbHzPnvvdd9+tNY2KigpCQ0Px6NEjbNmyBWZmZggKCuLm0CjDwMAAs2bNgo+PDyZMmIDt27crfWx1TwSPx8O9e/dQUlKCUaNGKcR+8OBB3L9/HwDQt29fODk5cb0g58+fR3Z2NqZOnarU+TZs2IDMzEyEhITAxcUFISEhcHR0xK1btxoVazWJRML9XTo4OMDExASHDh0CUPf1r++Yar6+viguLsYff/xR648Jy5YtQ3x8PG7evMnNSxk3bpzS83YkEgkyMjIUek1UVVW5HwKAqnllUqlUobElEong4OCg1Dlag0BdpcbDDQGg4J//PdywshOunmVrLMRXb/UDnwccvf4I+y4+aO+QCGkR1ANCOgxVNT7mbfdst3M3hra2NmxtbQFUfdl+6aWXsH///hrDasRiMZeuPmPHjsW8efMQEBCACRMmwNDQsFHxqKqqYsOGDZg1axY++OADpY/LycnB06dPYW1tDQA4ceIEpFIpgKrhIU2JMykpCVeuXMHVq1exYsUKbntlZSXCw8Mxd+7cRpVt2bJlmDVrFoRCIUxMTBr89U9NTU2pa/688PBwzJkzB0ePHm3SxPJnmZqaKvRyGBgY4P79+0hLS8OECRO47XJ51RcmVVVVpKSkcL0IzY3v2XM31JthZmaGmTNnYubMmVi/fj3s7e0REhKCtWvXgs/n1xiyVP33US00NBQLFizAqVOncOTIEaxevRpnzpzB4MGD6z1vcnIydHV1YWhoiNTUquVGf//9d5iZmSmkU1dX5/5/+vTpCAsLw8cff4ywsDCMGTOmUZ8VQ0NDTJ06FVOnTkVQUBBcXV3x+eefN7hIQnJyMgBwnxOgalGGGzdugM/no3v37gqfl7quf33HVHvllVfw/fffIzo6utaevm7dunF/33Z2dti2bRvc3d0RGRkJb29vpeqsrYjFYlRUVCA/P1+hFyQrKwtisZhLc/XqVYXjsrKyuH3V/83KyuIebqimoYpSmQS6OrrQ0tLiHm5YLCmHhpYAPLXONVRpuL0R/jPeGWt/TULQyWT0NNbGy44N99wR0pFRDwjpMHg8HgTqKu3yak6XNp/Px6pVq7B69WqUlpY2KQ9VVVX4+fkhKiqqUcOvnjV16lS4uLhg7dq1Sh+zfft28Pl8bmUuS0tL2NrawtbWtsYXQWXj3L9/P4YPH46EhASFXoglS5Zg//79AKp6KWQymcJKTvfu3at1OdHqL1xisbjVhh4cPnwYs2fPxuHDh+vtXVGWqqoqdx1tbW1hYGDA/dr+7DWZOHEi15tmbm7eYvE9e+7G9OTo6+uje/fu3MpQRkZGyMzMVPhCW9vwMVdXV6xcuRKXL19Gr169aszVeF52djbCwsIwefJk8Pl8ODs7Q11dHenp6Qqx29raKlyXt956C4mJibh+/Tp+/PHHRvcUPktNTQ09e/assQrW8+RyOb788ktYW1vD1dWV287n82FrawsbG5saDYm6rn99x1R77733sGnTJkycOBHnzzc8JLV6iGf1vz0N1ZlIJEL37t0RExPDbZPJZArzW2xsbCAQCBAbG8ttk0gkuHPnToPxPKt///4QCAQKK4ilpKQgPT2dG2rn7u6OW7duKcz/OnPmDHR1deHs7MyleX4VsnMR5+Du4Y5uZkLocg83BMqKpSh4WoZiSTnux2VD1kmeKD7Lwwq+gyzAGLDgcDzuZBW2d0iENAv1gBDSAqZOnYply5bhq6++wtKlS7nt+fn5NZ6BoaOjA21t7Rp5rF+/HsuWLWt078ezNm3aBB8fn1r3FRYWIjMzE1KpFA8ePMD333+Pffv2YePGjY3qMagvTqlUiu+++w7r1q1Dr169FPbNmTMHX3zxBW7fvg0XFxd4e3tj3rx52L17NwQCAT766CNoamo2u5Ehk8lqXHMej1fnWP+wsDD4+/tj+/btcHNz447V1NTkhsDs3LkTx48fV/gSlJSUhIqKCuTm5qKwsJD7kvfsc0mepaGhUeOaVP8q/Oz2lStX4vHjx9zSysrE1xR79uxBfHw8pkyZgp49e6KsrAwHDx7E7du3uQUNRowYgadPn2LLli14/fXXcerUKZw8eZL7Vf/Bgwf4+uuvMXHiRJiamiIlJQV3796Fn58fdx7GGPeFOD8/H9HR0QgKCoJIJMKmTZsAVH0mli5disWLF0Mul2Po0KGQSCT4888/oaurC39/fwBVz8Hw8PBAQEAAKisrMXHiRKXK+ttvvyE8PBxvvvkm7O3twRjDr7/+ihMnTiA0NFQhbU5ODjIzM1FSUoLExERs27YNV69exe+//15jPldr+fDDD1FZWYnx48fj5MmTGDp0KLev+nPMGMPff/+N5cuXw8jICB4eHgAarjOgavGJTZs2wc7ODo6Ojvjiiy+45wsBVfXh7++PZcuWcfPEAgMDwefzFT6fubm5SE9P55ZTTklJAVDVYyEWiyESiRAQEIAlS5bAwMAAurq6+PDDD+Hu7s71kI0ePRrOzs6YOXMmtmzZgszMTKxevRrz58/ner/effdd7Ny5E8uXL8fbb7+NiIgI/PDDD/j999/B4/OgIVSDhlAN0vJKlBZWQFoghVzGcOXXVFw59hAuQ03Ry9MMQn2N1qmwNsDj8bB2ogtSnxYh5kEuAr6Nxc/zh8JAu2mLnxDS7tph5S3SRXSlZXgZY2zjxo3MyMiIFRUVMcaqluGt7bVx40bGWM1ldZ93/PhxpZbhff740aNHMwA1luGtPr+amhqzsLBg06ZNYxEREQ2WtzFx/vjjjwpLaj7PycmJLV68mDFWtQzv2LFjmbq6OrO0tGRhYWHM2NiYhYSEKMRd2/LB1Wpbhre2a66url5nHp6enrUe4+/vr5Dvs8uYVsdW23GNUdvfkr+/P/P09GxUfE1x48YNNmPGDGZtbc3U1dWZoaEhGz58OPvll18U0u3evZuZm5szbW1t5ufnxzZs2MBdi8zMTDZ58mTWvXt3pqamxiwtLdmaNWtYZWXVUqmhoaFcvDwej4lEIjZo0CC2bt26Gv8uyOVytm3bNubg4MAEAgEzMjJiPj4+7Pz58wrpdu3axQAwPz8/pct6//59NnfuXGZvb880NTWZnp4eGzhwoMJnpHop2eqXlpYWc3JyYu+//z67e/euQn51LS9cn4aOqW0p2+DgYKajo8P+/PNPxljNvzkjIyP2yiuv1Fj+tr46Y6xqOeuFCxcyXV1dpqenx5YsWaLUMryDBg3ilsCuLlNtf5uBgYFcmtLSUvb+++8zfX19pqWlxaZMmcIyMjIU4k1LS2Njx45lmpqarFu3buyjjz6qsWRyZGQk69u3L1NTU2M2NjYKdfe84qJiFn/9Jgvb8Cfb+c45tvOdc+yr9yLYyT03WXpSDquslNd5bEeXW1TOhm2OYJYrfmNTQy6zcmllq5yHluElrY3HWDPWHyUvjN27d2P37t3cakcuLi5Ys2ZNrRONAWDv3r04ePAgEhMTAVR1pQcFBdW6AkxdCgoKIBKJIJFIaoxDLysrw4MHD2BtbQ0NjRf3VynSch49egRzc3OcPXuWW3mHENIxFBcXw8zMDMHBwU1eQrqtVN9fLC0skXGnCLciH+HxnXxuv7ZIDfaDxHAYLIahmbDujDqou1mFeHXXZRSWy/DGAHNseq13iw9Pre/+TUhLoCFYXUSPHj24LnfGGL799ltMmjQJcXFx3FKpz4qKioKvry88PDygoaGBzZs3Y/To0bh9+3atcwMIaayIiAgUFRWhd+/eyMjIwPLly2FlZYXhw4e3d2iEdHlxcXH466+/MGjQIEgkEm4luUmTJrVzZMrjq/DR09UYPV2NkfO4CInnH+PutSwUSyoQdyYdcWfS0c1cCAc3MewGmkBbpN5wph2AnYkOvnzLFQEHYnHk2t+wMxFizjCb9g6LkEahHpAuzMDAAJ999plSv2ZVVlZCX18fO3fuVBjfXR/qASH1OX36ND766COkpqZCR0cHHh4e2LZtW4MPlSPkeYcOHcI777xT6z5LS0vcvn27jSN68cXFxWHOnDlISUmBmpoa+vfvjy+++AK9e/du79AaVN/9pVIqx8PEHKTEZCLt1j+QV1YvsQyYOxvAwU0M675GEKi1zXyf5th3MRWf/p4MQ201RC4bAV0NQYvlTT0gpLVRD0gXVFlZiaNHj6K4uJhbiaQhJSUlkEqlrfZ0aNL1+Pj41DlhnpDGmDhxYp1PAxcIWu5LWVfi6upa75PfX1QqAj5sXI1g42qEsmIp7l3PRsqVDGSmFiD9di7Sb+dCoK6Cnq5GcBgshpm9Pnj8jvngv4Ch1igur8SkvqYt2vggpC1QA6QLuXXrFtzd3VFWVgahUIjjx49zyxw2ZMWKFTA1Na33+QPl5eUoLy/n3hcUFDQ7ZkIIaYiOjo7STyAnpJqGtgC9hpuh13Az5GeVIOVqJu7EZKLgnzL8dSUTf13JhFBfvWq+iJsYBqY1Vy9sTzweDwu97do7DEKahBogXUj1E6IlEgl+/PFH+Pv74/z58w02QjZt2oTw8HBERUXVO1xq48aNjXoGBSGEENIR6JlowW2CDQaNt0bmfQn+isnE/evZKMorx43TD3Hj9EMYWejAwU0M+0Em0NSh5W8JaQ6aA9KFeXt7o2fPntizZ0+daT7//HN8+umnOHv2LAYMGFBvfrX1gJibm9McEEIIIW2mpe4vMmkl0m5WzRdJT8yBXF71dYnP58GilyEcB4th1bsbVASd75nONAeEtDbqAenC5HK5QoPheVu2bMGGDRtw+vTpBhsfAKCurs49OIoQQgh5kakKVGDb3xi2/Y1RWliBu9eykHIlE9kPC5F28x+k3fwH6lqqsB1gAsfBYphY67b4criEdFbUAOkiVq5cibFjx8LCwgKFhYUICwtDVFQUTp8+DQDw8/ODmZkZNm7cCADYvHkz1qxZg7CwMFhZWXFPXxYKhRAKX7x10wkhhJCm0tRRQx8vc/TxMkfuk2KkxGQiJSYTxfnluH3hMW5feAyRsSYcB4thP0gM3W6a7R0yIR0aNUC6iOzsbPj5+SEjIwMikQh9+vTB6dOnMWrUKABAeno6+Pz/dSPv3r0bFRUVeP311xXyCQwMxCeffNKWoRNCCCEdhoGpNtyn9ITbJBs8TslDSkwm7sc9hSS7FDG/PEDMLw9gaqcHh8Fi2PYzhpomfdUi5Hk0B4S0GnoOCOmMoqKi4OXlhby8POjp6dWa5sCBA1i0aBHy8/PbNDZCSPvcXyrKZEiNf4qUK5l4lJIH/PvNSkXAh03fqiV9zR31wVd5MeaL0BwQ0tpejE8CIR1ESEgIdHR0IJPJuG1FRUUQCAQYMWKEQtqoqCjweDzcv38fAGBlZYVt27Zx2+t7RUVFAQCOHTuGESNGQCQSQSgUok+fPli3bh1yc3MBVH3RretLMI/Hw08//VRnWT755JMa53V0dGzwGhw9ehSOjo7Q0NBA7969ceLEiQaPUVZD5QWA0tJSBAYGwt7eHurq6ujWrRumTp3aqIfNPV92kUiEYcOG4fz58w0e6+HhwfUkEkIIAKhpqMJxcHdMWuQKvw0eGDzZBvpiLVRK5bgbm4XfdiTg25WXcenoXTxNLwT99ku6OmqAENIIXl5eKCoqwrVr17htFy9ehFgsRkxMDMrKyrjtkZGRsLCwQM+ePRXyqP4CW/2aNm0axowZo7DNw8MD//d//4c33ngDAwcOxMmTJ5GYmIjg4GAkJCTgu+++a5HyuLi4KJz30qVL9aa/fPkyfH19ERAQgLi4OEyePBmTJ09GYmJis2NRprzl5eXw9vbGN998g08//RR37tzBiRMnIJPJ4ObmhitXrih9vmfLHh0dDTs7O4wfPx4SiaTOY6RSKdTU1CAWi2myKSGkVjoGGug/xgq+gW6YunIAenv1gIZQgJKCCiSc+xs/BMUifP1V3Dj9EEV5ZQ1nSEgnRA0QQhrBwcEB3bt353oogKqejkmTJsHa2lrhC3D1UJ3nVX+BrX5pampCXV1dYVt8fDyCgoIQHByMzz77DB4eHrCyssKoUaNw7Ngx+Pv7t0h5VFVVFc7brVu3etNv374dY8aMwbJly+Dk5IT169ejX79+2LlzZ7PiuHr1qlLl3bZtG6Kjo/Hbb79h2rRpsLS0xKBBg3Ds2DE4OTkhICBA6V8Wny27s7Mz1q1bh6KiIty5c4dLw+PxsHv3bkycOBHa2trYsGED14P17PCqAwcOwMLCAlpaWpgyZQpycnJqnO/TTz+FsbExdHR0MGfOHHz88cfo27evQpp9+/bByckJGhoacHR0xK5duxp/MQkhHQKPx4OxpS6Gv2GPWZuG4JX3eqNnPyOoqPKR+6QY0cfv49tVl/HT1jgkX85ARZms4UwJ6SSoAUI6DMYYpGVl7fJqTHe4l5cXIiMjufeRkZEYMWIEPD09ue2lpaWIiYmptQGijEOHDkEoFOL999+vdX9dw64a6+7duzA1NYWNjQ2mT5+O9PT0etNHR0fD29tbYZuPjw+io6ObFYey5Q0LC8OoUaPw0ksvKezn8/lYvHgxkpKSkJCQ0Ojzl5eXIzQ0FHp6enBwcFDY98knn2DKlCm4desW3n777RrHxsTEICAgAB988AHi4+Ph5eWFTz/9tEb5NmzYgM2bN+P69euwsLDA7t27a6RZs2YNNmzYgOTkZAQFBeE///kPvv3220aXhxDSsaio8mH9khHGzOuN2VuGYMR0B3S3FQEMeJySh4iDyQhddgl/7L+Nh7dzIK+Ut3fIhLQqWpqBdBiy8nJ86f96wwlbwYJvf4RAycmKXl5eWLRoEWQyGUpLSxEXFwdPT09IpVKEhIQAqPqiXl5e3uQGyN27d2FjYwOBQNBgWolE0qSlkd3c3HDgwAE4ODggIyMDa9euxbBhw5CYmAgdHZ1aj8nMzISJiYnCNhMTE26Z5qZStrx37typ85o6OTlxaZ7vWajNrVu3uOtWUlICHR0dHDlypMaEy7feeguzZ8/m3qempirsr+4VWr58OQDA3t4ely9fxqlTp7g0O3bsQEBAAJfPmjVr8Mcff6CoqIhLExgYiODgYLz66qsAAGtrayQlJWHPnj0t1uNFCGl/6loCuAwzg8swMxT8U4o7V7OQEpOJ/KwS3I3Nwt3YLGjpqsFuoAkc3MToZi6kIZ+k06EGCCGNNGLECBQXFyM2NhZ5eXmwt7eHkZERPD09MXv2bJSVlSEqKgo2NjawsLBo0jka0yOjo6ODGzdu1NhuZ2dX73Fjx47l/r9Pnz5wc3ODpaUlfvjhBwQEBCgfbD3S09Ph7OzMvV+1ahVWrVpVI11jyttSkzcdHBzwyy+/AAAKCwtx5MgRTJ06FZGRkQoP3mzoIZzJycmYMmWKwjZ3d3eFBkhKSkqN3p1BgwYhIiICAFBcXIz79+8jICAAc+fO5dLIZDKa7E5IJ6bbTRMDXrFC/7GWyE4rREpMJu5ey+LmiySc+xsGptpwcBPDfpAJhPq0aiTpHKgBQjoMVXV1LPj2x3Y7t7JsbW3Ro0cPREZGIi8vD56engAAU1NTmJub4/Lly4iMjMTLL7/c5Hjs7e1x6dIlSKXSBnsF+Hw+bG1tm3yuanp6erC3t8e9e/fqTCMWi5GVlaWwLSsrC2KxuNb0pqamiI+P594bGBjUmk7Z8trb2yM5ObnWfdXb7e3t6zz+WWpqagrXzdXVFT/99BO2bduG77//ntuura2tVH7NUd0TsnfvXri5uSnsU1FRafXzE0LaF4/Hg4m1LkysdTFkqi3Sb+ci5Uom0m7+w80Xif7pPszs9eHgJkbPfkZQ06CvcOTFRXNASIfB4/Eg0NBol1dju7e9vLwQFRWFqKgoheV3hw8fjpMnT+Lq1atNHn4FVA37KSoqqnMScms8X6KoqAj3799H9+7d60zj7u6Oc+fOKWw7c+YM3N3da02vqqoKW1tb7lVXA0TZ8r755ps4e/ZsjXkecrkcW7duhbOzc435IY2hoqKC0tLSRh3j5OSEmJgYhW3Pr8bl4OCA2NhYhW3PvjcxMYGpqSlSU1MVrpetrS2sra0bWQpCyItMRYUP6z7dMGZeL8zeMgReMxxhaqdX+3yRRJovQl5M1HwmpAm8vLwwf/58SKVSrgcEADw9PfHBBx+goqKiWQ0QNzc3LF++HB999BEeP36MKVOmwNTUFPfu3UNISAiGDh2KhQsXNqsMS5cuxYQJE2BpaYknT54gMDAQKioq8PX15dL4+fnBzMwMGzduBAAsXLgQnp6eCA4Oxrhx4xAeHo5r167h66+/blYsypZ38eLF+PnnnzFhwgQEBwfDzc0NWVlZCAoKQnJyMs6ePat0Y1Imk3FzV6qHYCUlJWHFihWNin3BggUYMmQIPv/8c0yaNAmnT59WGH4FAB9++CHmzp2LAQMGwMPDA0eOHMHNmzdhY2PDpVm7di0WLFgAkUiEMWPGoLy8HNeuXUNeXh6WLFnSqJgIIZ2DupYAzkNN4TzUtM75IjoGGpi+fjBUXpCHHBICUAOEkCbx8vJCaWkpHB0dFSZle3p6orCwkFuutzk2b96M/v3746uvvkJISAjkcjl69uyJ119/vUUmJT969Ai+vr7IycmBkZERhg4diitXrsDIyIhLk56eDj7/fzc1Dw8PhIWFYfXq1Vi1ahXs7Ozw008/oVevXs2OR5nyamhoICIiAkFBQVi1ahUePnwIHR0deHl54cqVK42K4/bt21wdaWlpoWfPnti9ezf8/PwaFffgwYOxd+9eBAYGYs2aNfD29sbq1auxfv16Ls306dORmpqKpUuXoqysDNOmTcOsWbNw9epVLs2cOXOgpaWFzz77DMuWLYO2tjZ69+6NRYsWNSoeQkjnpDBf5OG/80Vis2BspUuND/LC4TF6HCdpJQUFBRCJRJBIJDVWFiorK8ODBw9gbW0NDSVXnyKkMxk1ahTEYnGLPVSSEFKlK91fKivlKC+WQUtXrUXzre/+TUhLoB4QQghpZSUlJQgJCYGPjw9UVFRw+PBhnD17FmfOnGnv0AghLzAVFX6LNz4IaQvUACGEdDr1PRfl5MmTGDZsWBtGU7XAwokTJ7BhwwaUlZXBwcEBx44dq/FQR0IIIaQroAYIIaTTeXbp3+eZmZm1XSD/0tTUxNmzZ9v8vIQQQkhHRA0QQkin0xLPRSGEEEJI66BlEwghhBBCCCFthhogpF3RImyEEEJaEt1XCOn4qAFC2oVAIABQtToQIYQQ0lKq7yvV9xlCSMdDc0BIu1BRUYGenh6ys7MBVD0ITtknWBNCCCHPY4yhpKQE2dnZ0NPTg4qKSnuHRAipAzVASLsRi8UAwDVCCCGEkObS09Pj7i+EkI6JGiCk3fB4PHTv3h3GxsaQSqXtHQ4hhJAXnEAgoJ4PQl4A1AAh7U5FRYVuGIQQQgghXQRNQieEEEIIIYS0GWqAEEIIIYQQQtoMNUAIIYQQQgghbYbmgJBWU/0wqIKCgnaOhBBCCCHKqr5v00MdSWuhBghpNYWFhQAAc3Pzdo6EEEIIIY1VWFgIkUjU3mGQTojHqHlLWolcLseTJ0+go6Pzwj5ksKCgAObm5vj777+hq6vb3uGQOlA9vTiorl4MVE8vhtaqJ8YYCgsLYWpqCj6fRuuTlkc9IKTV8Pl89OjRo73DaBG6urp0E34BUD29OKiuXgxUTy+G1qgn6vkgrYmatYQQQgghhJA2Qw0QQgghhBBCSJuhBggh9VBXV0dgYCDU1dXbOxRSD6qnFwfV1YuB6unFQPVEXlQ0CZ0QQgghhBDSZqgHhBBCCCGEENJmqAFCCCGEEEIIaTPUACGEEEIIIYS0GWqAEEIIIYQQQtoMNUBIp7dx40YMHDgQOjo6MDY2xuTJk5GSkqKQpqysDPPnz4ehoSGEQiFee+01ZGVlcfsTEhLg6+sLc3NzaGpqwsnJCdu3b69xrqioKPTr1w/q6uqwtbXFgQMHWrt4nUZL1NOzcnJy0KNHD/B4POTn5yvso3pqupaspwMHDqBPnz7Q0NCAsbEx5s+fr7D/5s2bGDZsGDQ0NGBubo4tW7a0atk6k5aqp9jYWIwcORJ6enrQ19eHj48PEhISFNJQPTWdMvX09ddfY8SIEdDV1a313zMAyM3NxfTp06Grqws9PT0EBASgqKhIIQ3VE+lQGCGdnI+PDwsNDWWJiYksPj6evfLKK8zCwoIVFRVxad59911mbm7Ozp07x65du8YGDx7MPDw8uP379+9nCxYsYFFRUez+/fvsu+++Y5qammzHjh1cmtTUVKalpcWWLFnCkpKS2I4dO5iKigo7depUm5b3RdUS9fSsSZMmsbFjxzIALC8vj9tO9dQ8LVVPwcHBzNTUlB06dIjdu3ePJSQksJ9//pnbL5FImImJCZs+fTpLTExkhw8fZpqammzPnj1tVtYXWUvUU2FhITMwMGCzZs1if/31F0tMTGSvvfYaMzExYRUVFYwxqqfmUqaetm7dyjZu3Mg2btxY49+zamPGjGEvvfQSu3LlCrt48SKztbVlvr6+3H6qJ9LRUAOEdDnZ2dkMADt//jxjjLH8/HwmEAjY0aNHuTTJyckMAIuOjq4zn/fff595eXlx75cvX85cXFwU0rzxxhvMx8enhUvQNTSnnnbt2sU8PT3ZuXPnatywqZ5aVlPqKTc3l2lqarKzZ8/Wme+uXbuYvr4+Ky8v57atWLGCOTg4tFJJOrem1FNsbCwDwNLT07k0N2/eZADY3bt3GWNUTy3t+Xp6VmRkZK0NkKSkJAaAxcbGcttOnjzJeDwee/z4MWOM6ol0PDQEi3Q5EokEAGBgYAAAuH79OqRSKby9vbk0jo6OsLCwQHR0dL35VOcBANHR0Qp5AICPj0+9eZC6NbWekpKSsG7dOhw8eBB8fs1/4qieWlZT6unMmTOQy+V4/PgxnJyc0KNHD0ybNg1///03d0x0dDSGDx8ONTU1bpuPjw9SUlKQl5fXFkXrVJpSTw4ODjA0NMT+/ftRUVGB0tJS7N+/H05OTrCysgJA9dTSnq8nZURHR0NPTw8DBgzgtnl7e4PP5yMmJoZLQ/VEOhJqgJAuRS6XY9GiRRgyZAh69eoFAMjMzISamhr09PQU0pqYmCAzM7PWfC5fvowjR45g3rx53LbMzEyYmJjUyKOgoAClpaUtW5BOrqn1VF5eDl9fX3z22WewsLCoNW+qp5bT1HpKTU2FXC5HUFAQtm3bhh9//BG5ubkYNWoUKioquHxqq6fqfUR5Ta0nHR0dREVF4fvvv4empiaEQiFOnTqFkydPQlVVlcuH6qll1FZPysjMzISxsbHCNlVVVRgYGHB1QPVEOhrV9g6AkLY0f/58JCYm4tKlS03OIzExEZMmTUJgYCBGjx7dgtGRak2tp5UrV8LJyQkzZsxopcjIs5paT3K5HFKpFF9++SX3GTp8+DDEYjEiIyPh4+PTGuF2WU2tp9LSUgQEBGDIkCE4fPgwKisr8fnnn2PcuHGIjY2FpqZmK0XcNbXE/YmQFwX1gJAu44MPPsBvv/2GyMhI9OjRg9suFotRUVFRY2WRrKwsiMVihW1JSUkYOXIk5s2bh9WrVyvsE4vFNVaQycrKgq6uLt2oG6E59RQREYGjR49CVVUVqqqqGDlyJACgW7duCAwM5PKhemq+5tRT9+7dAQDOzs7cfiMjI3Tr1g3p6elcPrXVU/U+opzm1FNYWBjS0tIQGhqKgQMHYvDgwQgLC8ODBw/w888/c/lQPTVfXfWkDLFYjOzsbIVtMpkMubm5XB1QPZGOhhogpNNjjOGDDz7A8ePHERERAWtra4X9/fv3h0AgwLlz57htKSkpSE9Ph7u7O7ft9u3b8PLygr+/PzZs2FDjPO7u7gp5AFVj3Z/Ng9StJerp2LFjSEhIQHx8POLj47Fv3z4AwMWLF7klXqmemqcl6mnIkCHc9mq5ubn4559/YGlpCaCqni5cuACpVMqlOXPmDBwcHKCvr99q5essWqKeSkpKwOfzwePxuDTV7+VyOQCqp+ZqqJ6U4e7ujvz8fFy/fp3bFhERAblcDjc3Ny4N1RPpUNp1CjwhbeC9995jIpGIRUVFsYyMDO5VUlLCpXn33XeZhYUFi4iIYNeuXWPu7u7M3d2d23/r1i1mZGTEZsyYoZBHdnY2l6Z6eddly5ax5ORk9tVXX9Hyro3QEvX0vNpWjaF6ap6WqqdJkyYxFxcX9ueff7Jbt26x8ePHM2dnZ2551/z8fGZiYsJmzpzJEhMTWXh4ONPS0qJlQ5XUEvWUnJzM1NXV2XvvvceSkpJYYmIimzFjBhOJROzJkyeMMaqn5lKmnjIyMlhcXBzbu3cvA8AuXLjA4uLiWE5ODpdmzJgxzNXVlcXExLBLly4xOzs7hWV4qZ5IR0MNENLpAaj1FRoayqUpLS1l77//PtPX12daWlpsypQpLCMjg9sfGBhYax6WlpYK54qMjGR9+/ZlampqzMbGRuEcpH4tUU/Pq2vZSqqnpmupepJIJOztt99menp6zMDAgE2ZMkVhuVfGGEtISGBDhw5l6urqzMzMjG3atKktitgptFQ9/fHHH2zIkCFMJBIxfX199vLLL9dY9prqqemUqae67j/PpsnJyWG+vr5MKBQyXV1dNnv2bFZYWKhwLqon0pHwGGOslTpXCCGEEEIIIUQBzQEhhBBCCCGEtBlqgBBCCCGEEELaDDVACCGEEEIIIW2GGiCEEEIIIYSQNkMNEEIIIYQQQkiboQYIIYQQQgghpM1QA4QQQgghhBDSZqgBQgghhBBCCGkz1AAhhJAujjEGb29v+Pj41Ni3a9cu6Onp4dGjR+0QGSGEkM6IGiCEENLF8Xg8hIaGIiYmBnv27OG2P3jwAMuXL8eOHTvQo0ePFj2nVCpt0fwIIYS8OKgBQgghBObm5ti+fTuWLl2KBw8egDGGgIAAjB49Gq6urhg7diyEQiFMTEwwc+ZM/PPPP9yxp06dwtChQ6GnpwdDQ0OMHz8e9+/f5/anpaWBx+PhyJEj8PT0hIaGBg4dOtQexSSEENIB8BhjrL2DIIQQ0jFMnjwZEokEr776KtavX4/bt2/DxcUFc+bMgZ+fH0pLS7FixQrIZDJEREQAAI4dOwYej4c+ffqgqKgIa9asQVpaGuLj48Hn85GWlgZra2tYWVkhODgYrq6u0NDQQPfu3du5tIQQQtoDNUAIIYRwsrOz4eLigtzcXBw7dgyJiYm4ePEiTp8+zaV59OgRzM3NkZKSAnt7+xp5/PPPPzAyMsKtW7fQq1cvrgGybds2LFy4sC2LQwghpAOiIViEEEI4xsbGeOedd+Dk5ITJkycjISEBkZGREAqF3MvR0REAuGFWd+/eha+vL2xsbKCrqwsrKysAQHp6ukLeAwYMaNOyEEII6ZhU2zsAQgghHYuqqipUVatuD0VFRZgwYQI2b95cI131EKoJEybA0tISe/fuhampKeRyOXr16oWKigqF9Nra2q0fPCGEkA6PGiCEEELq1K9fPxw7dgxWVlZco+RZOTk5SElJwd69ezFs2DAAwKVLl9o6TEIIIS8QGoJFCCGkTvPnz0dubi58fX0RGxuL+/fv4/Tp05g9ezYqKyuhr68PQ0NDfP3117h37x4iIiKwZMmS9g6bEEJIB0YNEEIIIXUyNTXFn3/+icrKSowePRq9e/fGokWLoKenBz6fDz6fj/DwcFy/fh29evXC4sWL8dlnn7V32IQQQjowWgWLEEIIIYQQ0maoB4QQQgghhBDSZqgBQgghhBBCCGkz1AAhhBBCCCGEtBlqgBBCCCGEEELaDDVACCGEEEIIIW2GGiCEEEIIIYSQNkMNEEIIIYQQQkiboQYIIYQQQgghpM1QA4QQQgghhBDSZqgBQgghhBBCCGkz1AAhhBBCCCGEtBlqgBBCCCGEEELazP8DNIqWr+rmg5gAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# model = \"IMAG*\"\n", "scenario = [\n", @@ -1331,30 +1637,10 @@ " # 'SSP5-Baseline',\n", " \"SusDev_SDP-PkBudg1000\",\n", "]\n", - "variable = \"RIME|sdii|Hazard|Risk score|Population weighted\"\n", + "variable = \"RIME|cdd|Hazard|Risk score|Population weighted\"\n", "# variable = 'RIME|wsi|Exposure|Population|%'\n", - "variable = \"RIME|cdd|Exposure|Population|%\"\n", - "expandeddGMT.filter(variable=variable, scenario=scenario, region=\"GBR\").plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "614d21e6-345c-43d5-9e9c-06606ce3a3d2", - "metadata": {}, - "outputs": [], - "source": [ - "expandeddGMT.filter(variable=variable, scenario=scenario, region=\"PAK\").plot()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "def35b50-a552-4a79-b481-08bceeca1918", - "metadata": {}, - "outputs": [], - "source": [ - "expandeddGMT.variable" + "variable = \"RIME|pr_r10|Exposure|Population|%\"\n", + "expandeddGWL.filter(variable=variable, scenario=scenario, region=\"Countries of South Asia; primarily India\").plot()" ] }, { @@ -1367,20 +1653,64 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "id": "d8f60f4b-7154-44fe-92b8-49f0027e2e81", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['EN_NPi2020_400f_lowBECCS',\n", + " 'NGFS2_Current Policies',\n", + " 'EN_INDCi2030_3000f',\n", + " 'SusDev_SDP-PkBudg1000',\n", + " 'CO_Bridge']" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "imps.scenario" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, "id": "151e35c4-6772-4b6c-bf27-f728e5b9d9f1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjcAAAGwCAYAAABVdURTAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy88F64QAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB3tklEQVR4nO3dd3QUVRvH8e+WZNM3DRJCQu9NiggBEZASigo2BBFUsKNSFBSkWTAo8CKKItgboiiC0ntHpffeAqRAet9kd+/7x8ZIpEOSSTbP55w9ITOzM88ymvy4c4tOKaUQQgghhHASeq0LEEIIIYQoTBJuhBBCCOFUJNwIIYQQwqlIuBFCCCGEU5FwI4QQQginIuFGCCGEEE5Fwo0QQgghnIpR6wKKm91uJzo6Gm9vb3Q6ndblCCGEEOI6KKVIS0sjJCQEvf7qbTNlLtxER0cTFhamdRlCCCGEuAlnzpwhNDT0qseUuXDj7e0NOP5yfHx8NK5GCCGEENcjNTWVsLCw/N/jV1Pmws0/j6J8fHwk3AghhBClzPV0KZEOxUIIIYRwKpqGm/Hjx6PT6Qq86tSpc9X3zJ07lzp16uDm5kbDhg1ZvHhxMVUrhBBCiNJA85ab+vXrExMTk//auHHjFY/dvHkzffr0YeDAgezcuZOePXvSs2dP9u3bV4wVCyGEEKIk0zzcGI1GgoOD81+BgYFXPHbatGl06dKF4cOHU7duXd5++22aNm3K9OnTi7FiIYQQQpRkmoebo0ePEhISQrVq1ejbty9RUVFXPHbLli107NixwLaIiAi2bNlyxfdYLBZSU1MLvIQQQgjhvDQNNy1atODrr79m6dKlzJgxg5MnT9KmTRvS0tIue3xsbCxBQUEFtgUFBREbG3vFa0RGRmI2m/NfMseNEEII4dw0DTddu3bl4YcfplGjRkRERLB48WKSk5P5+eefC+0aI0eOJCUlJf915syZQju3EEIIIUqeEjXPja+vL7Vq1eLYsWOX3R8cHExcXFyBbXFxcQQHB1/xnCaTCZPJVKh1CiGEEKLk0rzPzcXS09M5fvw4FSpUuOz+8PBwVq1aVWDbihUrCA8PL47yhBBCCFEKaBpuXn31VdatW8epU6fYvHkz999/PwaDgT59+gDQv39/Ro4cmX/84MGDWbp0KVOmTOHQoUOMHz+ebdu28eKLL2r1EYQQQghRwmj6WOrs2bP06dOHhIQEypUrx5133smff/5JuXLlAIiKiiqw8merVq2YPXs2o0ePZtSoUdSsWZP58+fToEEDrT6CEEIIIUoYnVJKaV1EcUpNTcVsNpOSkiJrSwkhhBClxI38/i5RfW6EEEIIUbpFr12LJSVF0xok3AghhBCiUByYOZOFHTuz8uFe2HJzNaujRA0FF0IIIUTpY7fZ+GvEa+z531QA3IODwW7XrB4JN0IIIYS4abkZGazu+xinFvwOwO1vvUnT0W+g0+k0q0nCjRBCCCFuSkZ0NEvv60n89u3oXV1p//WX1MibzkVLEm6EEEIIccMSdu9myT33kXH2LG6BgUTMn0dw69ZalwVIuBFCCCHEDTqzbBkrHn6E3LQ0fOvUocvC3zFXr651WflktJQQQgghrtuhL75gSfd7yU1LI6RdO3pu3liigg1IuBFCCCHEdVBK8ffoMax76hmUzUbNfo/RbdkSTH5+Wpd2CXksJYQQQoirslksrB0wkGOzfwSg6ZjR3P7meE1HRF2NhBshhBBCXFFmXBwrHn6E2A0b0BuNtJk5gzoDBmhd1lVJuBFCCCHEZcVu2cKKh3qRGR2Ni7c3nX+dS2inTlqXdU0SboQQQghRgFKKA59+yubBQ7Hn5uJXrx6d5/2Cb+3aWpd2XSTcCCGEECKfNSuLDc+/wJFvvgWg2kMP0vbLL3D19ta4susn4UYIIYQQAKSfOcOyng8Qv2MHOr2eFu9NpNErw0psx+ErkXAjhBBCCOL+/JNlPR8gKy4Ot8BAOv70IxXvvlvrsm6KhBshhBCijDv244+sfXIgNosF/0aN6PL7fLwrV9a6rJsmk/gJIYQQZZSy29k6dhyrHn0Mm8VC5fvupeemDaU62IC03AghhBBlUm5mJmsff4ITv/wKwG0jhnPHuxPQGwwaV3brJNwIIYQQZczFHYf1Li7cNetTaj/xhNZlFRoJN0IIIUQZErt5M8sfeCi/43Dneb9QoU0brcsqVBJuhBBCiDLi0FdfseG5F7Dn5Dg6Di/4De8qVbQuq9BJh2IhhBDCydmtVjYPe4V1A57CnpND1QcfcHQcdsJgA9JyI4QQQji1zLg4Vvftx7lVqwBoNn4czcaMRqd33vYNCTdCCCGEk4peu5ZVffqSGRuL0cOD9t9+TbUHH9S6rCIn4UYIIYRwMspuZ+e7kWwbNx5lt+NXvz6d5v6EX926WpdWLCTcCCGEEE4k6/x5Vj/Wj7MrVgJQ64nHuXP6R7h4empcWfGRcCOEEEI4iQvbtrGs5wNknDuH0d2dOz+Z7lTz11wvCTdCCCGEEzg+dy5rH38Sa1YWvnXq0GnuT/g3aKB1WZpw3q7SQgghRBmglGL72++wsldvrFlZhHXtwv1/bSmzwQak5UYIIYQotaxZWawdMJDjc34CoOGQwbScPMkp1oe6FRJuhBBCiFIoMy6OZT3u5/xff6E3Gmn98UfUe+YZrcsqESTcCCGEEKVMyvHjLI7oSurx45j8/Oj061wqtm+vdVklhoQbIYQQohS5sGMHS7p2J+v8ebyrVqXb0sX41qqldVklSonpUDxx4kR0Oh1Dhgy54jFff/01Op2uwMvNza34ihRCCCE0dHblSv5o256s8+cJaNyYnps3SrC5jBLRcrN161ZmzpxJo0aNrnmsj48Phw8fzv9ep9MVZWlCCCFEiXBszhzW9H8Ce24uIe3bEzF/Hq4+PlqXVSJp3nKTnp5O3759+eyzz/Dz87vm8TqdjuDg4PxXUFDQVY+3WCykpqYWeAkhhBClyb6PP2FVn77Yc3Op1uthui1ZJMHmKjQPN4MGDaJ79+507Njxuo5PT0+ncuXKhIWF0aNHD/bv33/V4yMjIzGbzfmvsLCwwihbCCGEKBZ7PpjGphdfAqD+i4Po+ONsDCaTxlWVbJqGmzlz5rBjxw4iIyOv6/jatWvz5ZdfsmDBAr7//nvsdjutWrXi7NmzV3zPyJEjSUlJyX+dOXOmsMoXQgghitTuKf9jy9BhADQZNZLWH05Dp9e8XaLE06zPzZkzZxg8eDArVqy47k7B4eHhhIeH53/fqlUr6taty8yZM3n77bcv+x6TyYRJEq4QQohSZtf7k/jrtdcBaDp2DLePHyf9TK+TZuFm+/btnD9/nqZNm+Zvs9lsrF+/nunTp2OxWDBcY4ZFFxcXmjRpwrFjx4q6XCGEEKLY7IycyN+j3gCg2fhx3D5urMYVlS6ahZsOHTqwd+/eAtuefPJJ6tSpw2uvvXbNYAOOMLR37166detWVGUKIYQQxUYpxc4J77J1jCPMNH/7LZqOfkPjqkofzcKNt7c3Df6zqJenpycBAQH52/v370/FihXz++S89dZbtGzZkho1apCcnMykSZM4ffo0Tz31VLHXL4QQQhQmZbez5ZVX2fvBNADueHcCTUa+rnFVpVOJmOfmSqKiotBf1HEqKSmJp59+mtjYWPz8/GjWrBmbN2+mXr16GlYphBBC3BpbTg5rn3iSYz/OASB86v9oNGSwxlWVXjqllNK6iOKUmpqK2WwmJSUFH5kjQAghhMZy0tJY/sCDnFu5Cr2LC+2+/pKajz6qdVklzo38/i7RLTdCCCGEM8uMi2NJt3uI37EDo6cnnef9QljnzlqXVepJuBFCCCE0kHLsGIu7dCP1+HHcypWj2+KFlLv9dq3LcgoSboQQQohiFrt5M8vu60l2QgLeVavSfdkSzDVral2W05BpDoUQQohidOKXX1h4d0eyExIIbNaMnps3SrApZBJuhBBCiGKglGL3lP+xoldvbBYLle+9h/vWrcEjOFjr0pyOPJYSQgghipjdZmPz4CHs//gTAOoPeoFW0z5Afx0T1oobJ+FGCCGEKEK5GRms6vMop/9YCEDLyZNoNGyorBNVhCTcCCGEEEUkMzaWpff24MK2bRhMJtp/9w3VH35Y67KcnoQbIYQQoggkHTzI4q7dST99GreAACJ+n09wq1Zal1UmSLgRQgghCln02rUsu/9BcpKT8alRg25LFmGuUUPrssoMGS0lhBBCFKIj33/Pos5dyElOJqhVK3pu2STBpphJuBFCCCEKgS0nh40vvcyafo9jz82l2sMPcc+qFbgHBmpdWpkjj6WEEEKIW5QWFcXKXr05/9dfADQd/Qa3vzkenV7aELQg4UYIIYS4BWeWLWN1335kJyRg8vOj/XffULl7d63LKtMk3AghhBA3wW6zseOdCWx/8y1QisCmTen0y8/4VK2qdWllnoQbIYQQ4gZlxcezuu9jnF2+AoC6zz5Dqw+mYnRz07gyARJuhBBCiBty/u+/WfFQL9LPnMHo7s6dMz6m9uOPa12WuIiEGyGEEOI6KKXY/8kMtgwdhj03F3PNmnT65WcCGjXSujTxHxJuhBBCiGvIzchg/TPPcmz2jwBUfeB+2n75BSazWePKxOVIuBFCCCGuIuPcOZbe24P4nTvRGQy0fP89Gg4dIgtflmASboQQQogriN+5kyX33EdmdDRu5crRed4vVLjzTq3LEtcg4UYIIYS4jFN//MGqPn2xZmTgV68eXRb+LsO8SwmZOlEIIYS4iFKKvdM+ZHnPB7BmZFCxYwd6bNogwaYUkXAjhBBC5LFbrWx66WU2DxmKstup8/RTdF28CJOvr9aliRsgj6WEEEIIHCOiVvbuQ9TCRaDT0fL992j0yjDpOFwKSbgRQghR5mXExDhGRG3fjsHNjbu//5ZqDz6odVniJkm4EUIIUaYl7t/Pkm73kB4VhVtgIBG/zyc4PFzrssQtkHAjhBCizDq3Zg3L73+QnJQUzDVr0nXxQsw1amhdlrhF0qFYCCFEmXR09mwWR3QlJyWF4Nat6bF5owQbJyHhRgghRJmilGLX+5NY3bcf9txcqj38EN1XLsc9MFDr0kQhkcdSQgghygy7zcbmIUPZP/1jABoNG0rLSe+j08u/9Z2JhBshhBBlgjUri1V9H+PUb/NBpyN8ymQaDR2idVmiCEi4EUII4fSyExNZdl9PYjdtQu/qyt3ffUP1Xr20LksUkRLTDjdx4kR0Oh1Dhgy56nFz586lTp06uLm50bBhQxYvXlw8BQohhCiVMs6d4/e72hG7aROuvr50X75Ugo2TKxHhZuvWrcycOZNGjRpd9bjNmzfTp08fBg4cyM6dO+nZsyc9e/Zk3759xVSpEEKI0iT5yBHmt25D0v79eISE0GPDOkLattW6LFHENA836enp9O3bl88++ww/P7+rHjtt2jS6dOnC8OHDqVu3Lm+//TZNmzZl+vTpxVStEEKI0uLCjh0suPMu0k+fxlyzJj03bcC/QQOtyxLFQPNwM2jQILp3707Hjh2veeyWLVsuOS4iIoItW7Zc8T0Wi4XU1NQCLyGEEM4teu1a/mh3N9kXLhDYpAk9Nq7Hu0oVrcsSxUTTDsVz5sxhx44dbN269bqOj42NJSgoqMC2oKAgYmNjr/ieyMhI3nzzzVuqUwghROlxcv58VvV+FJvFQoW2beny+3xcfXy0LksUI81abs6cOcPgwYP54YcfcHNzK7LrjBw5kpSUlPzXmTNniuxaQgghtHVg1ixWPPgwNouFKj170G3pYgk2ZZBmLTfbt2/n/PnzNG3aNH+bzWZj/fr1TJ8+HYvFgsFgKPCe4OBg4uLiCmyLi4sjODj4itcxmUyYTKbCLV4IIUSJopRix9vvsG3ceABqD3iSu2Z+it4oM56URZq13HTo0IG9e/eya9eu/Nftt99O37592bVr1yXBBiA8PJxVq1YV2LZixQrCZfVWIYQos+w2GxsHvZgfbJqOfoO2n38mwaYM0+zOe3t70+A/vdY9PT0JCAjI396/f38qVqxIZGQkAIMHD6Zt27ZMmTKF7t27M2fOHLZt28asWbOKvX4hhBDas2Zns7rvY5yc9xvodLT+6EMaDHpB67LKtJw9ezCEhGDQcK0uzUdLXU1UVBQxMTH537dq1YrZs2cza9YsbrvtNn755Rfmz59/SUgSQgjh/CwpKSzu0o2T835D7+pKx59+lGCjIWW3k/K//xHdvDkJzz6LUkqzWnRKy6trIDU1FbPZTEpKCj7SyUwIIUqlzLg4FnfpRsKuXbh4exOx4Dcqtm+vdVlllvXsWeIff5zs1asBcL/3Xsr99BN6d/dCu8aN/P4u0S03QgghxH+lnTrFgjvvImHXLtzLl+e+dWsk2Ggo4+efiW7YkOzVq9F5eBAwcyblFywo1GBzo6S3lRBCiFIjcd8+FkV0JTM6Gu8qVei+fCnmmjW1LqtMsqekkPDSS2R89x0Ars2bU+7773GpVUvjyqTlRgghRCkRu2ULv9/VjszoaPwbNKDHpg0SbDSStXw55xo0cAQbvR7zmDFU2LSpRAQbkJYbIYQQpcDZFStY1vMBrJmZBIWH02Xh77j5+2tdVpljT00l8dVXSf/sMwCM1asT+O23uLVqpXFlBUnLjRBCiBLt9KJFLL23B9bMTMK6RNB9xTIJNhrIWrGCcw0b5gcb75dfJmT37hIXbEBaboQQQpRgJ3/7jZWP9MGem0uV+3vScc6PGFxdtS6rTLElJZH02mv/ttZUq0bgl1/i1ratxpVdmbTcCCGEKJGO/fQTKx5+BHtuLtUf6UXHn+ZIsClGSinSv/+ec7Vr/9ta8+KLhOzZU6KDDUjLjRBCiBLoyLffsvbJgSi7nVr9+9H2yy/QX2ZZHlE0cg8fJuGFF/LnrXGpW5eATz/F7a67NK7s+kjLjRBCiBLlwKxZrHliAMpup85TA2n31ZcSbIqJPSuLpHHjONeokWPeGjc3fN99l5Bdu0pNsAFpuRFCCFFC/Hdl7/qDXqD1h9PQ6eXf4cUhc9EiEl9+GeuJEwC4d+mC/8cf41KtmsaV3TgJN0IIITRnt9nY9NLLHJjxKeBY2fv2t95Ep9NpXJnzyz15ksQhQ8j6/XcADCEh+E+disfDD5fav38JN0IIITRlzc5m9WP9OPnrPFnZuxjZs7NJnTyZlAkTUNnZYDTiM3QovmPGoPf21rq8WyLhRgghhGYsKSks63E/MevWoXd15e7vv6X6ww9rXZZTU0qR+euvJA0fjvXUKQDc2rfHf/p0XOvV07a4QiLhRgghhCbSTp1i6X09Sdy7V1b2LiaW7dtJHDoUy4YNABgqVsRv0iQ8e/cutY+gLkfCjRBCiGIXvX49Kx58mOz4eDyCg+m6eCGBTZpoXZbTskZHk/zGG6R/8w0ohc7dHZ8RIzAPH47e01Pr8gqdhBshhBDF6sCsWWwa9BJ2q5XApk2JmD8Pr7AwrctySspiIfWDD0h++21URgYAno89hl9kJMbQUI2rKzoSboQQQhQLW24uW4YOY//HnwBQ/ZFetP3yC1w8PDSuzDllLl5M4pAhWI8eBcC1RQsCpk3D1KKFxpUVPQk3QgghilzW+fOs7P0o0WvWANB8wjs0Gfm6U/XzKClyjx4lcehQshYtAsAQHIzfe+/h+dhjZWbOIAk3QgghilT0+vWs6tOXzOhoXLy8uPv7b6nSo4fWZTkde2YmKRMmkDJ5MuTkgIsLPkOG4Dt6NHofH63LK1YSboQQQhQJZbez67332TpmLMpmw7dOHTr98jP+9etrXZpTUUqRuWABiYMHY4uKAvJmF/7gA1xq19a4Om1IuBFCCFHosuLjWdP/cc4sWQpAzcf60mbGJ7h4eWlcmXPJPX6cxJdeImvJEgAMlSrhP20aHj16lOlHfhJuhBBCFKrYTZtY2ftRMs6exeDmxp3TP6T2gAFl+pdtYVNKkTptGkmvvw4WC7i6Yh4+HPOoUeilg7aEGyGEEIVD2e3snjyFv0e94XgMVbs2Hef+REDDhlqX5lRs8fHEP/kkWQsXAuDWuTMBH32ES61aGldWcki4EUIIccuyExJY8/gTRC1aDECNR/vQ5tMZuJbyNYpKmuz167nw6KPYzp0Dkwn///0P7+efl1ax/5BwI4QQ4pbE/fknK3v1Jv3MGQwmE60+/IC6Tz8tv3ALkbLZSJkwgeQ33wS7HWOtWpT76SdMjRtrXVqJJOFGCCHETVFKsfeDafw14jXsVivmmjXpNPcnAm67TevSnIo1Opr4xx4jO2+OIM/HHydg+nT00jn7iiTcCCGEuGG5mZmsf/oZjs3+EXDMNnzXrJm4lrH5VIpa5pIlxPfvjz0+Hp2nJwEzZuDVr5/WZZV4Em6EEELckLTTp1l+/4PE79yJzmCg1dT/Uf/FQfIYqhCpnBySRo0idcoUAFwbN6bcTz9Jp+HrJOFGCCHEdYteu5YVDz9Cdnw8boGBdPrlZ0LattW6LKeSe+IEF3r3JmfrVgC8X3oJv/ffR+/mpnFlpYeEGyGEENeklGL/9I/ZPHQYymYjsGlTOv/2K96VKmldmtNQSpHx/fckDBqESktD7+dHwJdf4tmzp9allToSboQQQlyVzWJhwwuDOPzlV4BjtuG7Zs3E6O6ucWXOw5aYSMJzz5E5dy4AptatKTd7NkYJjzdFwo0QQogryoyLY/kDDxG3eTM6vZ6Wk96n4dAh0r+mEGWtXEn8449ji44GoxHf8eMxv/YaOqP8ir5Z8jcnhBDisi7s2MGyHveTcfYsrmYzHX/6kbCICK3Lchr27GySR40idepUAMfcNd9/j6l5c40rK/0k3AghhLjE8Z9/Zu0TA7BmZeFbuzYRv8/HV0bqFBrLjh3E9+tH7oEDAHg/9xx+kyej9/TUuDLnoNfy4jNmzKBRo0b4+Pjg4+NDeHg4S/JWNr2cr7/+Gp1OV+DlJr3HhRCiUO2c+B4rH+mDNSuLsK5d6PnXFgk2hURZrSS//TYxLVqQe+AA+qAgyv/xBwEzZkiwKUSattyEhoYyceJEatasiVKKb775hh49erBz507q169/2ff4+Phw+PDh/O/lua8QQhQOpRRbR49h57uRADR6ZRgt3puI3mDQuDLnkHPoEPH9++cP8fZ46CECZszAEBiocWXOR9Nwc++99xb4fsKECcyYMYM///zziuFGp9MRHBx83dewWCxYLJb871NTU2+uWCGEcGJKKTYPHca+aR8C0OL992g8/FWNq3IOym4n9cMPSR45EpWdjd7XF/+PP8azTx/5B3oR0fSx1MVsNhtz5swhIyOD8PDwKx6Xnp5O5cqVCQsLo0ePHuzfv/+q542MjMRsNue/wsLCCrt0IYQo1ew2G+ufeTY/2Nz58XQJNoUk99gxYtu1I2noUFR2Nm6dOhGydy9ejz4qwaYI6ZRSSssC9u7dS3h4ONnZ2Xh5eTF79my6det22WO3bNnC0aNHadSoESkpKUyePJn169ezf/9+QkNDL/uey7XchIWFkZKSgo+sgSKEKONsubmsffwJjv04B51eT9svP6f2449rXVapp+x20j7+mKTXXkNlZaHz9MRv0iS8n3tOQs1NSk1NxWw2X9fvb83DTU5ODlFRUaSkpPDLL7/w+eefs27dOurVq3fN9+bm5lK3bl369OnD22+/fV3Xu5G/HCGEcGa5GRms6vMop/9YiN5o5O7Z31P94Ye1LqvUyz1xgvgBA7CsWweAW/v2BHzxBS5Vq2pcWel2I7+/NR8K7urqSo0aNQBo1qwZW7duZdq0acycOfOa73VxcaFJkyYcO3asqMsUQginkhkby9J7e3Bh2zYMJhOdfvmZyvfco3VZpZo9O5vUyZNJmTABlZ2NzsPj39YafYnpBVImaB5u/stutxd4jHQ1NpuNvXv3XvExlhBCiEslHTzIkm73kHbqFG4BAUQs+I3g1q21LqtUy1q2jIQXX8Sa949tt/btCfj8c1yqVdO4srJJ03AzcuRIunbtSqVKlUhLS2P27NmsXbuWZcuWAdC/f38qVqxIZKRjWOJbb71Fy5YtqVGjBsnJyUyaNInTp0/z1FNPafkxhBCi1Ihet45lPR8gJzkZn+rV6bZkEeaaNbUuq9SyRkWROHQomfPmAWCoUAG/KVPw7N1b+tZoSNNwc/78efr3709MTAxms5lGjRqxbNkyOnXqBEBUVBT6i5rykpKSePrpp4mNjcXPz49mzZqxefPm6+qfI4QQZd3RH35g7ZMDsefmEhQeTsSC33AvV07rskole2YmqZMmkfL++6jMTDAY8Hn5ZXzHj0cv/Tk1p3mH4uImHYqFEGWNLSeHP4ePYN+HHwFQ9cEHuPu7b2VV75ug7HYyZs8maeRIbGfPAmBq04aAjz/GtWFDjatzbqWqQ7EQQoiik3bqFCt69eZC3qy4jV8bwR3vTpAOrjche8sWEocMIefvvwEwVK6M//vv4/Hww/IIqoSRcCOEEE7q1IIFrHliADnJyZj8/Gj3zVdU+c/M8OLasjdtIuW998j64w8AdF5emEeNwmfoUPSyvmGJJOFGCCGcjC03l79ee529Uz8AoHyLFnT86Ue8K1fWtrBSRClF1uLFpEyciGXjRsdGnQ6vJ5/E9513MFaooG2B4qok3AghhBPJiIlh5cOPELtpEwCNhg3ljsh3Mbi6alxZ6aCUIvOXX0h++21y9+51bHR1xat/f8zDh+Miq6OXChJuhBDCScRu2sSKh3qRGRuLq48P7b75iqo9e2pdVqlh2bqVxKFDseQFQ52XF97PP4/PkCEYQ0I0rk7cCAk3QghRyiml2D/9Y7YMewW71Ypf/fpE/ParzF9znaznzpE0ahQZ334LgM7DA5/hw/EZPBiDn5/G1YmbIeFGCCFKsdzMTDY8+xxHv/8BgOqP9KLt55/h4uWlcWUlnz0ry7FcwsSJjrlqAM/+/fF7912MFStqXJ24FRJuhBCilMqIjmbpvT2I37EDncFAy0nv03DIYBmWfA1KKTLnzSPxlVewnT4NgKlVK/w/+ABT8+YaVycKg4QbIYQoheJ37WLpPfeRce4cboGBdJr7EyHt2mldVomXs28fiYMHk716NQCGsDD8J03Co1cvCYVORMKNEEKUMqcXLWLlI32wZmTgW6cOXRf9gY8s0HhVtuRkkseNI+3jj8FmA5MJ84gRmF97Db2np9bliUIm4UYIIUqRvR9+xJahw1B2OxU7dKDTLz9j8vXVuqwSSylFxk8/kTR0KLbYWAA87r8fvylTcKlaVePqRFGRcCOEEKWA3Wpl89Bh7J/+MQB1Bg7gzhmfYHBx0biykiv32DESBg0ie/lyAIy1ahEwfTrueYszC+cl4UYIIUq43IwMVvbuQ9TCRQC0eP89bnv1FekjcgXKYiHl/fdJnjABLBYwmfB94w3MI0agM5m0Lk8UAwk3QghRgmXGxrL03h5c2LYNg5sbd3/3DdUeekjrskqsrLVrSXz+eXIPHQLArWNHAj75BBeZ86dMkXAjhBAlVNLBgyzu2p3006dxCwwk4vf5BIeHa11WiWS7cIHEV1/Nn4hPHxSE/9SpePbuLS1cZZCEGyGEKIGi165l2f0PkpOcjE+NGnRbsghzjRpal1XiKLud9C+/JGnECOxJSaDT4f3cc/i++y4G6WhdZkm4EUKIEub4zz+z+rH+2HNzCWrViogFv+EeGKh1WSVOzoEDJDz7bP6q3S633UbAp5/i1rKlxpUJrem1LkAIIcS/9s+Ywcrej2LPzaXaQw9yz8rlEmz+Q1ksJI0fT3Tjxlg2bkTn6Ynf5MmEbNsmwUYA0nIjhBAlglKKHe9MYNvYcQDUe+F5Wn84Db3BoHFlJUv2xo0kPP10fodh9+7dCfjkE4yVKmlcmShJJNwIIYTGlN3O5qHD2PfhRwA0HTuG28ePk46wF7GnpJD42mukz5wJODoMB3z4IR4PPyx/T+ISEm6EEEJDttxc1j45gGM/zAag9YfTaPDSixpXVbJkLlxIwnPPYTt3DgCvgQPxmzQJg5+fxpWJkkrCjRBCaMSalcWKh3sRtWgxeqORdl9/Sc2+fbUuq8SwxceTOGQIGT/8AICxenUCPvsM9/btNa5MlHQSboQQQgM5qaksvbcHMevXY3R3p9MvP1OpWzetyyoRlFJkzp1LwosvYr9wAfR6fIYNw/fNN9F7eGhdnigFJNwIIUQxy4qPZ3GXbsRv346rjw9dFv5OhTZttC6rRLCeO0fCoEFkLVgAgEv9+gR++SWmO+7QuDJRmki4EUKIYpRx7hwLO0WQfPAgboGBdFu2hHJNm2pdluaU3U7ap5+S9PrrqLQ0MBoxjxqF76hRsh6UuGESboQQopikHDvGok4RpJ06hWdoKN1XLMOvTh2ty9Jczv79JDz9NJYtWwAwtWxJwGef4dqggcaVidJKJvETQohiELtpEwtatyHt1Cl8atSgx8b1ZT7Y2LOySBozhugmTbBs2YLOywv/jz4ieONGCTbilkjLjRBCFLFDX37JhudewJ6bS0DjxnRbsgiP4GCty9JU5h9/kPjyy1hPnQLA/d57Cfj4Y4xhYdoWJpyChBshhCgidquVLa+8mj85X9UHH6D9N1/j4umpcWXayT15ksTBg8n64w8ADKGh+E+diseDD8pkfKLQSLgRQogikJ2YyMpHenNu5SoAbn9zPE1Hv4FOXzZ7A9izs0l9/31SIiNR2dlgNOLzyiv4jh6N3stL6/KEk5FwI4QQhSxx3z6W3f8gqceOYfT05O7vvqHq/fdrXZYmlFJkLlhA0rBhWE+eBMDt7rvxnz4d17p1Na5OOCsJN0IIUYiO/fQT6wY8hTUzE6/Kleny+3wCGjXSuixN5Bw8SOLgwWSvWAGAoWJF/KdMwaNXL3kEJYqUhBshhCgEdquVv157nT3/mwpAxY4d6PDjbNwDAzWurPjZkpNJeestUj/6CKxWcHXFPHw45pEj0Zfh/kai+BT6w9/09PTrPnbGjBk0atQIHx8ffHx8CA8PZ8mSJVd9z9y5c6lTpw5ubm40bNiQxYsX32rJQghxSzLj4ljYsXN+sGn8+mt0W7qkzAUblZND6rRpnKtendSpU8Fqxb1HDyoeOIDfO+9IsBHF5obCzdSpU6+6Py0tjYiIiOs+X2hoKBMnTmT79u1s27aNu+++mx49erB///7LHr9582b69OnDwIED2blzJz179qRnz57s27fvRj6GEEIUmtjNm5nXrDkx69bh4uVFp1/n0iLyXfQGg9alFRulFBm//MK5evVIHDIEe2IiLnXrErR0KUHz5+NSvbrWJYoyRqeUUtd7sLu7OzNnzqR///6X7MvIyKBz584kJCRw6NChmy7I39+fSZMmMXDgwEv2PfLII2RkZLBw4cL8bS1btqRx48Z8+umn13X+1NRUzGYzKSkp+Pj43HSdQoiyTdnt7Hp/EltHj0HZbPjWqUPneb/gV8Y6yWZv3kzSq6/mzy6sDwrC76238BowAJ1Rej6IwnMjv79v6L+87777jn79+uHr68t9992Xvz0jI4OIiAguXLjAunXrbqpom83G3LlzycjIIDw8/LLHbNmyhWHDhhXYFhERwfz58694XovFgsViyf8+NTX1puoTQoh/ZMbFsaZff86uWAlA9d6PcNfMT3EtQ/9gytm/n6RRo8j6/XcAdB4e+AwfjvnVV2Vot9DcDYWbhx56iOTkZPr06cOiRYto164dGRkZdOnShbi4ONatW0eFChVuqIC9e/cSHh5OdnY2Xl5e/Pbbb9SrV++yx8bGxhIUFFRgW1BQELGxsVc8f2RkJG+++eYN1SSEEFdydsUKVvd7nKy4OIzu7rSe/iG1n3yyzIz+sZ45Q/K4caR/8w3Y7aDX4zVgAL5vvokxJETr8oQAbmK01FNPPUViYiI9evRgwYIFjB07lujoaNatW0fITfyHXbt2bXbt2kVKSgq//PILjz/+OOvWrbtiwLlRI0eOLNDak5qaSphM7y2EuEF2q5Vt499k57uRoBT+DRrQ8acf8Sukn1Ulne3CBVLee4/U6dMhrzXc44EH8J0wAdcyvkaWKHlu6oHoiBEjSExMpEOHDlSpUoW1a9cSGhp6UwW4urpSo0YNAJo1a8bWrVuZNm0aM2fOvOTY4OBg4uLiCmyLi4sj+CprtJhMJkwm003VJoQQ4HgMtapPX6LXrAGg7rPP0Grq/zC6u2tcWdGzXbhAyuTJpE2fjsrMBMCtXTv8Jk7E1KKFxtUJcXk3FG4eeOCBAt+7uLgQGBjI4MGDC2yfN2/eTRdkt9sL9JG5WHh4OKtWrWLIkCH521asWHHFPjpCCHGrYjZuZOUjfciMjsbo6Unbz2dRo3dvrcsqcrb4+H9DTUYGAK63347v22/jHhFRZh7DidLphsKN2Wwu8H2fPn1u6eIjR46ka9euVKpUibS0NGbPns3atWtZtmwZAP3796dixYpERkYCMHjwYNq2bcuUKVPo3r07c+bMYdu2bcyaNeuW6hBCiP9SSrH3g2n8OXyEYzRU3bp0/nWu04+GsqemkjJ5MqlTp6Ly5i1zvf12fMePx71bNwk1olS4oXDz1VdfFerFz58/T//+/YmJicFsNtOoUSOWLVtGp06dAIiKikJ/0SJzrVq1Yvbs2YwePZpRo0ZRs2ZN5s+fT4MGDQq1LiFE2ZaTmsq6gU9x4pdfAajRpzd3zZqJixOPAlIWC6kzZpAyYQL2+HgAXJs1c4Sa7t0l1IhS5YbmuXEGMs+NEOJqEvbuZcWDD5Ny9Ch6FxfCp/6P+i8877S/3JXNRsYPP5A0diy206cBMNaujd+77+Jx//1O+7lF6VNk89wIIYQzO/Ldd2x49nmsWVl4hYXRce5PBDlpp1mlFJnz55M8Zgy5ebPCGypWxHf8eLyeeEIm4BOlmvzXK4Qo86zZ2WweMpSDMx3990I7d+LuH753yrWhlFJkLVtG8ujR5GzfDoDe1xfzyJF4v/QS+jIwAkw4Pwk3QogyLf3sWZbf/yAXtm0DnY5mY8fQdMxop1wbKnv9epJGj8ayYQMAOk9PfIYMwefVVzH4+mpbnBCFSMKNEKLMSj15koV3dyTt1ClM/v50mP09YTew+G9pkb1xI8njxpG9erVjg8mEz6BBmF97DUP58toWJ0QRkHAjhCiTUo4eZWGHTqSfOYNPjRrcs2IZ3lWqaF1WocretInk8ePJXulYAwsXF7wHDsQ8ejTGihW1LU6IIiThRghR5iQdPMjCDp3IjInBt04d7lm1Ak8nWhcpZ/duEocPJ3vFCscGFxfH+k8jR2KsXFnb4oQoBhJuhBBlSsKePSzs2JnsCxfwb9iQe1Yux91JHs3YU1JIGjuWtOnTHYtaGo2OUDNqlIQaUaZIuBFClBkXduxgUacILImJBDZpQvcVy3ALCNC6rFumlCLjhx9IfPVV7Hnr73n06oXfe+/h4mSP2oS4HhJuhBBlQsKePSzq2BlLUhLl77iDbksXY/Lz07qsW5azfz8JL7yAZf16AIy1ahEwfTrueTO9C1EWSbgRQji9pEOHWPhPsGnRgu7Ll+JaymcoVzk5pEycSPI770BuLjp3d8xjxmAeNgydyaR1eUJoSsKNEMKppRw/zsIOnci+cIHAJk3otnRxqQ82lm3biB84kNw9ewBwv/deAqZPx1ipksaVCVEy6K99iBBClE5pp0+z8O6OZEZH49+gAd2WL8VUiiers2dlkfjaa8S0aEHunj3oAwMJnD2b8gsWSLAR4iLSciOEcEoZ0dGOeWyiojDXqkX3lctL9XIK2evWEf/MM1iPHAHAs3dv/D/8EEO5chpXJkTJI+FGCOF0/gk2qceP4121KvesWoFHUJDWZd0UW1ISScOHk/7FFwAYKlQg4NNP8bjvPo0rE6LkknAjhHAqaadP5wcbz9BQ7l29Eq/QUK3LumFKKTLnziXh5Zfzh3d7PfssfhMnyjpQQlyDhBshhNNIPnKERR07k37mTH6LTWlcUiH31CkSX3qJrIULAXCpU4eAWbNwa9NG48qEKB0k3AghnELivn0s7NiZrLg4x5IKK5fjWcrWT1IWCymTJ5MyYQIqKwtcXDCPHInvqFEyvFuIGyDhRghR6l3Yvp1FnbtgSUwk4Lbb6L58aalbUiFr2TISXnoJ69GjAJjatiXgk09wrVdP48qEKH0k3AghSrXYLVtY0qUbOamplG/Rgm5LFpWqmYetZ86QOHQomb/+CoAhOBi/KVPw7NMHnU6ncXVClE4SboQQpVbsli0sjuhKbloaFe66iy4Lf8fV21vrsq6LyskhdepUkt96C5WZCQYDPi+/jO/48ehL+SSDQmhNwo0QolSK+/PP/GAT0q4dXRb+jounp9ZlXZesVatIGDQI6+HDAJjatCHg449xbdhQ48qEcA4SboQQpU7cX3+VymBjPXuWxFdeIfPnnwHQly+P/+TJeD72mDyCEqIQSbgRQpQq5//+m8Wdu5CTmlpqgo0tOZnU994jddo0xygovR7vQYPwfestmbNGiCIg4UYIUWqc37qVRXnBpkLbtiU+2Nizs0mbPp2Ud9/FnpQEgKl1a/ynT8fUuLG2xQnhxCTcCCFKhYQ9e1gc0ZWclBQq3HUXXRf9UWKDjbJaSf/2W5LHjcN29iwALvXq4RcZifu998ojKCGKmIQbIUSJl3z4MIs6RWBJSiKoVasSG2yUUmQuWEDyqFHkHjwIgCEsDN+33sKrXz90BoPGFQpRNki4EUKUaGmnTztmHj5/nsAmTRzBxstL67Iukb1+PUmvv45lyxYA9P7+mEeNwnvQIPRubhpXJ0TxULmZqIw4UHb0ftU1q0PCjRCixMqIiWFhh05knD2Lb506dFu2BFMJ64Br2bGD5LFjyVq0CACduzs+Q4diHjECvdmscXWiLFE2C2SnoiwpYLOAPRdlt4Hd6nihQGcEvQGd3gh6I+gMoBzHKLsV7Daw54ItB2wWlDXbcS5rtuP8VsdL2bIdf87NQGVeQGXEoTLOQ04aAPrQVph6/qDZ34WEGyFEiZQVH8+iThGkHj/uWARz5XLcy5XTuqx82Vu2kPLOO2QtXuzYYDDg/fTTmMeOxVihgrbFCaekspOxJ51AJZ9AJZ90/Dn1NCorCSwpYM3SukQHo7sjOGlZgqZXF0KIy8hOTGRxRFeS9u/HIySEe1atKBGLYCqlyF63jpS33yZ79WrHRr0ez9698R03DpdatbQtUDgNpeyoxGPYY7Zhj9mKPXobKu3sdbxTByZvMHqg0xscIUNvdLTY6ABlB1tuXmuNDWW35rXiGBytOAYX0OnBYEJnNIHBDYwmdEY3MJgg76vO6NiO0R2dRzl0nkHoPMuj8ywPLl6ad5qXcCOEKFGyLlxgUacIEnbvxi0wkHtWLsenalWty3L0qRk9GsuGDY4NRiNejz+O+fXXcalRQ9viRKmm7FZHS0z8QVT8QezxB7HH7XK0xvyHzqsCOt9q6Hyroverhs5cBZ1HIJjM6ExmMHmj0+mL/0OUMBJuhBAlRmZsLAs7dCLpwAHcg4K4Z9UK/OrW1bQmy9atJI0eTfby5Y4NJhPeAwdiHjECY+XKmtYmSheVm/nv46Tkk6jkE44/Jx5x9Gv5L6M7+uAm6Cvc7ngFN0bnWjrWTtOahBshRImQce4cf9zdkZQjR/AICeHe1SvxrV1bs3py9u4leexYMufPd2wwGvF+6inMo0djLAGPyETJo5SCnDRHB9vUM6ikE9gvCjFkxF75zS4e6APqoAusiz6wLvpyDdAF1kNncCm+D+BENA03kZGRzJs3j0OHDuHu7k6rVq147733qH2VH2hff/01Tz75ZIFtJpOJ7Ozsoi5XCFFE0k6fZuHdHUk9cQKvSpW4Z/VKzNW1GUaae+oUyWPHkvH996CUo09Nv374jh2LS7VqmtQkip9SCqzZkJuOysmA3ExUThpkJaKyElBZiaiseMf3medRGY4RQ9fs1Ovm73ic5FsVnW819L5V0QXURmeuJI+TCpGm4WbdunUMGjSI5s2bY7VaGTVqFJ07d+bAgQN4XmWCLh8fHw7nraYLaN5xSQhx85IPH2ZR5y6kR0XhU60a96xeibcGj3tsFy6QPGECaTNmQE4OAB4PPYTvW2/hqvGjMXHrlFKQnYhKi3a80qNRaedQ6TGo7BRUbjrkZDiGNuekQ26mo9PtzXD1RucVgs6vKnrfao4Q80+gcfMt1M8lLk/TcLN06dIC33/99deUL1+e7du3c9ddd13xfTqdjuDg4KIuTwhRxGI2bGBZzwewJCZirlWLe1evLPZRUfaMDFKnTCFl8mRUmmOODrcOHfCbOBHT7bcXay3i1qnsFEfH3KSjqJQo7KlRqJQoVOoZyM24uZO6eICLJzoXT3TuAeARgM7NH51HQN735fJGCgWh8yiPzsW9cD+UuGElqs9NSoqjZ7i/v/9Vj0tPT6dy5crY7XaaNm3Ku+++S/369S97rMViwWL5t6NWampq4RUshLhpx376iTX9n8Cek0P5Fi3o8vt83MuXL7brK7udjO+/J2nkSGzR0QC4Nm2K38SJuHfqVGx1iJujlHK0vJzfiz1+f95Io0Oo9Oirv9GjHDrvEHReIejzvuLuj87V0zGE2cUTXD3RuXiBqye4eMjjolJIp5RSWhcBYLfbue+++0hOTmbjxo1XPG7Lli0cPXqURo0akZKSwuTJk1m/fj379+8nNDT0kuPHjx/Pm2++ecn2lJQUfHx8CvUzCCGuTSnF7vcn8dfrIwGocn9P7v7+O1w8PIqthuxNm0gcMoScbdsAMFatil9kJB4PP4xOL7/ISiKVHos9bjf283uwn9+L/cI+yE667LE679C8fixV0JvD0PlUcvRp8Q51zN0iSqXU1FTMZvN1/f4uMeHm+eefZ8mSJWzcuPGyIeVKcnNzqVu3Ln369OHtt9++ZP/lWm7CwsIk3AihAbvVysYXX+LgzFkANBwymJaTJ6EvpgUlrVFRJA4fTubPPwOg8/bGd/RovF9+WdZ/KkFUbhb2C/uwx+7EHrcLFbcLlR5z6YF6F3QBtdCXq48+sJ5jpFFAHXQm+dnujG4k3JSIx1IvvvgiCxcuZP369TcUbABcXFxo0qQJx44du+x+k8mEySRJXQitZScmsqp3H86uWAk6Ha0+mErDl18qlmsrpUj/6isShwxx9KvR6fB66in83n4bQ1BQsdQgLk/lZjkeKZ3f4wg05/eiko45ZtK9mE6Pzr8W+qDb0JdviL5cQ3SBtdEZ5Oe7uJSm4UYpxUsvvcRvv/3G2rVrqXoTs5DabDb27t1Lt27diqBCIURhSNizh2U9HyDt5EmMHh7c/cN3VO3Zs1iubY2NJeGZZ8j64w8ATK1aEfDJJ7jedluxXF84KKUgI9Yx++5FM/Gq5JPAZR4geJR3TGAX1Bh9cGNHmHG98ihaIS6mabgZNGgQs2fPZsGCBXh7exMb65jgyGw24+7u6G3ev39/KlasSGRkJABvvfUWLVu2pEaNGiQnJzNp0iROnz7NU089pdnnEEJc2fG5c1n7xACsmZl4V61KxPx5BDRqVCzXzvj1VxKefRZ7QgK4uuL39tv4vPIKumJ6DFYWKavFMbw6NQqVeBR74hHHGkmJR/NXjL6ERyD6co0cLTLlGziCjJe0qImbp2m4mTFjBgDt2rUrsP2rr77iiSeeACAqKgr9RR38kpKSePrpp4mNjcXPz49mzZqxefNm6tWrV1xlCyGug91mY+voMeya+B4AoZ060uHH2bgFBBT5tW3x8SQOGULGDz8A4HLbbZT77jtcGzYs8ms7M6UUZCVcNE9MNPa0cwXmjSEr4con0BnQ+VXL6x9TB31AXcefPUvOau/COZSYDsXF5UY6JAkhbo4lKYlVj/blzNJlADR69RVaRL6L3li0/55SSpHxww8kDh2KPT4e9HrMr7+O77hx6Fxdi/TazkLZclAJh7HHH8qb5C5v0ru8Ce8uuwbSfxnd0XlXROdXA31ATUdfGb8a6PyqSh8ZcdNKXYdiIYTzSNy/n2U97if1+HEMbm60/eIzaj76aJFfN/fkSRKef57sZY5A5dKwIYGffYapRYsiv3Zp5QgyR7Bf2Iv9fF5n3oTDYM+5yrt04BnkmCPGO8SxSrV3xbw/O75iMsvM8UJTEm6EEIXmxLx5rOn/BNaMDLwqVybit18JbNKkSK+prFZSp00jecwYVFYWmEz4jh2LefhwdC6y6OA/lN3qCDIXj0qKP3T5IGMyOxZuNFd2hJa8ye503iGOWXgN0gomSjYJN0KIW6bsdraNG8+OdyYAENK+PR1/noN7YGCRXjdn717iBwzIn4zPrV07AmbOxKVWrSK9bmmgMs7nzROzE3vsLuzn91x+UUeTD/pyDdCXb4S+fAN05Rs5JruTlhdRikm4EULcEktKCqsf60fUwkVA3sR8k94v0v41KieH5HffJeXddyE3F53ZjP/kyXgNHFhmfykrZUed34Pt5Cpsp1ah4g9eepCrd96IpIboyjVwfPWpVGb/zoTzknAjhLhpKUePsvS+niQfOoTBzY27Zn1KrX79ivSalq1biR8wgNx9+wBw79GDgE8+wRgSUqTXLYmU3Yb97CZsxxZjO7UaMi9ctFeHLqB23jwxTdAHN0HnV13WSRJlgoQbIcRNObtiBSt69SYnORnPihWJmD+PckW4irY9PZ3kceNI/eADsNvRlytHwEcf4dGrV5lrebAnHMZ2aB7WIwsgI+7fHS5e6Cu1wVC1A4bK7dG5X30RYiGclYQbIcQNUUqx76PpbBn2Cspmo3zLlnSe9wueFSoU2TUz5s8n8aWXsJ09C4Dno4/iP20ahiLu01OSqPQYbMcWYz08H3Vh3787TL4Yat6DoVpn9BVbSGdfIZBwI4S4ATaLhY2DXuTQF18CUOvx/rT5dAbGIlp00nr6NAkvv0zW778DjtW7/T/+GI+uXYvkeiWNSo/FdnwJtqOLsMdu/3eH3oi+yt0Yaz+Avkp7CTRC/IeEGyHEdUk/e5YVD/Xi/F9/odPraTnpfRoOHVIkj4SU1UrqBx+QPG4cKjMTjEbMw4djHj0avYdHoV+vJMkPNMcWY4/ZVmCfvsLtjlaamvfKIychrkLCjRDimqLXrmXlI33IOn8eV19fOvz4A5W6dCmSa1l27CDhqafI2bkTAFObNgTMmIFr/fpFcr2SQKXH5QWaRdhjtnPxQpL6CrdjqNENQ/Wu6LyCtStSiFJEwo0Q4oqUUuyd+gF/jngNZbMRcNttdPp1Lubq1Qv9WvaMDEeH4alTHR2G/fzwmzQJryefRKd3rhE+SilU4hFsJ1dhP7UKe+xOCgSa4GYYanbHUL0LOq+i68skhLOScCOEuKzc9HTWPfU0x3/6GYCaj/WlzcxPcSmCx0JZy5eT8OyzWE+dAsDjkUcImDYNQ5DzrAytcrOwR/+N7fQa7CdXodLOFtivD27maKGp0VUCjRC3SMKNEOISCXv3svKRPiQfPIjeaCR86v+oP+iFQu9fk3PwIEmvvUbWH38AYKhUiYBPPsGje/dCvY4WlN2GurAP25lN2M9sdDxuunipA4Mr+tA7HcO2q9wtj5yEKEQSboQQ+ZRSHJw1i81DhmHLzsajQgU6/jyHCnfeWajXscXFkTx+PGmffQY2GxgMeL/4In7vvIPey6tQr1VclLKjEg5hP/sntnN/Yo/+GywpBY7ReYWgr3Qnhiod0Ifdic7FuTtHC6EVCTdCCMCxjML6p5/hxNxfAAjrEkH7b77GvXz5QruGPTOT1KlTSZk4EZWeDjhmGPabOBHXOnUK7TrFxZ56FvvptdjObMB+7q9Lwgyu3uhDwzGEtnaEGd+qZW7CQSG0IOFGCMH5v/9mZe9HSTt5Er3RyB2R79Jo2NBC68irbDbSv/2W5NGjsUVHA+DavDn+kyfjdtddhXKN4qBsFuzn/sJ2ej32qLWopOMFD3DxQF+hOfrQlhgqtkRXrgE6vfyYFaK4yf91QpRh/8w2/Ocrr2K3WvGuUoUOc2YT1KJFoV0ja/lyEocPJ3fPHgCMVargGxmJZ69epWIUlMpJx3Z6LfYTy7CdWgO5Gf/u1Bkc6zZVboshtLUjzBhctCtWCAFIuBGizPrvaKiqDz5A288/w+TrWyjnz9mzh8Thw8levhwAva8v5tGj8XnxRXQmU6Fco6iorERsJ1diO74M+9mNYLuoI7BHeQyV22Go3NbxqMnko12hQojLknAjRBmUdOAAyx98mORDh9AbjbScPIkGL79UKP1BbOfPkzRmDOmffw52O7i44PPii5hHj8bgX3Jn1bWnncN+Yrkj0MRsBWXP36czV8FQvQuGap3RBd0mK2sLUcJJuBGijDn244+se/pZrBkZeISE0GnuTwS3anXL51UWC6nTppH8zjuotDQAPB5+GL/ISFyKYNK/wqDSY7Ae+QPbsUWo83sK7NOVq4+hWmcM1bqg868pHYGFKEUk3AhRRtitVv4c8Rp7p34AQMUOHegw+/tbHg2llCJz3jySRozAeuIEAK63347/1Km4FfIQ8sKgspOxHVuM7cjvjuHa+TMD69CH3I6hWhf01Tqj9wnVskwhxC2QcCNEGWBJSmJl7z6cXb4CgCajRnL7W2+iNxhu6bzZ69aR9PrrWP78EwBDSAh+kZF4PvZYieosrJTCHrsd2+6vsJ1YAfbc/H36kOYYat6HoXoEOo9yGlYphCgsEm6EcHJJhw6x7L6epBw9itHDg/bffEW1hx66pXPm7NlD0siRZC1eDIDOwwOfV17B/Npr6D09C6PsQqFsOdiOLsS6+2vUhb3523WBdTHUug9DzXvRe1fUsEIhRFGQcCOEE4tasoRVvR8lJzUVr0qViFjwG4GNG9/0+XJPnSJ5zBgyfvgBlAKjEe+nn8Y8dizG4JKzfIDKOI91/xys+76HzAuOjQZXDLV7Ymz0OPrAetoWKIQoUhJuhHBCSil2T5rMX6+PBKUIvvNOOv8696b719guXCD5nXdImzEDch2PdDweeQS/d97BpUaNwiz9pimlsMdsw7b3W2zHl4Ld6tjhUR5jo34Y6/dB5x6gbZFCiGIh4UYIJ5OTlsbaJwdw8td5ANR5aiB3fjwdg6vrDZ/LnpZG6v/+R8rkyfnLJbh16oRfZCSmZs0Kte6bpazZ2A7/hnXPt6iEQ/nb9cFNMTTs71hl23Djn10IUXpJuBHCiSQdOsTyBx5yrObt4kKraVOp99xzNzyMWVmtpM2cSfKbb2K/4His49qsGX4TJ+LesWNRlH7DlCUV697vse7+ErISHBuNbhhq3YexYX/05eprW6AQQjMSboRwEid/+401jz9JbloaHiEhdP51LkEtW97webKWLSNx2DByDxwAwFijBn4TJuDx0EMlYgSUyjiPdfeXWPf+ALmO1iSdd0UMjR7HWLcXOjezxhUKIbQm4UaIUs5utbJ1zFh2TXwPgApt29Lxpx/xCAq6ofPkHDxI0iuvkLVkCQD6gAB833oL76efRuei7XpJjqHcO7Htn43tyB9gdyyHoPOvjbHZsxhq3CNrOgkh8km4EaIUy4yLY1WfvkSvWQNAo2FDuWNiJIYbCCO25GSSx44l7ZNPwGZzLJfw0kuYx4zBUEjrTN0sZUl19KfZ/yMq4XD+dn2F2zE2ex595fYyc7AQ4hISboQopWI2bmRlr95kxsRg9PSk7RefUeORR677/cpuJ+O770gcPjy/X417jx74T5qES82aRVX2tev6Z9TTgZ+xHVsI1mzHDqMbhhr3YGzwKPrgJprVJ4Qo+STcCFHKKKXYO/UD/hzxGspmw7duXTr/Ohe/unWv+xw5u3eTMGgQlk2bAHCpUwf/jz7StLOwyjiP9dA8bAd/RiWfzN+u86+NsUEfDLXvlxW4hRDXRcKNEKVITmoqawcMzB/mXaNPb+6aNRMXL6/rer89NZWkMWNImz4d7HZ0np74jh2Lz5Ah6G5iqPitUrlZ2E6twnZ4PvbTa0HZHDtcPDDUuAdDvV7og5vKoychxA2RcCNEKRG/cycrHn6E1OPH0bu4ED71f9R/4fnr/sWfuWABCYMGYTt3DnCs2O0/ZQrGsLCiLPsSypaL/ewmbEd+x3ZiOeRm5O/TBzfDUK8Xhhrd0LleX2ATQoj/0nRcZ2RkJM2bN8fb25vy5cvTs2dPDh8+fM33zZ07lzp16uDm5kbDhg1ZnLe+jRDOSCnFgU8/ZX54a1KPH8erUiXu27COBoNeuK5gY42J4fxDD3G+Z09s585hrF6doGXLKP/zz8UWbJTdhu3sZnLWjib7q5bk/PEktsO/QW4GOu9QjM1ewPToCkwP/YKxXi8JNkKIW6Jpy826desYNGgQzZs3x2q1MmrUKDp37syBAwfwvMLie5s3b6ZPnz5ERkZyzz33MHv2bHr27MmOHTto0KBBMX8CIYpWTloa6595luNzfgKg8r330O7rr3Dz97/me5XdTvrnn5M4YgQqJQUMBnxefRXfcePQu7sXdekouw179FZsxxZhO77k34n2ANwDMNTojrF2T3RBjeWxkxCiUOmUUkrrIv5x4cIFypcvz7p167jrrrsue8wjjzxCRkYGCxcuzN/WsmVLGjduzKeffnrJ8RaLBYvFkv99amoqYWFhpKSk4OMjnRNFyRW/cycrez9KypEj6AwGWkyMpNErw64rCOTs30/Cc89h2bgRANfmzQn87DNcb7utqMvGnnAY26F5WA/Ph8zz/+4w+WKoHoGhRjf0oa3Q6eWpuBDi+qWmpmI2m6/r93eJ+umSkpICgP9V/lW6ZcsWhg0bVmBbREQE8+fPv+zxkZGRvPnmm4VWoxBFzZqdzY6332HXe++jbDY8Q0Pp+NOPBLdqdc332jMzSXn7bVImTwarFZ2HB74TJuDz0kvoDIYiq1llxmM7+gfWQ/NQF/b9u8NkdgSa6nmBRibaE0IUgxITbux2O0OGDKF169ZXfbwUGxtL0H9mXg0KCiI2Nvayx48cObJAGPqn5UaIkih2yxbWDXiK5EOOBSCrPfQgd874BPfAwGu+N3PxYhIHDcJ66hTgmLMm4MMPMVaqVCS12tOisZ9Yhu3EcuzRf4OyO3boXdBXuRtjnQfQV24ni1YKIYpdiQk3gwYNYt++fWzMa0YvLCaTCZPJVKjnFKKw5WZk8Pcbo9n34UegFO5BQdz5yXSqPfDANd9rjY0l8eWXyZw7FwBDWBgBH32ER48ehVqjUnZU/EFsp9diO7EcdX5Pgf268o0w1nkQQ8170bn7Feq1hRDiRpSIcPPiiy+ycOFC1q9fT2ho6FWPDQ4OJi4ursC2uLg4goODi7JEIYpM9Lp1rBvwFKknTgBQ6/H+hP9vyjU7DSulHDMMDxmCPSnJ0WF46FBHh+HrnPfmWuypZ7Gf3YT9zEZsZzZDduJFe3XoQ27HUC0CfbUI9D5X/39XCCGKi6bhRinFSy+9xG+//cbatWupWrXqNd8THh7OqlWrGDJkSP62FStWEB4eXoSVClH4cjMy+HvUG47WGsArLIw2sz6lUpcu13yvNSqKhGefJWvpUgBcmzYl4IsvMDVufMt1qYwLWI/Mx3ZoHirhUMGdLp7oK7bAULUjhqod0XmUu+XrCSFEYdM03AwaNIjZs2ezYMECvL298/vNmM1m3POGqvbv35+KFSsSGRkJwODBg2nbti1Tpkyhe/fuzJkzh23btjFr1izNPocQNypmwwbWPjmQ1OPHAajz9FOET56E6zVGACibjbRZs0gaMQKVng4mE77jx2N+9VV0xpv/31lZs7GdWIHt8DzsUev/7T+jM6APaow+rDX6sDvRBzWWTsFCiBJP03AzY8YMANq1a1dg+1dffcUTTzwBQFRUFHr9v3MNtmrVitmzZzN69GhGjRpFzZo1mT9/vsxxI0qF3PR0to4Zy95pH4JSeIaG0vbzWYRFRFzzvVkrVpA4fDi5u3cDYGrVioAvvsC1Tp2brkdlJWDd8w3WPd+CJSV/uy6oCca6D2Ko0R2dm+9Nn18IIbRQoua5KQ43Mk5eiMJ06vff2fTiy6SfOQNAnYEDaDllMiaz+arvy9m7l6QRI/IfQenMZvzeegvvQYNueni3PfUs1l2fYzvwU/6q2zrvEAy1H8BQ+370ftVu6rxCCFFUSu08N0I4o7SoKDa/PJhTC34HwLtKFe6c8fE1+9ZYz50jedw40r/6Cux2MBrxHjQI3zFjMAQE3FQt9qQTWLdNx3bk9/xFKnXlGuLS7Hn01Tqj0xfdXDhCCFFcJNwIUUTsVit7p33ItnHjsWZkoDcaafTqKzQdMxoXD48rvs+WlETKe++RNm0aKtvRquLx0EP4RUbiUqPGzdWSehbr1o+wHfo1P9Tow1pjbPq8Y3I9Wf5ACOFEJNwIUQRiNmxg46CXSNy7F4Dg1q1p8+kn+F+lb5g9K4u0jz4iZeJEx9BuHP1q/CZNwu06Zie+HJVxntxt07HtnwP2XAD0VTrg0vxl9EGNbuqcQghR0km4EaIQZcbF8deI1zjy7XcAmPz9afn+RGo/+SS6izrGX0xZLKR/8w3Jb72F7dw5AFzq18cvMhL3e+65qVYVlRmPdcdMrHu/A5tjbTV9aGtcWr6CPrjJTX46IYQoHSTcCFEI7FYrB2Z8ytbRY8hJTQWdjjpPDeSOdydccekEe2oqabNmkfq//2GLiQHAUKkSfm+9hedjj91UZ2GVGY915yyse78HaxYA+uCmGFu+iiFU5oISQpQNEm6EuEXn//6bDc+9QPzOnQAENmvGnR9/RFCLFpc93nb+PKkffkjaxx9jT04GwFCxIj6vvor3c8+hd3O74RpUVgLWHbMcLTV5oUZXvhEuLYair9RW+tQIIcoUCTdC3CRLcjJ/vzGaAzM+BaVw9fXljnffoe4zz6D/T6uLUgrLpk2kzZpFxs8/g8XxqMhYuzbm117Dq29fdK43vsCkykrEuvMzrHu/hdxMIC/U3DHEsWilhBohRBkk4UaIG6SU4vhPP7Fl6Ctk5s2qXbPfY4RPnoR7+fIFjrUlJZHx3XekzZpF7v79+dtdmzfHPHIkHj16XLEvzlVryErEuvNzrHu/+TfUlGuIyx2D0Ve5W0KNEKJMk3AjxA1IP3uWdU89zdllywEw16pFm08/oWL79gWOs6elkfzOO6R99BEqK+8xkYcHnr174/3ss7g2b35zHYXTY7Du+S6vpSbDcd5yDfJCTQcJNUIIgYQbIa7b8Z9/Zv2zz5OTnIzBZKLJG6NoPGI4BpMp/xhlt5Pxww8kjRiBLa9Vx6VRI7yffRavvn3RX2M24stRdhv2qHVY983GfnpN/rpPunL180JNRwk1t8Bms5OZncPlJmt3MRowuRoLLAFzNUoprDY7VqsNq81+2XPmWm1kWXLJzskly5JLliWHrOxc0jKzHa+MbNIyLaRlZpOclklSWiZJqY6viSkZZFlysdps5OZdw2qzY7fbMRoNGA16jAYDLnl/dnN1wd3kgpsp72ve9+4mV9xMLri5GnE3ueLp7oqftwd+Pp74eXvgb/YkwOxJ1ZBADIYbb1kUQmsSboS4BktKCpteepmj330PQLnmzbn7u2/wrV274HHbtpH48stYtmwBwFijBv5Tp+LevftNttLEYj34M7YDP6HSovO360NaYGw8AH3VThJq/sNms3P2fBInzsVz4twFYhNS84NBUmoGSWmZJKdlkZaZTXpegMjMzrnmeU2uxvxgYDQY8oKFI1z8GzJs2O3OtZqNt6cbd9SrQosGVWnZoCotGlSlvL8sWyNKPllbSoiriNmwgdX9Hif99Gl0ej1N3hhF0zGjMbj8uzJ27qlTpLz5JunffANKofPywnfMGHwGD0Z3UavO9VC2HOwnV2E9OBd71Lp/V+c2+WKo8yDGBn3Q+1UvzI9YquTkWjkbl0RUXCJRsf++TscmcjI6nlPRCeRabVqXeU1Ggx53N9cCrSneHm54e7rh7eGGl7sJb083fL3c8fPxwN/HEz8fD/y8PfB0N+W3zBgNjq96vS6/Fcdqs2G1OkLXP61D2Tm5ZGXnFGgxyrb8uy8901IgACalZRKXkEqWJfeS2gN9vagU7O94BTm+VizvS3k/b8r5eVPez5sAsydGoyzlIQqXrC0lxC2yW61sf+ttdrwzAZTCu2pV7v7+W4IvminYGhNDyoQJpM2aBbmOXwKe/frhN3EixpCQG7te/CGsB3/Bdvg3yE7M364PaY6hfh8M1buhM95YUCptMrNziIlPIfpCcv7Xs+eTCwSZ2ITUyz7quZiL0UDVkECqVQwkpJxv3uMWj/yvvl4e+HjlBYi8QOHlbkKvL9gKphQFAkJWdg7ZObnkWm24GP959JMXMoyGiwKHHhejAYNef8k5AQx6fan4xW+z2dl/Ipq/9p3kz30n+XPvCQ6cjCE+OZ345HR2HIq66vv9zY5HXAX//j3zWr8KPj7T63XX3Qpp0P/7d/zP3/0/4dDLI++eergRYPYkKMBHWjfLKGm5EeI/0s+cYVXffsRu2ABArScep/WH03D19gbAFh/vWPtp+vT8tZ/cOnbE7513MF1hbpvLsaeexXbkd2xHfkclHv53h0d5jHUfwlD3IfS+VQvvgxUyu92e31qQa7WRmp5VsH9IakbenzMuejSUSUp6Fpl5QeGfloPM7BzSMy3XdV03k0t+i4Hj5UdYkD/VKgZSrWI5KpbzlX4iRSQ1PYtTMQkFWs2i4hI5dz6ZC8npXEhKIyEl45oBtLh4eZioVSmI2pWD8r/WrhxMzbDyeHve+HxSQls38vtbwo0QFzn1+++sfXIglsREXLy9uWvWp9To3RtwLJOQOm0aye+8g0pLAxxrP/lOmIB7u3bXdX6VHoftxFJsR/7AHrv93x16V/RV2mOs+zD6ym3R6YuvUVUpxZm4JE5FxxNdoOUkhQvJaXmdXC35HV4zsnLItdqK5BeYu8mFkHK+hJQzUyHATMXyvlQODrgoyPgT6Osl/xovwWw2Owkp6VxISi/4qCsv4ObkWi/qq+Tor2Sz2a/r3EqBXan89+ZabfkdtP/pQ/VPp+yktMyr9oEKKedLrUrlqV05mBqh5ageWi4/IEvwKZkk3FyFhBtxOTaLhT9fe5190z4EoNztt9NhzmzM1aujlCJz3jySRozAeuIEAK6NGztCTdeu1/xFa08+ie3EMmzHl6Pidl60R4c+tBWGWvdiqNYFnduNj6S6GWfjkth64BTbD51m24HTbD8URXxy+i2f12jQ4+fjib/PP48hPC95JOTv44nZyx2Pf/qb5I3ccTe5UM7PGx9PNwkuolDk5Fo5cS6ew6djORIVx+HTjteRqDjOJ6Zd9b2Bvl5UqxhYoF+RBGztSbi5Cgk34r9Sjh5lZe9Hid+xA4BGw4ZyR+S7GFxdsezcSeKQIVjWrwfAUKECfpGRePbrd9XJ91TGeayH5mE7Mh+VcLjAPn1wUww1umGocQ86r6Ci+2B5klIzWLPtMCv+PsjKvw9x7Mz5S44xGvRUCQkkJNDsaDnJ+1rOzwsfT3e8PUx4ebjlf3U1GvKHHv/Tv8TkapQf+KJUSE7LvCjwxHL8rGN03Ylz8dcV9P/7aLTiP62NgWZCAh1/LufnjauLdGstTBJurkLCjbjY0R9+YMNzL5Cbno5bQADtvvmKyt27Y42JIfmNN0j/+mvHCCg3N3yGD8c8YgR6L6/LnkvZcrGfXoP1wM/YT68FlTdqR29EX7ElhmoRGKp2KvJAk56Zzabdx1m7/Qirtx1i28HTBZrnDQY9DaqFcHu9yjSrU5lmdSvRqEYobiaXq5xViLIhNT2Lk9HxnDgXz5m4pPx+RVGxiZyOSSA2IfW6z+ViNOSPgPP2MOHj6Y6vt3v+XEL/dLj2dDddMheRq4uxwKi4f+Zc8vX2wNfLvVR0Si9sEm6uQsKNAMjNyGDjiy9x5OtvAKjQti0dfvgOd39/UqdOJeXdd1EZjhmAPR99FL/ISIyVKl32XPbEY9gO/oz10DzISsjfrg9uhqHew0X+yCkjy5IXZg6zdvsRth44hfU/fRjqVq1Apzvq0vGOOrRtWgsfL/ciq0cIZ2bJyeXcf0bxRV9IITo+megLKcTEpxCTkHLd/YhulrenG/55j4ErlvMl7D+Pz6pVDKRCoNmpWlMl3FyFhBuRsGcPKx/pQ/KhQ+j0epqOHUOTN0aR/euvJI4YgS3KMcTVtUUL/KdOxS08/JJzqJx0bMcWYTvwM/bYHf/u8AjEWPsBDPV6Fdl8NBlZFjbvcbTMrN1+hL/3n7wkzFSuEED7ZrVo16w2HZrXITTIr0hqEUJcym63k5KedVEnZwtpGdmkZlx+ROG/8w/lkG2xkmXJISfXdslM1FmW6x9VCM43WkzmuRHiMuw2G3s/mMbWN0Zjs1jwCAmhw+zvKRcSwvmOHbGsWweAITQUv/few7N370v61dgvHMC65xtsxxbmL1iJzoC+cjuM9Xqhr9wenaFwHu8opYhLSGX30bOO1xHH10OnYy/5V2FYkB/tb69N+2a1adesFlVCAgulBiHEjdPrHZ3r/Xw8C/3cVquN5PQsElMco9ASUtIdLUl5j89OxyRyOtYxXD8908KOQ1GXnZPo4tFi1UMdo8SqV3SMGHOGll1puRFlQurJk6x5/Mn8uWsqde9G288/I/f770keMwaVnY3OwwPz66/j88or6D088t+r7DbsJ1di3f0V9ui/8rfrfKtiqNsLY50H0HmWv+Sa1yMzO4cLSWmcT0zjdGzCJaM6klIzL/u+0PL/hBlH60yVkACnan4WQtyanFwrx89euORnyuHTcVxIuvposQCzJ5WC/fM7SFcINBNSzkxwgDlvJmovyvl5Y/ZyL9afO/JY6iok3JQtSikOffEFW4a+Qm56Oi5eXoRPnUK1Fi1IGDiQnK1bAXDr0IGAzz7Dpeq/k+YpSyrWAz9j2/MNKu2sY6POgKFGVwwN+6GvcOWVvS05uZyKTuDkf+eOyfvz+aQ0LiSlk5F19SZmnU5HrUrlua1mKLfVCuW2mmHcVjOUiuV9JcwIIW5KUmoGR6LOcyQqjiOn4zhxLp7jeaPFrhV8LuZiNBDo64XPP52mL+o8XbdqBd4Y0K1Q65bHUkIAWefPs3bAQKIWLQYguE0b2n0+CzVnDjHNmkFuLjqzGf8pU/AaMCA/LNjTorHt/grr/jmQmzcs1OSLsX4fDA0fQ+/979IKWdk57DgcxV/7TrLveDTHzzp+QJy7kHzdk9y5uhgp7+dNSDkztSsH5z0XdzwjrxlWHnc318L9ixFClGl+Pp60yFsI9b/SMrI5GR3PufPJBTpJR8cnE5uQ6mhpTkojPdNCrtXm6EAdn3LJeVo1ql7o4eZGSLgRTil63TpW9elLZkwMeldX7nh3ArXvbk9i797k7HRMpOd+330EfPIJxooVAbBf2I9152fYji0CuxUAnV8NjLc9iaH2/WB0Iyo2kY0b/+LPfSf4c+9Jdh05c0ln3n94eZioGhKYNwfGv3PHVAg0E+TvTXl/H8r5euEtE9cJIUoIb083GtUMpVHN0Ksel5Wdk7/kxn9nh07PslDez7uYKr48CTfCqSi7nZ2RE9k2dhzKbsevXj06fP8dhkULiW3RAnJz0fv74z99uqPDsE6HLWYH1r8/wH5mQ/559BXDMTR+iv051dm4+wQbf/yBjbuOcfZ80iXXDPL3IbxRNZrWrkSNsHJUy+uUJ7OYCiGclbuba/6w85JIwo1wGlkXLrC6X3/OLlsOQK3H+3PHC8+T8vRT5Gx3rOPk3qMHAZ9+ijE4GHvsTnL+/gB7lGP2YXQGdNW7s9u9Ez9sTee3z5dfEmaMBj3N6lYmvGE1WjaoSsuG1agU7C8hRgghShAJN8IpnFuzhtWP9SczOhqjuzutPvgfwdHRXGjTBnJy0Pv54f/RR3g++igqbheW31/HHuUY+o3eSIz/3cw4VpevJkeRkPJH/nk93U20vq06d95WgzZNanBH/ap4SB8YIYQo0STciFLNkpTEn8NHcOiLLwHwrVOHNkOHYJ/0PinHjgHgfu+9BMyciV4fR87CAY6lEQClM7DD1oxXVgfw9xkbcBBwDIO8767buL9dYzreUVc69AohRCkj4UaUSkopTsydy6aXh5AVFwdAnf79qJWZgeXZZwAwhITgP20abnfWwLr1DXJPrwHAjp7F56szYkMQp9I9ABsBZk96d27Og3c3pU3jGmVy3RYhhHAWEm5EqZN+5gwbXhhE1MJFAPjWqc3tXbtg/PJLLCkpoNfj/eKLmAf3xbZ/Jjm/rAbApnTMPh7CxD1VOZnmgYvRwAPtG9G/e0u6tmogK/gKIYSTkJ/motSwZmez539T2TnhXayZmehdXGjY91FCtv6NfepUFODarBn+U95El72c3MWPAGBTMPt4CO/tqcaJNA9aNKjKK11b0LtzcwJ8L7/CtxBCiNJLwo0o8ZRSnP7jD7YMfYXUEycACGrenAb+fhi//go7oPfzw3fs69hrJ2DdOxgDNgB+OhHMO7uqk+MRSr+HWtK/W0tqVwnW8NMIIYQoapqGm/Xr1zNp0iS2b99OTEwMv/32Gz179rzi8WvXrqV9+/aXbI+JiSE4WH5hOaOkQ4fYPGRo/vBujwoVaNQ6HPPChZCdDXo97o/3IaGlJ17ZX+B+PAeAFecCmLC3LrWatmfWe61o16wW+v8sgimEEMI5aRpuMjIyuO222xgwYAAPPPDAdb/v8OHDBdaVKF/+5hYtFCVXVnw8O956mwMzPsVutaJ3daVulwgqbt+G7pdfALDUr0V6Zz/qVN2ETw6gh23xPvyQ0IYm7Xux/I3mmJ1gdVshhBA3RtNw07VrV7p27XrD7ytfvjy+vr6FX5DQnDUri30ffsTOdyPJSU0FILR1a2plpOHy+wIAsn090XfxJayVBZ3OMVJqw4VgTvl3JbzvAD69xrThQgghnFup7HPTuHFjLBYLDRo0YPz48bRu3fqKx1osFiyWf1deTs37hSlKFmW3c3T2bLa+MYb0qCgA/OvWoYp/AOU2OZZFsLro8exkpnwHb3SuelJyXdirb0FAy6fp2PxOeewkhBACKGXhpkKFCnz66afcfvvtWCwWPv/8c9q1a8dff/1F06ZNL/ueyMhI3nzzzWKuVFwvpRRnli3j75FvkLBrFwBGP3/8PMzcdvAABkAB7i298LrHF4PZSIwKIbdmb2q0G0Ank6eW5QshhCiBdEoppXURADqd7podii+nbdu2VKpUie++++6y+y/XchMWFkZKSkqBfjui+J3/+2/+em0k0WvXAmAzuuJhMNHGksI/U+iZGrrj2dUXfZgHltCO+LZ4Gn1wU1nLSQghypjU1FTMZvN1/f4uVS03l3PHHXewcePGK+43mUyYTKZirEhcS9KhQ/z9xhhOzZsHgE2nx9vgSgtrJq7WbNCD2+2eeHY0Y6hRCZcGj2Ks3xsvj3IaVy6EEKI0KPXhZteuXVSoUEHrMsR1SNizh41jxhPzx+/olMIOeLu40iw3G3erFVx0uLfywrODHy5NOmFs8Cj6Sm3R6WUpBCGEENdP03CTnp7OsbzFDQFOnjzJrl278Pf3p1KlSowcOZJz587x7bffAvDBBx9QtWpV6tevT3Z2Np9//jmrV69m+fLlWn0EcR3i/vqLZcPfIGuDY20nHeDlYuS23By8crPBRYdHG2887q2BKbwfhnq90HuHaFu0EEKIUkvTcLNt27YCk/INGzYMgMcff5yvv/6amJgYovJGzgDk5OTwyiuvcO7cOTw8PGjUqBErV6687MR+QnuHV6xh1auvYdizHXB0DA500VM714p3bo4j1NzpjdcT3TG1eRJ95fbo9KW+MVEIIYTGSkyH4uJyIx2SxI2z2ews/HIO+yIjCTx5IH97BT1Us9vxAnRuOtzbBuHz8rO4tnkavXdF7QoWQghRKpSpDsWiZDhyOo45n3xH2lefUuPCSQLztldEUQ2Fhx0M5VzwfPAOvAe9jrFeF2mlEUIIUSTkt4u4adEXkpmz7G/WfzWbKltXUTctmiAcfWpC/gk1gGt9f7yfeRTPAWPQe8lSGUIIIYqWhBtxQ9Izs/ll1Q5++GMjGSuX0iVuN10zkwFHqKmQF2o8DTrcOzbCPOINTO0flnlphBBCFBsJN+KalFL8ufcEX/y+iflLNnPHmZ3cc2EvbtmOyRENQCiKyig8PF3xeqwnPqMm4lKpqraFCyGEKJMk3Igrik9O55uFW/ji902cPnqKnkm7eTv2AHqLFQBTXqAJBdzCyuMzeAjez7yI3ttb28KFEEKUaRJuRAFKKdbtOMLMeRuYt2YnpsxUBmZuo+7pY6gcOwCeKKqiqAC4t22F+dWRuHfrhk4WrhRCCFECSLgRAKSmZ/H5go3M+m0Dh0/HEWhN5/WsPwk9cRp7rkIBXnn9aYKNBrz69cM8dBiuDRtqXboQQghRgISbMi4tI5sPf1rNlB9WkJSaSZgtmfey/8bv6BnsVscSCT55oSbI0wOf557HZ+hQjBVlbhohhBAlk4SbMiotI5vpP69h8g8rSEzJoLpK4B3LVowHzqLsYAd880JN+QB/zEOG4v3CCxj8/bUuXQghhLgqCTdlTEaWhY/nruX9b5eRkJJBRXsKH1n/xnXfaZTdsUSCP4rqKAIrVMA8YgTezzyD3sND69KFEEKI6yLhpoyw5OQyc94G3v1qCXGJqQTaM5jK33jtPYEtr09NwD+hpnJlzK+/jtcTT6B3c9O6dCGEEOKGSLhxcrlWG98s3MJbny/kTFwSPiqb93RbCdh/FKvFjg3H46eaKMpXrYp5zBi8HnsMnYuL1qULIYQQN0XCjZOy2ezMWb6V8Z8t5NiZ85hULuNdd1Jp735y0m1YcXQUroGifGAgfmPH4v3ss+hcXbUuXQghhLglEm6cjFKK+Wt3MebT39l/Ihq9sjHCYx8NDuwmMyGHHBzz1NRAEezpie/w4fgMGyYT7wkhhHAaEm6chFKK5X8eYPSMBWw7eBpQPOd9mDZHdpB2LpNMHDMKV0dR0cUF8/PP4/vGGxjKy0KWQgghnIuEm1Iu25LLj8v+Ztqc1ew+ehZQ9PaN4oGzW0nclkwaYMybUbiyXo954FP4jhmDMSxM69KFEEKIIiHhppSKiU/hk7lrmfnbBi4kpQHQ1T+OZ5L/Jm5lHImADkUloBrg17cvvuPH41KjhpZlCyGEEEVOwk0pkmu1sXTzPr5d/CcL1u0m12rDoLPzUpVYIuJ2EbM6mjjHmpYEo6gJBPZ6GN+xY3GtX1/T2oUQQojiIuGmhFNKsfPwGb5dtIXZy7bmt9L4m3J4q9ZZKu/ZzrlfUjibd7wvitooQh7OCzUNGmhXvBBCCKEBCTclVPSFZH5Y+hffLvqTfcejAUegGVQzke4qisw/DxO/ycK5vOMDUVRBEfrgg/iNGycLWgohhCizJNyUIBlZFuav3cW3i/9k5d8Hsdvt1PXN4PVq52hrOUv2/mjOb7YQpRzH61CEAFUMeoL7P47P8OG41q2r6WcQQgghtCbhRmPnE1NZtHEvf2zYw/K/DhDmmkh7vzj6BJ+hYlICSfvTSYrJ5fRF7/FBUR5FmLsHgc8961ilW0Y/CSGEEICEm2KnlOLgyRjmr9vFHxt2k3JmP+19orkv9yxP2y+Qti+TpDgrFuDEv+/CDyiPIshoxO+uu3Dv1g2vJ57AEBCg2WcRQgghSiIJN8VAKcW2A6f5bc129v29mmpJe2iceY5RMRdIPZNNerodCxB10Xs8UfjjWKE7sGJFfO+5B4+uXXG7+26ZTVgIIYS4Cgk3RSQjy8K6v/dwaPlc3DYupXzMWZomZFA92YrVDhYgOv9ohRfgB/i7uBDUpDHmu+7C1KIFppYtMYaGavUxhBBCiFJHwk0hUUqxb8liTnzxMbl7dqLOJ5KZbsXT7tifcNGxBhQ+gL+biXK1axHU+k68WrTA9bbbcKlXT1bkFkIIIW6BhJtCsvKRezgxd+ll9ig8dTr8fL0IrFmDoDbtKNexE6ZGjTBUqIBOpyv2WoUQQghnJuGmkNTo9Sgn5i7FQw9eZnf8alYjLKIrFXr1w71+fQkxQgghRDGRcFNIKj/Qh177G+JXr5HWpQghhBBlml7rApyFXq+XYCOEEEKUABJuhBBCCOFUJNwIIYQQwqlIuBFCCCGEU5FwI4QQQginomm4Wb9+Pffeey8hISHodDrmz59/zfesXbuWpk2bYjKZqFGjBl9//XWR1ymEEEKI0kPTcJORkcFtt93Gxx9/fF3Hnzx5ku7du9O+fXt27drFkCFDeOqpp1i2bFkRVyqEEEKI0kLTeW66du1K165dr/v4Tz/9lKpVqzJlyhQA6taty8aNG5k6dSoRERGXfY/FYsFiseR/n5qaemtFCyGEEKJEK1V9brZs2ULHjh0LbIuIiGDLli1XfE9kZCRmszn/FRYWVtRlCiGEEEJDpSrcxMbGEhQUVGBbUFAQqampZGVlXfY9I0eOJCUlJf915syZ4ihVCCGEEBpx+uUXTCYTJpNJ6zKEEEIIUUxKVctNcHAwcXFxBbbFxcXh4+ODu7u7RlUJIYQQoiQpVeEmPDycVatWFdi2YsUKwsPDNapICCGEECWNpuEmPT2dXbt2sWvXLsAx1HvXrl1ERUUBjv4y/fv3zz/+ueee48SJE4wYMYJDhw7xySef8PPPPzN06FAtyhdCCCFECaRpn5tt27bRvn37/O+HDRsGwOOPP87XX39NTExMftABqFq1KosWLWLo0KFMmzaN0NBQPv/88ysOA78cpRQgQ8KFEEKI0uSf39v//B6/Gp26nqOcyNmzZ2U4uBBCCFFKnTlzhtDQ0KseU+bCjd1uJzo6Gm9vb3Q6ndbl3JTU1FTCwsI4c+YMPj4+WpcjrkDuU+kh96p0kPtUOhTVfVJKkZaWRkhICHr91XvVOP1Q8P/S6/XXTHylhY+Pj/wPXgrIfSo95F6VDnKfSoeiuE9ms/m6jitVo6WEEEIIIa5Fwo0QQgghnIqEm1LIZDIxbtw4mXm5hJP7VHrIvSod5D6VDiXhPpW5DsVCCCGEcG7SciOEEEIIpyLhRgghhBBORcKNEEIIIZyKhBshhBBCOBUJNxqJjIykefPmeHt7U758eXr27Mnhw4cLHJOdnc2gQYMICAjAy8uLBx98kLi4uPz9u3fvpk+fPoSFheHu7k7dunWZNm3aJddau3YtTZs2xWQyUaNGDb7++uui/nhOozDu08USEhIIDQ1Fp9ORnJxcYJ/cp5tXmPfp66+/plGjRri5uVG+fHkGDRpUYP+ePXto06YNbm5uhIWF8f777xfpZ3MmhXWftm7dSocOHfD19cXPz4+IiAh2795d4Bi5Tzfveu7TrFmzaNeuHT4+Ppf9eQaQmJhI37598fHxwdfXl4EDB5Kenl7gmCK7T0poIiIiQn311Vdq3759ateuXapbt26qUqVKKj09Pf+Y5557ToWFhalVq1apbdu2qZYtW6pWrVrl7//iiy/Uyy+/rNauXauOHz+uvvvuO+Xu7q4++uij/GNOnDihPDw81LBhw9SBAwfURx99pAwGg1q6dGmxft7SqjDu08V69OihunbtqgCVlJSUv13u060prPs0ZcoUFRISon744Qd17NgxtXv3brVgwYL8/SkpKSooKEj17dtX7du3T/3444/K3d1dzZw5s9g+a2lWGPcpLS1N+fv7qyeeeEIdOnRI7du3Tz344IMqKChI5eTkKKXkPt2q67lPU6dOVZGRkSoyMvKSn2f/6NKli7rtttvUn3/+qTZs2KBq1Kih+vTpk7+/KO+ThJsS4vz58wpQ69atU0oplZycrFxcXNTcuXPzjzl48KAC1JYtW654nhdeeEG1b98+//sRI0ao+vXrFzjmkUceUREREYX8CcqGW7lPn3zyiWrbtq1atWrVJT8M5D4Vrpu5T4mJicrd3V2tXLnyiuf95JNPlJ+fn7JYLPnbXnvtNVW7du0i+iTO7Wbu09atWxWgoqKi8o/Zs2ePAtTRo0eVUnKfCtt/79PF1qxZc9lwc+DAAQWorVu35m9bsmSJ0ul06ty5c0qpor1P8liqhEhJSQHA398fgO3bt5Obm0vHjh3zj6lTpw6VKlViy5YtVz3PP+cA2LJlS4FzAERERFz1HOLKbvY+HThwgLfeeotvv/32sgu+yX0qXDdzn1asWIHdbufcuXPUrVuX0NBQevXqxZkzZ/Lfs2XLFu666y5cXV3zt0VERHD48GGSkpKK46M5lZu5T7Vr1yYgIIAvvviCnJwcsrKy+OKLL6hbty5VqlQB5D4Vtv/ep+uxZcsWfH19uf322/O3dezYEb1ez19//ZV/TFHdJwk3JYDdbmfIkCG0bt2aBg0aABAbG4urqyu+vr4Fjg0KCiI2Nvay59m8eTM//fQTzzzzTP622NhYgoKCLjlHamoqWVlZhftBnNzN3ieLxUKfPn2YNGkSlSpVuuy55T4Vnpu9TydOnMBut/Puu+/ywQcf8Msvv5CYmEinTp3IycnJP8/l7tM/+8T1u9n75O3tzdq1a/n+++9xd3fHy8uLpUuXsmTJEoxGY/555D4Vjsvdp+sRGxtL+fLlC2wzGo34+/vn34OivE9lblXwkmjQoEHs27ePjRs33vQ59u3bR48ePRg3bhydO3cuxOrEP272Po0cOZK6devy2GOPFVFl4mI3e5/sdju5ubl8+OGH+f8P/fjjjwQHB7NmzRoiIiKKotwy62bvU1ZWFgMHDqR169b8+OOP2Gw2Jk+eTPfu3dm6dSvu7u5FVHHZVBi/n7QgLTcae/HFF1m4cCFr1qwhNDQ0f3twcDA5OTmX9ECPi4sjODi4wLYDBw7QoUMHnnnmGUaPHl1gX3Bw8CUjDeLi4vDx8ZEfAjfgVu7T6tWrmTt3LkajEaPRSIcOHQAIDAxk3Lhx+eeR+3TrbuU+VahQAYB69erl7y9XrhyBgYFERUXln+dy9+mffeL63Mp9mj17NqdOneKrr76iefPmtGzZktmzZ3Py5EkWLFiQfx65T7fuSvfpegQHB3P+/PkC26xWK4mJifn3oCjvk4QbjSilePHFF/ntt99YvXo1VatWLbC/WbNmuLi4sGrVqvxthw8fJioqivDw8Pxt+/fvp3379jz++ONMmDDhkuuEh4cXOAc4+hZcfA5xZYVxn3799Vd2797Nrl272LVrF59//jkAGzZsyB9mLPfp1hTGfWrdunX+9n8kJiYSHx9P5cqVAcd9Wr9+Pbm5ufnHrFixgtq1a+Pn51dkn89ZFMZ9yszMRK/Xo9Pp8o/553u73Q7IfbpV17pP1yM8PJzk5GS2b9+ev2316tXY7XZatGiRf0yR3adb7pIsbsrzzz+vzGazWrt2rYqJicl/ZWZm5h/z3HPPqUqVKqnVq1erbdu2qfDwcBUeHp6/f+/evapcuXLqscceK3CO8+fP5x/zzxDj4cOHq4MHD6qPP/5YhhjfgMK4T/91udEFcp9uTWHdpx49eqj69eurTZs2qb1796p77rlH1atXL3+IcXJysgoKClL9+vVT+/btU3PmzFEeHh4yxPg6FcZ9OnjwoDKZTOr5559XBw4cUPv27VOPPfaYMpvNKjo6Wikl9+lWXc99iomJUTt37lSfffaZAtT69evVzp07VUJCQv4xXbp0UU2aNFF//fWX2rhxo6pZs2aBoeBFeZ8k3GgEuOzrq6++yj8mKytLvfDCC8rPz095eHio+++/X8XExOTvHzdu3GXPUbly5QLXWrNmjWrcuLFydXVV1apVK3ANcXWFcZ/+60pDJ+U+3bzCuk8pKSlqwIABytfXV/n7+6v777+/wJBjpZTavXu3uvPOO5XJZFIVK1ZUEydOLI6P6BQK6z4tX75ctW7dWpnNZuXn56fuvvvuS6ZekPt0867nPl3p98/FxyQkJKg+ffooLy8v5ePjo5588kmVlpZW4FpFdZ90eR9ECCGEEMIpSJ8bIYQQQjgVCTdCCCGEcCoSboQQQgjhVCTcCCGEEMKpSLgRQgghhFORcCOEEEIIpyLhRgghhBBORcKNEEIIIZyKhBshhBBCOBUJN0KIEkkpRceOHYmIiLhk3yeffIKvry9nz57VoDIhREkn4UYIUSLpdDq++uor/vrrL2bOnJm//eTJk4wYMYKPPvqI0NDQQr3mxasTCyFKLwk3QogSKywsjGnTpvHqq69y8uRJlFIMHDiQzp0706RJE7p27YqXlxdBQUH069eP+Pj4/PcuXbqUO++8E19fXwICArjnnns4fvx4/v5Tp06h0+n46aefaNu2LW5ubvzwww9afEwhRCGThTOFECVez549SUlJ4YEHHuDtt99m//791K9fn6eeeor+/fuTlZXFa6+9htVqZfXq1QD8+uuv6HQ6GjVqRHp6OmPHjuXUqVPs2rULvV7PqVOnqFq1KlWqVGHKlCk0adIENzc3KlSooPGnFULcKgk3QogS7/z589SvX5/ExER+/fVX9u3bx4YNG1i2bFn+MWfPniUsLIzDhw9Tq1atS84RHx9PuXLl2Lt3Lw0aNMgPNx988AGDBw8uzo8jhChi8lhKCFHilS9fnmeffZa6devSs2dPdu/ezZo1a/Dy8sp/1alTByD/0dPRo0fp06cP1apVw8fHhypVqgAQFRVV4Ny33357sX4WIUTRM2pdgBBCXA+j0YjR6PiRlZ6ezr333st77713yXH/PFa69957qVy5Mp999hkhISHY7XYaNGhATk5OgeM9PT2LvnghRLGScCOEKHWaNm3Kr7/+SpUqVfIDz8USEhI4fPgwn332GW3atAFg48aNxV2mEEIj8lhKCFHqDBo0iMTERPr06cPWrVs5fvw4y5Yt48knn8Rms+Hn50dAQACzZs3i2LFjrF69mmHDhmldthCimEi4EUKUOiEhIWzatAmbzUbnzp1p2LAhQ4YMwdfXF71ej16vZ86cOWzfvp0GDRowdOhQJk2apHXZQohiIqOlhBBCCOFUpOVGCCGEEE5Fwo0QQgghnIqEGyGEEEI4FQk3QgghhHAqEm6EEEII4VQk3AghhBDCqUi4EUIIIYRTkXAjhBBCCKci4UYIIYQQTkXCjRBCCCGcioQbIYQQQjiV/wOaY+FlnB/i5wAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "color_map = {\n", " \"SSP1-26\": \"AR6-SSP1-2.6\",\n", @@ -1399,7 +1729,7 @@ "\n", "pyam.run_control().update({\"color\": {\"scenario\": color_map}})\n", "\n", - "ssps_imp.filter(\n", + "ssps_imp.df.filter(\n", " variable=\"AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile\",\n", " scenario=\"SSP*\",\n", ").plot(legend=False, fill_between=True, color=\"scenario\", title=\"\")" @@ -1407,15 +1737,52 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 77, "id": "6bcea971-06e9-426c-8aca-71fc96d27e13", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/byers/venvs/rimeclasses/lib/python3.10/site-packages/pyam/core.py:2691: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n", + " index = pd.unique(index)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjcAAAGwCAYAAABVdURTAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy88F64QAAAACXBIWXMAAA9hAAAPYQGoP6dpAACXs0lEQVR4nOzdd3xT9f7H8dc52aNN001ZgkwHKg4EB26cV9ziwP3z3osDnBcvuBXnVRS31y3XLSqgCCogggqKiigqe3SvpNnJOef3xymFysaWdHyej0dMenKSfNJi8+53KoZhGAghhBBCtBFqugsQQgghhGhKEm6EEEII0aZIuBFCCCFEmyLhRgghhBBtioQbIYQQQrQpEm6EEEII0aZIuBFCCCFEm2JNdwG7mq7rFBcXk5GRgaIo6S5HCCGEENvBMAzq6uooKipCVbfeNtPuwk1xcTGdO3dOdxlCCCGE2Alr1qyhU6dOWz2n3YWbjIwMwPzmZGZmprkaIYQQQmyPYDBI586dGz7Ht6bdhZv1XVGZmZkSboQQQohWZnuGlMiAYiGEEEK0KWkNN7fffjuKojS69OnTZ6uPefvtt+nTpw9Op5O9996bqVOn7qJqhRBCCNEapL3lZs8996SkpKThMmfOnC2eO3fuXIYNG8Zll13GwoULGTp0KEOHDuXnn3/ehRULIYQQoiVLe7ixWq0UFhY2XHJzc7d47vjx4zn++OO58cYb6du3L3fddRf9+/dnwoQJu7BiIYQQQrRkaQ83f/zxB0VFRXTv3p3zzz+f1atXb/HcefPmccwxxzQ6NmTIEObNm7fFx8TjcYLBYKOLEEIIIdqutIabAQMG8NJLL/HJJ5/w1FNPsWLFCg477DDq6uo2e35paSkFBQWNjhUUFFBaWrrF1xg3bhw+n6/hImvcCCGEEG1bWsPNCSecwFlnnUW/fv0YMmQIU6dOpba2lrfeeqvJXmP06NEEAoGGy5o1a5rsuYUQQgjR8rSodW6ysrLo1asXS5cu3ez9hYWFlJWVNTpWVlZGYWHhFp/T4XDgcDiatE4hhBBCtFxpH3OzsVAoxLJly+jQocNm7x84cCCfffZZo2PTp09n4MCBu6I8IYQQQrQCaQ03N9xwA7NmzWLlypXMnTuX0047DYvFwrBhwwAYPnw4o0ePbjj/2muv5ZNPPuHhhx9myZIl3H777SxYsICrrroqXW9BCCGEEC1MWrul1q5dy7Bhw6iqqiIvL49DDz2Ur7/+mry8PABWr17daOfPQYMGMXHiRMaMGcMtt9xCz549mTRpEnvttVe63oIQQgghWhjFMAwj3UXsSsFgEJ/PRyAQkL2lhBBCiFZiRz6/W9SYGyGEEEK0bsUzZxIPBNJag4QbIYQQQjSJX555hsnHHMeMs85GSybTVkeLmgouhBBCiNZH1zS+uelmfvrPIwC4CgtB19NWj4QbIYQQQuy0ZDjM5+dfwMoPPgTggDvvoP+Yf6MoStpqknAjhBBCiJ0SLi7mk78NpfK771Dtdo586QV61C/nkk4SboQQQgixw6p+/JGPT/4b4bVrcebmMmTSexQecki6ywIk3AghhBBiB62ZNo3pZ51Dsq6OrD59OH7yh/h23z3dZTWQ2VJCCCGE2G5L/vtfPj7pFJJ1dRQdcQRD585pUcEGJNwIIYQQYjsYhsG3Y8Yy6/L/w9A0el54ASdO+xiH35/u0jYh3VJCCCGE2CotHmfmpZexdOL/AOg/dgwH3HF7WmdEbY2EGyGEEEJsUaSsjOlnnUPpl1+iWq0c9sxT9Ln00nSXtVUSboQQQgixWaXz5jH9zLOJFBdjy8jguHffptOxx6a7rG2ScCOEEEKIRgzD4Jenn2butaPQk0n8e+zBce+9Q1bv3ukubbtIuBFCCCFEg1Q0ypf/+Ce/v/wKAN3PPIPBL/wXe0ZGmivbfhJuhBBCCAFAaM0apg09ncrvv0dRVQbcfx/9rr+uxQ4c3hIJN0IIIYSg7OuvmTb0dKJlZThzcznmzf/R8aij0l3WTpFwI4QQQrRzS//3P2ZechlaPE52v34c/+EkMrp2TXdZO00W8RNCCCHaKUPXmX/rbXx23gVo8Thd/3YKQ7/6slUHG5CWGyGEEKJdSkYizLzoYpa/8y4A+9x0Iwfdew+qxZLmyv46CTdCCCFEO7PxwGHVZuPwZ5+m98UXp7usJiPhRgghhGhHSufO5dPTz2wYOHzce+/Q4bDD0l1Wk5JwI4QQQrQTS158kS///k/0RMIcOPzB+2Tstlu6y2pyMqBYCCGEaOP0VIq5113PrEsvR08k6HbG6ebA4TYYbEBaboQQQog2LVJWxufnX8i6zz4DYP/bb2P/sWNQ1LbbviHhRgghhGijimfO5LNh5xMpLcXqdnPkKy/R/Ywz0l1Ws5NwI4QQQrQxhq6z8N5xLLjtdgxdx7/nnhz79pv4+/ZNd2m7hIQbIYQQog2Jlpfz+QUXsnb6DAB6XXwRh054HJvHk+bKdh0JN0IIIUQbUbFgAdOGnk543TqsLheHPjmhTa1fs70k3AghhBBtwLK332bmRZeQikbJ6tOHY99+k+y99kp3WWnRdodKCyGEEO2AYRh8d9fdzDj7XFLRKJ1POJ7TvpnXboMNSMuNEEII0WqlolFmXnoZy954E4C9R17LwQ892Cb2h/orJNwIIYQQrVCkrIxpp55G+TffoFqtHPLE4+zxf/+X7rJaBAk3QgghRCsTWLaMqUNOILhsGQ6/n2PffZuORx6Z7rJaDAk3QgghRCtS8f33fHzCSUTLy8no1o0TP5lKVq9e6S6rRWkxA4rvu+8+FEVh5MiRWzznpZdeQlGURhen07nrihRCCCHSaO2MGXw0+Eii5eXk7LsvQ+fOkWCzGS2i5Wb+/Pk888wz9OvXb5vnZmZm8ttvvzV8rShKc5YmhBBCtAhL33iDL4ZfjJ5MUnTkkQyZ9B72zMx0l9Uipb3lJhQKcf755/Pcc8/h9/u3eb6iKBQWFjZcCgoKtnp+PB4nGAw2ugghhBCtyc9PPMlnw85HTybpfvZZnPjxFAk2W5H2cDNixAhOOukkjjnmmO06PxQK0bVrVzp37sypp57K4sWLt3r+uHHj8Pl8DZfOnTs3RdlCCCHELvHTo+P56qqrAdjzqhEc87+JWByONFfVsqU13Lzxxht8//33jBs3brvO7927Ny+88AIffPABr732GrquM2jQINauXbvFx4wePZpAINBwWbNmTVOVL4QQQjSrHx/+D/NGXQfAfreM5pDHxqOoaW+XaPHSNuZmzZo1XHvttUyfPn27BwUPHDiQgQMHNnw9aNAg+vbtyzPPPMNdd9212cc4HA4cknCFEEK0Mj888CDf3PwvAPrfOpYDbr9Nxplup7SFm++++47y8nL69+/fcEzTNGbPns2ECROIx+NYtrHCos1mY7/99mPp0qXNXa4QQgixyywcdx/f3vJvAPa//TYOuO3WNFfUuqQt3Bx99NEsWrSo0bFLLrmEPn36cPPNN28z2IAZhhYtWsSJJ57YXGUKIYQQu4xhGCy8517mjzXDzIF33Un/Mf9Oc1WtT9rCTUZGBnv9aVMvj8dDTk5Ow/Hhw4fTsWPHhjE5d955JwcffDA9evSgtraWBx98kFWrVnH55Zfv8vqFEEKIpmToOvOuv4FFj44H4KB772G/0f9Kc1WtU4tY52ZLVq9ejbrRwKmamhquuOIKSktL8fv97L///sydO5c99tgjjVUKIYQQf42WSDDz4ktY+r83ABj4yH/oN/LaNFfVeimGYRjpLmJXCgaD+Hw+AoEAmbJGgBBCiDRL1NXx6elnsG7GZ6g2G0e89AI9zzsv3WW1ODvy+d2iW26EEEKItixSVsbHJ55M5fffY/V4OO69d+h83HHpLqvVk3AjhBBCpEFg6VKmHn8iwWXLcOblceLUyeQdcEC6y2oTJNwIIYQQu1jp3LlM+9tQYlVVZHTrxknTPsbXs2e6y2ozZJlDIYQQYhda/s47TD7qGGJVVeTuvz9D586RYNPEJNwIIYQQu4BhGPz48H+Yfva5aPE4XU85mb/N+gJ3YWG6S2tzpFtKCCGEaGa6pjH32pEsfuJJAPYc8U8GjX8UdTsWrBU7TsKNEEII0YyS4TCfDTuPVR9NBuDghx6k33WjZJ+oZiThRgghhGgmkdJSPjnlVCoWLMDicHDkqy+z+1lnpbusNk/CjRBCCNEMan79laknnERo1SqcOTkM+XAShYMGpbusdkHCjRBCCNHEimfOZNppZ5CorSWzRw9O/HgKvh490l1WuyGzpYQQQogm9PtrrzHluONJ1NZSMGgQQ+d9JcFmF5NwI4QQQjQBLZFgztXX8MWFF6Enk3Q/60xO/mw6rtzcdJfW7ki3lBBCCPEX1a1ezYyzz6X8m28A6D/m3xxwx+0oqrQhpIOEGyGEEOIvWDNtGp+ffyGxqiocfj9HvvoyXU86Kd1ltWsSboQQQoidoGsa3999D9/dcScYBrn9+3PsO2+R2a1buktr9yTcCCGEEDsoWlnJ5+dfwNpPpwPQ98r/Y9Cjj2B1OtNcmQAJN0IIIcQOKf/2W6afeTahNWuwulwc+tQT9L7oonSXJTYi4UYIIYTYDoZhsPjJp5g36jr0ZBJfz54c+85b5PTrl+7SxJ9IuBFCCCG2IRkOM/v/rmTpxP8B0O300xj8wn9x+HxprkxsjoQbIYQQYivC69bxySmnUrlwIYrFwsEP3M/eo0bKxpctmIQbIYQQYgsqFy7k45P/RqS4GGdeHse99w4dDj003WWJbZBwI4QQQmzGyo8+4rNh55MKh/HvsQfHT/5Qpnm3ErJ0ohBCCLERwzBYNP4xPh16OqlwmI7HHM2pX30pwaYVkXAjhBBC1NNTKb66+hrmjhyFoev0ueJyTpg6BUdWVrpLEztAuqWEEEIIzBlRM84dxurJU0BROPiB++l3/XUycLgVknAjhBCi3QuXlJgzor77DovTyVGvvUL3M85Id1liJ0m4EUII0a5VL17MxyeeTGj1apy5uQz5cBKFAwemuyzxF0i4EUII0W6t++ILPj3tDBKBAL6ePTlh6mR8PXqkuyzxF8mAYiGEEO3SHxMnMnXICSQCAQoPOYRT586RYNNGSLgRQgjRrhiGwQ8PPMjn51+InkzS/awzOWnGp7hyc9Ndmmgi0i0lhBCi3dA1jbkjR7F4whMA9LtuFAc/+ACKKn/rtyUSboQQQrQLqWiUz86/gJXvTwJFYeDDD9Fv1Mh0lyWagYQbIYQQbV6supppfxtK6VdfodrtHPXqy+x+9tnpLks0kxbTDnffffehKAojR47c6nlvv/02ffr0wel0svfeezN16tRdU6AQQohWKbxuHR8efgSlX32FPSuLkz79RIJNG9ciws38+fN55pln6Nev31bPmzt3LsOGDeOyyy5j4cKFDB06lKFDh/Lzzz/vokqFEEK0JrW//86kQw6jZvFi3EVFnPrlLIoGD053WaKZpT3chEIhzj//fJ577jn8fv9Wzx0/fjzHH388N954I3379uWuu+6if//+TJgwYRdVK4QQorWo+P57Pjj0cEKrVuHr2ZOhX31J9l57pbsssQukPdyMGDGCk046iWOOOWab586bN2+T84YMGcK8efO2+Jh4PE4wGGx0EUII0bYVz5zJR0ccRayigtz99uPUObPJ2G23dJcldpG0Dih+4403+P7775k/f/52nV9aWkpBQUGjYwUFBZSWlm7xMePGjeOOO+74S3UKIYRoPVZMmsRn556HFo/TYfBgjv9wEvbMzHSXJXahtLXcrFmzhmuvvZbXX38dp9PZbK8zevRoAoFAw2XNmjXN9lpCCCHS65dnn2X6GWehxePsNvRUTvxkqgSbdihtLTffffcd5eXl9O/fv+GYpmnMnj2bCRMmEI/HsVgsjR5TWFhIWVlZo2NlZWUUFhZu8XUcDgcOh6NpixdCCNGiGIbB93fdzYLbbgeg96WXcPgzT6NaZcWT9ihtLTdHH300ixYt4ocffmi4HHDAAZx//vn88MMPmwQbgIEDB/LZZ581OjZ9+nQGyu6tQgjRbumaxpwRVzUEm/5j/s3g55+TYNOOpe0nn5GRwV5/GrXu8XjIyclpOD58+HA6duzIuHHjALj22msZPHgwDz/8MCeddBJvvPEGCxYs4Nlnn93l9QshhEi/VCzG5+dfwIr33gdF4ZDHH2OvEf9Md1ntWuKnn7AUFWFJ415daZ8ttTWrV6+mpKSk4etBgwYxceJEnn32WfbZZx/eeecdJk2atElIEkII0fbFAwGmHn8iK957H9Vu55g3/yfBJo0MXSfwn/9QfOCBVF15JYZhpK0WxUjnq6dBMBjE5/MRCATIlEFmQgjRKkXKyph6/IlU/fADtowMhnzwPh2PPDLdZbVbqbVrqbzoImKffw6A65RTyHvzTVSXq8leY0c+v1t0y40QQgjxZ3UrV/LBoYdT9cMPuPLz+dusLyTYpFH4rbco3ntvYp9/juJ2k/PMM+R/8EGTBpsdJaOthBBCtBrVP//MlCEnECkuJmO33Tjp00/w9eyZ7rLaJT0QoOrqqwm/+ioA9gMPJO+117D16pXmyqTlRgghRCtROm8eHx5+BJHiYrL32otTv/pSgk2aRD/9lHV77WUGG1XFN3YsHb76qkUEG5CWGyGEEK3A2unTmTb0dFKRCAUDB3L85A9xZmenu6x2Rw8Gqb7hBkLPPQeAdffdyX3lFZyDBqW5ssak5UYIIUSLtmrKFD455VRSkQidjx/CSdOnSbBJg+j06azbe++GYJNxzTUU/fhjiws2IC03QgghWrAV77/PjHOGoSeT7HbaUI55439Y7PZ0l9WuaDU11Nx884bWmu7dyX3hBZyDB6e5si2TlhshhBAt0tI332T6WeegJ5Psfs7ZHPPmGxJsdiHDMAi99hrrevfe0Fpz1VUU/fRTiw42IC03QgghWqDfX3mFmZdchqHr9Bp+IYNf+C/qZrblEc0j+dtvVP3znw3r1tj69iXn6adxHn54mivbPtJyI4QQokX55dln+eLiSzF0nT6XX8YRL74gwWYX0aNRam67jXX9+pnr1jidZN17L0U//NBqgg1Iy40QQogW4s87e+854p8c8th4FFX+Dt8VIlOmUH3NNaSWLwfAdfzxZD/xBLbu3dNc2Y6TcCOEECLtdE3jq6uv4ZenngbMnb0PuPMOFEVJc2VtX3LFCqpHjiT64YcAWIqKyH7kEdxnndVqv/8SboQQQqRVKhbj8wsuZMW778nO3ruQHosRfOghAvfcgxGLgdVK5qhRZI0di5qRke7y/hIJN0IIIdImHggw7dTTKJk1C9Vu56jXXmH3s85Kd1ltmmEYRN59l5obbyS1ciUAziOPJHvCBOx77JHe4pqIhBshhBBpUbdyJZ/8bSjVixbJzt67SPy776geNYr4l18CYOnYEf+DD+I599xW2wW1ORJuhBBC7HLFs2cz/YyziFVW4i4s5ISpk8ndb790l9VmpYqLqf33vwm9/DIYBorLReZNN+G78UZUjyfd5TU5CTdCCCF2qV+efZavRlyNnkqR278/Qya9h7dz53SX1SYZ8TjBRx+l9q67MMJhADwXXIB/3DisnTqlubrmI+FGCCHELqElk8wbdR2Ln3gSgN3POZvBL/wXm9ud5srapsjUqVSPHEnqjz8AsA8YQM748TgGDEhzZc1Pwo0QQohmFy0vZ8a551H8xRcAHHjP3ew3+l9tapxHS5H84w+qR40iOmUKAJbCQvz334/nggvazZpBEm6EEEI0q+LZs/ls2PlEiouxeb0c9dor7Hbqqekuq83RIxEC99xD4KGHIJEAm43MkSPJGjMGNTMz3eXtUhJuhBBCNAtD1/nh/geYP/ZWDE0jq08fjn3nLbL33DPdpbUphmEQ+eADqq+9Fm31aqB+deFHH8XWu3eaq0sPCTdCCCGaXLSyki+GX8Sajz8BoOcF53PYU09i83rTXFnbkly2jOqrryb68ccAWLp0IXv8eNynntquu/wk3AghhGhSpV99xYxzzyO8di0Wp5NDJzxG70svbdcftk3NMAyC48dT869/QTwOdju+G2/Ed8stqDJAW8KNEEKIpmHoOj8+9DDf3vJvsxuqd2+OeftNcvbeO92ltSlaZSWVl1xCdPJkAJzHHUfO449j69UrzZW1HBJuhBBC/GWxqiq+uOhiVk+ZCkCP84Zx2NNPYW/lexS1NLHZs6k47zy0devA4SD7P/8h4x//kFaxP5FwI4QQ4i8p+/prZpx9LqE1a7A4HAx67FH6XnGFfOA2IUPTCNxzD7V33AG6jrVXL/LefBPHvvumu7QWScKNEEKInWIYBoseHc83N92Mnkrh69mTY99+k5x99kl3aW1KqriYygsuIFa/RpDnoovImTABVQZnb5GEGyGEEDssGYkw+4r/Y+nE/wHmasOHP/sM9na2nkpzi3z8MZXDh6NXVqJ4POQ89RTeCy9Md1ktnoQbIYQQO6Ru1So+Pe0MKhcuRLFYGPTIf9jzqhHSDdWEjESCmltuIfjwwwDY992XvDfflEHD20nCjRBCiO1WPHMm0886h1hlJc7cXI595y2KBg9Od1ltSnL5cirOPZfE/PkAZFx9Nf4HHkB1OtNcWesh4UYIIcQ2GYbB4glPMHfUdRiaRm7//hz3/rtkdOmS7tLaDMMwCL/2GlUjRmDU1aH6/eS88AKeoUPTXVqrI+FGCCHEVmnxOF/+cwS/vfAiYK42fPizz2B1udJcWduhVVdT9fe/E3n7bQAchxxC3sSJWCU87hQJN0IIIbYoUlbGp6efSdncuSiqysEPPsDeo0bK+JomFJ0xg8qLLkIrLgarlazbb8d3880oVvmI3lnynRNCCLFZFd9/z7RTTyO8di12n49j3vwfnYcMSXdZbYYei1F7yy0EH3kEwFy75rXXcBx4YJora/0k3AghhNjEsrfeYubFl5KKRsnq3ZshH04iS2bqNJn4999TeeGFJH/5BYCMv/8d/0MPoXo8aa6sbVDT+eJPPfUU/fr1IzMzk8zMTAYOHMjH9Tubbs5LL72EoiiNLk4ZPS6EEE1q4X33M+OcYaSiUTqfcDxDv5knwaaJGKkUtXfdRcmAASR/+QW1oID8jz4i56mnJNg0obS23HTq1In77ruPnj17YhgGL7/8MqeeeioLFy5kzz333OxjMjMz+e233xq+ln5fIYRoGoZhMH/MWBbeOw6Aftdfx4D770O1WNJcWduQWLKEyuHDG6Z4u888k5ynnsKSm5vmytqetIabU045pdHX99xzD0899RRff/31FsONoigUFhZu92vE43Hi8XjD18FgcOeKFUKINswwDOaOuo6fxz8GwIAH7mffG29Ic1Vtg6HrBB97jNrRozFiMdSsLLKfeALPsGHyB3ozSWu31MY0TeONN94gHA4zcODALZ4XCoXo2rUrnTt35tRTT2Xx4sVbfd5x48bh8/kaLp07d27q0oUQolXTNY3Z/3dlQ7A59IkJEmyaSHLpUkqPOIKaUaMwYjGcxx5L0aJFeM87T4JNM1IMwzDSWcCiRYsYOHAgsVgMr9fLxIkTOfHEEzd77rx58/jjjz/o168fgUCAhx56iNmzZ7N48WI6deq02cdsruWmc+fOBAIBMmUPFCFEO6clk8y86GKW/u8NFFVl8AvP0/uii9JdVqtn6Dp1TzxBzc03Y0SjKB4P/gcfJOPvf5dQs5OCwSA+n2+7Pr/THm4SiQSrV68mEAjwzjvv8PzzzzNr1iz22GOPbT42mUzSt29fhg0bxl133bVdr7cj3xwhhGjLkuEwnw07j1UfTUa1Wjlq4mvsftZZ6S6r1UsuX07lpZcSnzULAOeRR5Lz3/9i69YtzZW1bjvy+Z32qeB2u50ePXoAsP/++zN//nzGjx/PM888s83H2mw29ttvP5YuXdrcZQohRJsSKS3lk1NOpWLBAiwOB8e+8xZdTz453WW1anosRvChhwjccw9GLIbidm9orVFbzCiQdiHt4ebPdF1v1I20NZqmsWjRoi12YwkhhNhUza+/8vGJJ1O3ciXOnByGfPA+hYccku6yWrXotGlUXXUVqfo/tp1HHknO889j6949zZW1T2kNN6NHj+aEE06gS5cu1NXVMXHiRGbOnMm0adMAGD58OB07dmTcOHNa4p133snBBx9Mjx49qK2t5cEHH2TVqlVcfvnl6XwbQgjRahTPmsW0oaeTqK0lc/fdOfHjKfh69kx3Wa1WavVqqkeNIvLeewBYOnTA//DDeM49V8bWpFFaw015eTnDhw+npKQEn89Hv379mDZtGsceeywAq1evRt2oKa+mpoYrrriC0tJS/H4/+++/P3Pnzt2u8TlCCNHe/fH668y85DL0ZJKCgQMZ8sH7uPLy0l1Wq6RHIgQffJDAAw9gRCJgsZB5zTVk3X47qoznTLu0Dyje1WRAsRCivdESCb6+8SZ+fuxxALqdcTpHvfqK7Oq9EwxdJzxxIjWjR6OtXQuA47DDyHniCex7753m6tq2VjWgWAghRPOpW7mS6WefS0X9qrj73nwTB917jwxw3QmxefOoHjmSxLffAmDp2pXsBx7AfdZZ0gXVwki4EUKINmrlBx/wxcWXkqitxeH3c8TLL7Lbn1aGF9sW++orAvffT/SjjwBQvF58t9xC5qhRqLK/YYsk4UYIIdoYLZnkm5v/xaJHHgUgf8AAjnnzf2R07ZrewloRwzCITp1K4L77iM+ZYx5UFLyXXELW3Xdj7dAhvQWKrZJwI4QQbUi4pIQZZ51D6VdfAdDvulEcNO5eLHZ7mitrHQzDIPLOO9TedRfJRYvMg3Y73uHD8d14IzbZHb1VkHAjhBBtROlXXzH9zLOJlJZiz8zkiJdfpNvQoekuq9WIz59P9ahRxOuDoeL1kvGPf5A5ciTWoqI0Vyd2hIQbIYRo5QzDYPGEJ5h33fXoqRT+PfdkyPvvyvo12ym1bh01t9xC+JVXAFDcbjJvvJHMa6/F4venuTqxMyTcCCFEK5aMRPjyyr/zx2uvA7D7OWcz+PnnsHm9aa6s5dOjUXO7hPvuM9eqATzDh+O/916sHTumuTrxV0i4EUKIVipcXMwnp5xK5fffo1gsHPzgA+w98lqZlrwNhmEQee89qq+/Hm3VKgAcgwaR/eijOA48MM3ViaYg4UYIIVqhyh9+4JOT/0Z43Tqcubkc+/abFB1xRLrLavESP/9M9bXXEvv8cwAsnTuT/eCDuM8+W0JhGyLhRgghWplVU6Yw45xhpMJhsvr04YQpH5EpGzRulVZbS+1tt1H3xBOgaeBw4LvpJnw334zq8aS7PNHEJNwIIUQrsuixx5k36joMXafj0Udz7Dtv4cjKSndZLZZhGITffJOaUaPQSksBcJ92Gv6HH8bWrVuaqxPNRcKNEEK0AnoqxdxR17F4whMA9LnsUg596kksNluaK2u5kkuXUjViBLFPPwXA2qsXORMm4KrfnFm0XRJuhBCihUuGw8w4dxirJ08BYMAD97PPDdfLGJEtMOJxAg88QO0990A8Dg4HWf/+N76bbkJxONJdntgFJNwIIUQLFikt5ZNTTqViwQIsTidHvfoy3c88M91ltVjRmTOp/sc/SC5ZAoDzmGPIefJJbLLmT7si4UYIIVqoml9/ZeoJJxFatQpnbi5DPpxE4cCB6S6rRdIqKqi+4YaGhfjUggKyH3kEz7nnSgtXOyThRgghWqDimTOZdtoZJGpryezRgxM/noKvR490l9XiGLpO6IUXqLnpJvSaGlAUMv7+d7LuvReLDLRutyTcCCFEC7Psrbf4/ILh6MkkBYMGMeSD93Hl5qa7rBYn8csvVF15ZcOu3bZ99iHn6adxHnxwmisT6aamuwAhhBAbLH7qKWacex56Mkn3M8/g5BmfSrD5EyMep+b22yned1/ic+ageDz4H3qIogULJNgIQFpuhBCiRTAMg+/vvocFt94GwB7//AeHPDYe1WJJc2UtS2zOHKquuKJhwLDrpJPIefJJrF26pLky0ZJIuBFCiDQzdJ25o67j58ceB6D/rWM54PbbZCDsRvRAgOqbbyb0zDOAOWA457HHcJ91lnyfxCYk3AghRBppySQzL7mUpa9PBOCQx8az19VXpbmqliUyeTJVf/872rp1AHgvuwz/gw9i8fvTXJloqSTcCCFEmqSiUaafdTarp0xFtVo54qUX6Hn++ekuq8XQKiupHjmS8OuvA2DdfXdynnsO15FHprky0dJJuBFCiDRIBIN8csqplMyejdXl4th33qLLiSemu6wWwTAMIm+/TdVVV6FXVICqknnddWTdcQeq253u8kQrIOFGCCF2sWhlJVOPP5HK777DnpnJ8ZM/pMNhh6W7rBYhtW4dVSNGEP3gAwBse+5J7gsv4DjooDRXJloTCTdCCLELhdetY/KxQ6j99VecubmcOO1j8vr3T3dZaWfoOnVPP03Nv/6FUVcHViu+W24h65ZbZD8oscMk3AghxC4SWLqUKccOoW7lSjydOnHS9Gn4+/RJd1lpl1i8mKorriA+bx4AjoMPJue557DvtVeaKxOtlSziJ4QQu0DpV1/xwSGHUbdyJZk9enDqnNntPtjo0Sg1Y8dSvN9+xOfNQ/F6yX78cQrnzJFgI/4SabkRQohmtuSFF/jy7/9ETybJ2XdfTvx4Cu7CwnSXlVaRjz6i+pprSK1cCYDrlFPIeeIJrJ07p7cw0SZIuBFCiGaip1LMu/6GhsX5up1xOke+/BI2jyfNlaVPcsUKqq+9luhHHwFg6dSJ7EcewX3GGbIYn2gyEm6EEKIZxKqrmXHOuayb8RkAB9xxO/3H/BtFbZ+jAfRYjOADDxAYNw4jFgOrlczrrydrzBhUrzfd5Yk2RsKNEEI0seqff2baaWcQXLoUq8fDUa++TLfTTkt3WWlhGAaRDz6g5rrrSK1YAYDzqKPInjABe9++aa5OtFUSboQQogktffNNZl16OalIBG/Xrhz/4SRy+vVLd1lpkfj1V6qvvZbY9OkAWDp2JPvhh3GffbZ0QbVRRiyMVrIKxe3FUpC+zUwl3AghRBPQUym+uflf/PSfRwDoeMzRHP2/ibhyc9Nc2a6n1dYSuPNOgo8/DqkU2O34brwR3+jRqO14vFFbptfVoJWsxKgpMw/Ynaj5nVCU9HTDNvmrhkKh7T73qaeeol+/fmRmZpKZmcnAgQP5+OOPt/qYt99+mz59+uB0Otl7772ZOnXqXy1ZCCH+kkhZGZOPOa4h2Oz7r5s58ZOP212wMRIJguPHs2733Qk+8gikUrhOPZWOv/yC/+67Jdi0MYZhoFeXklz8NalfvmkINkpWHtbuewPpa53boXDzyCOPbPX+uro6hgwZst3P16lTJ+677z6+++47FixYwFFHHcWpp57K4sWLN3v+3LlzGTZsGJdddhkLFy5k6NChDB06lJ9//nlH3oYQQjSZ0rlzeW//AymZNQub18ux777NgHH3olos6S5tlzEMg/A777Bujz2oHjkSvboaW9++FHzyCQWTJmHbffd0lyiakJFKopWsIPnjbFJ//IARqgVFQc3rhG3vQ7H13h/Vl5PWrkfFMAxje092uVw888wzDB8+fJP7wuEwxx13HFVVVSxZsmSnC8rOzubBBx/ksssu2+S+c845h3A4zOTJkxuOHXzwwey77748/fTT2/X8wWAQn89HIBAgMzNzp+sUQrRvhq7zwwMPMn/MWAxNI6tPH4577x387WyQbGzuXGpuuKFhdWG1oAD/nXfivfRSFKuMfGhLjFgYrXQVesU60DXzoNWGmt8ZS0FXFHvzbpOxI5/fO/Qv79VXX+XCCy8kKyuLv/3tbw3Hw+EwQ4YMoaKiglmzZu1U0Zqm8fbbbxMOhxk4cOBmz5k3bx7XXXddo2NDhgxh0qRJW3zeeDxOPB5v+DoYDO5UfUIIsV6krIwvLhzO2ukzANj93HM4/JmnsbejP5gSixdTc8stRD/8EADF7Sbzxhvx3XCDTO1uQwzDwAhUopWtxqitaDiuuLyohV1Rc4pQWmAr5Q6FmzPPPJPa2lqGDRvGlClTOOKIIwiHwxx//PGUlZUxa9YsOnTosEMFLFq0iIEDBxKLxfB6vbz//vvssccemz23tLSUgoKCRscKCgooLS3d4vOPGzeOO+64Y4dqEkKILVk7fTqfX3gR0bIyrC4Xh0x4jN6XXNJuZv+k1qyh9rbbCL38Mug6qCreSy8l6447sBYVpbs80USMVAK9Yh1a2WqIRxuOK1l5WAq7omSmt9tpW3a4zfDyyy+nurqaU089lQ8++IBbb72V4uJiZs2aRdFO/MPu3bs3P/zwA4FAgHfeeYeLLrqIWbNmbTHg7KjRo0c3au0JBoN0luW9hRA7SE+lWHD7HSy8dxwYBtl77cUxb/4PfxP9rmrptIoKAvffT3DCBKhvDXeffjpZ99yDvZ3vkdVWGIaBEQ6gl69BrywBQzfvsFhR8zpiKeiC4mwdg8J3qkP0pptuorq6mqOPPprddtuNmTNn0qlTp50qwG6306NHDwD2339/5s+fz/jx43nmmWc2ObewsJCysrJGx8rKyijcyh4tDocDh6N5+wGFEG1bpKyMz4adT/EXXwDQ98r/Y9Aj/8HqcqW5suanVVQQeOgh6iZMwIhEAHAecQT+++7DMWBAmqsTTcFIpdCritHL12BE6hqOK+4M1IIuqDkdUCyta/zUDlV7+umnN/raZrORm5vLtdde2+j4e++9t9MF6breaIzMxgYOHMhnn33GyJEjG45Nnz59i2N0hBDiryqZM4cZ5wwjUlyM1eNh8PPP0uPcc9NdVrPTKis3hJpwGAD7AQeQdddduIYMadFdEmLbDMPACNWiV6xDryrZMEBYUVFzClHzO6N4s1rtz3mHwo3P52v09bBhw/7Si48ePZoTTjiBLl26UFdXx8SJE5k5cybTpk0DYPjw4XTs2JFx48YBcO211zJ48GAefvhhTjrpJN544w0WLFjAs88++5fqEEKIPzMMg0WPjufrG28yZ0P17ctx777d5mdD6cEggYceIvjIIxj165bZDziArNtvx3Xiia32w07UB5poCL2y2Aw0idiGO50eLPmdUfOKUKz29BXZRHYo3Lz44otN+uLl5eUMHz6ckpISfD4f/fr1Y9q0aRx77LEArF69GnWjTeYGDRrExIkTGTNmDLfccgs9e/Zk0qRJ7LXXXk1alxCifUsEg8y67HKWv/MuAD2Gncvhzz6DrQ3PAjLicYJPPUXgnnvQKysBsO+/vxlqTjpJQk0rZkTD6NWl6FUlGNGNFtpVLajZBah5nVAy/G3qZ7xD69y0BbLOjRBia6oWLWL6GWcR+OMPVJuNgY/8hz3/+Y829Yt/Y4amEX79dWpuvRVt1SoArL1747/3XtynndZm33dbZ8TC6FWl6NWljcbRoCgoWflYcjqg+PNQ1JY3jXtLmm2dGyGEaMt+f/VVvrzyH6SiUbydO3PM229S0EYHzRqGQWTSJGrHjiVZvyq8pWNHsm6/He/FF8sCfK2QEY+agaaqeNNAk5mDml2Iml2AYrWlr8hdRP71CiHavVQsxtyRo/j1GXP8XqfjjuWo119rk3tDGYZBdNo0aseMIfHddwCoWVn4Ro8m4+qrUdvBDLC2xEgmNnQ51dVsuKNRoMlvE+NodoSEGyFEuxZau5ZPTzuDigULQFHY/9ax9B87pk3uDRWbPZuaMWOIf/klAIrHQ+bIkWTecAOWrKz0Fid2iB4KoJeuRK8uhY1GlygZftTcIlR/AYqtfQWajUm4EUK0W8EVK5h81DHUrVyJIzuboye+Rucd2Py3tYjNmUPtbbcR+/xz84DDQeaIEfhuvhlLfn56ixPbzTB09Ooy9NJV5maV9RR3BmpOEWpOIYpDWt5Awo0Qop0K/PEHk48+ltCaNWT26MHJ06eRsdtu6S6rScW++ora228nNsPcAwubjYzLLsM3ZgzWjh3TW5zYboauoZetQStduWH6tqKg5nQw93fy+Lb6+PZIwo0Qot2p+fVXJh99LJGSErL69OHkz6bjaUP7IiV+/JHqG28kNn26ecBmM/d/Gj0aa9eu6S1ObLeGUFOyApL1i9ta7agFnbHkd0axO9NbYAsm4UYI0a5U/fQTk485jlhFBdl7783JMz7F1Ua6ZvRAgJpbb6VuwgRzU0ur1Qw1t9wioaYVMXQNvXwNWvFGocbuxNJxd9TcolY1fTtdJNwIIdqNiu+/Z8qxQ4hXV5O7336cNH0azpycdJf1lxmGQfj116m+4Qb0+v333Gefjf/++7G1sa62tswMNWvRipdvJtR0RNloUVuxdRJuhBDtQtVPPzHlmOOI19SQf9BBnPjJVBx+f7rL+ssSixdT9c9/Ep89GwBrr17kTJiAq36ld9HybTHUFHU3Vw+WULPDJNwIIdq8miVLmLw+2AwYwEmffoK9la9QbiQSBO67j9q774ZkEsXlwjd2LL7rrkNxONJdntgOEmqaj4QbIUSbFli2jMlHH0usooLc/fbjxE+mtvpgE1+wgMrLLiP5008AuE45hZwJE7B26ZLmysT2MFJJc0xN6UpIJsyDEmqalIQbIUSbVbdqFZOPOoZIcTHZe+3FiZ9+gqMVL1anR6PU3n47wYceAl1Hzc0l+7HH8Jx7ruwB1QoYiRha6Sr0stWga+ZBCTXNQsKNEKJNChcXm+vYrF6Nr1cvTprxaaveTiE2axaV//d/pH7/HQDPueeS/dhjWPLy0lyZ2BY9FEAvW41eVdywmrDi8qIWdUfNLpRQ0wwk3Agh2pz1wSa4bBkZ3bpx8mfTcRcUpLusnaLV1FBz442E/vtfACwdOpDz9NO4//a3NFcmtsbQNXMTy7LVGOFAw3HFm4WlqDtKVp60tjUjCTdCiDalbtWqhmDj6dSJUz6fgbdTp3SXtcMMwyDy9ttUXXNNw/Ru75VX4r/vPtkHqoUyDAMjUodeWYxeuQ5SSfMORTE3sCzogprR+mfotQYSboQQbUbt778z5ZjjCK1Z09Bi0xq3VEiuXEn11VcTnTwZAFufPuQ8+yzOww5Lc2Vic4xYBL2qGK2yBGLhDXfYnVjyO6Pmd0KxyQy2XUnCjRCiTaj++WcmH3Mc0bIyc0uFGZ/iaWX7JxnxOIGHHiJwzz0Y0SjYbPhGjybrlltkencLYyTi6NUl6JUljbqdUFQUfx6WnCIUfx6KIuNp0kHCjRCi1av47jumHHc88epqcvbZh5M+/aTVbakQnTaNqquvJvXHHwA4Bg8m58knse+xR5orE+sZqSR6TZkZaIJVje5TfDnmztz+AhSrfLSmm/wEhBCtWum8eXx8/IkkgkHyBwzgxI+ntKqVh1Nr1lA9ahSRd98FwFJYiP/hh/EMGyYDTlsAQ0uh15SjV5di1FaCoTfcp3h95s7cOR2k26mFkXAjhGi1SufNY+qQE0jW1dHh8MM5fvKH2DMy0l3WdjESCYKPPELtnXdiRCJgsZB5zTVk3X47aitfZLC12xBoyjBqKxoFGpweLLlFZqBxutNXZAth6DqpWIRUNFp/HSEVi2B1uvH36Ju2uiTcCCFapbKvv24INkVHHMHxkz/E5vGku6ztEv3sM6pGjCD1228AOA47jJwnnsC+995prqz9MuJRM9DUlmMEqxvWowHA6UbN7oCaU4ji8rbKFjXDMDA0DT2ZQE8l0ZIJ9GQSPZkwj+sahq5haBqGrmPoOhgGhqFj6AYYOoamoaU2PE5LJjBSqc2+nsPnl3AjhBA7ouybb1plsEmtXUv19dcTeestANT8fLIfegjPBRe0yg/M1swwDIxoyOxuqinHiNQ1PsHpNqdvZxeiuDNazM9nQ0tJhFQsSioWrQ8oKfRUCl1LYaRS6Klk46+1VOPA1oQUVcXqdGN1ubE43VhdLuze9LY+SrgRQrQq5d9+y9TjjicRDLaaYKPV1hK8/36C48ebs6BUlYwRI8i6805Zs2YXagg0VaXo1aWNp20DSoYfNSsf1Z8HTk9aA40Wj5MIBUmEgiRDQRKhAMlwCC0e+2tPrCioNjsWmw3Vake12VAsFlTVgmKxoDRcq6AoKIpqfh8UBcViwWIzH2M+1m5+bbe3mPC3noQbIUSrUT5/PlPqg02HwYNbfLDRYzHqJkwgcO+96DU1ADgOOYTsCRNw7LtveotrR4xYGL2yBK3qT+vQKCpKVi6qvwA1Kw/FZt/ltWmJhBlc6oINYSYRCqIn4lt8jKKqWF1urE43FqcLi82OYrWiWqyoVhuKxYpq3XBRLLb622aQaWlBpDlIuBFCtApVP/3E1CEnkAgE6HD44Zww5aMWG2yMVIrQK69Qe9ttaGvXAmDbYw/848bhOuWUdvHhkm5GIma20FT9eR0aBSUrz+xyysrfpdO2tUSCeLCGeKCGRKCGeLCGVDSyxfOtLjd2byY2byb2DB82TwY2lxvV7pB/Q9sg4UYI0eLV/vYbU44dQrymhoJBg1pssDEMg8gHH1B7yy0kf/0VAEvnzmTdeSfeCy9EsVjSXGHbZhgGRm0FWtlqjEDlRvco9evQdED156NYbc1eRyoSIh4MkKirJREMEK+rRYtFN3u+1eU2A8z6S0YmNk8mqqyXs9PkOyeEaNHqVq0yVx4uLyd3v/3MYOP1prusTcRmz6bmX/8iPm8eAGp2Nr5bbiFjxAhUpzPN1bVtRjKBXrEOrXw1xDcECMWbVb8OTWGzrENj6DqpaIREONioWykZqsPQtc0+xur24vBl4cj04/D5sWdmYUlDd1hzMZIRjHAZGDqqf/e01SHhRgjRYoVLSph89LGE164lq08fTpz2MY4WNgA3/v331N56K9EpUwBQXC4yR43Cd9NNqD5fmqtr2/RwEL1sFXplyYa1aCxW1LxOWAo6ozj/euueoWkkIyGS4RDJcB3JaJhUJEwyEiYVi2xxBpKiqtgzfPWXLOyZ5u3mDDKGFodYECMeAC0OetIMWXrKvGCAYgXVgqJaQbWCYgHDPMfQU6BroCdBS4AWx0jFzOdKxcznT5kXQ4uZt5NhjEgFRrgMI1wOCXPWmdppEI6hrzfbe90WCTdCiBYpWlnJlGOHEFy2zNwEc8anuPLy0l1Wg9i8eQTuvpvo1KnmAYuFjCuuwHfrrVg7dEhvcW2YYRgYNeVopSsx6moajivuTHPX7ZwOO9X9pyeTGw3oDZAM1ZEMh0hFw1t9nKKq5liYjbqVbBmZ2Fwec8ZREzJiteg1yzFql2PUrjBvB1dhRGsgHoDU5ru9djmrywxO6Swhra8uhBCbEauuZuqQE6hZvBh3UREnfza9RWyCaRgGsVmzCNx1F7HPPzcPqiqec88l67bbsPXqld4C2zAjlUSvWItWtnHXk4KaXYBa2BXFm7Vdg2wNw0CLRYkHa4kHqokHa0nUBbY4HgZAsVixezOwub1YPV5sLg9Wtweb24vF4WyWwb2GoWNUL0UvWYBeMh+9eAFG3drteKQCjgywulFUixkyVKvZYqNgtnBpyfrWGg1DT9W34ljMVhyLDRQVLA4UqwMsTrA6UKxOsDig/lqxmsexulDceSieAhRPPoonH2zpX+hQwo0QokWJVlQw5dghVP34I87cXE6e8SmZ3bqluyxzTM2YMcS//NI8YLXivegifP/6F7YePdJbXBtlGAZGqBa9fA16VemGrierDTW/M5b8LiiOLY9nMgwDLR4jHjBnKMWD5iwlbQvTrC0OZ0PLi92babbIeDKwNPPsJENPmS0xlb9iVP6KXvkretkPZmvMnyjeDihZ3VGyuqH6u6P4dkNx54LDh+LwgSNDdiJHwo0QogWJlJYy+ehjqfnlF1wFBZz82XT8fdO3hDtAfP58asaMIfbpp+YBh4OMyy7Dd9NNWLt2TWttbZWRSqJXFqOXr8GIhhqOK+6M+q6nos12PelainhtNbGaKuK1VcS3FGQUBbs3s35Arx9Hpg+bN7PZB/YayciG7qTaFRi1y83b1b+b41r+zOpCLdwPtcMB5qVwXxR769g7Ld0k3AghWoTwunV8dNQxBH7/HXdREad8PoOs3r3TVk9i0SJqb72VyKRJ5gGrlYzLL8c3ZgzWFtBF1hbpkboNA4TXzzZSVXPGU35nFI+vUQuKnkoRrSonVlNBrLqKeLBm0wG+9UHGnpmFw+fHkWnOUFKbYVq+YRiQqDMH2AbXYNQsR98oxBAu3fKDbW7UnD4ouX1Rc/ui5u2FkrsHiqV5p623VWkNN+PGjeO9995jyZIluFwuBg0axP3330/vrfxCe+mll7jkkksaHXM4HMRif3FJaiFE2tStWsXko44huHw53i5dOPnzGfh2T8800uTKldTeeivh114zPyhVFc+FF5J1663YundPS01tmaHr6DVl6GWrGw8QdnlR8zuj5hY1rEtjGAaJugCRilKilWVEqysb79iN2bXkzM7FmZWDw5eNPdOHatnxjzrDMCAVg2QIIxGGZAQjUQfRaoxoFUa0GiNaaX4dKccImzOGtjmo15ltdidldUPJ6o6a1Q0lpzeKr4t0JzWhtIabWbNmMWLECA488EBSqRS33HILxx13HL/88guerSzQlZmZyW/1u+kCaR+4JITYebW//caU444ntHo1md27c/LnM8hIQ3ePVlFB7T33UPfUU5BIAOA+80yy7rwTe5q7xtoawzAwIkGz66myBFLm9xtFMbdCKOiCkuFHURR0TSNaUUKkvIRweckmA3+tLg+u3Hyc/lyc/lysLvdmPxMMw4BYNUZdsXkJFWPUrcMIlWDEAhjJECTC5tTmRAiSEXPQ7c6wZ6B4i1D83VCzupshZn2gcWbt3HOKHZLWcPPJJ580+vqll14iPz+f7777jsMPP3yLj1MUhcLCwuYuTwjRzEq+/JJpQ08nXl2Nr1cvTvl8xi6fFaWHwwQffpjAQw9h1JlrdDiPPhr/fffhOOCAXVpLW2ckYuiVJeiV6xqNpcHmQM3vhCW/M4rdiRaPE163inB5MdHKMgxtQ8hQVBVndh7uvEJceYXY3I1n5hixAFrlrxg1f2AEVqMHV2MEVmME10By69O6t8jmBpsHxeZBceWAOwfFmY3izqn/Oq9+plABijsfxeba2W+RaCItasxNIGCODM/Ozt7qeaFQiK5du6LrOv379+fee+9lzz333Oy58XiceHzDQK1gMNh0BQshdtrSN9/ki+EXoycS5A8YwPEfTsKVn7/LXt/QdcKvvUbN6NFoxcUA2Pv3x3/ffbiOPXaX1dHWGakkenUZelUxRrB6wx2KiurPR83riOLLQYvFCBavIVy2jlh1ZaPnsDicuPOL8OR3wJmTh2qxmq0/devQl81Br1xcP9NoCUaoeOsFufNQMopQvEWo9de4slHsHnMKs80Ddg+KzQt2D9jc0l3UCimGsYXlFXcxXdf529/+Rm1tLXPmzNniefPmzeOPP/6gX79+BAIBHnroIWbPns3ixYvp1KnTJufffvvt3HHHHZscDwQCZGZmNul7EEJsm2EY/PjAg3zzr9EA7HbaUI567VVsbvcuqyH21VdUjxxJYsECAKzduuEfNw73WWc1+cJr7ZGhaeYeT1XFGLUVjQb5Kt4sM9D4C0hGI0TKS4iUFxMP1DR6DntmFu78Dnjyi7BnZkG4DL3sR/Tyn9DLF6FX/AyxGjZHyehUP45lN1RfZ5TMLuaYloxO5totolUKBoP4fL7t+vxuMeHmH//4Bx9//DFz5szZbEjZkmQySd++fRk2bBh33XXXJvdvruWmc+fOEm6ESAM9lWLOVVfz6zPPArD3yGs5+KEHm2XmyuakVq+m+sYbibz1FgBKRgZZY8aQcc01sv/TX2ToZqDRq0rRays2zHaifnBwTgcUfz6xcLg+0JSY2xdsxOnPxVPQEVeOH0toBXrpQvSyHzDKfsAIlWz6oqoNJacXat6eqLl7mDONcvqgOOR3e1u0I+GmRXRLXXXVVUyePJnZs2fvULABsNls7LfffixdunSz9zscDhwOSepCpFusuprPzh3G2ukzQFEY9Ogj7H3N1bvktQ3DIPTii1SPHGmOq1EUvJdfjv+uu7AUFOySGtoiQ0thBCrRq0vRaxoHGuxOlOxCNHcm8VCYSEkJscU//Wn8jAWX34fHEcGRKoWar9GXL0KrWYr2p1lQKCpKdi/Ugn1Q8/dGzdsbJbc3ikV+v4tNpTXcGIbB1Vdfzfvvv8/MmTPpthOrkGqaxqJFizjxxBOboUIhRFOo+uknpg09nboVK7C63Rz1+qt0Gzp0l7x2qrSUqv/7P6IffQSAY9Agcp58Evs+++yS129rjFQSvaYcvaYMI1AJ+kYhxO5Ez8gmrliJh0JEly1Fi9cv02EYqFoAp16JyxrEnipDrVuJ8ccKwGCTeUnufHMBu4J9UQv3NcOM/a9vhCnah7SGmxEjRjBx4kQ++OADMjIyKC01Fzjy+Xy4XOZo8+HDh9OxY0fGjRsHwJ133snBBx9Mjx49qK2t5cEHH2TVqlVcfvnlaXsfQogtW/b228y8+FJSkQgZ3boxZNJ75PTrt0teO/zuu1RdeSV6VRXY7fjvuovM66/fqY0V2zMjETMDTXUZRl11ozE0KaudhNVFPKUTrw2QKi7BogWwJKtwJsqwJsux61VYYsUoqcbdUA3P4s5Fzetntsjk72UGGa+0qImdl9Zw89RTTwFwxBFHNDr+4osvcvHFFwOwevVq1I0G+NXU1HDFFVdQWlqK3+9n//33Z+7cueyxxx67qmwhxHbQNY35Y8byw333A9Dp2GM4+n8TcebkNPtra5WVVI8cSfj11wGw7bMPea++in3vvZv9tdsKIxZGry5HrynFCJkzWQ3DQE/UkUwFScVr0cKlEC3HkqrBmarFk6rFooW2/KSKBcXfvX58TB/UnL7mbU/L2e1dtA0tZkDxrrIjA5KEEDsnXlPDZ+edz5pPpgHQ74brGTDuXlRr8/49ZRgG4ddfp3rUKPTKSlBVfP/6F1m33YZib959g1o7Q9cwgtVoNSXo6xZi1C6DRDVGvBo9XgXJWpREDYqR3PaTWV0oGR1R/D1Qc3qaY2X8PVD83WSMjNhprW5AsRCi7ahevJhpp55GcNkyLE4ng//7HD3PO6/ZXze5YgVV//gHsWlmoLLtvTe5zz2HY8CAZn/t1kqPhdBWfo2+bgFG1a8YoZUQLQYj1ei8jSfHGyjoNh+4ClB9nbD6d0PN6ly/dkxHlIwic4dqWTlepJGEGyFEk1n+3nt8MfxiUuEw3q5dGfL+u+Tut1+zvqaRShEcP57asWMxolFwOMi69VZ8N96IYpNNB9cz9BRG1e9oJQvR181HL/8ZQqs2CTIAuuoi6ehIypaLZs1C8XbAkt0Ne35PnEV9sHmzdv0bEGIHSLgRQvxlhq6z4Lbb+f7uewAoOvJIjnnrDVy5uc36uolFi6i89NKGxficRxxBzjPPYOvVq1lftzUwwuX168QsRCtZiFH+E2ibbjC8PsgkHZ0bri3+3XDlFeDy5+H052CxS1eSaF0k3Agh/pJ4IMDnF1zI6slTgPqF+R58oFnH1xiJBLX33kvg3nshmUTx+ch+6CG8l13WbrtDDEPHKP8JbcVnaCs/w6j8dZNzdNVJ0tFpo0tHNGsOFpcbV04Bmbn5OHPysTpkQUPRukm4EULstMAff/DJ34ZSu2QJFqeTw599ml4XXtisrxmfP5/KSy8l+fPPALhOPZWcJ5/EWlTUrK/bEhm6hr72K7SlU9FWfg6Rig33oaA5CknYu5BwdiHp7ErKlgeKij3Dh9OfQ+ZGO2kL0ZZIuBFC7JS106cz/exzSdTW4unYkSGT3iOvGXfR1kMham+7jeCjj4Kuo+blkfP447jPPrvdtdboVb+hLXmP1O8fQLis4bihOom7exFz9yXm7othMRe9s9gduPI7mDtp5+RjscnMMdG2SbgRQuwQwzD4+fEJzLvuegxNI//ggznuvXfwdOjQbK8ZnjSJ6quvRlu7FgDPeeeRPX48lmYe09OSGKEStKVTSf02CaPi54bjusVD1NOPmGcvEq7uoJi/1p2ZWbgKO+HOK8SeIbOXRPsi4UYIsd20eJw5I65iyX9fAKDXRcM57OmnsDbTppOpVauouuYaoh9+CJi7d2c/8QTuE05oltdraYxQKdqyj9H+mIJe+t2G44qFuLsvEW9/4p6+oFixWa1k+rNxdeqGK68DqkV+vYv2S/71CyG2S2jtWqafeTbl33yDoqoc/OAD7D1qZLO0CBipFMFHH6X2ttswIhGwWvHdeCO+MWNQ3W17fEhDoFk6Fb1kQaP7ku7uRNz9iHr3xbB4sKgKPl8WGd16Y8vvKK0zQtSTcCOE2KbimTOZcc4wouXl2LOyOPp/r9Pl+OOb5bXi339P1eWXk1i4EADHYYeR89RT2Pfcs1leryUwQmX1gWYKesl3bLTrEqmMXkQcfYl69ka3+lAAl9OOt7Aj7m59UJ2ymaQQfybhRgixRYZhsOiRR/n6ppsxNI2cffbh2Hffxrf77k3+Wno4bA4YfuQRc8Cw34//wQfxXnIJiqpu+wlaEcMwMKp/R1vxGfrKz9BLF7JxoNH9exJx7kHY3gvdmgWAzaKSmeElY7feWAs6oaiy+acQWyLhRgixWclQiFmXX8GyN98CoOcF53PYM09ja4Zuoeinn1J15ZWkVq4EwH3OOeSMH4+loO3sDG0ko+jF36Kt+gJ9xWcYdWsbn5C/L/HM/QhondHUDAAUwG234s3JxbVbb1RfrnQ9CbEdJNwIITZRtWgRM84ZRu2vv6JarQx85D/sOeKfTf7Bmvj1V2puvpnoRx8BYOnShZwnn8R90klN+jrpYOgaRsXPaGu+Ql8zx+xu0hMbTrDYUTsdQip7f4J6R6KhlNl4o4JVVfA47WR06IS1Uw9Ud0ba3ocQrZGEGyFEA8Mw+PXZZ5k78jq0WAx3hw4c89YbdDj00CZ9Ha2sjNrbb6fuuedA08BiIeOqq/DffTeq19ukr7WrGIaOUbUEfe3XaOu+Ri/+FuKBRuco3iLULoei5x9MyOhAqKwcPZgAzP2dnDYLXpcDV8fdsHbohuJwpeGdCNH6SbgRQgDmNgqzr/g/lr/9DgCdjx/CkS+/hCs/v8leQ49ECD7yCIH77sMIhQBzhWH/ffdh79OnyV5nV9GDa9FXzURb8yX6um82CTPYM1A7DcTS6RD0vP2JxmzUFa8hsaYGMLulLIqC22HF43HhKOqOWtAFRRbZE+IvkXAjhKD822+Zce551K1YgWq1ctC4e+l33agmG8hraBqhV16hdswYtOJiAOwHHkj2Qw/hPPzwJnmNXcHQ4ujrvkFbNRt99UyMmmWNT7C5UTsciNrpYNSig0nYOhCuLCdcXkJyXeO9nlw2C26HDZcvC0tBF9TcIhRZm0aIJiH/JwnRjq1fbfjr629AT6XI2G03jn5jIgUDBjTZa0Q//ZTqG28k+dNPAFh3242scePwnH12q5gFZSRCaKtmoi+fhrbyC0iGN9ypWFAL90PtOthsncnqSay6mkhFKZHFa9ATSxs9l92q4rJbcTvt2PI6ouZ3RvHI6sFCNDUJN0K0U3+eDdXtjNMZ/PxzOLKymuT5Ez/9RPWNNxL79FMA1KwsfGPGkHnVVSgOR5O8RnMxotVoK2agLZuGvnYOaBsNBHbnY+l6BJaug1E6HUIiliJUUUZkeSnxwCeNnkdRwGmz4rJZcNqsWDKyUHOLzFYaq20Xvysh2g8JN0K0QzW//MKnZ5xF7ZIlqFYrBz/0IHtdc3WTtCBo5eXUjB1L6PnnQdfBZiPzqqvwjRmDJTu7CapvHnrdOvTln5qBpmQ+GHrDfYpvNyy7H4+l+3HoWX2IVpUTrSglMmcWejLR6HlsVgsOq4rTZsFhtaA4XKi5RVhyi1BcrXOwtBCtjYQbIdqZpf/7H7OuuJJUOIy7qIhj336TwkGD/vLzGvE4wfHjqb37boy6OgDcZ52Ff9w4bM2w6F9TMEIlpH7/CG3pFIzynxrdp+TtiaX7cajdhpBQc6irKiO6vJR4YErj81QVp92G02LOdrKoKlisqP4C1NwOKJk50u0kxC4m4UaIdkJPpfj6pptZ9MijAHQ8+miOnvjaX54NZRgGkffeo+amm0gtXw6A/YADyH7kEZxNPIW8KRixWrSlU9F+/9Ccrt2wMrCCWnQAlu7HQ6fBRONWAhWlRH/4bdPWGacTp0XBqZrjaBRFAUVFycrDktsBJStPVhAWIo0k3AjRDsRraphx7jDWfjodgP1uGc0Bd96BavlrH8CxWbOo+de/iH/9NQCWoiL848bhueCCFjVY2DAM9NLv0H58EW35dNCTDfepRQei9jiFVO5BhENJIhVlJOYvbPR4xWLB5XbjQMdpMczWGagPNLlmK40/X8bRCNFCSLgRoo2rWbKEaX8bSuCPP7C63Rz58ot0P/PMv/SciZ9+omb0aKJTpwKguN1kXn89vptvRvW0nI0cDS2B9sdkUj++hFGxqOG4ktsXdfeTSPgHUBfSiJSXoq9b1Oixdpcbh92G00hitygoigEoYLGhZuWhZheg+HJl+rYQLZD8XylEG7b644/57NzzSASDeLt0YcgH75O77747/XzJlSupHTuW8Ouvg2GA1UrGFVfgu/VWrIWFTVf4X2SEy0ktfoPUz69BpMI8aLGj7H4K8YKjCcfcxKoqoXJlw2NUqw2n14tTBYcer2+d0QAVHC5Ufz5qVj5Khr9FtUoJITYl4UaINsgwDH588CG++ddoMAwKDz2U4959e6fH12gVFdTefTd1Tz0FSbNLx33OOfjvvhtbjx5NWfpOMwwDvWQB2qJX0JZ9Arq5pQHufLSup1Dn2IdoXRyKw4C5Vo3N7cHpduNCw6bFUZT67ipVRfH6zO6mrHxweWRQsBCtiIQbIdqYRF0dMy+5lBXvvgdAn8sv49AnJmCx7/iS/npdHcH//IfAQw81bJfgPPZY/OPG4dh//yate2cZqRjab++T+ukVjKolG+7I2Zto7hEE9M4YCQUScQAcmVm4XE6cegKrlgA9ap6vqigZ2ajZ9eNn7M40vBshRFOQcCNEG1KzZAmfnn6muZu3zcag8Y+wx9//vsOtDkYqRd0zz1B7xx3oFWa3jn3//fHfdx+uY45pjtJ3mBEPklr0GqkfX4BolXnQ6kTrcARBZ39iun/9fpRYXW48Xi8uI4FVT0HSDGqNBwTnoVhlTych2gIJN0K0ESvef58vLrqEZF0d7qIijnv3bQoOPniHnyc6bRrV111H8pdfALD26IH/nntwn3lmixhrYoTLSf34AqlFr28IKZ4OxAuPo5ae6DhAN2c4eXxZuFQDuxZH0SLmuRarDAgWoo2T/6uFaOX0VIr5Y2/lh/vuB6DD4MEc8+b/cBcU7NDzJH79lZrrryf68ccAqDk5ZN15JxlXXIFiS+8UZ3Mq90K0xRPRfv8IdHPdGSOjG+Hso6mz9ADMae02pwuvy4GLJCpx0AHVYg4Izlm/Bk36Q5oQovlIuBGiFYuUlfHZsPMp/uILAPpdN4qD7huHZQfCiFZbS+2tt1L35JOgaeZ2CVdfjW/sWCxNtM/UzjLiQXM8zeL/YVT91nA8ldmbOu9hxJy9zA2cFAWX243XYtRP204BCoovFzWng9lKIy00QrQb8n+7EK1UyZw5zDj7XCIlJVg9Hgb/9zl6nHPOdj/e0HXCr75K9Y03NoyrcZ16KtkPPoitZ8/mKnvbda2f9fTLW2hLJ0MqZh5XHcR9/Qm59yfp7AqA1W7HY7fgtipYVAVQUFxe1LyOZiuNDAoWol2ScCNEK2MYBoseeZSvb7oZQ9PI6tuX4959G3/fvtv9HIkff6RqxAjiX30FgK1PH7Iffzytg4WNcDmpJe+h/foWRu2KhuO6pwsh9wFEPPtiWFwoqorbYcNjVTdsfWCzmy00uR1RPZlpew9CiJZBwo0QrUgiGGTmpZc1TPPuMexcDn/2GWze7dttWg8GqRk7lroJE0DXUTwesm69lcyRI1F2Yqr4X2Uko2grP0P7bRL6qplgaOZxi4uE/wDqHP1IOrqComC1WvHazWCjKoo5MDi7wGyhycxGUWQcjRDCJOFGiFaicuFCpp91DsFly1BtNgY+8h/2/Oc/tnuad+SDD6gaMQJt3TrA3LE7++GHsXbu3Jxlb8LQkuhrv0L7/UO05Z9CMtxwn+brQ8i1H1HXHhiq2aXkslnxOK04rBYUVUXJypfNKYUQW5XWcDNu3Djee+89lixZgsvlYtCgQdx///307t17q497++23GTt2LCtXrqRnz57cf//9nHjiibuoaiF2LcMw+PWZZ5g78jq0eBxvly4c89YbFAwYsF2PT5WUUH311UTefRcA6+67k/Pkk7iOO645y27E0DX04m/M3biXfgyx6g33uQuJ+Q4gZO1Dym7O8LKoCh6HDbfDinX9asG5HVGzC1FsshaNEGLr0hpuZs2axYgRIzjwwANJpVLccsstHHfccfzyyy94trD53ty5cxk2bBjjxo3j5JNPZuLEiQwdOpTvv/+evfbaaxe/AyGaV6Kujtn/dyXL3ngTgK6nnMwRL72IMzt7m481dJ3Q889TfdNNGIEAWCxk3nADWbfdhupyNXfp9YFmPtrSKWjLPt6w0B5gOPwksw+iztqbhK2TOeMJcNoseBw2nDYLisOFmluEJbcIxbV93W5CCAGgGIZhpLuI9SoqKsjPz2fWrFkcfvjhmz3nnHPOIRwOM3ny5IZjBx98MPvuuy9PP/30JufH43Hi8XjD18FgkM6dOxMIBMjMlIGHouWqXLiQGeeeR+D331EsFgbcN45+11+3Xd1QicWLqfr734nPmQOA/cADyX3uOez77NPcZaNX/Ya25D1Sv02CSPmGO+yZJHMPImzrTdTSGRSzS8mqKrgdNtx2K1abDTW7EDWvCCUjW/ZzEkI0CAaD+Hy+7fr8blFjbgKBAADZW/mrdN68eVx33XWNjg0ZMoRJkyZt9vxx48Zxxx13NFmNQjS3VCzG93fdzQ/3P4ChaXg6deKYN/9H4aBB23ysHokQuOsuAg89BKkUittN1j33kHn11SiW5hufYkQq0f74iNSS9zAqft5w3J5BKvsgQtaexOy7NQQaRQG33YrbYcNutaJm1a9H48+X9WiEEH9Zi/ktous6I0eO5JBDDtlq91JpaSkFf1p5taCggNLS0s2eP3r06EZhaH3LjRAtUem8ecy69HJql5gbQHY/8wwOfepJXLm523xsZOpUqkeMILVyJWCuWZPz2GNYu3Rpllr1umL05dPQln+KXvwtGDoAhmIlmbUPYefexFy9QTF/zSiKOTjYZbfidNixZOej+gtRsmQLBCFE02oxv1FGjBjBzz//zJz6ZvSm4nA4cDgcTfqcQjS1ZDjMt/8ew8+PPQ6GgauggEOfnED300/f5mNTpaVUX3MNkbffBsDSuTM5jz+O+9RTm7RGw9AxKn9FWzUTbfmnGOU/NX4Pzi5EvP2JevfFsJhj5lRFwWW34LLbcGb5UTNzUDOzUTJzZAsEIUSzaRHh5qqrrmLy5MnMnj2bTp06bfXcwsJCysrKGh0rKyujsLCwOUsUotkUz5rFrEsvJ7h8OQC9LhrOwP88vM1Bw4ZhmCsMjxyJXlNjDhgeNcocMLyd695six5ci772K/Q1c9DWzG08ywmFhHM34p69iHn2QrNlowAOmwWHzYLT48WeV4TFl4OS4ZfWGSHELpPW3zaGYXD11Vfz/vvvM3PmTLp167bNxwwcOJDPPvuMkSNHNhybPn06AwcObMZKhWh6yXCYb2/5t9laA3g7d+awZ5+my/HHb/OxqdWrqbrySqKffAKAvX9/cv77Xxz77vuX6zLCFaR+n4S25D2MqiWN7tMVBwlXd2KePYm790C3ZmC3qLhtFpw2Kw5fFpbsQnMvJ5nhJIRIk7SGmxEjRjBx4kQ++OADMjIyGsbN+Hw+XPVTVYcPH07Hjh0ZN24cANdeey2DBw/m4Ycf5qSTTuKNN95gwYIFPPvss2l7H0LsqJIvv2TmJZcRXLYMgD5XXM7Ahx7Evo0ZAIamUffss9TcdBNGKAQOB1m3347vhhtQrDv/v7ORiqEtn47223voq2dvGD+DStLZmbirJ3FXL5LOLlgsVpw2C36bFYfDgSUrF9WXg5qVh+Jo/inmQgixLWkNN0899RQARxxxRKPjL774IhdffDEAq1evRt2ob37QoEFMnDiRMWPGcMstt9CzZ08mTZoka9yIViEZCjF/7K0sGv8YGAaeTp0Y/PyzdB4yZJuPjU6fTvWNN5L88UcAHIMGkfPf/2Lv02en6zGiVaR+epnUT69APNBwPOHoQjTjAKLefTAsbnP9GZsFp82GLSsb1ZeL4stF8WTKdG0hRIvTota52RV2ZJ68EE1p5Ycf8tVV1xBaswaAPpddysEPP4TD59vq4xKLFlFz000NXVCKz4f/zjvJGDFip6d368G1pH54Hu2XNxt23U5Zs4hm7E/Uuz+6PQ+XvX5mk9OBJSsPxZ+PmpWLYpUVgoUQu16rXedGiLaobvVq5l5zLSs/+BCAjN1249Cnntjm2JrUunXU3nYboRdfBF0Hq5WMESPIGjsWS07OTtWi1ywntWAC2u8fNmxSmXB0Ipx1JDHPXjjtNnz1gcaaU4iaW7+YnsxsEkK0IhJuhGgmeirFovGPseC220mFw6hWK/1uuJ7+Y8dgc7u3+DitpobA/fdTN348RsxsVXGfeSb+ceOw9eixc7UE15Ka/zjakncbQk3c1ZNQ1pGk3D3xuuxkO2zm+JncInNAsMxuEkK0UvLbS4hmUPLll8wZcTXVixYBUHjIIRz29JNkb2VsmB6NUvf44wTuu8+c2o05rsb/4IM4t2N14s0xwuUkF0xAW/w/0FMAxNx7EPIfg+HpSobThtvpwFLQBUthVxkQLIRoEyTcCNGEImVlfHPTzfz+yqsAOLKzOfiB++h9ySVb7Nox4nFCL79M7Z13oq1bB4Btzz3xjxuH6+STd2rArhGpJPnd06QWvYqiJwCIu3pQl308qrc7PqcNh8uJtUM31ILOMo5GCNGmSLgRognoqRS/PPU088eMJREMgqLQ5/LLOOjee7a4dYIeDFL37LME//MftJISACxduuC/8048F1ywU4OFjUgliflPoi2eiKLHUYCEoyuhnOOxZvUh22nH5nJj6dANNa9Ts+43JYQQ6SLhRoi/qPzbb/ny7/+kcuFCAHL3359Dn3icggEDNnu+Vl5O8LHHqHviCfTaWgAsHTuSecMNZPz976hO5w7XYESriM17DGPJmxuFms5Eco7D7t+bHKcd1eXBUtTdHCQsA4SFEG2YhBshdlK8tpZv/z2GX556GgwDe1YWB917N33/7/9Q/9QiYhgG8a++ou7ZZwm/9RbE4wBYe/fGd/PNeM8/H8W+411DeqSK2NxH4fe3Nwo1nYjlHo8jpx/ZdiuKy4ul4+6oOYUoioQaIUTbJ+FGiB1kGAbL3nyTeaOuJ1K/qnbPCy9g4EMP4srPb3SuVlND+NVXqXv2WZKLFzcctx94IL7Ro3GfeupOtaLo4UqiXz2CsvRdFN0MSglHJ5J5x+PM3Qe/zYriycRS1B3FXyAL7Qkh2hUJN0LsgNDatcy6/ArWTvsUAF+vXhz29JN0PPLIRufpdXXU3n03dY8/jhGNAqC43XjOPZeMK6/EfuCBOxU4tJo1RL9+EmXF+6j1oSbp6Eiy4ATcufvislhQMnPMUJOZLaFGCNEuSbgRYjste+stZl/5DxK1tVgcDvb79y3se9ONWByOhnMMXSf8+uvU3HQTWn2rjq1fPzKuvBLv+eejbmM14s3RtRTxxR+S+nkilurvsWAuKp50dEQrOAFn7n44rRZUfwFqUTdUz46/RlthGAbJVIJkMkEylURLJUlpKVKpJJqWIpVKoekpdE1D0zV0XSORShKJJkEBRVFQFRVFUVAUFYfdjsfpxOFwYLXasdns2Ky2+ms7Vqut0fYwhmGQ0nRSKY2UprO5BeCTKY1oPEkskSQaTxKNJ4jGktRFYuYlHKMuEqcuEqO2LkJNXYSaoHldHQgTjSdJaRrJ+tdIaTq6rmO1WrBaVKwWC7b62067DZfDhtNRf13/tcthx+mw4bRbcTnseFx2/Blu/Jke/Blusn0ecnweuhXlYrFIV6ZofSTcCLEN8UCAr66+hj9efQ2AvAMP5KhXXyard+/G5y1YQPU11xCfNw8Aa48eZD/yCK6TTtqpFpRk5Qqi372AunIqlmR1w/+sCdfuGPlH4szdD4snEzWvozlI2ObY6vO1VrquE0/EiMUi5iUeJZGMk0jE6q/jJJNxkskE8WSSykCM0uooJVVRakIJQpEkddEUoWiSUDRFOJYkEteIxTUi8RTxpL7NGmxWFbtVxW5TsagKmmag6fWXhts6ehvbzCbD4+SgPXZjwF7dOHivbgzYqxv52bJtjWj5ZG8pIbai5Msv+fzCiwitWoWiquz371voP3YMFput4ZzkypUE7riD0Msvg2GgeL1kjR1L5rXXojh2LHCkonVEf3wH449JWAOLUOpbaXTVTTLrQCwFh2HP7IIlpwNqficUj6/Zup40TSOZjGMYBrphtkKYFx29/trQ668Nw2z1sFiwqBZU1bxWFGXDuesfq+tmK8r6lhStvnUlmdyo1SVBKpUkHo8RT0QbWkCSKZ3KQIzy2hgVteuv45TVRCmriVFWEyWltfxfaRZVwWFTsdssDaHJ5bDidlhwOSzmvl4OC16XFa/Lhs/jwOd14vM68bqcOBw2HDYHTocdh92Bw+7AanVgtTmwWB1gKCRTWkPrUCyRJBpLNGoxisU33BeKxOtbiMLmdV2Esqog0Xhyk9pzs7x0Kcw2LwXmdcf8LPL9GeT5M8j3Z5Dj82C1yjIDomnJ3lJC/EV6KsV3d97F93ffA4ZBRrduHPXaKxRutFJwqqSEwD33UPfss5A0PwQ8F16I/777sBYVbfdrackEkT++IvXLW9jKv8SqhxvuS7q6Y+Qegj3/IDy5HbHkFKFk5aKoTfPBkUwmqAsFqAvVEomGicUjDS0kiWS8SV5je8USGtV1caqDcaqDCaqC8Q1BJhCnojZGdV2cbf05ZrNa6FaUS/eOuRTlZdV3t7gbrrO8bjK9TrwuBxluJxke87aqNg6JhkGjgBCNJYglkiRTGjarBYuqAjqgYegakMLQUmh6EkNPoWkJDH1995fe0BUGOopioOta/TEdw9h261FjqfpLGJIQT8LGPy273YHb6SXP48WTl4Hb7cfjzsDt8mLZzrWNNE1n8fJivvl5BV//vIKvFy3nlxUlVNaGqKwN8f2S1Vt9fLbP7OJq/P334HLYNuk+U1Vlu0O6RVWxWtSGx1qtFlwOGxluJ153/c/U7STH56EgR3atb6+k5UaIPwmtWcNn519I6ZdfAtDr4os45LHx2DMyANAqK829nyZMaNj7yXnMMfjvvhvHFta2+bNUPEZkxXeklkzCWj4HW6K04T7NkonuPwhrwaHYOuyJmtMB1Z+PYrVt5Rm3LZlMUBusojZQRV2olrq6ALF4ZKuPaTQGRd0wFkVVFAxDQTdANww0HULRBIFQjEAoTjAcJxCOUxdJEI5phBp1C5ldQYmUTiKpkUjpxBIpIrHUdr0Pp8PW0GJgXvx0Lsime8dcunfMo2NeVqsbJ7KlX8Oapm1o2VrfypVKkkwlN2nhisbCRKIhUqlNW1s25nK6cbsz8NRf1t92OlzbDALBUJSVJVWsLq3ecCmrZl15LRW1ISpq6qgKhLf4fnY1r9tBry4F9O5a0HDdu2shPTvnk+HZ8fWkRHrtyOe3hBshNrLyww+ZecllxKursWVkcPizT9Pj3HMBc5uE4Pjx1N59N0ZdHWDu/ZR1zz24jjhiq89rGAbJUJDw6p/R/piCrXIu9tiqDfcrFjTvnqj5h2LrdiSW3CLUrLy/FGji8SjVtRXU1FZSE6gkFAps9jyHw0UkYaM6ZFAbSlJdl6AyEKOiNkJVIFw/yDXeMOA1HE2QTGnN8gHmctgoysuiKM9HhxwfHfOz6FqYs1GQySY3y/uX/ho3u8fYqJvNQDcMFJSGFgSlfnDxrv6r3zAMEokUiUSy/jpFvOG2eZ1Kma09uqaj6YbZKqQbqOvrVQzAwNB1DHQMQ0PXU6S0BIaRAgxQdMxWJwOl/raqgsvtwuvx4q0PPC63B7fTi93u2O7vhabpVAVCVNSEGnd11Q+KTiRTpDS9fkC0OSha07av5cqoD9PrH5tMaQ0DtEOReKNB2TV1EfStDIIqysuiV5d8enctpEenPHbvlNcQkCX4tEwSbrZCwo3YHC0e5+ub/8XP4x8DIO+AAzj6jYn4dt8dwzCIvPceNTfdRGr5cgDs++5rhpoTTtjiL31D14lWlRNd/i36qs+wB37AHt/QlG+goHt6ouQPxN7zeCy53f5Sl1MqlaKmtoKqmjKqqssIhYObnONyeYhrLpaXRPl9TS0/Ly/n+9/WUFkb2qnX3JjVouLP9JCdub4bwrNJl1B2pgef14Xbad9oFo95O8+fQabHuV0forpukEqlSCQ1UskUyaRGMpkyP+ySqfqLtuE6teHr7f0gBVBVBavFgsVqwWo1u1IsFhWlIQQpqBsFofXHG4IGBrpB/dik+iCl14cSTd8QUjTdDDDJ7Wu9al4GoINidqGBjqIa2KwW7HYrDocDp8OFy+XC7fRgs1mxWM0uJpvNis1mwWq1/OUAqusGKU1DS2mkUnr9bd0c/6UbDUFn/UdYw/e9/meg6zpl1XWsKqtmRXElv68uZ/GKEpasKqW8um6rr5+b5aV7x9xG44qaMmCLnSPhZisk3Ig/C/zxBzPOPY/K778HoN91ozho3L1Y7HbiCxdSPXIk8dmzAbB06IB/3Dg8F1642cX3tEScSHkJkZU/oqyZjrPuu0ZdTgCaezcsHQ7F1vtvqIV9UFw794symUxQG6iiJlBJTW0lgWDVJq0pGd4sVFsmi1cG+eaXYr74bilL15Rv8lxWi8puRbkU5frMlpP663y/1xzL4HLgcTnw1O8ivn68g6V+7IRFVbDbrJu8D8MwNmpl0NE188P9zwzMv/i19X/Np3RzQHNK2yikmAElVf+Xf1tms1mw221mmKi/Xv+1zWZBVVUsqopqMWdvKaqyoTVKN1uiDN1A0/T67+eG7+n6aepmaDBvJ5Nmy1Aq1XTfV6vVDILr61RVxewurK9T37jlrL5Wc7D55v+NNBVVVbFaVTTDIJZIUReJUROKUh0MU14ToipoTrcPxxJU1UWorgtTHYwQiiUanuPPXaMd17c25vooyjVv5/kzsNtkWGtTknCzFRJuxMb+eP11vvz7P0mGQjhzcjji5RfpetJJpEpKqP33vwm99JI5A8rpJPPGG/HddBOq19voOVLRCKGSNYTXLYeyb3AH5+OILEHB/AVtoGL4+mLpcgS2XiejFvTc4daZeCJGKBw0L6EAtYHKzbfMON243NksLYmz8PcKZi1cyoJfVzVqnrdYVPbqXsQBe3Rl/z5d2adHER38mSQTKWKxhDmrJhonFktstVm/JbBa1PrWgvoWg/prm7X+2vana6sVq9WyUffThm6oTbqqNgoHWmpDSNC19bPF/hQmGl3MKewNrTt/6u5q/KFfP0C2PsjYbNZNBjfvKrquN3SHJeoHT8fjSaLRKLFYjFg8TiKZJJlMkkql6v99KIAKhmpe07TjnSzrQ7TVgtXyp5+dan5Pof7np2/oZtR1faOfm/6XA1NK06gJRQmEYoRicULROKFoglAsTjSRrB8/ppFIpszrlIauG1isZu12qwWX005O5oaB1r76wexOu9Vs+bKoWOuDqwLUN/7Vv0HzP2r9G97436uqKmbgrf/3ZFEVrDbrn8KxGZA3bmGz2axmS2QraYWS2VJCbEMyHGbOVVfz+0svA9Bh8GCOfv1VXNnZ1N57L4F778UIm7OWPOedh3/cOKxdujQ83gw0awmvW4lW/Qeu4Hx8oe+waBu6dwxfb6x9zsS65+mo7uxt1pRIJohGQ0Si4YbrSLSOUDhIMpnY7GPcbi8Op4+l62Is/KOSr376mfm/rNykZaNvtw4ce1BfjjmgN327FJCIJwkEwgTrItSW1lJbWrvN+nZmHMr6D/YNrQzqFj+413+AWTaaBWO1Ng4mGwcVq7VpQ4D5tlrHL/nmoqoqTqcdp3P79jlLJOIbQnc4UB++g/XdayoYCub3dOMLWK027DY7Nrsdu828WG027DbzuNlK5cDpdGK32VHVv9bNBdSH1T+1BNZ3Y65v2UqltPrWLbM1KxZPEo8nSCY1rBYLeT4veT7vtl9sp4sEdB2dHQtimgag7dRLKoqCy2XH7XLgdtdfXA5cLgculx3bZlpkWwNpuRHtTtVPPzHjnGHULlmCoqr0v3Us+/37FmLvvkv1TTehrTbHxdgHDCD7kUdwDhwImFO2Q8VrCK1dTqK2DGfoJ9zBb7HHNwwMxp6FpeffsOxzIZbsHo1eV9d1YvEI0ag5q8UMMWGiMfP2tme5ePB6M1Etbn5fG+K738uZ88Nyvl28YpMw07VDDsce1Icj9+tF74556CmN2kCIZHLTX4AWi0pmphuvx4XLZcfltON02XE5Hdjt1kZ/KQuxPdaHnnCkjki0jnDEvESjOzeTSlFUbDYbtoZVos3Vodffttns2O0O7DaneW13YLPaG60e/Vdomk48niQeTzYav7W+q7ShS23jMVTJ1IaxQpo56NswDLT6VawTqRSxRGrD2kOJFJFEgkgsSSgabzgeS6TM62SKcNQcNJ3SzO5ecxkBswXTbrVgt1nNa6sFr8tBfpaX3TrkUJSTSU6mhwy3A4fNioqCltLQt+Nnoapqw+8Fu8OGRVWxWMyWog2tRcqGVqP6a7vdij+raYOgdEtthYSb9kvXNBY9Op75/x6DFo/jLiri6ImvkVdUROUVVxCfNQsAS6dO+O+/H0/9LKlIRSl1a5YRqSzHGluLJ/AVztCPqEZ9a4qionY6FMte56N0GUwsmTB/qUfqCEdCDa0wsXhkm7/YHXYnLpcHt8uL0+kmHFNYXhLi9zXVLFpazI9/rGXJqtJNBsV2LvBz7EF9Obp/L3bvkEMqkSIQCG/y/Kqq4Mv04PN58GW6yfR58G7nIF4h/ipd10kk48TjUeKJmHkdN1ea3nhq+8a3/8pHlNPhwul043S6cTnqr+v//3I53ahNtF7UrpRKadSGolQHzFloVYEQ68prG6blryqpZlWpOV1/W7PF9uhWyF7diujRKZeOOT6yvW5cdiuJ+i7q+GYWcdxeWT4PgwbusdOP3xwJN1sh4aZ9Cq5YwRcXXdKwdk2Xk05k8PPPkXztNWrHjsWIxVDcbnz/+hcZ111HMhEjtHYFodK16MkEjvBiPIE5OGLLNzxpRhf0XqdRkz+IqqhOMFSzzb9MVVXF5az/5eryoKgOwnEIxQzKqsMsXVvJb6vK+G1VGb+vLqMmuOk6NG6Hjf16dubI/j3Zu3sRHbIzQdcJhaKbLHDndjnIyvKQleUlK8tLZoaryf6aFaK5GYaBpqUa9gpLphKkNrmdIJFMkEjEG7bl2FI37p+Zs768eD0ZZHizyPBm4fX4sFpb/4iNRDLFsrUV/L66rNHvlN9WlVFRs/XZYjk+T8NA6d2LcumUl0WB34vP48LrdOBymvuU2Sxqw8y/DS1XZqtShtdFv727Nel7knCzFRJu2hfDMFjy3/8yb9T1JEMhbF4vAx95mO4DBlB12WUk5s8HwHn00WQ+8jBRu4XwupWk4jEULYq77ls8ga+wpGrM51NUEkWHUZ5/BMV6NvHNrOJrUS1YbW4CEais06gNpaiui1MViFNWXUdxZYDymjoqakKEo5s+XlHA53aRnekmP8vLvrt3pHeXfIqyM/E47eYyJlvgdjvIzs4gJzuDbH8GLlfb3G9KiK0x1wuKEY1HicXCxGIRovUrb0di5pg2TdvyGBW3y0uG12cGngwz9GzPIoetRU0wzO+ry/l9dRm/rypj+bpKlq2rYPm6ym0Gn43ZrBZys7xkepwNq32bK0Q76NutA/++9MQmrVvCzVZIuGk/ouXlzLz0MlZPmQpA4WGHccTzz2K88Qa1d98NySSKz4fntrHEDuxHos5c5E5N1eKt/RJ33Tcouhk+NKuHUv/BrM0aQNyW1fAaSc2gpEZhRVmMlaVh1pQFWVlSzbqK2k2nZbscZGe6yclw4/O48HmcZHlc+DNc5GdlkJPpxl/fLLytX6IOhw2Px4nH7TSvPU4yM1wSZoTYDoZhkEjGG8a/hcLB+lW7a4knYpt9jNVqI8Prw+3KwO3ybOjecnmwWe1tJvjUhWOsKK5kXXktxZW1FFcEKKkMUFxZS2lVkIqaOspr6ghFtr49y6B+u/PVf29q0tpktpRo94pnzeKzYecTKSlBtds56N576H3UkVSfey6JhQsBsB17DNr/DSfocUFdAGt8HZnB2diDPzRM4w7b81mXcyjlvv5oio2qYJLlZWH+WBtm0Yoqfl5W0mgwb57PQ5d8Pwf17ET3Djl065CD3+vC67TX70W0/RwOmxli6gOM17MhyMimhELsPEVRcNidOOxOsnw5je5LJOJm0AnVUhcKEAzVEg4HSaWS5mrftZWbPJ/FYm00rsfpdON0uLDbHPUDnc1ri6Xlf+RmeJz069mJfj07bfW8aCzRsOXGn1eHDkXj5PszdlHFm9fyv9NC7ABD11k47j4W3Hobhq7j32MPjn7tVSxTJlM6YIDZWpOVhfHPy4gfMgAUBXtsJb7aGVjDvzU8T617d9bkHM4PkS4sX6Pzy5dlfP97KesqNmxhkJPh5qDeXejfsxP79ehIXqZnmwHGbrPicNiwO/68QJt52+G04XSYU2HTtdaJEO2Z3e4gJ7uAnOyChmO6rjdMd994qYZoNEQ8EUPTUoTDQcKbWXtqYxbVgm2jsGNeO+tnfG2YDWa12rFYLJvs66aqFqyWljE12+W0Nyxi2BJJuBFtRrSigs8vHM7aaZ8C0Oui4Rz0z38QuOJyEt99Z5408CC0EZdDth9HfDWZtdOxhpYA5mJ7ZRn9mJM6iGnLvHzx9mqKK+c1PH+hP4MTD+rLEfv0YPcOOTg3s/qooihmK4vXSYbXhdfjql83xNYwjVII0bqoqkpmRhaZGVmb3KdpGrF4pNG4nlg8Uj8LLNYw0NkccKuh1Z+zsxRF2SQcOZ3uhi4yt8vbpsYH7SwJN6JNWPfFF3x+wXAixcVYXS4GPfofCouLqTjsMEgkMLxejH9cCkcciiO5hsyy97GGfgVAR2WJdR+eW9mPt+cHqA6uBMDjtHPUfj05bv/e9OqYh+NPXUGKAhled8NsJF+mB4/HIbORhGhHLBZLww7rW7J+1lfDjK5k3LydiJNIxkgmG8/+SqaSaFpqoxWv9YYxfIZhmNPotzA2COr/yHKvnwHma5gJ5nC0nw1BJdyIVi1eU8PXN97Ekv++AEBWnz4cNmok2gP3EVhmTts2BuyPcfWVuLxhvOUvNgo138T24l9zi5i/RkdRSuhemMPfDt6TI/ftSU6Gu9F6tYqikJXlITcnk+zsDHyZHhn7IoTYJkVRsFptWK023OzcwnbrN1011wSKE0+Y094TiTjRmDkw2lwU1FyOYv3K0SVlG57DbnPg9WTi9frwuDPrb2dit7W9iQgSbkSrZBgGy99+m6+uGUm0zPy/t8/wC9k9UEPiyv8zz8nxY1x5Ca6DOuOpnYRtzS+AGWqmlO3OzXMKWBV2s2fXfK4/sw+H7LEbjj91NXk9TnJzfQ2BRsKMECIdzD3JLLgsblxO9xbPMwyDWCyyYQZY/cDocKSORDJOdW0F1bUVjR5jtzvwenxm2Km/eDw+7Lbt24ajJZJwI1qd0Jo1fPnPEayePAWArN692WfwYTgnvk4qFMZQFTj5eFznH4kzOhPHmvcA0AyFicuKuO+nbijezhxzWA+O7d8b70b76FgsKrk5meTl+sjL8zVMrTabhA0MXTN3rFMAVJBtCYQQLYi5V5Q5VT0vt0PDcU1LbbQP2Ia9wGKxCIlEnOpEOdU15Y2ey253Ng487kxcTjcOR8tfDFTWuRGtRioW46f/PMLCe+4lFYmg2mz0OOE4uvz0I5aV5n5QRo/uOK8+D4f/F1yB7wHQDJi4rIjHf+/L7j36MfSQvcnfaPM7q9VCYX4mBTke/Bk2FFIYWgpDS2JoKTB0NmzNuwXK+qBjAdWCoqqgWFBUC4pqRbFYQbVuuK20np14hRBtVyqVJBSpI/ynzU9j8a0PenY4XPVT3104HC4cdhcOh7P+thOnw4XVamvSWmURv62QcNP6GIbBqo8+Yt6o6wkuN8fRZPXuyR4eJxnf/2ie5PVgu/hMOCCJL/gNFsVcffTN5YVMrDiMg/c/iIN6dWmYXq2qCrlZDgr9VrI97Ppp14qCotpQLDYUixXFYjPDj8VmBiKLTQKQECJtUqnkJi095pieCIax7V3LvR4fhww4rklrajWL+M2ePZsHH3yQ7777jpKSEt5//32GDh26xfNnzpzJkUceucnxkpISCgsLm7FSkS41S5Yw55prKZ4+AwBHtp+efXvRYf4C1EQSVBXlhMHUHJVHF+tcXHVJUGB6WWe+YCiHHjGAkfYN3U5ep0pRro1Cvw2rZaPgoFhQrPb6sLEhcCjq+lYWs2UGRYGGYcaG2UW1fiaDodd3W62/1jB0zWz90VMYempDS5BhYGgJDG1re+AoZiuQxYqiWswaN76tqBtajFQLZreZXv/8uvkLyKivkQ0zLczbG3enKeZbanj+9a1LFglXQrRTVquNLF/OJoscrl/deeOp7w2boDZshhpN+8ystIabcDjMPvvsw6WXXsrpp5++3Y/77bffGqW2/Pz85ihPpFHV6lV8M3YMa19/E0PTUKxWuh6wD92XLsP2lbn2TLRXV8In5tO3+wrylRUYKPzgPJHyvFOx9/RzbH2bpKpAgd9GUY6NTLeKanehWp0oVgeK1Y5qdZgf5jusPhRgYUcigGHoG3V7Jc3gU98FtiEAaYCxIRTtRHVNwQx69vrgZ6//ftnNViYJPkK0Oxuv7uzL3PICfrq+7dad5pTWcHPCCSdwwgkn7PDj8vPzycrKavqCRFpFoiHWrV7KkvGPU/bym2iRKAC5e/SmTyyK52tzk8uYz4N6QhZdD3Oi5HQg5j+RlfaDCBj5ROIGNszGCo9TpWOeg6ICH3aXB9XmQrE5zBaPNFIUFcVqB+uWZyIYhg71rT6GnjJbgnRtw+2NW2d0vaGZWFFUszWroVVHrT9e3+KkQEPL059bdBqePwW62a3XEMAS4T+9CRXV5kSxOc1rq9MMQhJ4hBCQ9gHHrXK21L777ks8Hmevvfbi9ttv55BDDtniufF4nHh8wwZfweDWl8cWu1YkGqK0fC2lxSsJf/gxxS+8Qazc3Lslo3NHumZk0PGXX8BuQ9l/b7xnH0DBoL2JZfVljVZIRUAjGNEhBmCYrTQ5Ljp3zMafm222yrTCD1xFUcGimmNv0sAMO2aLkp4yu8+MVP1FS4ChoycikIjQsLeyakW1uxsuEnaEEOnSqsJNhw4dePrppznggAOIx+M8//zzHHHEEXzzzTf0799/s48ZN24cd9xxxy6uVGxNNBqmtHwNpWVroK4W9dufWPn8ROqWrwTAUVhA5336sWdRDvY9+2DrtyeW3j2IaBYqAikqgymCa3Ug2fCcfp+TDgV+ijoVYLenJxC0JYqiQP34I9XeeE0Nw9AxUnH0ZAwjGTOvU3HQU+ixIHqs/g8I1Wp2Ada37Kg2Z/3YICGEaF4tZraUoijbHFC8OYMHD6ZLly68+uqrm71/cy03nTt3ltlSu1g8EaOsfC0lZauJB6opxEJs8e/8/vIbqIpK/kH9yT1gX3L37IO3S0cAdN2gJqRRGUxRGUgRTzb+p5rt91BYmEOHwmwcDgk06WQYOnoiip6IoCciGMkYm5s+r1jsDV1ZZuhxSOARQmyXVjNbqikcdNBBzJkzZ4v3OxwOHI62t7R0a5BMJSmvWEdp2RrqasvJQ6UTFuJ1cSJrS/B17sgJ77yExbnh56NpBuW1ScrLQ1RFFDQ2fPCpqrnAXn5+Fvl5PpzO1rt6ZlujKCoWhweLwwNsCDtGMope37pjdnOZ3VoNrTtsFHjWD1q22FCsNpmtJYTYaa0+3Pzwww906NBh2yeKXSKVSlJeWUxp+Rpqqsro4HDQ1eXBll8EFgv2DK+5wN2ADY+JlVdRvng1lXELgbxOGBYb6/9pOuxW8vP95OdnkZuTgcUif+W3BuvDDvVhB8DQU426sjYJPJs8idowNd1cGNGyxdsShIQQG0truAmFQixdurTh6xUrVvDDDz+QnZ1Nly5dGD16NOvWreOVV14B4NFHH6Vbt27sueeexGIxnn/+eT7//HM+/fTTdL0FAaS0FBWVxZSWraGmtpwObi+7eTPos3tPVPumrSuBpSuo+OFXkhURgv4OhHvuAf4eDfe7nBYKC3MpLPCTleWVD602QlGtWBxecGxYHXrjwLNh8LI5PR5DNwcws7W1gDbSsAK0pX6BxMarQjeEIfn3JESbl9Zws2DBgkaL8l133XUAXHTRRbz00kuUlJSwevXqhvsTiQTXX38969atw+12069fP2bMmLHZhf1E89J1narqMkrKVhML15DtdtMtI4M+eX0afXjoKY3qn3+lZMGPVJQE0G1eHLv3IdnzMNiQZ/DaNQo7daSwMIeMDJd8ALUTmws8sH4toPrtLzaeAr+Z26xfLXX9mkCpbbyoat3QBWbdaA0fmd0lRJvRYgYU7yqy/cJfEw7XUVKynGQ0QJbLhc/t2WQ9g0BVLX98Nofgoj8I2zKx9dkb2+69UP7UpZRp1NBht64UdumKx5Pe1SxF69UwbX3jdYHWL45Yvyjixmv3bJGiotpcqHZX/aBnlwx2FqIFaVcDikXz0zSN6qp1RIPleG1WOnmd4N2wKrSWTFFdWcucr36h9scl5Bd1xLHvgai9BuPZ6HnspavJiq0jv/8e5O19CC6Xa9e/GdHmbDxtna1Mmtt47Z6GLrCN1vAx1+4Jo2+0YKFisTVaqFCmswvROki4EVuUjIcJVKzBZiTJsNnI8JpdB4ZhkAyFKS+r4bNFZZSvq6ZXlyJ8PfbD12O/hser1VVkfDcPX8UvFB7cnezh16N6ZasMkR6NQhCwcUQxDAMjFUNPxNCT5iyv9SHI0JLosboNz2Ox1QcdR8O1bEchRMsi4UY0YhgGyUiASG0JTouC1wpgw9B1UqEwlaVVzPilisq4jR5FeXTu1pvO3eofq6Xg15/xL5iLf+HX+Ls5yLrpFhxH3i6/+EWLpvx/e3cfHFV57wH8e85uXjaEzSYhL4QECBeLEdRC9WrElyKUiMqAddrejKhYHARxWmAq1rmtdNppaWsZpVSuClzoiyK1tNraClKSyIuBBi6JxEBUIE0CJIGEvGyy2ZdzfveP3T3JkgRi2GSzy/czkzE559lnzzM/2fxyzu95HkWBEmWBGmUBkAgAEF3zFTtfOp3dl/A427p1oEIxxwTW8piioZijQr7dB9G1iMkNAfB+kLvtjXC1N8KsKIg1Kd6/Zjs60Ha+CR992oSqdjPGpKdizPhkjPG9Tre3ofNwMUYc2oexh4sxUjoRv2A+rLv/gaix2SEdE9HVUFRTH9PZnd67PG4nxOP9gugQtwOa29GzI9Vs7DZvbDqq+nZ3901pV0K8Dw9RpGFyc40T3QOPvQnu9iaoCmBWFEDT4Glpwcmq8zh01oN42yjYUidgku81WuN5dOwrgOfghxhdfhSTNA2xWamw/uj7GLn4GagjR4Z0TESDxTu7yxyY8PinrPvqd/RL6niMwma3o+daPl0999jwtLdNUL3H/Ov8mHyJksl3jndHifyY3FyjRPPA094IT8dFKABUBYDLBcf5RhSUn0eDFoes0aORmen9wNTtbejYX4iOol0wH/s/ZOsaRgOw3HMHEr73PCz338+/PumapCgqlKhYICpwxp+IeO/oaC6Ix+1brNDdY6d37zYVvl3Zu7Yh7WXzistehXctH39NUW93i5j80DWEyc01xp/UaB0XAQAKADidOF9bj79+fBHxiSlIScvGOF/7zv87CPvf34Gj5ADi3S5MgiDdbEL84wuRsGIlom+8MVRDIRrWFEXxrpysWoCo3mcGGgmQrnnv8ogO8f9X1/s4pl2yzo83OfLXAvV5Paaobmv7xPhmgEWzJogiEpOba4ToGrSOi/DYG2H8TdjZiYbaBvytvAWpaaORne0tpNQ67HB88De0/e3P8JytgRWCSRCkjYiDdclSWFesgHnMmL7fjIj6pSsBGvj0cu+Ch56AYmfR/N+7jITHSH66TXUH4N28tNtCht6i6Cje7aGwxuQmwomIL6m50LWSq9OJ+up6/ON4mzepGe9Nalz1NbC/9Xt0FO6COJ2wQTABgtTkJCQsX4GRTz8NU1JSCEdDRJdSFBWKORpA7xvJ+tf38W9t4S+C1t2dvi0ufEXRPXs2Hm0p5qiuVZz9j75Y50PDGJObCKY52+FurQP8t6rdbjSdOY/3PmlBSmo6xo31JjXOs1Wwb30NHfuLABEkQfAfEIwaPRoJq1Zh5OLFUOPiQjcQIhow//o+JlPgCodG0uN2QjSnry6o+90eMTY17XV7L0Xx7eEV1XsSxMUOKYSY3EQg0Txwt9Z3rcPh8aC9oRHvHG1EYko6Msd4ZzM5aj5Hx5ZX0VG8HwCQ7E9qxo1Dwve/j/iFC6HGclsEokgUmPRcureXoPsihkYxtMcN0d3eQmjplvz0+gZqt8THV+BsbGjq29Wdd39okDC5iSDGI6i2Bv8BuC624J1/nYXFlorRY7IAAB1nTqNz06/RfrAYAGCD4DoIUrOzkfDDHyJ+wQIoUZdZx56IIpqiKN5HXea+HnXp3ep6eiZB8BVI9/3IqxvVBEUxXWbau9pVl6SoXdPgjXZMjqgnJjcRQnN1wHPxDES8U0k1hwM7/1ULtzkBo9J9SU3DGbh++xu0FRQCAKwQTIQgddQoJL7wAkY+9RSU6N4/zIiI/Iw6n76SH903Bd4ocu5KhHru5u6bAq990env/ovxJUDdkyTV5D3e/c6RGsXlKq4hTG7CnO52wt1UAxEPAEA0DQfLzqK2zYzkhHRYAHQ0NkB761U0/2MnoOsY4Utq0keMgO3ZZ2FduZIL7xFR0CiqCkW9/CNtb82P1rXmj+jeR13in+7un/6udf2sa94/4HQdRiokGkTTAM195eRIUb2Pw/wrQ5u6J0HdHp0xCQp7TG7ClO5xw3Ph39DFDSgKRNdx4lQjymqcSE20ITkB6LS3Qv/zJjT+cQegaYjx1dSMiYpCwtKlsP33f8OUyo0siWjoeWt+zN4anC9IpNvCh/5HYJd87z3XddfIWDNIc135LpG/Xsg3RV71rQ3EQunwweQmzOjuTnjOV3uTGpMJAuDTfzej9LQdKbYEpCbGwuXsBHZvw4VNv4U4O2GGIBuCcaqKhEVPwvbDH8KclRXqoRARDYi3zkYBTKqxy/uViK4Zq0MH3DHqKwnqVi+kde/o0kJpo0ja7PvZzARoGGByEyb0zg54LlRDVzTAZIKuqzhZa8cn/26HdUQcUmwJ8HjcwKH3cH7d/0Bva4UCwTgAEwAkPvIIbD/6EaImTgz1UIiIhpxRiIyYy7YzkiCta48w/35h/S6UVhTfbLCe9UC+deG7EjQFxrFeOjLOG4XTigr4Xqv4vjcetbG42sDkZpjT21vgbqqFmBTArMLpVnCyxo6qBidio6NhHREHt9MB87/+iguvbYW70butQjoE1wEY9c1vwPbCC4iePDm0AyEiCgNGEhTVMwnquvsTuBK0d3VoT1ehtG8qPdCPOqBg8u84b/J/+Rde9K89dO3UEjG5GYZEBNrFOmj2C5AoM8SsoqlNw6e1bWjvBFRVRWx0NDztzVCLtqN+83aIowOAd1r3JAgyvuFLaqZMCfFoiIgiQ3/u/oiu+x59eQL3AvPXAgHGfmDeby+X/khXW/H+7N+PzNhTTHTfBqzo2oHe00d3qilgpWn/VhuRuN0Gk5thRPe4oV2ogeayA9HR6NBNqK93oaq+EyIqABWqCkjdZ3DtehsNO94H3N7Vh0dBMB6CzIcfRuLq1dzQkogoBLwzxfreDmMw+Feblm53kIy1h3w70sOXBInugLgdAC6pJfJvtxGw1Ua07+eosNtglclNiIkIdPtFaM118EBHp66ioVlQf9GO9k5/Rq8CznZoB3fh/PYdcJ8+CQBQIMgAMN6kIv2xx2F99llE5+SEbCxERDT0/KtNK6YooI/6au8jNd9Ci5dstdFjuw209+xANfe94rSi+hZb9NYUDYc7QExuQkR3OaE11aLD3oIOiUaTXUNjqwd2h97VSPPAU3EELR98AMe+f0Kc3gI2KwSpEGRZ4jBqyVPeXbo5+4mIiPrQVUvUc/2hwO02XAF3fIwZZP47Q767Pld4M6jRFkQnhu73EpObIaRrGrSLdThz5gycEoW2TqCpTYNH6/qfRTQNnaUlcOzdA0fxh9DbWgEIEgGkQpBmNiPx7rthuf9+xC9cCFNycsjGQ0RE4S9wu40RAef8NT7icfUopPYXV3fVAPlfpHvrjUKIyc0gExForU34tLISnXoUHG4TWtoVAF0VX7q9DY7Dxeg8XIzOko+gt7ZgBARjACRBMGrMGNgefBBxc+Yg9t57uZowERENCUVRvFPaoy0ALH226yp01r1Fzn1Obx8aTG4GSVPdWZyoOAFVMcOljoDd4X8Q6i3hkrpatBXsgqPkI7g+rUC8riMZQFJUFNL+8xYk3H03Ym67DTG33w5zZmbIxkFERHQl/iQIMIU4rfFichMkmqbh6Ht/RWdbO5TUsbDDAk3332Hx3rJT6mvQ8v7f4Cj6ACMa6jAqNgYpk76EtCVPIf622xB9882IuuEG7shNRER0FZjcBEnxb9ahddJd3uUPfI8aTeKBcuY0HHt2wXygAMnpqci5+6tI+e3/Iuamm2AaPXpYVJUTERFFEiY3QZKcmgy7AlicrZDKMuDIAYyZmI0x/7UQlkX5TGKIiIiGiCKXXx4x4rS2tiIhIQEtLS2wWq1B61fXdTQcPYj0r9wRtD6JiIjI64v8/g6vJQeHMVVVmdgQERENA0xuiIiIKKIwuSEiIqKIwuSGiIiIIgqTGyIiIoooIU1u9u7di7lz5yIjIwOKouCdd9654muKioowbdo0xMTEYOLEidi6deugXycRERGFj5AmN+3t7bj55pvxyiuv9Kv96dOn8cADD2DGjBkoLS3F8uXL8eSTT2LXrl2DfKVEREQULkK6iN+cOXMwZ86cfrd/9dVXkZ2djbVr1wIAcnJysH//frz00kvIy8vr9TVOpxNOp9P4ubW19eoumoiIiIa1sKq5KS4uxqxZswKO5eXlobi4uM/XrFmzBgkJCcZXVlbWYF8mERERhVBYJTd1dXVIS0sLOJaWlobW1lY4HI5eX/P888+jpaXF+KqpqRmKSyUiIqIQifi9pWJiYhATExPqyyAiIqIhElZ3btLT01FfXx9wrL6+HlarFRaLJURXRURERMNJWCU3ubm52LNnT8Cx3bt3Izc3N0RXRERERMNNSJMbu92O0tJSlJaWAvBO9S4tLUV1dTUAb73MY489ZrRfsmQJTp06hVWrVuHEiRPYsGED/vjHP2LFihWhuHwiIiIahkJac3P48GHMmDHD+HnlypUAgMcffxxbt27FuXPnjEQHALKzs/H3v/8dK1aswLp165CZmYlNmzb1OQ28NyICgFPCiYiIwon/97b/9/jlKNKfVhGktraW08GJiIjCVE1NDTIzMy/b5ppLbnRdx9mzZzFy5EgoihLqyxmQ1tZWZGVloaamBlarNdSXQ31gnMIHYxUeGKfwMFhxEhG0tbUhIyMDqnr5qpqInwp+KVVVr5jxhQur1cp/4GGAcQofjFV4YJzCw2DEKSEhoV/twmq2FBEREdGVMLkhIiKiiMLkJgzFxMRg9erVXHl5mGOcwgdjFR4Yp/AwHOJ0zRUUExERUWTjnRsiIiKKKExuiIiIKKIwuSEiIqKIwuSGiIiIIgqTmxBZs2YNbr31VowcORKpqamYP38+KisrA9p0dnZi2bJlSE5ORnx8PB5++GHU19cb58vKypCfn4+srCxYLBbk5ORg3bp1Pd6rqKgI06ZNQ0xMDCZOnIitW7cO9vAiRjDi1F1jYyMyMzOhKAqam5sDzjFOAxfMOG3duhU33XQTYmNjkZqaimXLlgWc//jjj3HXXXchNjYWWVlZ+OUvfzmoY4skwYpTSUkJZs6cCZvNhsTEROTl5aGsrCygDeM0cP2J0+uvv46vfvWrsFqtvX6eAUBTUxMeeeQRWK1W2Gw2LFq0CHa7PaDNoMVJKCTy8vJky5YtUl5eLqWlpXL//ffL2LFjxW63G22WLFkiWVlZsmfPHjl8+LDcfvvtcscddxjnN2/eLN/5znekqKhITp48Kb///e/FYrHI+vXrjTanTp2SuLg4WblypVRUVMj69evFZDLJzp07h3S84SoYcepu3rx5MmfOHAEgFy9eNI4zTlcnWHFau3atZGRkyBtvvCGff/65lJWVybvvvmucb2lpkbS0NHnkkUekvLxctm3bJhaLRV577bUhG2s4C0ac2traJCkpSRYuXCgnTpyQ8vJyefjhhyUtLU1cLpeIME5Xqz9xeumll2TNmjWyZs2aHp9nfvfdd5/cfPPNcvDgQdm3b59MnDhR8vPzjfODGScmN8NEQ0ODAJAPP/xQRESam5slKipK3n77baPN8ePHBYAUFxf32c/TTz8tM2bMMH5etWqVTJ48OaDNt771LcnLywvyCK4NVxOnDRs2yD333CN79uzp8WHAOAXXQOLU1NQkFotF/vnPf/bZ74YNGyQxMVGcTqdx7LnnnpNJkyYN0kgi20DiVFJSIgCkurraaPPxxx8LAPnss89EhHEKtkvj1F1hYWGvyU1FRYUAkJKSEuPY+++/L4qiyJkzZ0RkcOPEx1LDREtLCwAgKSkJAHDkyBG43W7MmjXLaHP99ddj7NixKC4uvmw//j4AoLi4OKAPAMjLy7tsH9S3gcapoqICP/7xj/G73/2u1w3fGKfgGkicdu/eDV3XcebMGeTk5CAzMxPf/OY3UVNTY7ymuLgYd999N6Kjo41jeXl5qKysxMWLF4diaBFlIHGaNGkSkpOTsXnzZrhcLjgcDmzevBk5OTkYP348AMYp2C6NU38UFxfDZrPhlltuMY7NmjULqqri0KFDRpvBihOTm2FA13UsX74c06dPx5QpUwAAdXV1iI6Ohs1mC2iblpaGurq6Xvv56KOPsH37dixevNg4VldXh7S0tB59tLa2wuFwBHcgEW6gcXI6ncjPz8eLL76IsWPH9to34xQ8A43TqVOnoOs6fvazn+Hll1/Gn/70JzQ1NeFrX/saXC6X0U9vcfKfo/4baJxGjhyJoqIi/OEPf4DFYkF8fDx27tyJ999/H2az2eiHcQqO3uLUH3V1dUhNTQ04ZjabkZSUZMRgMON0ze0KPhwtW7YM5eXl2L9//4D7KC8vx7x587B69WrMnj07iFdHfgON0/PPP4+cnBwsWLBgkK6MuhtonHRdh9vtxq9//Wvj39C2bduQnp6OwsJC5OXlDcblXrMGGieHw4FFixZh+vTp2LZtGzRNw69+9Ss88MADKCkpgcViGaQrvjYF4/dTKPDOTYg988wzeO+991BYWIjMzEzjeHp6OlwuV48K9Pr6eqSnpwccq6iowMyZM7F48WL84Ac/CDiXnp7eY6ZBfX09rFYrPwS+gKuJU0FBAd5++22YzWaYzWbMnDkTADBq1CisXr3a6IdxunpXE6fRo0cDAG644QbjfEpKCkaNGoXq6mqjn97i5D9H/XM1cXrzzTdRVVWFLVu24NZbb8Xtt9+ON998E6dPn8a7775r9MM4Xb2+4tQf6enpaGhoCDjm8XjQ1NRkxGAw48TkJkREBM888wz+8pe/oKCgANnZ2QHnv/KVryAqKgp79uwxjlVWVqK6uhq5ubnGsU8++QQzZszA448/jp/+9Kc93ic3NzegD8BbW9C9D+pbMOK0Y8cOlJWVobS0FKWlpdi0aRMAYN++fcY0Y8bp6gQjTtOnTzeO+zU1NeHChQsYN24cAG+c9u7dC7fbbbTZvXs3Jk2ahMTExEEbX6QIRpw6OjqgqioURTHa+H/WdR0A43S1rhSn/sjNzUVzczOOHDliHCsoKICu67jtttuMNoMWp6suSaYBWbp0qSQkJEhRUZGcO3fO+Oro6DDaLFmyRMaOHSsFBQVy+PBhyc3NldzcXOP8sWPHJCUlRRYsWBDQR0NDg9HGP8X42WeflePHj8srr7zCKcZfQDDidKneZhcwTlcnWHGaN2+eTJ48WQ4cOCDHjh2TBx98UG644QZjinFzc7OkpaXJo48+KuXl5fLWW29JXFwcpxj3UzDidPz4cYmJiZGlS5dKRUWFlJeXy4IFCyQhIUHOnj0rIozT1epPnM6dOydHjx6VjRs3CgDZu3evHD16VBobG4029913n0ydOlUOHTok+/fvl+uuuy5gKvhgxonJTYgA6PVry5YtRhuHwyFPP/20JCYmSlxcnDz00ENy7tw54/zq1at77WPcuHEB71VYWChf/vKXJTo6WiZMmBDwHnR5wYjTpfqaOsk4DVyw4tTS0iLf/va3xWazSVJSkjz00EMBU45FRMrKyuTOO++UmJgYGTNmjPz85z8fiiFGhGDF6YMPPpDp06dLQkKCJCYmyr333ttj6QXGaeD6E6e+fv90b9PY2Cj5+fkSHx8vVqtVnnjiCWlrawt4r8GKk+IbCBEREVFEYM0NERERRRQmN0RERBRRmNwQERFRRGFyQ0RERBGFyQ0RERFFFCY3REREFFGY3BAREVFEYXJDREREEYXJDREREUUUJjdENCyJCGbNmoW8vLwe5zZs2ACbzYba2toQXBkRDXdMbohoWFIUBVu2bMGhQ4fw2muvGcdPnz6NVatWYf369cjMzAzqe3bfnZiIwheTGyIatrKysrBu3Tp873vfw+nTpyEiWLRoEWbPno2pU6dizpw5iI+PR1paGh599FFcuHDBeO3OnTtx5513wmazITk5GQ8++CBOnjxpnK+qqoKiKNi+fTvuuecexMbG4o033gjFMIkoyLhxJhENe/Pnz0dLSwu+/vWv4yc/+Qk++eQTTJ48GU8++SQee+wxOBwOPPfcc/B4PCgoKAAA7NixA4qi4KabboLdbscLL7yAqqoqlJaWQlVVVFVVITs7G+PHj8fatWsxdepUxMbGYvTo0SEeLRFdLSY3RDTsNTQ0YPLkyWhqasKOHTtQXl6Offv2YdeuXUab2tpaZGVlobKyEl/60pd69HHhwgWkpKTg2LFjmDJlipHcvPzyy/jud787lMMhokHGx1JENOylpqbiqaeeQk5ODubPn4+ysjIUFhYiPj7e+Lr++usBwHj09NlnnyE/Px8TJkyA1WrF+PHjAQDV1dUBfd9yyy1DOhYiGnzmUF8AEVF/mM1mmM3ejyy73Y65c+fiF7/4RY92/sdKc+fOxbhx47Bx40ZkZGRA13VMmTIFLpcroP2IESMG/+KJaEgxuSGisDNt2jTs2LED48ePNxKe7hobG1FZWYmNGzfirrvuAgDs379/qC+TiEKEj6WIKOwsW7YMTU1NyM/PR0lJCU6ePIldu3bhiSeegKZpSExMRHJyMl5//XV8/vnnKCgowMqVK0N92UQ0RJjcEFHYycjIwIEDB6BpGmbPno0bb7wRy5cvh81mg6qqUFUVb731Fo4cOYIpU6ZgxYoVePHFF0N92UQ0RDhbioiIiCIK79wQERFRRGFyQ0RERBGFyQ0RERFFFCY3REREFFGY3BAREVFEYXJDREREEYXJDREREUUUJjdEREQUUZjcEBERUURhckNEREQRhckNERERRZT/B54AWBnfk95mAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "ssps_imp.filter(\n", + "ssps_imp.df.filter(\n", " variable=\"AR6 climate diagnostics|Surface Temperature (GSAT)|MAGICCv7.5.3|50.0th Percentile\"\n", ").plot(legend=False, fill_between=True, color=\"scenario\", title=\"\")" ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5a5be442-2319-4ecb-aba0-d620d98906d7", + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { diff --git a/rime/process_config.py b/rime/process_config.py index 520a7f5..5da256a 100644 --- a/rime/process_config.py +++ b/rime/process_config.py @@ -71,12 +71,12 @@ fname_input_scenarios = f"emissions_temp_AR6_small.xlsx" # Directory of map files to read as input - # impact_data_dir = f"{wd}\\data\\4_split_files_for_geoserver" - impact_data_dir = f"{wd_input}split_files" + impact_data_dir = f"{wd}\\data\\4_split_files_for_geoserver" + # impact_data_dir = f"{wd_input}split_files" # ============================================================================= -# %% From process-iamc_scenarios_gmt.py +# %% From process-iamc_scenarios_gwl.py # ============================================================================= year_resols = [5] diff --git a/rime/process_maps.py b/rime/process_maps.py index 7b636d6..b2b80ef 100644 --- a/rime/process_maps.py +++ b/rime/process_maps.py @@ -60,7 +60,7 @@ # Test multiple scenarios, 1 indicator files = glob.glob(os.path.join(impact_data_dir, ind, f"*{short}_{ssp}*{ftype}.nc4")) mapdata = xr.open_mfdataset( - files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gmt" + files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gwl" ) mapdata = tidy_mapdata(mapdata) @@ -68,12 +68,12 @@ df = dft.filter(model="POLES GE*") -map_out_MS = map_transform_gmt_wrapper( +map_out_MS = map_transform_gwl_wrapper( df, mapdata, years, use_dask=True, - gmt_name="gmt", + gwl_name="gwl", interpolation=interpolation, ) @@ -123,18 +123,18 @@ os.path.join(impact_data_dir, ind, f"*{short}_{ssp}*{ftype}.nc4") ) mapdata[short] = xr.open_mfdataset( - files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gmt" + files, preprocess=remove_ssp_from_ds, combine="nested", concat_dim="gwl" )[short] mapdata = tidy_mapdata(mapdata) -map_out_MI = map_transform_gmt_wrapper( +map_out_MI = map_transform_gwl_wrapper( dft.filter(model="AIM*", scenario="SSP1-34"), mapdata, years=years, use_dask=False, - gmt_name="gmt", + gwl_name="gwl", ) comp = dict(zlib=True, complevel=5) diff --git a/rime/process_tabledata.py b/rime/process_tabledata.py index b419314..377b7a9 100644 --- a/rime/process_tabledata.py +++ b/rime/process_tabledata.py @@ -5,8 +5,8 @@ @author: byers """ if __name__ == "__main__": - from process_config import * - from rime_functions import * + from rime.process_config import * + from rime.rime_functions import * # from alive_progress import alive_bar import dask.dataframe as dd @@ -47,8 +47,8 @@ "CO2 mode: Global mean temperatures will be derived from response \ to cumulative CO2 emissions." ) - elif mode == "GMT": - print("GMT mode: Global mean temperatures provided as input.") + elif mode == "GWL": + print("GWL mode: Global mean temperatures provided as input.") if parallel: dask.config.set( @@ -99,11 +99,11 @@ # SCENARIO DATA PRE-PROCESSING # Filter for temperature variable - if mode == "GMT": + if mode == "GWL": dfp = df_scens_in.filter(variable=temp_variable) elif mode == "CO2": dfp = prepare_cumulative(df_scens_in, years=years, use_dask=True) - ts = dfp.timeseries().apply(co2togmt_simple) + ts = dfp.timeseries().apply(co2togwl_simple) ts = pyam.IamDataFrame(ts) ts.rename( { @@ -113,7 +113,7 @@ inplace=True, ) # Export data to check error and relationships - # ts.append(dfp).to_csv('c://users//byers//downloads//tcre_gmt_output.csv') + # ts.append(dfp).to_csv('c://users//byers//downloads//tcre_gwl_output.csv') dfp = ts dfp.meta = df_scens_in.meta.copy() dfp = dfp.filter(year=years) @@ -146,9 +146,9 @@ # dfx = dft.iloc[0].squeeze() # FOR DEBUIGGING THE FUNCTION outd = ddf.apply( - table_impacts_gmt, dsi=dsi, axis=1, meta=("result", None) + table_impacts_gwl, dsi=dsi, axis=1, meta=("result", None) ) - # outdd = client.map(ddf.apply(table_impacts_gmt, dsi=dsi, axis=1)) + # outdd = client.map(ddf.apply(table_impacts_gwl, dsi=dsi, axis=1)) with ProgressBar(): # try: @@ -157,7 +157,7 @@ # except(InvalidIndexError): # print(f'PROBLEM {f}') else: - df_new = dft.apply(table_impacts_gmt, dsi=dsi, axis=1) + df_new = dft.apply(table_impacts_gwl, dsi=dsi, axis=1) expandedd = pd.concat([df_new[x] for x in df_new.index]) print(f" Done: {time.time()-start}") diff --git a/rime/rime_functions.py b/rime/rime_functions.py index bc3994f..b8c35e1 100644 --- a/rime/rime_functions.py +++ b/rime/rime_functions.py @@ -19,7 +19,7 @@ from rime.utils import check_ds_dims -def loop_interpolate_gmt(df, yr_start, yr_end, interval=50): +def loop_interpolate_gwl(df, yr_start, yr_end, interval=50): """ Loop through the variables and regions in df and interpolate the impacts data between the global warming levels (typically at 0.5 °C). @@ -61,7 +61,7 @@ def loop_interpolate_gmt(df, yr_start, yr_end, interval=50): cols = list( range(yr_start, yr_end + 1), - ) + ["GMT"] + ) + ["GWL"] dfs[cols] = dfs[cols].interpolate() dfs.drop_duplicates(inplace=True) @@ -75,14 +75,14 @@ def loop_interpolate_gmt(df, yr_start, yr_end, interval=50): # ============================================================================= -def table_impacts_gmt( +def table_impacts_gwl( dfx, dsi, prefix_indicator="RIME|", ssp_meta_col="Ssp_family", ): """ - Takes in a table of scenarios of GMT and a dataset of climate impacts by GWL, + Takes in a table of scenarios of GWL and a dataset of climate impacts by GWL, and returns a table of climate impacts per scenario through time. The Parameters @@ -90,14 +90,14 @@ def table_impacts_gmt( dfx : dask.DataFrame dask.DataFrame in the format of an IAMC wide table (see pyam.IamDataFrame.timeseries()) with scenario(s) as rows and only 1 variable for the global mean temperature timeseries. Needs to have a column specifying the SSP to be assumed. dsi : xarray.Dataset - dimensions ['gmt','year','ssp','region'] and each variable is a climate indicator. This format is an xarray file of impacts, - prepared from the output of the function loop_interpolate_gmt. + dimensions ['gwl','year','ssp','region'] and each variable is a climate indicator. This format is an xarray file of impacts, + prepared from the output of the function loop_interpolate_gwl. prefix_indicator : str, optional The default is 'RIME|'. Use this to change the output indicator prefix in the table data variable column. ssp_meta_col : str, optional The default is 'Ssp_family'. Use this to change the name of the meta column used to assin the SSP per scenario - # gmt_below : float, optional (currently not usd) - # The default is 1.5. Assign all gmt values below gmt_below to the value of gmt_below (in case not enough data) + # gwl_below : float, optional (currently not usd) + # The default is 1.5. Assign all gwl values below gwl_below to the value of gwl_below (in case not enough data) Returns ------- @@ -115,7 +115,7 @@ def table_impacts_gmt( if ssp not in ["SSP1", "SSP2", "SSP3"]: ssp = "SSP2" - # tt.loc[tt.value 1: - raise Exception("Error: more than 1 variable in DataFrame") + # if len(df1.variable) > 1: + # raise Exception("Error: more than 1 variable in DataFrame") if len(df1.meta) > 1: raise Exception("Error: more than 1 model-scenario in DataFrame") # Should only be 1 scenario # Currently only works for 1 climate indicator for model, scenario in df1.index: - # Get the GMT values from df - gmt_values = df1.filter(year=years).data["value"].values - gmt_values = np.round(gmt_values, 2) + # Get the GWL values from df + gwl_values = df1.filter(year=years).data["value"].values + gwl_values = np.round(gwl_values, 2) if caution_checks: - # check if gmt at end reduction post peak greater than 0.2C - drawdown = np.round(gmt_values.max() - gmt_values[-1], 2) + # check if gwl at end reduction post peak greater than 0.2C + drawdown = np.round(gwl_values.max() - gwl_values[-1], 2) if drawdown > drawdown_max: print(f"Warning! Overshoot drawdown: {drawdown}. Scenario SKIPPED") # continue - if gmt_values.max() > temp_max: + if gwl_values.max() > temp_max: print( - f"Warning! Max temperature above {temp_max}°C {gmt_values.max()}, data thereafter not possible" + f"Warning! Max temperature above {temp_max}°C {gwl_values.max()}, data thereafter not possible" ) # continue - if gmt_values.min() < temp_min: + if gwl_values.min() < temp_min: print( - f"Warning! Min temperature below {temp_min}°C {gmt_values.min()}, data before not possible" + f"Warning! Min temperature below {temp_min}°C {gwl_values.min()}, data before not possible" ) + if gwl_values.max() > mapdata.gwl.values.max(): + temp_max = mapdata.gwl.values.max() + print(f'Warning! Provided scenario temperatures are higher than the available climate impacts GWLs. Setting temp_max to {temp_max}') + if gwl_values.min() < mapdata.gwl.values.min(): + temp_min = mapdata.gwl.values.min() + print(f'Warning! Provided scenario temperatures are lower than the available climate impacts GWLs. Setting temp_min to {temp_min}') + # Replace the values outside range with 999 index (of nans) - gmt_values[(gmt_values < temp_min) | (gmt_values > temp_max)] = 999 + gwl_values[gwl_values < temp_min] = 999 + gwl_values[gwl_values > temp_max] = 999 # Load and prepare the spatial impact data to be transformed # Get indicator name # short = list(mapdata.data_vars)[0] - # provide new interpolated vector (e.g. 0.01 gmt resolution) + # provide new interpolated vector (e.g. 0.01 gwl resolution) new_thresholds = np.arange( - mapdata.gmt.min(), mapdata.gmt.max() + interpolation, interpolation + mapdata.gwl.min(), mapdata.gwl.max() + interpolation, interpolation ) new_thresholds = [round(i, 2) for i in new_thresholds] - mapdata_interp = mapdata.interp(gmt=new_thresholds) + mapdata_interp = mapdata.interp(gwl=new_thresholds) # Add dummy data for out of range values to last slice 999 - # last_slice = data_interp.isel(gmt=-1) - new_slice = xr.DataArray([999], dims=("gmt",), coords={"gmt": [999]}) + # last_slice = data_interp.isel(gwl=-1) + new_slice = xr.DataArray([999], dims=("gwl",), coords={"gwl": [999]}) data_interp = xr.Dataset() + # mapdata_interp = mapdata_interp.to_dataset() for var_name in mapdata_interp.data_vars: data_interp[var_name] = xr.concat( - [mapdata_interp[var_name], new_slice], dim="gmt" + [mapdata_interp[var_name], new_slice], dim="gwl" ) - # data_interp["gmt"] = data_interp["gmt"].assign_coords( - # gmt=data_interp["gmt"].values + # data_interp["gwl"] = data_interp["gwl"].assign_coords( + # gwl=data_interp["gwl"].values # ) # data_interp = data_interp.to_dataset() @@ -301,9 +310,12 @@ def map_transform_gmt( # ] = np.full([len(data_interp.lat), len(data_interp.lon)], np.nan) # Create an array to store the updated data - updated_data = data_interp.sel(gmt=gmt_values) # [short] - updated_data = updated_data.transpose("lat", "lon", "gmt") - updated_data = updated_data.rename_dims({"gmt": "year"}) + # print(gwl_values) + updated_data = data_interp.sel(gwl=gwl_values) + updated_data = updated_data.transpose("lat", "lon", "gwl") + updated_data = updated_data.rename_dims({"gwl": "year"}) + updated_data = updated_data.rename({"gwl":"year"}) + # updated_data = updated_data.set_index({"lon": "lon", "lat": "lat", "year": "year"}).reset_coords() updated_data = updated_data.assign_coords( coords={"lon": updated_data.lon, "lat": updated_data.lat, "year": years} ) @@ -312,52 +324,56 @@ def map_transform_gmt( # Identify if other coordinates have been carried through with the Dataset and drop to # avoid confusion - dc = [x for x in map_array.coords if x not in ["lon", "lat", "year", "gmt"]] + dc = [x for x in map_array.coords if x not in ["lon", "lat", "year", "gwl"]] if len(dc) > 0: map_array = map_array.drop(dc) - # The gmt coordinate is carried through, but when combining multiple scenarios with different - # gmt trajectories, this causes error in constructing the xr.DataSet. Drop as default, but + # The gwl coordinate is carried through, but when combining multiple scenarios with different + # gwl trajectories, this causes error in constructing the xr.DataSet. Drop as default, but # can be kept if using for only 1 scenario. - if include_orig_gmt == False: - map_array = map_array.drop("gmt") + if (include_orig_gwl==False) & ("gwl" in map_array.coords): + try: + map_array = map_array.drop("gwl") + except ValueError: + print('') return map_array -def map_transform_gmt_wrapper( +def map_transform_gwl_wrapper( df, mapdata, years, - gmt_name="gmt", + caution_checks=True, use_dask=True, - include_orig_gmt=False, + include_orig_gwl=False, + gwl_name="gwl", + drawdown_max=0.15, temp_min=1.2, temp_max=3.5, - drawdown_max=0.15, interpolation=0.01, ): """ - Wrapper function of map_transform_gmt that can be used to leverage Dask for parallel processing of scenarios. + Wrapper function of map_transform_gwl that can be used to leverage Dask for parallel processing of scenarios. Modes: - 1. a set of IAM scenarios of GMT and one xarray.DataSet climate impact indicator by GWLs, and returns an xarray.DataSet of the climate indicator per scenario through time. - 2. one IAM scenario of GMT and a an xarray Dataset with one or multiple climate impact indicators by GWLs, to return an xarray.DataSet of climate indicators for the scenario through time. + 1. a set of IAM scenarios of GWL and one xarray.DataSet climate impact indicator by GWLs, and returns an xarray.DataSet of the climate indicator per scenario through time. + 2. one IAM scenario of GWL and a an xarray Dataset with one or multiple climate impact indicators by GWLs, to return an xarray.DataSet of climate indicators for the scenario through time. Parameters ---------- df : pyam.IamDataFrame pyam.IamDataFrame holding the scenario(s) with only the temperature variable. df is converted into appropriate dask or pandas Dataframe depending on whether use_dask=True/False. mapdata : xarray.Dataset - xarray.Dataset holding the climate impacts data, with dimensions lat, lon and gmt. If only one (impact) variable (mode 1), then it can handle multiple IAM scenarios. + xarray.Dataset holding the climate impacts data, with dimensions lat, lon and gwl. If only one (impact) variable (mode 1), then it can handle multiple IAM scenarios. If multiple (impact) variables (mode 2), then it can handle only one IAM scenario. years : list, iterator The years for which the climate impacts are needed. Provided as a list of int, range() or similar. - gmt_name : str, optional - If the input mapdata dimension for global mean temperatures is different to 'gmt', rename. Needs more testing, might not work. + gwl_name : str, optional + If the input mapdata dimension for global mean temperatures is different to 'gwl', rename. Needs more testing, might not work. use_dask : boolean, optional Whether to process in parallel using Dask. Default is True. Small numbers of scenarios / indicators may not be faster due to the overheads that result from starting workers. - include_orig_gmt : boolean, optional - Include the gmt coordinates in the output dataset. Default is False. Can only be True if in mode 2. + include_orig_gwl : boolean, optional + Include the gwl coordinates in the output dataset. Default is False. Can only be True if in mode 2. temp_min : float, optional Temperature values below this will be ignored. Limited by the extent of the climate impacts input data. Default is 1.2 °C. temp_max : float, optional @@ -377,19 +393,19 @@ def map_transform_gmt_wrapper( """ if len(df.index) > 1: - if len(mapdata.dims) > 2: - map_array = mapdata.isel({gmt_name: 0}).reset_coords(drop=True) + if len(mapdata.xrdataset.dims) > 2: + map_array = mapdata.xrdataset.isel({gwl_name: 0}).reset_coords(drop=True) map_array = map_array.drop_vars(map_array.data_vars) else: - map_array = xr.full_like(mapdata, np.nan).drop_vars(mapdata.data_vars) + map_array = xr.full_like(mapdata.xrdataset, np.nan).drop_vars(mapdata.xrdataset.data_vars) - if len(mapdata.data_vars) == 1: + if len(mapdata.xrdataset.data_vars) == 1: # ============================================================================= # Mode 1: 1 indicator, multi-scenario mode # ============================================================================= print("Single indicator mode (multi-scenarios possible)") delayed_tasks = [] - indicator = list(mapdata.data_vars)[0] + indicator = list(mapdata.xrdataset.data_vars)[0] for model, scenario in df.index: modelstrip = model @@ -399,28 +415,47 @@ def map_transform_gmt_wrapper( var_name = f"{modelstrip}_{scenario}" # f'{model}_{scenario}' print(var_name) - df1 = df.filter(model=model, scenario=scenario) + df1 = df.df.filter(model=model, scenario=scenario) if use_dask: - # Create delayed task for map_transform_gmt - delayed_map_transform = delayed(map_transform_gmt)( + # Create delayed task for map_transform_gwl + delayed_map_transform = delayed(map_transform_gwl)( df1, - mapdata, + mapdata.xrdataset, years, - var_name, map_array, - include_orig_gmt=False, + var_name=None, + caution_checks=caution_checks, + include_orig_gwl=include_orig_gwl, + gwl_name=gwl_name, + drawdown_max=drawdown_max, + temp_min=temp_min, + temp_max=temp_max, + interpolation=interpolation, ) - # delayed_map_transform = delayed_map_transform.drop('gmt') + # delayed_map_transform = delayed_map_transform.drop('gwl') delayed_tasks.append(delayed_map_transform) - - else: - map_array[var_name] = map_transform_gmt( - df1, mapdata, years, map_array, include_orig_gmt=False + + # use_dask=False + else: + map_array[var_name] = map_transform_gwl( + df1, + mapdata.xrdataset, + years, + map_array, + var_name, + caution_checks=caution_checks, + include_orig_gwl=include_orig_gwl, + gwl_name=gwl_name, + drawdown_max=drawdown_max, + temp_min=temp_min, + temp_max=temp_max, + interpolation=interpolation, )[ indicator - ] # .drop('gmt') # drop here for alignment of coords (gmts are all different) + ] # .drop('gwl') # drop here for alignment of coords (gwls are all different) + # run this after the loop if use_dask: # Compute delayed tasks concurrently computed_results = dask.compute(*delayed_tasks) @@ -429,7 +464,9 @@ def map_transform_gmt_wrapper( for result in computed_results: map_array.update(result) + map_array.attrs["indicator"] = indicator + else: print("Error! Multiple IAM scenarios and spatial indicators detected.") raise ValueError( @@ -444,11 +481,11 @@ def map_transform_gmt_wrapper( model = df.model[0] scenario = df.scenario[0] - if len(mapdata.dims) > 2: - map_array = mapdata.isel({gmt_name: 0}).reset_coords(drop=True) + if len(mapdata.xrdataset.dims) > 2: + map_array = mapdata.xrdataset.isel({gwl_name: 0}).reset_coords(drop=True) map_array = map_array.drop_vars(map_array.data_vars) else: - map_array = xr.full_like(mapdata, np.nan).drop_vars(mapdata.data_vars) + map_array = xr.full_like(mapdata.xrdataset, np.nan).drop_vars(mapdata.xrdataset.data_vars) # needs to be outsite loop delayed_tasks = [] @@ -457,17 +494,38 @@ def map_transform_gmt_wrapper( # use_dask not working here if use_dask: - # Iterate through spatial indicators in DataSet - for var_name in mapdata.data_vars: + # Iterate through spatial indicators in DataSet by providing DataArrays + for var_name in mapdata.xrdataset.data_vars: print(var_name) - # Create delayed task for map_transform_gmt_wrapper - delayed_map_transform = delayed(map_transform_gmt)( - df1, mapdata[var_name], years, var_name, map_array + # Create delayed task for map_transform_gwl_wrapper + delayed_map_transform = delayed(map_transform_gwl)( + df1, + mapdata.xrdataset[var_name], + years, + var_name, + map_array, + caution_checks=caution_checks, + include_orig_gwl=include_orig_gwl, + gwl_name=gwl_name, + drawdown_max=drawdown_max, + temp_min=temp_min, + temp_max=temp_max, + interpolation=interpolation, ) delayed_tasks.append(delayed_map_transform) else: - map_array = map_transform_gmt( - df1, mapdata, years, map_array, include_orig_gmt=include_orig_gmt + map_array = map_transform_gwl( + df1, + mapdata.xrdataset, + years, + map_array, + caution_checks=caution_checks, + include_orig_gwl=include_orig_gwl, + gwl_name=gwl_name, + drawdown_max=drawdown_max, + temp_min=temp_min, + temp_max=temp_max, + interpolation=interpolation, ) # use_dask not working here @@ -614,7 +672,7 @@ def prepare_cumulative( return pyam.IamDataFrame(df_cumlative) -def co2togmt_simple(cum_CO2, regr=None): +def co2togwl_simple(cum_CO2, regr=None): """ Takes in vector of CO2 values and calculates Global mean surface air temperature. Default is set up to use the linear regression between @@ -669,9 +727,9 @@ def co2togmt_simple(cum_CO2, regr=None): print(f"Intercept: {intercept}") print(f"r2: {r}") - gmt = slope * cum_CO2 + intercept + gwl = slope * cum_CO2 + intercept - return gmt + return gwl # ============================================================================= @@ -693,7 +751,7 @@ def plot_maps_dashboard( layout_title=None, ): """ - From an xarray.DataSet of climate impact indicators through time for one IAM scenario (mode 2 in map_transform_gmt_wrapper), + From an xarray.DataSet of climate impact indicators through time for one IAM scenario (mode 2 in map_transform_gwl_wrapper), plot the indicators as an interactive html dashboard in a specified year. Parameters diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_abs.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_abs.nc4 new file mode 100644 index 0000000..385b81f Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_diff.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_diff.nc4 new file mode 100644 index 0000000..eb1f159 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_score.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_score.nc4 new file mode 100644 index 0000000..fd52f40 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p2_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_abs.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_abs.nc4 new file mode 100644 index 0000000..7a7ab4c Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_diff.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_diff.nc4 new file mode 100644 index 0000000..024ba35 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_score.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_score.nc4 new file mode 100644 index 0000000..c147405 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_1p5_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_abs.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_abs.nc4 new file mode 100644 index 0000000..1f78472 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_diff.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_diff.nc4 new file mode 100644 index 0000000..3ec7da7 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_score.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_score.nc4 new file mode 100644 index 0000000..2faf35c Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p0_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_abs.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_abs.nc4 new file mode 100644 index 0000000..119c8cc Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_diff.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_diff.nc4 new file mode 100644 index 0000000..a0f9c5e Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_score.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_score.nc4 new file mode 100644 index 0000000..27e6a4f Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_2p5_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_abs.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_abs.nc4 new file mode 100644 index 0000000..32ca9fd Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_diff.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_diff.nc4 new file mode 100644 index 0000000..8bc2ced Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_score.nc4 b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_score.nc4 new file mode 100644 index 0000000..aeebdf5 Binary files /dev/null and b/rime/test_data/ISIMIP2b_dri_qtot_ssp2_3p0_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_abs.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_abs.nc4 new file mode 100644 index 0000000..d06fbb7 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_diff.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_diff.nc4 new file mode 100644 index 0000000..b11cf57 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_score.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_score.nc4 new file mode 100644 index 0000000..5ebab7f Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p2_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_abs.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_abs.nc4 new file mode 100644 index 0000000..4333709 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_diff.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_diff.nc4 new file mode 100644 index 0000000..f002447 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_score.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_score.nc4 new file mode 100644 index 0000000..05b8ba3 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_1p5_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_abs.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_abs.nc4 new file mode 100644 index 0000000..4d7027d Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_diff.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_diff.nc4 new file mode 100644 index 0000000..8a14750 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_score.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_score.nc4 new file mode 100644 index 0000000..02029db Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p0_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_abs.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_abs.nc4 new file mode 100644 index 0000000..2425949 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_diff.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_diff.nc4 new file mode 100644 index 0000000..7c7b816 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_score.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_score.nc4 new file mode 100644 index 0000000..222839c Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_2p5_score.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_abs.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_abs.nc4 new file mode 100644 index 0000000..c9d4ef6 Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_abs.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_diff.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_diff.nc4 new file mode 100644 index 0000000..d062ecd Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_diff.nc4 differ diff --git a/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_score.nc4 b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_score.nc4 new file mode 100644 index 0000000..968b94b Binary files /dev/null and b/rime/test_data/ISIMIP2b_iavar_qtot_ssp2_3p0_score.nc4 differ diff --git a/rime/test_data/cdd_R10.nc b/rime/test_data/cdd_R10.nc new file mode 100644 index 0000000..9b9eec7 Binary files /dev/null and b/rime/test_data/cdd_R10.nc differ diff --git a/rime/emissions_temp_AR6_small.xlsx b/rime/test_data/emissions_temp_AR6_small.xlsx similarity index 100% rename from rime/emissions_temp_AR6_small.xlsx rename to rime/test_data/emissions_temp_AR6_small.xlsx diff --git a/rime/test_data/pr_r10_R10.nc b/rime/test_data/pr_r10_R10.nc new file mode 100644 index 0000000..2696879 Binary files /dev/null and b/rime/test_data/pr_r10_R10.nc differ diff --git a/rime/test_data/pr_r20_1p2_abs.nc4 b/rime/test_data/pr_r20_1p2_abs.nc4 new file mode 100644 index 0000000..7774917 Binary files /dev/null and b/rime/test_data/pr_r20_1p2_abs.nc4 differ diff --git a/rime/test_data/pr_r20_1p5_abs.nc4 b/rime/test_data/pr_r20_1p5_abs.nc4 new file mode 100644 index 0000000..23b7be6 Binary files /dev/null and b/rime/test_data/pr_r20_1p5_abs.nc4 differ diff --git a/rime/test_data/pr_r20_2p0_abs.nc4 b/rime/test_data/pr_r20_2p0_abs.nc4 new file mode 100644 index 0000000..93e22a5 Binary files /dev/null and b/rime/test_data/pr_r20_2p0_abs.nc4 differ diff --git a/rime/test_data/pr_r20_2p5_abs.nc4 b/rime/test_data/pr_r20_2p5_abs.nc4 new file mode 100644 index 0000000..3658a34 Binary files /dev/null and b/rime/test_data/pr_r20_2p5_abs.nc4 differ diff --git a/rime/test_data/pr_r20_3p0_abs.nc4 b/rime/test_data/pr_r20_3p0_abs.nc4 new file mode 100644 index 0000000..2535360 Binary files /dev/null and b/rime/test_data/pr_r20_3p0_abs.nc4 differ diff --git a/rime/test_data/pr_r20_3p5_abs.nc4 b/rime/test_data/pr_r20_3p5_abs.nc4 new file mode 100644 index 0000000..3da5862 Binary files /dev/null and b/rime/test_data/pr_r20_3p5_abs.nc4 differ diff --git a/rime/test_data/sdd_c_1p2_abs.nc4 b/rime/test_data/sdd_c_1p2_abs.nc4 new file mode 100644 index 0000000..ec0d8f4 Binary files /dev/null and b/rime/test_data/sdd_c_1p2_abs.nc4 differ diff --git a/rime/test_data/sdd_c_1p2_diff.nc4 b/rime/test_data/sdd_c_1p2_diff.nc4 new file mode 100644 index 0000000..dd153e6 Binary files /dev/null and b/rime/test_data/sdd_c_1p2_diff.nc4 differ diff --git a/rime/test_data/sdd_c_1p2_score.nc4 b/rime/test_data/sdd_c_1p2_score.nc4 new file mode 100644 index 0000000..5d33ee4 Binary files /dev/null and b/rime/test_data/sdd_c_1p2_score.nc4 differ diff --git a/rime/test_data/sdd_c_1p5_abs.nc4 b/rime/test_data/sdd_c_1p5_abs.nc4 new file mode 100644 index 0000000..1477c11 Binary files /dev/null and b/rime/test_data/sdd_c_1p5_abs.nc4 differ diff --git a/rime/test_data/sdd_c_1p5_diff.nc4 b/rime/test_data/sdd_c_1p5_diff.nc4 new file mode 100644 index 0000000..e9c8abd Binary files /dev/null and b/rime/test_data/sdd_c_1p5_diff.nc4 differ diff --git a/rime/test_data/sdd_c_1p5_score.nc4 b/rime/test_data/sdd_c_1p5_score.nc4 new file mode 100644 index 0000000..55f319c Binary files /dev/null and b/rime/test_data/sdd_c_1p5_score.nc4 differ diff --git a/rime/test_data/sdd_c_2p0_abs.nc4 b/rime/test_data/sdd_c_2p0_abs.nc4 new file mode 100644 index 0000000..28e41af Binary files /dev/null and b/rime/test_data/sdd_c_2p0_abs.nc4 differ diff --git a/rime/test_data/sdd_c_2p0_diff.nc4 b/rime/test_data/sdd_c_2p0_diff.nc4 new file mode 100644 index 0000000..631e56b Binary files /dev/null and b/rime/test_data/sdd_c_2p0_diff.nc4 differ diff --git a/rime/test_data/sdd_c_2p0_score.nc4 b/rime/test_data/sdd_c_2p0_score.nc4 new file mode 100644 index 0000000..d976e83 Binary files /dev/null and b/rime/test_data/sdd_c_2p0_score.nc4 differ diff --git a/rime/test_data/sdd_c_2p5_abs.nc4 b/rime/test_data/sdd_c_2p5_abs.nc4 new file mode 100644 index 0000000..e8b1066 Binary files /dev/null and b/rime/test_data/sdd_c_2p5_abs.nc4 differ diff --git a/rime/test_data/sdd_c_2p5_diff.nc4 b/rime/test_data/sdd_c_2p5_diff.nc4 new file mode 100644 index 0000000..3391fa5 Binary files /dev/null and b/rime/test_data/sdd_c_2p5_diff.nc4 differ diff --git a/rime/test_data/sdd_c_2p5_score.nc4 b/rime/test_data/sdd_c_2p5_score.nc4 new file mode 100644 index 0000000..f7081fb Binary files /dev/null and b/rime/test_data/sdd_c_2p5_score.nc4 differ diff --git a/rime/test_data/sdd_c_3p0_abs.nc4 b/rime/test_data/sdd_c_3p0_abs.nc4 new file mode 100644 index 0000000..cd6aed5 Binary files /dev/null and b/rime/test_data/sdd_c_3p0_abs.nc4 differ diff --git a/rime/test_data/sdd_c_3p0_diff.nc4 b/rime/test_data/sdd_c_3p0_diff.nc4 new file mode 100644 index 0000000..f10deae Binary files /dev/null and b/rime/test_data/sdd_c_3p0_diff.nc4 differ diff --git a/rime/test_data/sdd_c_3p0_score.nc4 b/rime/test_data/sdd_c_3p0_score.nc4 new file mode 100644 index 0000000..a4cbe3f Binary files /dev/null and b/rime/test_data/sdd_c_3p0_score.nc4 differ diff --git a/rime/test_data/sdd_c_3p5_abs.nc4 b/rime/test_data/sdd_c_3p5_abs.nc4 new file mode 100644 index 0000000..9aeb5d3 Binary files /dev/null and b/rime/test_data/sdd_c_3p5_abs.nc4 differ diff --git a/rime/test_data/sdd_c_3p5_diff.nc4 b/rime/test_data/sdd_c_3p5_diff.nc4 new file mode 100644 index 0000000..279ad3b Binary files /dev/null and b/rime/test_data/sdd_c_3p5_diff.nc4 differ diff --git a/rime/test_data/sdd_c_3p5_score.nc4 b/rime/test_data/sdd_c_3p5_score.nc4 new file mode 100644 index 0000000..ffe1753 Binary files /dev/null and b/rime/test_data/sdd_c_3p5_score.nc4 differ diff --git a/rime/test_data/table_output_cdd_COUNTRIES_small.csv b/rime/test_data/table_output_cdd_COUNTRIES_small.csv new file mode 100644 index 0000000..b8847c8 --- /dev/null +++ b/rime/test_data/table_output_cdd_COUNTRIES_small.csv @@ -0,0 +1,33101 @@ +Model,Scenario,Region,Variable,Unit,2010,2020,2030,2040,2050,2060,2070,2080,2090,2100 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Land area,km2,8355.803124,8355.803124,8355.803124,8355.803124,8355.803124,8355.803124,8355.803124,8355.803124,8355.803124,8355.803124 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Land area,km2,11475.34875,11475.34875,11475.34875,11475.34875,11475.34875,11475.34875,11475.34875,11475.34875,11475.34875,11475.34875 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Land area,km2,681770.6843,681770.6843,681770.6843,681770.6843,681770.6843,681770.6843,681770.6843,681770.6843,681770.6843,681770.6843 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Land area,km2,5186.316433,5186.316433,5186.316433,5186.316433,5186.316433,5186.316433,5186.316433,5186.316433,5186.316433,5186.316433 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Land area,km2,190083.6173,190083.6173,190083.6173,190083.6173,190083.6173,190083.6173,190083.6173,190083.6173,190083.6173,190083.6173 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Land area,km2,91304.03756,91304.03756,91304.03756,91304.03756,91304.03756,91304.03756,91304.03756,91304.03756,91304.03756,91304.03756 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Land area,km2,10278.23967,10278.23967,10278.23967,10278.23967,10278.23967,10278.23967,10278.23967,10278.23967,10278.23967,10278.23967 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Land area,km2,43531.46755,43531.46755,43531.46755,43531.46755,43531.46755,43531.46755,43531.46755,43531.46755,43531.46755,43531.46755 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Land area,km2,1862.001789,1862.001789,1862.001789,1862.001789,1862.001789,1862.001789,1862.001789,1862.001789,1862.001789,1862.001789 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Land area,km2,12815.59249,12815.59249,12815.59249,12815.59249,12815.59249,12815.59249,12815.59249,12815.59249,12815.59249,12815.59249 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Land area,km2,603988.0006,603988.0006,603988.0006,603988.0006,603988.0006,603988.0006,603988.0006,603988.0006,603988.0006,603988.0006 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Land area,km2,33337.69576,33337.69576,33337.69576,33337.69576,33337.69576,33337.69576,33337.69576,33337.69576,33337.69576,33337.69576 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Land area,km2,38129.52506,38129.52506,38129.52506,38129.52506,38129.52506,38129.52506,38129.52506,38129.52506,38129.52506,38129.52506 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Land area,km2,71737.7492,71737.7492,71737.7492,71737.7492,71737.7492,71737.7492,71737.7492,71737.7492,71737.7492,71737.7492 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Land area,km2,318207.5917,318207.5917,318207.5917,318207.5917,318207.5917,318207.5917,318207.5917,318207.5917,318207.5917,318207.5917 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Land area,km2,1142401.956,1142401.956,1142401.956,1142401.956,1142401.956,1142401.956,1142401.956,1142401.956,1142401.956,1142401.956 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Land area,km2,672495.3572,672495.3572,672495.3572,672495.3572,672495.3572,672495.3572,672495.3572,672495.3572,672495.3572,672495.3572 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Land area,km2,16455.5103,16455.5103,16455.5103,16455.5103,16455.5103,16455.5103,16455.5103,16455.5103,16455.5103,16455.5103 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Land area,km2,868547.3753,868547.3753,868547.3753,868547.3753,868547.3753,868547.3753,868547.3753,868547.3753,868547.3753,868547.3753 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Land area,km2,1364.533556,1364.533556,1364.533556,1364.533556,1364.533556,1364.533556,1364.533556,1364.533556,1364.533556,1364.533556 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Land area,km2,1332018.657,1332018.657,1332018.657,1332018.657,1332018.657,1332018.657,1332018.657,1332018.657,1332018.657,1332018.657 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Land area,km2,246912.7321,246912.7321,246912.7321,246912.7321,246912.7321,246912.7321,246912.7321,246912.7321,246912.7321,246912.7321 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Land area,km2,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Land area,km2,686858.905,686858.905,686858.905,686858.905,686858.905,686858.905,686858.905,686858.905,686858.905,686858.905 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Land area,km2,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Land area,km2,894.0484514,894.0484514,894.0484514,894.0484514,894.0484514,894.0484514,894.0484514,894.0484514,894.0484514,894.0484514 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Land area,km2,1061181.544,1061181.544,1061181.544,1061181.544,1061181.544,1061181.544,1061181.544,1061181.544,1061181.544,1061181.544 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Land area,km2,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Land area,km2,7189.418225,7189.418225,7189.418225,7189.418225,7189.418225,7189.418225,7189.418225,7189.418225,7189.418225,7189.418225 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Land area,km2,859820.0824,859820.0824,859820.0824,859820.0824,859820.0824,859820.0824,859820.0824,859820.0824,859820.0824,859820.0824 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Land area|%,%,0.300825924,0.300825924,0.300825924,0.300825924,0.300825924,0.300825924,0.300825924,0.300825924,0.300825924,0.300825924 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Land area|%,%,1.058220556,1.058220556,1.058220556,1.058220556,1.058220556,1.058220556,1.058220556,1.058220556,1.058220556,1.058220556 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Land area|%,%,35.42370098,35.42370098,35.42370098,35.42370098,35.42370098,35.42370098,35.42370098,35.42370098,35.42370098,35.42370098 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Land area|%,%,5.825952657,5.825952657,5.825952657,5.825952657,5.825952657,5.825952657,5.825952657,5.825952657,5.825952657,5.825952657 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Land area|%,%,61.84337929,61.84337929,61.84337929,61.84337929,61.84337929,61.84337929,61.84337929,61.84337929,61.84337929,61.84337929 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Land area|%,%,20.18576877,20.18576877,20.18576877,20.18576877,20.18576877,20.18576877,20.18576877,20.18576877,20.18576877,20.18576877 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Land area|%,%,1.187812804,1.187812804,1.187812804,1.187812804,1.187812804,1.187812804,1.187812804,1.187812804,1.187812804,1.187812804 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Land area|%,%,61.60623181,61.60623181,61.60623181,61.60623181,61.60623181,61.60623181,61.60623181,61.60623181,61.60623181,61.60623181 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Land area|%,%,0.059536441,0.059536441,0.059536441,0.059536441,0.059536441,0.059536441,0.059536441,0.059536441,0.059536441,0.059536441 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Land area|%,%,2.00079406,2.00079406,2.00079406,2.00079406,2.00079406,2.00079406,2.00079406,2.00079406,2.00079406,2.00079406 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Land area|%,%,58.1232526,58.1232526,58.1232526,58.1232526,58.1232526,58.1232526,58.1232526,58.1232526,58.1232526,58.1232526 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Land area|%,%,4.065871132,4.065871132,4.065871132,4.065871132,4.065871132,4.065871132,4.065871132,4.065871132,4.065871132,4.065871132 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Land area|%,%,2.952386086,2.952386086,2.952386086,2.952386086,2.952386086,2.952386086,2.952386086,2.952386086,2.952386086,2.952386086 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Land area|%,%,26.86901958,26.86901958,26.86901958,26.86901958,26.86901958,26.86901958,26.86901958,26.86901958,26.86901958,26.86901958 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Land area|%,%,3.398921777,3.398921777,3.398921777,3.398921777,3.398921777,3.398921777,3.398921777,3.398921777,3.398921777,3.398921777 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Land area|%,%,70.72793421,70.72793421,70.72793421,70.72793421,70.72793421,70.72793421,70.72793421,70.72793421,70.72793421,70.72793421 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Land area|%,%,53.86487871,53.86487871,53.86487871,53.86487871,53.86487871,53.86487871,53.86487871,53.86487871,53.86487871,53.86487871 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Land area|%,%,1.321484659,1.321484659,1.321484659,1.321484659,1.321484659,1.321484659,1.321484659,1.321484659,1.321484659,1.321484659 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Land area|%,%,73.47731924,73.47731924,73.47731924,73.47731924,73.47731924,73.47731924,73.47731924,73.47731924,73.47731924,73.47731924 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Land area|%,%,0.084297727,0.084297727,0.084297727,0.084297727,0.084297727,0.084297727,0.084297727,0.084297727,0.084297727,0.084297727 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Land area|%,%,57.72715057,57.72715057,57.72715057,57.72715057,57.72715057,57.72715057,57.72715057,57.72715057,57.72715057,57.72715057 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Land area|%,%,33.6729582,33.6729582,33.6729582,33.6729582,33.6729582,33.6729582,33.6729582,33.6729582,33.6729582,33.6729582 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Land area|%,%,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Land area|%,%,54.51595094,54.51595094,54.51595094,54.51595094,54.51595094,54.51595094,54.51595094,54.51595094,54.51595094,54.51595094 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Land area|%,%,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Land area|%,%,7.476300791,7.476300791,7.476300791,7.476300791,7.476300791,7.476300791,7.476300791,7.476300791,7.476300791,7.476300791 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Land area|%,%,57.06200597,57.06200597,57.06200597,57.06200597,57.06200597,57.06200597,57.06200597,57.06200597,57.06200597,57.06200597 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Land area|%,%,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Land area|%,%,3.664111203,3.664111203,3.664111203,3.664111203,3.664111203,3.664111203,3.664111203,3.664111203,3.664111203,3.664111203 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Land area|%,%,86.23599445,86.23599445,86.23599445,86.23599445,86.23599445,86.23599445,86.23599445,86.23599445,86.23599445,86.23599445 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Land area|Low,km2,1406471.117,1406471.117,1406471.117,1406471.117,1406471.117,1406471.117,1406471.117,1406471.117,1406471.117,1406471.117 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Land area|Low,km2,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Land area|Low,km2,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Land area|Low,km2,1125522.821,1125522.821,1125522.821,1125522.821,1125522.821,1125522.821,1125522.821,1125522.821,1125522.821,1125522.821 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Land area|Low,km2,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Land area|Low,km2,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Land area|Low,km2,1930524.219,1930524.219,1930524.219,1930524.219,1930524.219,1930524.219,1930524.219,1930524.219,1930524.219,1930524.219 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Land area|Low,km2,995231.6823,995231.6823,995231.6823,995231.6823,995231.6823,995231.6823,995231.6823,995231.6823,995231.6823,995231.6823 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Land area|Low,km2,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Land area|Low,km2,163584.3046,163584.3046,163584.3046,163584.3046,163584.3046,163584.3046,163584.3046,163584.3046,163584.3046,163584.3046 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Land area|Low,km2,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Land area|Low,km2,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Land area|Low,km2,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Land area|Low,km2,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Land area|Low,km2,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Land area|Low,km2,168330.2916,168330.2916,168330.2916,168330.2916,168330.2916,168330.2916,168330.2916,168330.2916,168330.2916,168330.2916 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Land area|Low,km2,330212.7061,330212.7061,330212.7061,330212.7061,330212.7061,330212.7061,330212.7061,330212.7061,330212.7061,330212.7061 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Land area|Low,km2,74041.7568,74041.7568,74041.7568,74041.7568,74041.7568,74041.7568,74041.7568,74041.7568,74041.7568,74041.7568 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Land area|Low,km2,1847.440289,1847.440289,1847.440289,1847.440289,1847.440289,1847.440289,1847.440289,1847.440289,1847.440289,1847.440289 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Land area|Low,km2,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Land area|Low,km2,810530.9694,810530.9694,810530.9694,810530.9694,810530.9694,810530.9694,810530.9694,810530.9694,810530.9694,810530.9694 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Land area|Low,km2,2288.77962,2288.77962,2288.77962,2288.77962,2288.77962,2288.77962,2288.77962,2288.77962,2288.77962,2288.77962 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Land area|Low,km2,154160.6749,154160.6749,154160.6749,154160.6749,154160.6749,154160.6749,154160.6749,154160.6749,154160.6749,154160.6749 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Land area|Low,km2,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Land area|Low,km2,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Land area|Low,km2,855682.5519,855682.5519,855682.5519,855682.5519,855682.5519,855682.5519,855682.5519,855682.5519,855682.5519,855682.5519 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Land area|Low,km2,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Land area|Low,km2,3125208.945,3125208.945,3125208.945,3125208.945,3125208.945,3125208.945,3125208.945,3125208.945,3125208.945,3125208.945 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Land area|Low,km2,60037.33746,60037.33746,60037.33746,60037.33746,60037.33746,60037.33746,60037.33746,60037.33746,60037.33746,60037.33746 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Land area|Low,km2,369445.7256,369445.7256,369445.7256,369445.7256,369445.7256,369445.7256,369445.7256,369445.7256,369445.7256,369445.7256 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Land area|Low,km2,30049.07184,30049.07184,30049.07184,30049.07184,30049.07184,30049.07184,30049.07184,30049.07184,30049.07184,30049.07184 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Land area|Low,km2,462709.2562,462709.2562,462709.2562,462709.2562,462709.2562,462709.2562,462709.2562,462709.2562,462709.2562,462709.2562 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Land area|Low,km2,22656.00426,22656.00426,22656.00426,22656.00426,22656.00426,22656.00426,22656.00426,22656.00426,22656.00426,22656.00426 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Land area|Low,km2,139919.1765,139919.1765,139919.1765,139919.1765,139919.1765,139919.1765,139919.1765,139919.1765,139919.1765,139919.1765 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Land area|Low,km2,624262.8482,624262.8482,624262.8482,624262.8482,624262.8482,624262.8482,624262.8482,624262.8482,624262.8482,624262.8482 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Land area|Low,km2,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Land area|Low,km2,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Land area|Low,km2,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Land area|Low,km2,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Land area|Low,km2,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Land area|Low,km2,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Land area|Low,km2,39423.85774,39423.85774,39423.85774,39423.85774,39423.85774,39423.85774,39423.85774,39423.85774,39423.85774,39423.85774 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Land area|Low,km2,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Land area|Low,km2,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Land area|Low,km2,554600.1181,554600.1181,554600.1181,554600.1181,554600.1181,554600.1181,554600.1181,554600.1181,554600.1181,554600.1181 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Land area|Low,km2,201199.9599,201199.9599,201199.9599,201199.9599,201199.9599,201199.9599,201199.9599,201199.9599,201199.9599,201199.9599 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Land area|Low,km2,304468.529,304468.529,304468.529,304468.529,304468.529,304468.529,304468.529,304468.529,304468.529,304468.529 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Land area|Low,km2,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Land area|Low,km2,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Land area|Low,km2,16365.87355,16365.87355,16365.87355,16365.87355,16365.87355,16365.87355,16365.87355,16365.87355,16365.87355,16365.87355 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Land area|Low,km2,344501.032,344501.032,344501.032,344501.032,344501.032,344501.032,344501.032,344501.032,344501.032,344501.032 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Land area|Low,km2,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Land area|Low,km2,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Land area|Low,km2,7608084.349,7608084.349,7608084.349,7608084.349,7608084.349,7608084.349,7608084.349,7608084.349,7608084.349,7608084.349 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Land area|Low,km2,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Land area|Low,km2,528.029036,528.029036,528.029036,528.029036,528.029036,528.029036,528.029036,528.029036,528.029036,528.029036 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Land area|Low,km2,1371.770416,1371.770416,1371.770416,1371.770416,1371.770416,1371.770416,1371.770416,1371.770416,1371.770416,1371.770416 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Land area|Low,km2,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Land area|Low,km2,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Land area|Low,km2,121943.1517,121943.1517,121943.1517,121943.1517,121943.1517,121943.1517,121943.1517,121943.1517,121943.1517,121943.1517 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Land area|Low,km2,601590.928,601590.928,601590.928,601590.928,601590.928,601590.928,601590.928,601590.928,601590.928,601590.928 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Land area|Low,km2,2927306.02,2927306.02,2927306.02,2927306.02,2927306.02,2927306.02,2927306.02,2927306.02,2927306.02,2927306.02 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Land area|Low,km2,189709.9649,189709.9649,189709.9649,189709.9649,189709.9649,189709.9649,189709.9649,189709.9649,189709.9649,189709.9649 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Land area|Low,km2,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Land area|Low,km2,2730242.293,2730242.293,2730242.293,2730242.293,2730242.293,2730242.293,2730242.293,2730242.293,2730242.293,2730242.293 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Land area|Low,km2,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Land area|Low,km2,751.0734601,751.0734601,751.0734601,751.0734601,751.0734601,751.0734601,751.0734601,751.0734601,751.0734601,751.0734601 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Land area|Low,km2,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Land area|Low,km2,70911.39178,70911.39178,70911.39178,70911.39178,70911.39178,70911.39178,70911.39178,70911.39178,70911.39178,70911.39178 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Land area|Low,km2,1081783.257,1081783.257,1081783.257,1081783.257,1081783.257,1081783.257,1081783.257,1081783.257,1081783.257,1081783.257 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Land area|Low,km2,681791.6392,681791.6392,681791.6392,681791.6392,681791.6392,681791.6392,681791.6392,681791.6392,681791.6392,681791.6392 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Land area|Low,km2,55981.99698,55981.99698,55981.99698,55981.99698,55981.99698,55981.99698,55981.99698,55981.99698,55981.99698,55981.99698 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Land area|Low,km2,105346.1814,105346.1814,105346.1814,105346.1814,105346.1814,105346.1814,105346.1814,105346.1814,105346.1814,105346.1814 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Land area|Low,km2,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Land area|Low,km2,4627463.643,4627463.643,4627463.643,4627463.643,4627463.643,4627463.643,4627463.643,4627463.643,4627463.643,4627463.643 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Land area|Low,km2,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Land area|Low,km2,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Land area|Low,km2,10897.98501,10897.98501,10897.98501,10897.98501,10897.98501,10897.98501,10897.98501,10897.98501,10897.98501,10897.98501 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Land area|Low,km2,20555.37119,20555.37119,20555.37119,20555.37119,20555.37119,20555.37119,20555.37119,20555.37119,20555.37119,20555.37119 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Land area|Low,km2,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Land area|Low,km2,38191.44739,38191.44739,38191.44739,38191.44739,38191.44739,38191.44739,38191.44739,38191.44739,38191.44739,38191.44739 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Land area|Low,km2,7118821.146,7118821.146,7118821.146,7118821.146,7118821.146,7118821.146,7118821.146,7118821.146,7118821.146,7118821.146 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Land area|Low,km2,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Land area|Low,km2,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Land area|Low,km2,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Land area|Low,km2,566472.3562,566472.3562,566472.3562,566472.3562,566472.3562,566472.3562,566472.3562,566472.3562,566472.3562,566472.3562 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Land area|Low,km2,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Land area|Low,km2,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Land area|Low,km2,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Land area|Low,km2,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Land area|Low,km2,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Land area|Low,km2,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Land area|Low,km2,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Land area|Low,km2,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Land area|Low,km2,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Land area|Low,km2,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Land area|Low,km2,10627.62038,10627.62038,10627.62038,10627.62038,10627.62038,10627.62038,10627.62038,10627.62038,10627.62038,10627.62038 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Land area|Low,km2,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Land area|Low,km2,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Land area|Low,km2,447284.3795,447284.3795,447284.3795,447284.3795,447284.3795,447284.3795,447284.3795,447284.3795,447284.3795,447284.3795 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Land area|Low,km2,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Land area|Low,km2,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Land area|Low,km2,16259.95165,16259.95165,16259.95165,16259.95165,16259.95165,16259.95165,16259.95165,16259.95165,16259.95165,16259.95165 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Land area|Low,km2,12469.82406,12469.82406,12469.82406,12469.82406,12469.82406,12469.82406,12469.82406,12469.82406,12469.82406,12469.82406 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Land area|Low,km2,257679.9126,257679.9126,257679.9126,257679.9126,257679.9126,257679.9126,257679.9126,257679.9126,257679.9126,257679.9126 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Land area|Low,km2,26992.42831,26992.42831,26992.42831,26992.42831,26992.42831,26992.42831,26992.42831,26992.42831,26992.42831,26992.42831 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Land area|Low,km2,1648.826867,1648.826867,1648.826867,1648.826867,1648.826867,1648.826867,1648.826867,1648.826867,1648.826867,1648.826867 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Land area|Low,km2,59508.33091,59508.33091,59508.33091,59508.33091,59508.33091,59508.33091,59508.33091,59508.33091,59508.33091,59508.33091 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Land area|Low,km2,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Land area|Low,km2,1369674.337,1369674.337,1369674.337,1369674.337,1369674.337,1369674.337,1369674.337,1369674.337,1369674.337,1369674.337 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Land area|Low,km2,107565.0317,107565.0317,107565.0317,107565.0317,107565.0317,107565.0317,107565.0317,107565.0317,107565.0317,107565.0317 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Land area|Low,km2,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Land area|Low,km2,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Land area|Low,km2,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Land area|Low,km2,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Land area|Low,km2,451440.7933,451440.7933,451440.7933,451440.7933,451440.7933,451440.7933,451440.7933,451440.7933,451440.7933,451440.7933 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Land area|Low,km2,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Land area|Low,km2,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Land area|Low,km2,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Land area|Low,km2,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Land area|Low,km2,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Land area|Low,km2,385842.5751,385842.5751,385842.5751,385842.5751,385842.5751,385842.5751,385842.5751,385842.5751,385842.5751,385842.5751 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Land area|Low,km2,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Land area|Low,km2,1603312.653,1603312.653,1603312.653,1603312.653,1603312.653,1603312.653,1603312.653,1603312.653,1603312.653,1603312.653 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Land area|Low,km2,43533.6494,43533.6494,43533.6494,43533.6494,43533.6494,43533.6494,43533.6494,43533.6494,43533.6494,43533.6494 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Land area|Low,km2,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Land area|Low,km2,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Land area|Low,km2,7379.447507,7379.447507,7379.447507,7379.447507,7379.447507,7379.447507,7379.447507,7379.447507,7379.447507,7379.447507 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Land area|Low,km2,230949.4027,230949.4027,230949.4027,230949.4027,230949.4027,230949.4027,230949.4027,230949.4027,230949.4027,230949.4027 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Land area|Low,km2,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Land area|Low,km2,43213.85988,43213.85988,43213.85988,43213.85988,43213.85988,43213.85988,43213.85988,43213.85988,43213.85988,43213.85988 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Land area|Low,km2,655705.7107,655705.7107,655705.7107,655705.7107,655705.7107,655705.7107,655705.7107,655705.7107,655705.7107,655705.7107 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Land area|Low,km2,1815605.55,1815605.55,1815605.55,1815605.55,1815605.55,1815605.55,1815605.55,1815605.55,1815605.55,1815605.55 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Land area|Low,km2,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Land area|Low,km2,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Land area|Low,km2,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Land area|Low,km2,75371.24469,75371.24469,75371.24469,75371.24469,75371.24469,75371.24469,75371.24469,75371.24469,75371.24469,75371.24469 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Land area|Low,km2,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Land area|Low|%,%,14.31996586,14.31996586,14.31996586,14.31996586,14.31996586,14.31996586,14.31996586,14.31996586,14.31996586,14.31996586 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Land area|Low|%,%,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Land area|Low|%,%,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Land area|Low|%,%,99.72918611,99.72918611,99.72918611,99.72918611,99.72918611,99.72918611,99.72918611,99.72918611,99.72918611,99.72918611 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Land area|Low|%,%,69.50280224,69.50280224,69.50280224,69.50280224,69.50280224,69.50280224,69.50280224,69.50280224,69.50280224,69.50280224 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Land area|Low|%,%,91.77713438,91.77713438,91.77713438,91.77713438,91.77713438,91.77713438,91.77713438,91.77713438,91.77713438,91.77713438 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Land area|Low|%,%,68.69694792,68.69694792,68.69694792,68.69694792,68.69694792,68.69694792,68.69694792,68.69694792,68.69694792,68.69694792 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Land area|Low|%,%,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Land area|Low|%,%,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Land area|Low|%,%,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Land area|Low|%,%,49.17579029,49.17579029,49.17579029,49.17579029,49.17579029,49.17579029,49.17579029,49.17579029,49.17579029,49.17579029 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Land area|Low|%,%,65.4907947,65.4907947,65.4907947,65.4907947,65.4907947,65.4907947,65.4907947,65.4907947,65.4907947,65.4907947 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Land area|Low|%,%,77.33687321,77.33687321,77.33687321,77.33687321,77.33687321,77.33687321,77.33687321,77.33687321,77.33687321,77.33687321 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Land area|Low|%,%,16.74029229,16.74029229,16.74029229,16.74029229,16.74029229,16.74029229,16.74029229,16.74029229,16.74029229,16.74029229 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Land area|Low|%,%,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Land area|Low|%,%,86.18319348,86.18319348,86.18319348,86.18319348,86.18319348,86.18319348,86.18319348,86.18319348,86.18319348,86.18319348 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Land area|Low|%,%,7.964202894,7.964202894,7.964202894,7.964202894,7.964202894,7.964202894,7.964202894,7.964202894,7.964202894,7.964202894 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Land area|Low|%,%,58.78863441,58.78863441,58.78863441,58.78863441,58.78863441,58.78863441,58.78863441,58.78863441,58.78863441,58.78863441 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Land area|Low|%,%,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Land area|Low|%,%,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Land area|Low|%,%,98.88762311,98.88762311,98.88762311,98.88762311,98.88762311,98.88762311,98.88762311,98.88762311,98.88762311,98.88762311 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Land area|Low|%,%,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Land area|Low|%,%,99.92676621,99.92676621,99.92676621,99.92676621,99.92676621,99.92676621,99.92676621,99.92676621,99.92676621,99.92676621 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Land area|Low|%,%,70.74282601,70.74282601,70.74282601,70.74282601,70.74282601,70.74282601,70.74282601,70.74282601,70.74282601,70.74282601 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Land area|Low|%,%,62.82131592,62.82131592,62.82131592,62.82131592,62.82131592,62.82131592,62.82131592,62.82131592,62.82131592,62.82131592 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Land area|Low|%,%,98.69367302,98.69367302,98.69367302,98.69367302,98.69367302,98.69367302,98.69367302,98.69367302,98.69367302,98.69367302 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Land area|Low|%,%,79.28156217,79.28156217,79.28156217,79.28156217,79.28156217,79.28156217,79.28156217,79.28156217,79.28156217,79.28156217 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Land area|Low|%,%,23.53313358,23.53313358,23.53313358,23.53313358,23.53313358,23.53313358,23.53313358,23.53313358,23.53313358,23.53313358 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Land area|Low|%,%,98.3072053,98.3072053,98.3072053,98.3072053,98.3072053,98.3072053,98.3072053,98.3072053,98.3072053,98.3072053 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Land area|Low|%,%,80.10284844,80.10284844,80.10284844,80.10284844,80.10284844,80.10284844,80.10284844,80.10284844,80.10284844,80.10284844 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Land area|Low|%,%,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Land area|Low|%,%,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Land area|Low|%,%,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Land area|Low|%,%,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Land area|Low|%,%,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Land area|Low|%,%,7.189902066,7.189902066,7.189902066,7.189902066,7.189902066,7.189902066,7.189902066,7.189902066,7.189902066,7.189902066 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Land area|Low|%,%,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Land area|Low|%,%,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Land area|Low|%,%,42.94293385,42.94293385,42.94293385,42.94293385,42.94293385,42.94293385,42.94293385,42.94293385,42.94293385,42.94293385 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Land area|Low|%,%,87.59041894,87.59041894,87.59041894,87.59041894,87.59041894,87.59041894,87.59041894,87.59041894,87.59041894,87.59041894 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Land area|Low|%,%,94.89964943,94.89964943,94.89964943,94.89964943,94.89964943,94.89964943,94.89964943,94.89964943,94.89964943,94.89964943 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Land area|Low|%,%,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Land area|Low|%,%,15.00348189,15.00348189,15.00348189,15.00348189,15.00348189,15.00348189,15.00348189,15.00348189,15.00348189,15.00348189 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Land area|Low|%,%,74.02648273,74.02648273,74.02648273,74.02648273,74.02648273,74.02648273,74.02648273,74.02648273,74.02648273,74.02648273 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Land area|Low|%,%,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Land area|Low|%,%,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Land area|Low|%,%,81.2654514,81.2654514,81.2654514,81.2654514,81.2654514,81.2654514,81.2654514,81.2654514,81.2654514,81.2654514 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Land area|Low|%,%,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Land area|Low|%,%,1.088188995,1.088188995,1.088188995,1.088188995,1.088188995,1.088188995,1.088188995,1.088188995,1.088188995,1.088188995 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Land area|Low|%,%,0.229131822,0.229131822,0.229131822,0.229131822,0.229131822,0.229131822,0.229131822,0.229131822,0.229131822,0.229131822 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Land area|Low|%,%,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Land area|Low|%,%,6.527277055,6.527277055,6.527277055,6.527277055,6.527277055,6.527277055,6.527277055,6.527277055,6.527277055,6.527277055 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Land area|Low|%,%,97.10921976,97.10921976,97.10921976,97.10921976,97.10921976,97.10921976,97.10921976,97.10921976,97.10921976,97.10921976 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Land area|Low|%,%,31.56087935,31.56087935,31.56087935,31.56087935,31.56087935,31.56087935,31.56087935,31.56087935,31.56087935,31.56087935 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Land area|Low|%,%,58.03093275,58.03093275,58.03093275,58.03093275,58.03093275,58.03093275,58.03093275,58.03093275,58.03093275,58.03093275 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Land area|Low|%,%,16.17540557,16.17540557,16.17540557,16.17540557,16.17540557,16.17540557,16.17540557,16.17540557,16.17540557,16.17540557 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Land area|Low|%,%,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Land area|Low|%,%,35.09243706,35.09243706,35.09243706,35.09243706,35.09243706,35.09243706,35.09243706,35.09243706,35.09243706,35.09243706 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Land area|Low|%,%,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Land area|Low|%,%,78.22174311,78.22174311,78.22174311,78.22174311,78.22174311,78.22174311,78.22174311,78.22174311,78.22174311,78.22174311 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Land area|Low|%,%,88.63680474,88.63680474,88.63680474,88.63680474,88.63680474,88.63680474,88.63680474,88.63680474,88.63680474,88.63680474 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Land area|Low|%,%,86.67233827,86.67233827,86.67233827,86.67233827,86.67233827,86.67233827,86.67233827,86.67233827,86.67233827,86.67233827 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Land area|Low|%,%,23.4083297,23.4083297,23.4083297,23.4083297,23.4083297,23.4083297,23.4083297,23.4083297,23.4083297,23.4083297 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Land area|Low|%,%,53.13508173,53.13508173,53.13508173,53.13508173,53.13508173,53.13508173,53.13508173,53.13508173,53.13508173,53.13508173 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Land area|Low|%,%,54.57107321,54.57107321,54.57107321,54.57107321,54.57107321,54.57107321,54.57107321,54.57107321,54.57107321,54.57107321 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Land area|Low|%,%,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Land area|Low|%,%,5.154971983,5.154971983,5.154971983,5.154971983,5.154971983,5.154971983,5.154971983,5.154971983,5.154971983,5.154971983 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Land area|Low|%,%,39.81400148,39.81400148,39.81400148,39.81400148,39.81400148,39.81400148,39.81400148,39.81400148,39.81400148,39.81400148 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Land area|Low|%,%,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Land area|Low|%,%,15.00202879,15.00202879,15.00202879,15.00202879,15.00202879,15.00202879,15.00202879,15.00202879,15.00202879,15.00202879 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Land area|Low|%,%,92.71141627,92.71141627,92.71141627,92.71141627,92.71141627,92.71141627,92.71141627,92.71141627,92.71141627,92.71141627 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Land area|Low|%,%,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Land area|Low|%,%,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Land area|Low|%,%,77.25320525,77.25320525,77.25320525,77.25320525,77.25320525,77.25320525,77.25320525,77.25320525,77.25320525,77.25320525 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Land area|Low|%,%,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Land area|Low|%,%,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Land area|Low|%,%,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Land area|Low|%,%,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Land area|Low|%,%,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Land area|Low|%,%,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Land area|Low|%,%,48.21857356,48.21857356,48.21857356,48.21857356,48.21857356,48.21857356,48.21857356,48.21857356,48.21857356,48.21857356 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Land area|Low|%,%,99.83787125,99.83787125,99.83787125,99.83787125,99.83787125,99.83787125,99.83787125,99.83787125,99.83787125,99.83787125 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Land area|Low|%,%,64.81240756,64.81240756,64.81240756,64.81240756,64.81240756,64.81240756,64.81240756,64.81240756,64.81240756,64.81240756 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Land area|Low|%,%,84.1848189,84.1848189,84.1848189,84.1848189,84.1848189,84.1848189,84.1848189,84.1848189,84.1848189,84.1848189 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Land area|Low|%,%,22.64578417,22.64578417,22.64578417,22.64578417,22.64578417,22.64578417,22.64578417,22.64578417,22.64578417,22.64578417 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Land area|Low|%,%,4.577263532,4.577263532,4.577263532,4.577263532,4.577263532,4.577263532,4.577263532,4.577263532,4.577263532,4.577263532 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Land area|Low|%,%,46.19596038,46.19596038,46.19596038,46.19596038,46.19596038,46.19596038,46.19596038,46.19596038,46.19596038,46.19596038 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Land area|Low|%,%,58.86066895,58.86066895,58.86066895,58.86066895,58.86066895,58.86066895,58.86066895,58.86066895,58.86066895,58.86066895 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Land area|Low|%,%,35.68430431,35.68430431,35.68430431,35.68430431,35.68430431,35.68430431,35.68430431,35.68430431,35.68430431,35.68430431 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Land area|Low|%,%,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Land area|Low|%,%,49.56070853,49.56070853,49.56070853,49.56070853,49.56070853,49.56070853,49.56070853,49.56070853,49.56070853,49.56070853 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Land area|Low|%,%,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Land area|Low|%,%,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Land area|Low|%,%,98.83989998,98.83989998,98.83989998,98.83989998,98.83989998,98.83989998,98.83989998,98.83989998,98.83989998,98.83989998 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Land area|Low|%,%,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Land area|Low|%,%,58.86674293,58.86674293,58.86674293,58.86674293,58.86674293,58.86674293,58.86674293,58.86674293,58.86674293,58.86674293 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Land area|Low|%,%,14.89307759,14.89307759,14.89307759,14.89307759,14.89307759,14.89307759,14.89307759,14.89307759,14.89307759,14.89307759 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Land area|Low|%,%,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Land area|Low|%,%,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Land area|Low|%,%,6.070119986,6.070119986,6.070119986,6.070119986,6.070119986,6.070119986,6.070119986,6.070119986,6.070119986,6.070119986 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Land area|Low|%,%,57.96959489,57.96959489,57.96959489,57.96959489,57.96959489,57.96959489,57.96959489,57.96959489,57.96959489,57.96959489 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Land area|Low|%,%,38.4480997,38.4480997,38.4480997,38.4480997,38.4480997,38.4480997,38.4480997,38.4480997,38.4480997,38.4480997 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Land area|Low|%,%,98.8142881,98.8142881,98.8142881,98.8142881,98.8142881,98.8142881,98.8142881,98.8142881,98.8142881,98.8142881 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Land area|Low|%,%,92.85658371,92.85658371,92.85658371,92.85658371,92.85658371,92.85658371,92.85658371,92.85658371,92.85658371,92.85658371 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Land area|Low|%,%,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Land area|Low|%,%,58.63477975,58.63477975,58.63477975,58.63477975,58.63477975,58.63477975,58.63477975,58.63477975,58.63477975,58.63477975 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Land area|Low|%,%,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Hazard|Risk score|Population weighted,risk score,0.493930958,0.494466484,0.495025338,0.495495829,0.49599565,0.496371782,0.496728812,0.497071337,0.497319697,0.497482297 +Climate Solutions,ssp2_1p2,STP,cdd|Hazard|Risk score|Population weighted,risk score,0.888547376,0.888629122,0.888709161,0.88878642,0.888855775,0.888915965,0.888968062,0.88901235,0.889049754,0.889082789 +Climate Solutions,ssp2_1p2,TKM,cdd|Hazard|Risk score|Population weighted,risk score,2.267776829,2.269217253,2.271253572,2.273489364,2.275744376,2.278277945,2.280916766,2.283705807,2.286377507,2.288454514 +Climate Solutions,ssp2_1p2,LTU,cdd|Hazard|Risk score|Population weighted,risk score,0.403771767,0.403757522,0.403749588,0.403742507,0.403733285,0.403721095,0.403707991,0.403696343,0.403687151,0.403682647 +Climate Solutions,ssp2_1p2,KHM,cdd|Hazard|Risk score|Population weighted,risk score,1.787592061,1.787386227,1.787404858,1.787599289,1.787979793,1.788522125,1.789161748,1.789883733,1.790643262,1.791369994 +Climate Solutions,ssp2_1p2,ETH,cdd|Hazard|Risk score|Population weighted,risk score,1.682645826,1.682021595,1.681553987,1.681390616,1.681316396,1.68133005,1.681442289,1.681617107,1.681829174,1.682064341 +Climate Solutions,ssp2_1p2,SWZ,cdd|Hazard|Risk score|Population weighted,risk score,1.356180944,1.355186923,1.354097776,1.352998118,1.352036016,1.351155533,1.350277932,1.349371675,1.348550245,1.347778778 +Climate Solutions,ssp2_1p2,PSE,cdd|Hazard|Risk score|Population weighted,risk score,2.470057269,2.469949035,2.469812574,2.469648627,2.469453943,2.469242997,2.469012987,2.468773381,2.468536812,2.468305528 +Climate Solutions,ssp2_1p2,ARG,cdd|Hazard|Risk score|Population weighted,risk score,0.960043185,0.957291481,0.954804245,0.952785586,0.951098227,0.949730529,0.94864482,0.947776632,0.947129629,0.946592018 +Climate Solutions,ssp2_1p2,BOL,cdd|Hazard|Risk score|Population weighted,risk score,1.493588291,1.49422855,1.494560722,1.494788938,1.495061583,1.495252893,1.495365461,1.495474189,1.495589625,1.495712921 +Climate Solutions,ssp2_1p2,BHS,cdd|Hazard|Risk score|Population weighted,risk score,0.613373396,0.616006049,0.6174213,0.61844532,0.619234214,0.619949765,0.620592675,0.621250802,0.621788032,0.622223492 +Climate Solutions,ssp2_1p2,BFA,cdd|Hazard|Risk score|Population weighted,risk score,2.459452722,2.458938983,2.458771737,2.458787819,2.458921682,2.459098146,2.459256122,2.45940363,2.459538526,2.459662574 +Climate Solutions,ssp2_1p2,GHA,cdd|Hazard|Risk score|Population weighted,risk score,1.135994205,1.138738337,1.14051194,1.141605616,1.142083319,1.14214554,1.141932339,1.141533275,1.141014656,1.140412996 +Climate Solutions,ssp2_1p2,SAU,cdd|Hazard|Risk score|Population weighted,risk score,2.705740359,2.70714168,2.707673425,2.707988884,2.708145636,2.708237879,2.708133077,2.707912288,2.707654822,2.707393661 +Climate Solutions,ssp2_1p2,CPV,cdd|Hazard|Risk score|Population weighted,risk score,1.995296584,1.996037491,1.996677097,1.997208369,1.997641103,1.997944363,1.998173619,1.998377776,1.998547043,1.998691807 +Climate Solutions,ssp2_1p2,SVN,cdd|Hazard|Risk score|Population weighted,risk score,0.464220152,0.46408836,0.463983702,0.463866564,0.463745011,0.463627611,0.463497444,0.463350484,0.463201107,0.4630658 +Climate Solutions,ssp2_1p2,GTM,cdd|Hazard|Risk score|Population weighted,risk score,1.147246658,1.14789145,1.148949554,1.150203876,1.151725775,1.153332376,1.154932483,1.156526632,1.158084027,1.159595161 +Climate Solutions,ssp2_1p2,BIH,cdd|Hazard|Risk score|Population weighted,risk score,0.464032751,0.46409843,0.464222095,0.464420819,0.464689952,0.465004786,0.465319926,0.465617907,0.465864503,0.466033286 +Climate Solutions,ssp2_1p2,GIN,cdd|Hazard|Risk score|Population weighted,risk score,2.122078207,2.121191194,2.120458077,2.119750773,2.119033408,2.118340332,2.117873054,2.117618301,2.117587256,2.117756467 +Climate Solutions,ssp2_1p2,JOR,cdd|Hazard|Risk score|Population weighted,risk score,2.549457328,2.549860011,2.55020819,2.550447638,2.55057507,2.550618125,2.550487331,2.550222586,2.549880361,2.549433232 +Climate Solutions,ssp2_1p2,COG,cdd|Hazard|Risk score|Population weighted,risk score,1.653526585,1.65115898,1.650215405,1.649785021,1.650022135,1.65074518,1.651584121,1.652568715,1.653800864,1.655036551 +Climate Solutions,ssp2_1p2,ESP,cdd|Hazard|Risk score|Population weighted,risk score,1.237154449,1.23590218,1.234294771,1.232839633,1.231456294,1.230021492,1.228587497,1.22732109,1.226236723,1.225316064 +Climate Solutions,ssp2_1p2,LBR,cdd|Hazard|Risk score|Population weighted,risk score,1.298868425,1.294173798,1.291091494,1.288901462,1.28718574,1.285865607,1.284918121,1.284256712,1.283875704,1.283768377 +Climate Solutions,ssp2_1p2,NLD,cdd|Hazard|Risk score|Population weighted,risk score,0.478143044,0.478726275,0.479280714,0.479782,0.480229936,0.480645683,0.481028741,0.481371784,0.481675979,0.481941995 +Climate Solutions,ssp2_1p2,JAM,cdd|Hazard|Risk score|Population weighted,risk score,0.761008291,0.760826863,0.76066315,0.760505865,0.760349837,0.760208455,0.760097215,0.760007547,0.759934185,0.759875399 +Climate Solutions,ssp2_1p2,OMN,cdd|Hazard|Risk score|Population weighted,risk score,2.622385213,2.6251773,2.626498142,2.627568932,2.62815341,2.628685898,2.628936423,2.62894169,2.628825229,2.628542233 +Climate Solutions,ssp2_1p2,TZA,cdd|Hazard|Risk score|Population weighted,risk score,1.598797314,1.60407737,1.60776013,1.610253419,1.611847403,1.612744051,1.613312905,1.613656878,1.613890441,1.613965583 +Climate Solutions,ssp2_1p2,ALB,cdd|Hazard|Risk score|Population weighted,risk score,0.77233068,0.773461585,0.774219491,0.774693789,0.774956424,0.775047448,0.775088548,0.775101692,0.775099084,0.775144509 +Climate Solutions,ssp2_1p2,GAB,cdd|Hazard|Risk score|Population weighted,risk score,0.94810656,0.945922939,0.944662479,0.944083063,0.943371012,0.942662104,0.941811986,0.941009772,0.940228237,0.939903516 +Climate Solutions,ssp2_1p2,NZL,cdd|Hazard|Risk score|Population weighted,risk score,0.508950577,0.509181025,0.509339709,0.509554778,0.509705942,0.509852061,0.510004188,0.510168678,0.5103531,0.510566215 +Climate Solutions,ssp2_1p2,YEM,cdd|Hazard|Risk score|Population weighted,risk score,2.422923477,2.424910778,2.426334285,2.427418095,2.428163134,2.428698997,2.42907724,2.429329007,2.429492161,2.4295828 +Climate Solutions,ssp2_1p2,PAK,cdd|Hazard|Risk score|Population weighted,risk score,2.037852315,2.042637831,2.046164412,2.048834778,2.05123462,2.053308789,2.055123977,2.05673676,2.058146727,2.059346725 +Climate Solutions,ssp2_1p2,WSM,cdd|Hazard|Risk score|Population weighted,risk score,0.289218433,0.289254057,0.289358122,0.289558497,0.28984346,0.290208832,0.290559232,0.290880431,0.291167442,0.291412642 +Climate Solutions,ssp2_1p2,SVK,cdd|Hazard|Risk score|Population weighted,risk score,0.439502065,0.439557474,0.439684277,0.439864445,0.440005589,0.440116082,0.440234239,0.440351769,0.440435956,0.440481285 +Climate Solutions,ssp2_1p2,ARE,cdd|Hazard|Risk score|Population weighted,risk score,2.768929906,2.771054384,2.77151056,2.771578637,2.771433982,2.771153788,2.770714898,2.770241481,2.769848789,2.76951738 +Climate Solutions,ssp2_1p2,GUM,cdd|Hazard|Risk score|Population weighted,risk score,0.548938913,0.549241275,0.549352329,0.549414478,0.549452185,0.549474949,0.549487427,0.549494424,0.549499655,0.549503804 +Climate Solutions,ssp2_1p2,IND,cdd|Hazard|Risk score|Population weighted,risk score,2.285810758,2.286233298,2.286588565,2.287024285,2.287501802,2.287999283,2.288487654,2.288944211,2.289356233,2.289714269 +Climate Solutions,ssp2_1p2,AZE,cdd|Hazard|Risk score|Population weighted,risk score,1.323754635,1.326364438,1.328568036,1.330340449,1.331828011,1.333022371,1.333943325,1.334602614,1.335095891,1.335498224 +Climate Solutions,ssp2_1p2,MDG,cdd|Hazard|Risk score|Population weighted,risk score,1.087819437,1.087101523,1.08697237,1.087195962,1.087621858,1.088171392,1.088824304,1.089536927,1.090282454,1.091022441 +Climate Solutions,ssp2_1p2,LSO,cdd|Hazard|Risk score|Population weighted,risk score,1.355713901,1.356307616,1.356997031,1.357734439,1.358462559,1.359155676,1.35980335,1.360406972,1.360930922,1.361381769 +Climate Solutions,ssp2_1p2,VCT,cdd|Hazard|Risk score|Population weighted,risk score,0.717046003,0.717725704,0.718309341,0.718803662,0.719216956,0.719559135,0.719839119,0.720070288,0.720263602,0.720427407 +Climate Solutions,ssp2_1p2,KEN,cdd|Hazard|Risk score|Population weighted,risk score,0.853998808,0.854010102,0.853723444,0.853241016,0.85263874,0.851969636,0.851323726,0.850693827,0.850102022,0.849542112 +Climate Solutions,ssp2_1p2,KOR,cdd|Hazard|Risk score|Population weighted,risk score,0.852749535,0.853583452,0.854508246,0.855540729,0.856430802,0.857175462,0.857792142,0.858298969,0.858725233,0.859077761 +Climate Solutions,ssp2_1p2,BLR,cdd|Hazard|Risk score|Population weighted,risk score,0.416314822,0.416108673,0.41592,0.415762667,0.415628676,0.415517203,0.415421613,0.415337714,0.41526379,0.415197382 +Climate Solutions,ssp2_1p2,TJK,cdd|Hazard|Risk score|Population weighted,risk score,1.962650517,1.969302064,1.976250155,1.983482851,1.990625896,1.997556455,2.003895071,2.009556315,2.014485973,2.018457564 +Climate Solutions,ssp2_1p2,TUR,cdd|Hazard|Risk score|Population weighted,risk score,1.349462161,1.351253928,1.352768512,1.353932562,1.354762125,1.355420231,1.35587646,1.356167608,1.356314808,1.356312723 +Climate Solutions,ssp2_1p2,AFG,cdd|Hazard|Risk score|Population weighted,risk score,1.915756106,1.925125983,1.932516733,1.938052175,1.941970689,1.944771791,1.946765523,1.948366693,1.949721325,1.950874336 +Climate Solutions,ssp2_1p2,BGD,cdd|Hazard|Risk score|Population weighted,risk score,2.21548794,2.215536943,2.21550028,2.215391049,2.215231563,2.215034544,2.214816997,2.214593069,2.214369596,2.214166938 +Climate Solutions,ssp2_1p2,MRT,cdd|Hazard|Risk score|Population weighted,risk score,2.949364505,2.948346694,2.947429723,2.946716125,2.946220247,2.946026211,2.945797896,2.945614501,2.945524031,2.945468289 +Climate Solutions,ssp2_1p2,SLB,cdd|Hazard|Risk score|Population weighted,risk score,0.321456145,0.320250115,0.319482647,0.319002964,0.318772444,0.318660812,0.318618508,0.318644872,0.31872219,0.318842929 +Climate Solutions,ssp2_1p2,LCA,cdd|Hazard|Risk score|Population weighted,risk score,0.120702825,0.116651351,0.113924601,0.111990133,0.110693469,0.110217063,0.110813793,0.112508324,0.114700572,0.116935838 +Climate Solutions,ssp2_1p2,CYP,cdd|Hazard|Risk score|Population weighted,risk score,2.048840562,2.048861817,2.048926131,2.049028245,2.049134251,2.049256051,2.049417302,2.049610643,2.049782838,2.049933527 +Climate Solutions,ssp2_1p2,PYF,cdd|Hazard|Risk score|Population weighted,risk score,0.32841901,0.328737112,0.329060412,0.329373491,0.329667916,0.329931411,0.330164232,0.330365707,0.330545893,0.330698823 +Climate Solutions,ssp2_1p2,FRA,cdd|Hazard|Risk score|Population weighted,risk score,0.66896072,0.669057433,0.669162582,0.669266591,0.669352889,0.669448554,0.669577916,0.669724717,0.669873268,0.670027183 +Climate Solutions,ssp2_1p2,NAM,cdd|Hazard|Risk score|Population weighted,risk score,2.674328118,2.674305799,2.673898209,2.67372848,2.673289477,2.672953256,2.672602114,2.672157974,2.671694246,2.671202959 +Climate Solutions,ssp2_1p2,SOM,cdd|Hazard|Risk score|Population weighted,risk score,2.177404896,2.177475924,2.177610352,2.177684804,2.177837254,2.177995527,2.178135039,2.178220518,2.178292006,2.178355982 +Climate Solutions,ssp2_1p2,PER,cdd|Hazard|Risk score|Population weighted,risk score,1.99204323,2.006453567,2.020809419,2.034758128,2.048107981,2.060439162,2.070966763,2.080079287,2.087898256,2.094581268 +Climate Solutions,ssp2_1p2,LAO,cdd|Hazard|Risk score|Population weighted,risk score,1.544873468,1.544826964,1.54561435,1.54660652,1.547754604,1.549252414,1.550720161,1.552168221,1.553493611,1.554437429 +Climate Solutions,ssp2_1p2,SYC,cdd|Hazard|Risk score|Population weighted,risk score,0.438989083,0.439228735,0.439321115,0.439413019,0.439413019,0.439414633,0.439413426,0.439413299,0.439411091,0.439412214 +Climate Solutions,ssp2_1p2,NOR,cdd|Hazard|Risk score|Population weighted,risk score,0.490685278,0.492042901,0.493082425,0.493899293,0.494577697,0.495133325,0.495612238,0.496022438,0.496365694,0.496663019 +Climate Solutions,ssp2_1p2,CIV,cdd|Hazard|Risk score|Population weighted,risk score,1.374821511,1.377021752,1.378550082,1.379596869,1.380215874,1.380526468,1.380705479,1.380766109,1.380793041,1.380770413 +Climate Solutions,ssp2_1p2,BEN,cdd|Hazard|Risk score|Population weighted,risk score,1.901079569,1.903468937,1.905172965,1.906510311,1.907620932,1.908448464,1.909095631,1.90960184,1.909965634,1.91022149 +Climate Solutions,ssp2_1p2,ESH,cdd|Hazard|Risk score|Population weighted,risk score,2.84063312,2.842519822,2.843009764,2.845376406,2.845219992,2.847860446,2.847674675,2.849236058,2.850401656,2.851268915 +Climate Solutions,ssp2_1p2,CUB,cdd|Hazard|Risk score|Population weighted,risk score,0.870764928,0.871043048,0.871298039,0.871509161,0.87168367,0.871829972,0.871951401,0.87205481,0.872141512,0.872217372 +Climate Solutions,ssp2_1p2,CMR,cdd|Hazard|Risk score|Population weighted,risk score,1.720947813,1.725938612,1.73119187,1.736296226,1.741340458,1.745711154,1.749741067,1.753445916,1.756965975,1.76027523 +Climate Solutions,ssp2_1p2,MNE,cdd|Hazard|Risk score|Population weighted,risk score,0.539994265,0.540456063,0.540745534,0.540943601,0.541107876,0.54123918,0.541388509,0.541505265,0.541586571,0.541670634 +Climate Solutions,ssp2_1p2,TGO,cdd|Hazard|Risk score|Population weighted,risk score,1.699475562,1.701366693,1.702581111,1.703174128,1.703410925,1.703394081,1.703141805,1.70272534,1.702168073,1.701525262 +Climate Solutions,ssp2_1p2,CHN,cdd|Hazard|Risk score|Population weighted,risk score,1.199351137,1.200183439,1.200983738,1.201689658,1.202311455,1.202803114,1.203194573,1.203509194,1.203767794,1.203976922 +Climate Solutions,ssp2_1p2,ARM,cdd|Hazard|Risk score|Population weighted,risk score,1.046985219,1.052107544,1.057131955,1.061599592,1.065352951,1.068487179,1.071044279,1.073111383,1.074814459,1.076253259 +Climate Solutions,ssp2_1p2,ATG,cdd|Hazard|Risk score|Population weighted,risk score,0.458131808,0.458132418,0.458132756,0.458132922,0.458133203,0.458133219,0.458133231,0.458133231,0.458133368,0.458133196 +Climate Solutions,ssp2_1p2,DOM,cdd|Hazard|Risk score|Population weighted,risk score,0.507779192,0.507183774,0.50658752,0.506005337,0.505435488,0.504853181,0.504267649,0.503714743,0.503243127,0.502880076 +Climate Solutions,ssp2_1p2,UKR,cdd|Hazard|Risk score|Population weighted,risk score,0.583879285,0.584536254,0.585132383,0.585657567,0.586116558,0.586527667,0.586924117,0.587275353,0.587582015,0.587851297 +Climate Solutions,ssp2_1p2,BHR,cdd|Hazard|Risk score|Population weighted,risk score,2.74645876,2.746717962,2.746902673,2.747046696,2.74715465,2.747234491,2.747288325,2.747319857,2.747335821,2.747345636 +Climate Solutions,ssp2_1p2,TON,cdd|Hazard|Risk score|Population weighted,risk score,0.351966664,0.352332332,0.352890992,0.353600503,0.354443803,0.355381099,0.356207015,0.356926025,0.357539908,0.358037002 +Climate Solutions,ssp2_1p2,FIN,cdd|Hazard|Risk score|Population weighted,risk score,0.426647358,0.426681872,0.426716386,0.426741113,0.426763499,0.426789682,0.426805637,0.426824743,0.42683779,0.426841415 +Climate Solutions,ssp2_1p2,LBY,cdd|Hazard|Risk score|Population weighted,risk score,2.488105348,2.489084589,2.489221532,2.489221354,2.489503617,2.488467806,2.487926467,2.487443014,2.487413317,2.486776688 +Climate Solutions,ssp2_1p2,IDN,cdd|Hazard|Risk score|Population weighted,risk score,0.800240741,0.801655315,0.803449266,0.8054283,0.807559822,0.809756437,0.811962518,0.813851129,0.815467839,0.816868078 +Climate Solutions,ssp2_1p2,CAF,cdd|Hazard|Risk score|Population weighted,risk score,1.678215006,1.67970243,1.681004392,1.682331002,1.683171711,1.683766282,1.684174869,1.684773022,1.685301573,1.685696208 +Climate Solutions,ssp2_1p2,USA,cdd|Hazard|Risk score|Population weighted,risk score,0.798734302,0.801278023,0.80366974,0.805995983,0.808154273,0.809988074,0.811599012,0.813072889,0.814426151,0.815602985 +Climate Solutions,ssp2_1p2,SWE,cdd|Hazard|Risk score|Population weighted,risk score,0.487221431,0.487118908,0.487064251,0.486988543,0.486921943,0.486844541,0.486796498,0.486755722,0.486724354,0.486715426 +Climate Solutions,ssp2_1p2,VNM,cdd|Hazard|Risk score|Population weighted,risk score,1.230151789,1.230920101,1.232744649,1.235294068,1.238422921,1.241949492,1.245639083,1.249311865,1.252556638,1.255415678 +Climate Solutions,ssp2_1p2,MLI,cdd|Hazard|Risk score|Population weighted,risk score,2.624094175,2.624362669,2.624549643,2.624727602,2.624835639,2.625173406,2.625211789,2.625409103,2.625539409,2.625515342 +Climate Solutions,ssp2_1p2,RUS,cdd|Hazard|Risk score|Population weighted,risk score,0.556614562,0.555324811,0.554152899,0.552989337,0.551924992,0.550959883,0.549978393,0.549201453,0.548503821,0.547887943 +Climate Solutions,ssp2_1p2,BGR,cdd|Hazard|Risk score|Population weighted,risk score,0.77200591,0.77199661,0.771931772,0.771893876,0.771871184,0.771841689,0.771856172,0.771915988,0.771992311,0.772071521 +Climate Solutions,ssp2_1p2,MUS,cdd|Hazard|Risk score|Population weighted,risk score,0.581556307,0.579489876,0.577660507,0.576183844,0.575063427,0.574226055,0.573648045,0.573302606,0.573068558,0.572867918 +Climate Solutions,ssp2_1p2,ROU,cdd|Hazard|Risk score|Population weighted,risk score,0.627884302,0.629476647,0.630847417,0.632018207,0.632920908,0.63363739,0.634221265,0.634698422,0.635086749,0.635400033 +Climate Solutions,ssp2_1p2,AGO,cdd|Hazard|Risk score|Population weighted,risk score,2.336355855,2.335351792,2.33454354,2.33401098,2.333700428,2.333530053,2.333375413,2.333268574,2.333144319,2.333013618 +Climate Solutions,ssp2_1p2,PRT,cdd|Hazard|Risk score|Population weighted,risk score,1.291044261,1.292554941,1.293924377,1.295096935,1.296141611,1.297124869,1.298068422,1.29893417,1.299678472,1.30032738 +Climate Solutions,ssp2_1p2,ZAF,cdd|Hazard|Risk score|Population weighted,risk score,1.592427429,1.594803256,1.597151592,1.599481463,1.601702102,1.603807487,1.605802627,1.607708198,1.609311033,1.610629957 +Climate Solutions,ssp2_1p2,FJI,cdd|Hazard|Risk score|Population weighted,risk score,0.409634782,0.409793466,0.409958876,0.410116144,0.410267918,0.410415687,0.41053984,0.410638105,0.410717467,0.410780476 +Climate Solutions,ssp2_1p2,BRN,cdd|Hazard|Risk score|Population weighted,risk score,0.306881733,0.307103245,0.307366657,0.30765748,0.307962994,0.308264104,0.308538331,0.308783537,0.30899775,0.309164413 +Climate Solutions,ssp2_1p2,MYS,cdd|Hazard|Risk score|Population weighted,risk score,0.36943618,0.369203035,0.369117768,0.36902718,0.368950063,0.368891261,0.36887368,0.368898579,0.368950473,0.369022431 +Climate Solutions,ssp2_1p2,AUT,cdd|Hazard|Risk score|Population weighted,risk score,0.40340137,0.404005986,0.404560222,0.405082035,0.405596031,0.406082658,0.40652243,0.406918626,0.407285223,0.407651795 +Climate Solutions,ssp2_1p2,MOZ,cdd|Hazard|Risk score|Population weighted,risk score,1.361440133,1.363946857,1.36619168,1.368255265,1.370059144,1.371501736,1.372711838,1.373780176,1.374762896,1.375647138 +Climate Solutions,ssp2_1p2,UGA,cdd|Hazard|Risk score|Population weighted,risk score,0.631983026,0.634666717,0.636281013,0.637209013,0.637692136,0.637868344,0.637871386,0.637769992,0.637592978,0.637370613 +Climate Solutions,ssp2_1p2,KGZ,cdd|Hazard|Risk score|Population weighted,risk score,1.212143137,1.213976974,1.215547324,1.215356415,1.215491194,1.214908249,1.213739477,1.212830283,1.212132841,1.211761922 +Climate Solutions,ssp2_1p2,HUN,cdd|Hazard|Risk score|Population weighted,risk score,0.552110274,0.55193711,0.551799782,0.551682302,0.551576205,0.551492781,0.551430542,0.551379911,0.551339149,0.551306922 +Climate Solutions,ssp2_1p2,NER,cdd|Hazard|Risk score|Population weighted,risk score,2.840496308,2.840732896,2.841031387,2.841254247,2.841496713,2.841686726,2.841843476,2.841988809,2.842080972,2.842167506 +Climate Solutions,ssp2_1p2,BRA,cdd|Hazard|Risk score|Population weighted,risk score,1.011673841,1.010100083,1.008820932,1.007542711,1.006171036,1.004753498,1.003629024,1.002696342,1.001941873,1.001268029 +Climate Solutions,ssp2_1p2,KWT,cdd|Hazard|Risk score|Population weighted,risk score,2.715362626,2.716139872,2.716245829,2.716288233,2.716270281,2.71618204,2.715975901,2.715662029,2.715307948,2.714893333 +Climate Solutions,ssp2_1p2,PAN,cdd|Hazard|Risk score|Population weighted,risk score,0.876106902,0.877880296,0.879369553,0.880583179,0.881557017,0.882309881,0.88290824,0.883383936,0.883779138,0.884121198 +Climate Solutions,ssp2_1p2,GUY,cdd|Hazard|Risk score|Population weighted,risk score,0.409118139,0.408863324,0.409038867,0.409454998,0.40989468,0.410146522,0.409650274,0.409982231,0.410257469,0.410324416 +Climate Solutions,ssp2_1p2,CRI,cdd|Hazard|Risk score|Population weighted,risk score,0.863185877,0.863378969,0.863288944,0.863016058,0.862614847,0.862129588,0.861585434,0.861002123,0.860476817,0.860059835 +Climate Solutions,ssp2_1p2,LUX,cdd|Hazard|Risk score|Population weighted,risk score,0.445611592,0.446740401,0.447626354,0.448374573,0.448991966,0.449465476,0.44974248,0.449826037,0.449785228,0.449662735 +Climate Solutions,ssp2_1p2,IRL,cdd|Hazard|Risk score|Population weighted,risk score,0.419869876,0.420358875,0.420870718,0.421337965,0.421754556,0.422155119,0.422545873,0.422909478,0.42325351,0.423583737 +Climate Solutions,ssp2_1p2,NGA,cdd|Hazard|Risk score|Population weighted,risk score,2.091713796,2.095116175,2.097952971,2.100338482,2.102240621,2.103543723,2.104486802,2.10514358,2.105562837,2.105812549 +Climate Solutions,ssp2_1p2,ECU,cdd|Hazard|Risk score|Population weighted,risk score,0.87120318,0.87290915,0.873619128,0.873519404,0.872768235,0.871496763,0.869992273,0.868364846,0.866670641,0.865202435 +Climate Solutions,ssp2_1p2,CZE,cdd|Hazard|Risk score|Population weighted,risk score,0.398930404,0.399415359,0.399865457,0.400308655,0.400735103,0.401111602,0.401430001,0.40170285,0.401935721,0.402121786 +Climate Solutions,ssp2_1p2,AUS,cdd|Hazard|Risk score|Population weighted,risk score,0.830068407,0.8300244,0.829102616,0.828508802,0.82841211,0.827757465,0.826853045,0.826171544,0.825605327,0.825187356 +Climate Solutions,ssp2_1p2,IRN,cdd|Hazard|Risk score|Population weighted,risk score,2.205375282,2.206830463,2.207814615,2.208529865,2.209038051,2.209219853,2.20938992,2.209687164,2.20997578,2.210242246 +Climate Solutions,ssp2_1p2,DZA,cdd|Hazard|Risk score|Population weighted,risk score,1.779945799,1.781062053,1.781015326,1.781726082,1.781924602,1.782655938,1.783196815,1.783645714,1.783451043,1.78380612 +Climate Solutions,ssp2_1p2,SLV,cdd|Hazard|Risk score|Population weighted,risk score,1.819113146,1.81676665,1.81419467,1.811658223,1.809210133,1.80720882,1.805592644,1.804246686,1.803075621,1.802009726 +Climate Solutions,ssp2_1p2,CHL,cdd|Hazard|Risk score|Population weighted,risk score,2.342178175,2.344254573,2.345874022,2.347102207,2.348042373,2.348644066,2.349164783,2.349495273,2.34987032,2.350018887 +Climate Solutions,ssp2_1p2,PRI,cdd|Hazard|Risk score|Population weighted,risk score,0.327901297,0.32798784,0.327993402,0.327996828,0.327998192,0.327999195,0.328000439,0.328001196,0.328001284,0.328002048 +Climate Solutions,ssp2_1p2,BEL,cdd|Hazard|Risk score|Population weighted,risk score,0.457267742,0.457481206,0.457684379,0.457887455,0.458070483,0.458245622,0.458442008,0.458655596,0.458867457,0.459072808 +Climate Solutions,ssp2_1p2,THA,cdd|Hazard|Risk score|Population weighted,risk score,1.800170909,1.799937116,1.799326577,1.798322347,1.796975469,1.795457378,1.79379768,1.792191456,1.790789366,1.789550271 +Climate Solutions,ssp2_1p2,HTI,cdd|Hazard|Risk score|Population weighted,risk score,0.583064564,0.58333022,0.583624582,0.583932453,0.584258679,0.584629558,0.585027355,0.585374629,0.585653755,0.585872524 +Climate Solutions,ssp2_1p2,IRQ,cdd|Hazard|Risk score|Population weighted,risk score,2.506340196,2.507570795,2.508606044,2.50949933,2.510239822,2.510891254,2.511472196,2.511983958,2.512417598,2.512782533 +Climate Solutions,ssp2_1p2,SLE,cdd|Hazard|Risk score|Population weighted,risk score,1.832965551,1.832317546,1.831799783,1.831378554,1.831008091,1.830688342,1.830438313,1.83024797,1.830125478,1.830076391 +Climate Solutions,ssp2_1p2,GEO,cdd|Hazard|Risk score|Population weighted,risk score,0.59930062,0.600519175,0.601311284,0.602094157,0.602836453,0.603513267,0.604046977,0.604352993,0.604535405,0.60452737 +Climate Solutions,ssp2_1p2,HKG,cdd|Hazard|Risk score|Population weighted,risk score,1.135016783,1.134979751,1.135082238,1.135312876,1.135618809,1.136029366,1.136418988,1.136750142,1.136994706,1.137079961 +Climate Solutions,ssp2_1p2,DNK,cdd|Hazard|Risk score|Population weighted,risk score,0.561414045,0.561424203,0.561508644,0.561609793,0.561732904,0.561880891,0.562016767,0.562136306,0.562244339,0.562338641 +Climate Solutions,ssp2_1p2,POL,cdd|Hazard|Risk score|Population weighted,risk score,0.408619955,0.408491552,0.408367657,0.408239608,0.408110097,0.407992928,0.407893351,0.407802953,0.407724173,0.407664031 +Climate Solutions,ssp2_1p2,MDA,cdd|Hazard|Risk score|Population weighted,risk score,0.639092244,0.639886779,0.640599209,0.641152273,0.641574026,0.641898132,0.642166095,0.642374582,0.64254858,0.642734044 +Climate Solutions,ssp2_1p2,MAR,cdd|Hazard|Risk score|Population weighted,risk score,2.05045652,2.051300892,2.052049704,2.052715293,2.053283923,2.053794237,2.054231694,2.054583673,2.054871796,2.055115004 +Climate Solutions,ssp2_1p2,HRV,cdd|Hazard|Risk score|Population weighted,risk score,0.511585895,0.51139064,0.511270313,0.511197377,0.511156207,0.511144373,0.511131904,0.511102791,0.511064358,0.511014081 +Climate Solutions,ssp2_1p2,MNG,cdd|Hazard|Risk score|Population weighted,risk score,1.900775216,1.90327481,1.903341256,1.90270701,1.903496,1.903647926,1.903675871,1.903689122,1.903983806,1.902843677 +Climate Solutions,ssp2_1p2,GNB,cdd|Hazard|Risk score|Population weighted,risk score,2.709222671,2.709893429,2.710493186,2.71107484,2.71157739,2.712050205,2.712497944,2.712921531,2.713344231,2.71371346 +Climate Solutions,ssp2_1p2,KIR,cdd|Hazard|Risk score|Population weighted,risk score,0.580850471,0.586036853,0.590482148,0.593362648,0.595700893,0.597615887,0.598899737,0.599497413,0.600088888,0.600380825 +Climate Solutions,ssp2_1p2,CHE,cdd|Hazard|Risk score|Population weighted,risk score,0.370629545,0.370513148,0.370341844,0.370213848,0.370079942,0.369933307,0.369831896,0.369787682,0.369803422,0.369858685 +Climate Solutions,ssp2_1p2,GRD,cdd|Hazard|Risk score|Population weighted,risk score,0.567805662,0.56874959,0.569493773,0.570210396,0.570856214,0.571382976,0.571800672,0.572102325,0.572331129,0.572531931 +Climate Solutions,ssp2_1p2,BLZ,cdd|Hazard|Risk score|Population weighted,risk score,0.966503497,0.962943135,0.95952689,0.956504309,0.953780301,0.951396465,0.949164153,0.947429025,0.946276134,0.945779295 +Climate Solutions,ssp2_1p2,TCD,cdd|Hazard|Risk score|Population weighted,risk score,2.637352271,2.636483806,2.635298441,2.634895373,2.634370424,2.634049446,2.633963067,2.633669013,2.633459199,2.633182309 +Climate Solutions,ssp2_1p2,EST,cdd|Hazard|Risk score|Population weighted,risk score,0.408264862,0.408153375,0.408042635,0.407941407,0.407856977,0.407777011,0.407700896,0.407634242,0.407575213,0.407521537 +Climate Solutions,ssp2_1p2,URY,cdd|Hazard|Risk score|Population weighted,risk score,0.482723535,0.482765546,0.48275059,0.482756112,0.482785803,0.482832323,0.482891564,0.482913811,0.482916099,0.48297272 +Climate Solutions,ssp2_1p2,GNQ,cdd|Hazard|Risk score|Population weighted,risk score,0.531733742,0.530044944,0.528877377,0.528060961,0.527448657,0.526996472,0.526635654,0.526367992,0.526169347,0.526078455 +Climate Solutions,ssp2_1p2,LBN,cdd|Hazard|Risk score|Population weighted,risk score,2.23369344,2.233986417,2.234205209,2.234499665,2.234904706,2.235337893,2.235856753,2.236493377,2.237262569,2.238169773 +Climate Solutions,ssp2_1p2,UZB,cdd|Hazard|Risk score|Population weighted,risk score,2.093171516,2.094647112,2.096014484,2.097172617,2.098218149,2.099092955,2.099776809,2.100301099,2.100715654,2.100981912 +Climate Solutions,ssp2_1p2,TUN,cdd|Hazard|Risk score|Population weighted,risk score,1.791193251,1.791157747,1.791130887,1.791030166,1.790874403,1.790661306,1.790460956,1.790296947,1.790138758,1.790035714 +Climate Solutions,ssp2_1p2,DJI,cdd|Hazard|Risk score|Population weighted,risk score,2.155718892,2.156679535,2.157591152,2.158394067,2.159148121,2.159889058,2.160505067,2.16101055,2.161345729,2.161536638 +Climate Solutions,ssp2_1p2,RWA,cdd|Hazard|Risk score|Population weighted,risk score,0.994211341,0.995898032,0.996759549,0.997197833,0.997460561,0.997560427,0.997522056,0.997417041,0.997275244,0.997105356 +Climate Solutions,ssp2_1p2,TLS,cdd|Hazard|Risk score|Population weighted,risk score,1.21651633,1.216421904,1.21611956,1.215798311,1.215454836,1.215132992,1.214783097,1.214434873,1.214124674,1.213863406 +Climate Solutions,ssp2_1p2,COL,cdd|Hazard|Risk score|Population weighted,risk score,0.670732994,0.673617921,0.67581728,0.677384168,0.678477108,0.679138541,0.679460029,0.679487127,0.679486874,0.679466468 +Climate Solutions,ssp2_1p2,REU,cdd|Hazard|Risk score|Population weighted,risk score,0.40316933,0.407116697,0.407990052,0.408398312,0.408636497,0.408791085,0.40889254,0.408975609,0.409036071,0.409082814 +Climate Solutions,ssp2_1p2,BDI,cdd|Hazard|Risk score|Population weighted,risk score,1.383494468,1.384278228,1.384299756,1.383897258,1.383437534,1.383014978,1.382326579,1.381463342,1.38051648,1.379478834 +Climate Solutions,ssp2_1p2,TWN,cdd|Hazard|Risk score|Population weighted,risk score,0.625068789,0.635439016,0.643419984,0.649151053,0.65404754,0.65684496,0.659810848,0.662399736,0.664696083,0.66676138 +Climate Solutions,ssp2_1p2,NIC,cdd|Hazard|Risk score|Population weighted,risk score,1.726898348,1.728778117,1.730968239,1.733206411,1.735563895,1.73804489,1.740339076,1.742386668,1.74419828,1.745877762 +Climate Solutions,ssp2_1p2,BRB,cdd|Hazard|Risk score|Population weighted,risk score,0.839259476,0.839192015,0.839126479,0.839062051,0.838999399,0.838941946,0.838894764,0.838855691,0.838823062,0.838795603 +Climate Solutions,ssp2_1p2,QAT,cdd|Hazard|Risk score|Population weighted,risk score,2.984166628,2.98407742,2.98401514,2.983965435,2.98391775,2.983877469,2.983837524,2.98378982,2.983746267,2.983708985 +Climate Solutions,ssp2_1p2,COD,cdd|Hazard|Risk score|Population weighted,risk score,1.284571331,1.285161801,1.285657767,1.285835723,1.285823773,1.285862749,1.285941191,1.286029433,1.286134356,1.286269352 +Climate Solutions,ssp2_1p2,ITA,cdd|Hazard|Risk score|Population weighted,risk score,0.821662717,0.821104563,0.820468221,0.819855953,0.819225172,0.818572746,0.817957596,0.817405108,0.816917773,0.816482119 +Climate Solutions,ssp2_1p2,BTN,cdd|Hazard|Risk score|Population weighted,risk score,2.037143837,2.037154196,2.037335855,2.037510017,2.037787835,2.038157825,2.038537963,2.03890129,2.039306065,2.039764575 +Climate Solutions,ssp2_1p2,SDN,cdd|Hazard|Risk score|Population weighted,risk score,2.855446172,2.854832575,2.854452547,2.854294534,2.854259592,2.854314897,2.854437851,2.854611337,2.854793808,2.855017809 +Climate Solutions,ssp2_1p2,NPL,cdd|Hazard|Risk score|Population weighted,risk score,2.134643053,2.137290572,2.139281658,2.14079018,2.141920378,2.143145639,2.144416806,2.145680624,2.146890799,2.147995657 +Climate Solutions,ssp2_1p2,MLT,cdd|Hazard|Risk score|Population weighted,risk score,1.797988783,1.798957098,1.799419669,1.799689908,1.799860073,1.79997167,1.800047898,1.800101771,1.800139537,1.800167227 +Climate Solutions,ssp2_1p2,MDV,cdd|Hazard|Risk score|Population weighted,risk score,0.613218945,0.616485826,0.619204443,0.621369598,0.62304156,0.624320107,0.62528853,0.626042102,0.626639923,0.627145729 +Climate Solutions,ssp2_1p2,SUR,cdd|Hazard|Risk score|Population weighted,risk score,0.451115711,0.450361579,0.449703225,0.449077252,0.448504255,0.447965858,0.447496206,0.447161866,0.446871574,0.446719907 +Climate Solutions,ssp2_1p2,VEN,cdd|Hazard|Risk score|Population weighted,risk score,1.344100272,1.347701322,1.350302299,1.352144884,1.353358596,1.354058803,1.354293846,1.354360022,1.354385076,1.3543618 +Climate Solutions,ssp2_1p2,ISR,cdd|Hazard|Risk score|Population weighted,risk score,2.442572907,2.442757592,2.442537711,2.442147005,2.441658651,2.441133659,2.440644993,2.440218674,2.439861901,2.439571737 +Climate Solutions,ssp2_1p2,ISL,cdd|Hazard|Risk score|Population weighted,risk score,0.412505255,0.41229126,0.412300646,0.41230829,0.412264572,0.412347545,0.412240208,0.412212025,0.4123008,0.412307894 +Climate Solutions,ssp2_1p2,ZMB,cdd|Hazard|Risk score|Population weighted,risk score,2.610478322,2.607030974,2.604608403,2.603011291,2.601970264,2.601427117,2.601173405,2.601142702,2.601298508,2.601546748 +Climate Solutions,ssp2_1p2,SEN,cdd|Hazard|Risk score|Population weighted,risk score,2.851610431,2.851348027,2.851266563,2.851280501,2.851372195,2.851533416,2.851706961,2.851886059,2.852076098,2.852253855 +Climate Solutions,ssp2_1p2,PNG,cdd|Hazard|Risk score|Population weighted,risk score,0.242087454,0.242297884,0.242613142,0.242976221,0.243442105,0.244146504,0.244873169,0.245757578,0.246541486,0.247359292 +Climate Solutions,ssp2_1p2,MWI,cdd|Hazard|Risk score|Population weighted,risk score,1.82798548,1.83173852,1.834578935,1.836646304,1.838033299,1.838864093,1.839322401,1.83953926,1.839595802,1.839525147 +Climate Solutions,ssp2_1p2,TTO,cdd|Hazard|Risk score|Population weighted,risk score,0.599210799,0.599186073,0.599178893,0.599185803,0.599211204,0.59925698,0.599318848,0.599395694,0.599471408,0.599540422 +Climate Solutions,ssp2_1p2,ZWE,cdd|Hazard|Risk score|Population weighted,risk score,2.237382907,2.237417381,2.237899768,2.238817071,2.239957263,2.24124834,2.242525561,2.243817016,2.245183959,2.246606662 +Climate Solutions,ssp2_1p2,DEU,cdd|Hazard|Risk score|Population weighted,risk score,0.404910187,0.405045109,0.405169982,0.405286032,0.405389785,0.405486207,0.405574606,0.405652114,0.405717926,0.405774029 +Climate Solutions,ssp2_1p2,VUT,cdd|Hazard|Risk score|Population weighted,risk score,0.422419676,0.422265933,0.422142657,0.422053348,0.421977173,0.421911165,0.421851342,0.421804567,0.421764173,0.421730325 +Climate Solutions,ssp2_1p2,MTQ,cdd|Hazard|Risk score|Population weighted,risk score,0.361462946,0.362139881,0.36255286,0.36283508,0.363031097,0.363119999,0.36307316,0.362894479,0.362662927,0.362429148 +Climate Solutions,ssp2_1p2,KAZ,cdd|Hazard|Risk score|Population weighted,risk score,1.065222478,1.065113693,1.065184481,1.064224712,1.063524221,1.06229522,1.06095779,1.060163858,1.059319191,1.059329524 +Climate Solutions,ssp2_1p2,PHL,cdd|Hazard|Risk score|Population weighted,risk score,0.791894237,0.791988057,0.792318997,0.792841973,0.793471277,0.794137507,0.794817123,0.795500291,0.796167631,0.796810356 +Climate Solutions,ssp2_1p2,ERI,cdd|Hazard|Risk score|Population weighted,risk score,2.145754175,2.145071414,2.144756808,2.144207631,2.143741335,2.143367551,2.14296495,2.14261377,2.142322995,2.142085569 +Climate Solutions,ssp2_1p2,NCL,cdd|Hazard|Risk score|Population weighted,risk score,0.560994421,0.561203522,0.561388109,0.561541986,0.561718739,0.561876814,0.56203939,0.562194071,0.562325067,0.562471677 +Climate Solutions,ssp2_1p2,MKD,cdd|Hazard|Risk score|Population weighted,risk score,0.69388987,0.693568279,0.693275355,0.693052803,0.692881245,0.692711593,0.69252165,0.692363451,0.692234682,0.69212782 +Climate Solutions,ssp2_1p2,PRK,cdd|Hazard|Risk score|Population weighted,risk score,0.74301305,0.74307308,0.743088567,0.743063459,0.742988029,0.742898773,0.742808507,0.742720333,0.742650289,0.742608144 +Climate Solutions,ssp2_1p2,PRY,cdd|Hazard|Risk score|Population weighted,risk score,0.873105667,0.873230235,0.87341173,0.873633081,0.87401455,0.874371642,0.874759341,0.875182964,0.875652323,0.875970376 +Climate Solutions,ssp2_1p2,LVA,cdd|Hazard|Risk score|Population weighted,risk score,0.405876401,0.405947484,0.406007315,0.406054964,0.406096118,0.406132067,0.406164664,0.406197601,0.406228954,0.406260482 +Climate Solutions,ssp2_1p2,JPN,cdd|Hazard|Risk score|Population weighted,risk score,0.431192024,0.432617191,0.434165496,0.435652249,0.436975981,0.438148887,0.439184492,0.440096594,0.440897926,0.4416013 +Climate Solutions,ssp2_1p2,SYR,cdd|Hazard|Risk score|Population weighted,risk score,2.230962104,2.232801109,2.234420298,2.235802112,2.236992501,2.238061372,2.238963442,2.239714557,2.240326391,2.240835807 +Climate Solutions,ssp2_1p2,HND,cdd|Hazard|Risk score|Population weighted,risk score,1.095955831,1.091493509,1.087750754,1.084743006,1.08226194,1.08019066,1.078593761,1.077398468,1.076532091,1.075935823 +Climate Solutions,ssp2_1p2,MMR,cdd|Hazard|Risk score|Population weighted,risk score,2.296683565,2.297852585,2.298935757,2.299915319,2.300790769,2.301591174,2.302403226,2.303286363,2.304284244,2.305315457 +Climate Solutions,ssp2_1p2,MEX,cdd|Hazard|Risk score|Population weighted,risk score,1.888463863,1.889612676,1.89065537,1.891591016,1.892385037,1.893026625,1.893534955,1.893971136,1.894326353,1.894642341 +Climate Solutions,ssp2_1p2,EGY,cdd|Hazard|Risk score|Population weighted,risk score,2.954234344,2.953780674,2.953909193,2.954319374,2.954891152,2.955595863,2.956361833,2.957165494,2.957905004,2.958625972 +Climate Solutions,ssp2_1p2,SGP,cdd|Hazard|Risk score|Population weighted,risk score,0.29291162,0.29291162,0.29291162,0.29291162,0.29291162,0.29291162,0.29291162,0.29291162,0.29291162,0.29291162 +Climate Solutions,ssp2_1p2,SRB,cdd|Hazard|Risk score|Population weighted,risk score,0.581360145,0.581413143,0.581466016,0.581535976,0.581626167,0.581709713,0.581775772,0.581832411,0.581871192,0.581894022 +Climate Solutions,ssp2_1p2,BWA,cdd|Hazard|Risk score|Population weighted,risk score,2.485227856,2.484978586,2.484950403,2.485103865,2.485057078,2.484909188,2.485324723,2.485425443,2.485433575,2.485345616 +Climate Solutions,ssp2_1p2,GBR,cdd|Hazard|Risk score|Population weighted,risk score,0.454814521,0.454751904,0.454696816,0.454646816,0.454603087,0.454566065,0.454535969,0.454511136,0.454490845,0.454476234 +Climate Solutions,ssp2_1p2,GMB,cdd|Hazard|Risk score|Population weighted,risk score,2.839679274,2.839118375,2.838761485,2.838515801,2.838367857,2.83828032,2.838212228,2.838160264,2.8381241,2.838102761 +Climate Solutions,ssp2_1p2,GRC,cdd|Hazard|Risk score|Population weighted,risk score,1.209422239,1.215181634,1.220245182,1.224487804,1.228184503,1.231523173,1.23459031,1.237323542,1.239767269,1.24194077 +Climate Solutions,ssp2_1p2,LKA,cdd|Hazard|Risk score|Population weighted,risk score,0.867512024,0.867377863,0.8672792,0.867170953,0.867055692,0.866936871,0.866817134,0.866701536,0.86659078,0.866487629 +Climate Solutions,ssp2_1p2,GUF,cdd|Hazard|Risk score|Population weighted,risk score,0.644083493,0.644436012,0.644783208,0.645404514,0.645790882,0.646254873,0.646781864,0.647030273,0.647410406,0.647635883 +Climate Solutions,ssp2_1p2,COM,cdd|Hazard|Risk score|Population weighted,risk score,0.352988516,0.352358126,0.351865118,0.351447542,0.351117947,0.350830875,0.350581741,0.350374069,0.350206722,0.350072744 +Climate Solutions,ssp2_1p2,FSM,cdd|Hazard|Risk score|Population weighted,risk score,0.128514159,0.128456257,0.128368396,0.12824219,0.128092241,0.12793364,0.127778913,0.127635357,0.12751239,0.127409498 +Climate Solutions,ssp2_1p2,GLP,cdd|Hazard|Risk score|Population weighted,risk score,0.367227115,0.36644997,0.366159659,0.365983087,0.365928308,0.365924782,0.365920331,0.365918456,0.365916876,0.365915602 +Climate Solutions,ssp2_1p2,MYT,cdd|Hazard|Risk score|Population weighted,risk score,0.937118851,0.937118851,0.937118851,0.937118851,0.937118851,0.937118851,0.937118851,0.937118851,0.937118851,0.937118851 +Climate Solutions,ssp2_1p2,VIR,cdd|Hazard|Risk score|Population weighted,risk score,0.390500232,0.390251706,0.390114527,0.38988591,0.389840406,0.389791161,0.389733183,0.38964421,0.389504252,0.389433548 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Population,people,7811.079824,9212.936458,9577.606071,9799.979595,9899.741448,9872.018083,9719.328743,9421.097701,9079.498939,8640.711882 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Population,people,5320.119912,5849.003276,6210.242387,6545.83405,6756.655854,6829.74726,6722.899662,6298.953992,6029.115614,5688.791964 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Population,people,6008767.474,7739573.173,8958549.464,9968756.48,10801545.51,11340750.31,11612849.58,11794994.27,11930150.27,11947421.24 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Population,people,17557.69987,31765.00935,38969.93449,45668.49088,51508.81279,56251.23342,59740.97414,62239.85131,63541.66371,63843.46278 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Population,people,175733.5032,360542.9731,421027.6423,469430.6999,508919.9783,530835.9641,530070.9929,517952.4275,508385.8727,500913.7523 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Population,people,244704.9404,321780.145,396419.8395,469278.0452,530622.1507,583464.1942,619812.7864,638431.4605,642453.2497,633395.5445 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Population,people,51450.80017,65923.44771,78779.0401,90337.18759,100928.5464,108489.639,113805.1012,116502.7236,117259.5486,115586.5426 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Population,people,1672757.995,2880692.312,3376899.192,3833810.916,4181620.529,4374664.235,4442663.682,4467668.189,4572391.944,4759808.228 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Population,people,34287.66136,40434.94232,43856.16654,46094.33054,46997.12699,46824.18781,45685.21771,43814.67918,41452.14658,38826.51981 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Population,people,124311.6516,148019.2635,190519.1297,235965.4797,279213.6292,316222.2889,344380.3072,362128.9512,370136.1017,368940.2398 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Population,people,1357041.591,1916935.341,2301229.84,2647029.654,2947974.495,3192550.81,3361791.761,3460010.206,3488830.648,3456522.003 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Population,people,83220.70045,103067.7532,118376.3777,131419.9306,142001.5982,149449.8741,153855.9444,154945.0137,153243.1919,149307.1165 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Population,people,1334465.98,2082928.158,2315135.622,2495490.984,2618353.943,2674350.169,2669660.08,2615057.064,2522362.785,2403587.634 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Population,people,57616.49012,99363.3962,124238.5027,151214.7636,174456.8834,199896.6853,218294.1961,238179.0828,255236.4792,269118.8999 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Population,people,247074,264963.8602,259015.7836,247477.0765,225377.8892,206239.0179,181552.7812,163291.4428,143500.9025,130664.0008 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Population,people,541382.9898,689350.9871,764306.0752,822815.1597,871002.2873,879204.7043,872188.9073,858765.3763,844321.1533,815309.3682 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Population,people,995560.3712,1302384.467,1666266.563,2032057.941,2347635.365,2628090.477,2820317.262,2955832.458,3007877.652,2975791.659 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Population,people,26586.38018,40053.093,46269.16712,52187.33508,57544.61864,62010.12371,65648.00881,67321.23634,67640.9316,66744.74883 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Population,people,883263.3948,1283747.936,1781221.899,2384728.962,3080883.867,3803842.565,4494280.87,5118718.534,5619349.693,5993505.252 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Population,people,43771.10843,54914.96852,64345.64586,73216.63646,81380.23288,87739.89097,92236.39047,95433.17612,97729.82129,99381.57335 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Population,people,811073.8741,1168416.445,1286594.467,1385020.933,1452205.308,1495108.953,1486383.89,1452931.642,1392473.252,1336221.565 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Population,people,1262886.793,1520398.958,1585942.1,1612923.861,1606378.896,1570987.196,1521122.733,1460833.519,1392959.607,1323794.739 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Population,people,2730.699953,3643.169234,3914.864377,4073.959513,4132.78469,4058.621821,3914.153229,3693.623158,3505.410676,3207.065253 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Population,people,792600.9592,1127984.706,1411430.411,1716971.38,1979544.264,2210943.323,2408336.256,2529198.022,2598573.436,2605779.492 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Population,people,1766.239961,2465.479921,2654.35673,2755.636944,2833.006525,2832.378483,2803.714316,2685.664654,2601.10299,2487.408152 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Population,people,143611.402,328199.7699,386131.6942,440782.9268,489744.9553,525791.6821,546882.5482,556519.718,566904.5468,587957.9334 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Population,people,11603352.57,14323499.54,17141766.56,19825036.44,22144068.63,23944950.66,25151765.68,25685016.48,25578671.32,24993250.63 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Population,people,8340.000331,13858.71661,15957.11502,18266.44552,20738.98021,23197.5303,25622.24363,27921.83506,30061.91924,32013.36592 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Population,people,269309.6652,463110.968,582883.2309,700011.4004,807864.1586,898124.454,967739.2439,1016615.425,1042288.505,1043079.777 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Population,people,40954551.72,54114053.77,61940103.24,69368038.44,75875162.94,80912799.81,84647693.77,86935802.65,87816522.67,87231588.29 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Population|Low,people,604252.5395,781665.2948,836157.7588,879514.9515,921980.8275,964557.7117,1012999.636,1063842.439,1111574.956,1161384.284 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Population|Low,people,6157658.982,6049265.617,6750645.211,7235840.519,7604642.655,7763655.206,7754474.586,7641996.766,7440820.568,7148146.84 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Population|Low,people,14763097.04,16809898.18,18951998.01,20670697.91,21928297.86,22591397.91,22711098,22338698.17,21662198.29,20764998.47 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Population|Low,people,81741912.05,111469596.8,137977365.2,162043986.3,181835186.1,196227153.1,204078506.5,204843756.3,199243926.6,188640975.6 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Population|Low,people,1242002.501,1430600,1612200,1753800,1852700,1898300,1892800,1845600,1769300,1670900 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Population|Low,people,3191404.461,5240500,6332600,7281500,8057700,8614300,8929900,9003800,8843200,8483400 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Population|Low,people,12154532.24,14647546.43,15673266.54,16548859.36,17231563.28,17672936.9,17853207.4,17810520.48,17617179.77,17298403.24 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Population|Low,people,9224527.272,10734765.96,12096680.28,13248546.26,14120263.08,14671508.55,14894325.61,14814270.81,14483540.78,13968108.77 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Population|Low,people,16519559.58,20833900,26597000,32575600,38254900,43231100,47311700,50283000,52074500,52672000 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Population|Low,people,8602283.581,11612154.61,13990097.97,16298717.63,18390428.91,20088585.21,21401729.19,22324300.27,22795169,22847797.98 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Population|Low,people,27159016.37,34666568.03,40089184.78,44630059.27,48407878.33,50892671.18,52249122.35,53239586.01,54004254.78,54233250.21 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Population|Low,people,75453.69085,560592.464,609192.4019,639592.4987,651492.8178,646293.1761,623893.5989,585894.2352,538294.81,487795.3859 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Population|Low,people,9168679.585,11685905.42,13661725.2,15389541.56,16796295.78,17828708.3,18404752.47,18508359.07,18185753.45,17536291.69 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Population|Low,people,9361680.805,13637600,16640400,19396100,21735500,23533600,24700000,25213500,25117700,24493000 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Population|Low,people,5716453.642,10368700,12769400,15039600,17107500,18883300,20326200,21411900,22120500,22468300 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Population|Low,people,7176896.182,5346667.261,6552691.047,7713267.966,8701526.967,9488475.778,10084296.87,10450156.88,10549325.2,10397847.49 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Population|Low,people,23287549.66,30041277.63,30206215.7,30439630.98,30594771.94,30322830.65,29883967.7,29828420.19,30421373.1,31234675.6 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Population|Low,people,3003293.784,4143167.617,5088213.282,5981647.974,6739930.315,7325822.585,7734621.877,7949891.815,7965616.673,7808551.355 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Population|Low,people,161388.5869,296408.828,298921.4984,291182.2712,276347.782,255750.04,229860.7107,200974.2556,171672.292,144625.4962 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Population|Low,people,2350816.679,4637269.137,5340544.253,5889827.686,6377214.326,6642811.027,6651017.427,6543627.078,6468433.816,6439037.182 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Population|Low,people,32686515.66,49436680.61,64071234.08,79434271.83,94091577.11,107030765.3,117838812,126059959.7,131379879,133727401 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Population|Low,people,126409.2316,117650.3236,109431.4044,98234.02857,85752.45142,73243.57424,61461.38484,50734.44825,41326.64088,33412.2552 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Population|Low,people,444141.9411,819674.3881,962586.7068,1090380.436,1198877.534,1279639.451,1328792.719,1352939.963,1354370.464,1332517.279 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Population|Low,people,185.7000074,287.4230956,301.5027736,312.8129727,320.7953182,326.4521464,333.433669,341.4506414,345.3422329,348.6683702 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Population|Low,people,22800284.4,30565173.02,38231449.01,45877724.74,53036201.74,59129081.22,63761664.97,66945653.24,68679946.09,69054543.31 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Population|Low,people,165810725.4,207573923.8,243884476.9,276640953.3,305313482.6,326770405.3,341254038.1,348747993.3,349854849.5,345509890.6 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Population|Low,people,5942006.976,10083260.42,11789108.94,13386762.65,14625828.54,15340711.39,15636806.81,15785106.33,16205696.66,16914777.89 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Population|Low,people,1171643163,1382136797,1506352564,1594128086,1642214256,1656719272,1639652870,1596890470,1535518482,1462175636 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Population|Low,people,4919584.63,7343743.831,7657408.408,7783049.907,7716712.38,7491212.86,7189653.108,6830736.076,6481450.313,6174353.107 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Population|Low,people,10143441.76,14532023.2,17964298.47,21285913.57,24304861.03,26912761.74,29039101.6,30590214.33,31531918.18,31871934.78 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Population|Low,people,2111641.949,2289319.475,2477203.422,2599358.279,2666642.578,2667465.886,2602256.846,2485164.561,2333682.765,2159572.967 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Population|Low,people,11498942.07,15718863.7,19569669.33,23394627.74,26786108.13,29525744.75,31569875.41,32852853.99,33364727.22,33146167.16 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Population|Low,people,14857157.62,19687205.06,20028125.53,19800726.17,18920603.44,17691953.9,16382634.52,15116808.99,14022806.82,13145395.75 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Population|Low,people,6888857.372,9387284.589,10807662.57,11963376.52,12866295.42,13368053.56,13558308.89,13432847.45,13006595.38,12352854.71 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Population|Low,people,50159369.14,63913648.48,69105474.31,72714001.62,74484233.56,74602098.44,73525834.97,71588639.53,69105324.89,66320011.32 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Population|Low,people,32075542.11,38687974.93,50955076.61,64218807.06,77007187.79,88609124.78,97842961.44,104190198.4,107627482.2,108005806.3 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Population|Low,people,138761477,171046867.5,187828736.8,198757032.6,203855650.1,203158384.7,197492430.5,188393580.7,177011531.7,164603980 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Population|Low,people,3304258.005,4702200,5683800,6572000,7341200,7950900,8379800,8631800,8704700,8622900 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Population|Low,people,160.4099964,1412.13097,1355.769977,1273.6603,1172.345849,1066.47954,965.5815604,874.7960245,792.2275088,721.7610199 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Population|Low,people,606515.7237,1205001.029,1286095.433,1343493.475,1394592.275,1436091.983,1458293.667,1466196.395,1466499.699,1473201.633 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Population|Low,people,400.439991,3254.079649,3580.646078,3833.486783,4014.249509,4135.744558,4214.244836,4253.819805,4262.734629,4253.110348 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Population|Low,people,3074795.707,3420365.96,3557950.456,3698889.548,3816241.186,3925932.47,4048405.277,4186156.538,4325411.577,4460446.776 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Population|Low,people,2108541.638,2686599.155,3139799.119,3507199.091,3797899.067,3993299.199,4084499.194,4081899.194,4001099.294,3855499.448 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Population|Low,people,8620890.257,16144227.96,20864209.36,25630291.04,30032274.63,33761661.49,36639152.03,38496246.79,39298845.45,39157847.76 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Population|Low,people,18179722.55,27810938.8,30389173.64,32302259.48,33518096.66,33945728.25,33643864.78,32758058.26,31436476.72,29831465.94 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Population|Low,people,6318563.132,6605066.3,7386033.186,7966180.92,8332032.976,8463660.036,8370524.864,8099083.847,7702489.473,7225343.671 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Population|Low,people,15602806.98,23070212.1,27864833.94,32133453.64,35785827.47,38756378.95,40901508.88,42168240.68,42580857.51,42322702.85 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Population|Low,people,7306580.371,12021500,14929600,17731400,20192300,22210600,23754600,24726500,25101600,24972900 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Population|Low,people,357858.7824,597196.4436,737395.6716,870095.0417,993994.4697,1103293.769,1194893.374,1273593.218,1342192.835,1398592.515 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Population|Low,people,1235152.762,1770192.118,1713289.915,1612355.201,1474455.911,1305460.866,1131898.808,981727.9005,849203.1225,730450.6005 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Population|Low,people,16124926.61,21360042.82,25769483.38,29700606.88,32996086.5,35463026.17,37047132.44,37743063.89,37546362.26,36630796.14 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Population|Low,people,51.41999885,49.71142949,50.32661409,50.18765017,49.62463699,48.85252098,48.15282642,47.27072408,46.31570448,45.46269155 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Population|Low,people,5153074.179,7889725.2,9449989.393,10857373.96,12000279.88,12845503.1,13399248.92,13646311.22,13598703.56,13329038.62 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Population|Low,people,831118432.5,911478973.4,916659186.8,890395658.8,845986418.8,783567819.9,713876427.3,647034209,585640656.4,531998014.4 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Population|Low,people,1283635.145,1244952.532,1200721.299,1139561.582,1073778.127,997708.2501,922176.5638,851086.0806,790393.9635,745848.5829 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Population|Low,people,563.0400224,675.0788819,668.2992618,650.941256,623.2110423,589.0658137,549.0509365,504.9416098,460.3429982,416.0469371 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Population|Low,people,100395.5392,103213.5209,100568.3321,97603.39661,95327.17799,93020.02907,90777.25811,89251.52915,89210.05247,89713.62747 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Population|Low,people,181070.7562,1505200,1740100,1949100,2121900,2231100,2285200,2314000,2354000,2405200 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Population|Low,people,5301566.711,6664496.09,7346196.16,7857396.298,8243696.456,8417296.636,8385696.849,8264497.035,8095297.206,7849697.38 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Population|Low,people,46636196.45,67409617.82,72910637.42,76462122.62,78042217.23,77946998.57,76660128.07,74364369.42,71257185.34,67573698.92 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Population|Low,people,3858656.063,4789203.875,5568268.425,6214812.431,6677678.649,6969242.43,7068826.084,6960377.354,6674200.746,6280561.106 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Population|Low,people,63866027.69,76199181.15,82012887.63,87285737.1,91989006.36,96834330.14,102060920.2,107165206.1,111861520.6,116512862.6 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Population|Low,people,43335748.58,55588319.95,59076027.82,60525486.25,60668364.16,59296795.76,56617468.19,53231119.27,49522790.5,45887988.3 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Population|Low,people,15456508.53,20121000,25746000,31415600,36468400,40637500,43830400,45851200,46638400,46342900 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Population|Low,people,5112048.521,5096410.445,4892236.009,4660566.522,4505775.447,4375692.079,4232064.525,4155481.176,4140630.255,4144614.322 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Population|Low,people,36134.9209,32057.74055,28753.60732,25508.82257,22517.17016,19579.58274,16871.99104,14743.6935,13161.43939,11885.39533 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Population|Low,people,88791.61723,263402.1552,258775.8887,248353.6675,232538.7732,216111.058,199863.5483,183618.9219,168282.7898,154415.6475 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Population|Low,people,18517855.39,32364269.65,41592466.64,50755963.98,59105861.9,66183960.29,71761559.2,75536658.87,77283459.35,77204360.45 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Population|Low,people,4696894.15,6156962.583,5864226.833,5581924.652,5279730.863,4966548.491,4686596.164,4492474.467,4397488.077,4348244.469 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Population|Low,people,34383257.84,42976275.91,47069154.95,50149077.24,52220265.75,53159491.65,53153167.02,52439936.01,51222619.38,49675946.15 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Population|Low,people,16818392.16,23829393.31,29360864.24,34407806.38,38696029.15,42062537.87,44415244.33,45616457.76,45643808.15,44737329.34 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Population|Low,people,3276503.821,4883271.441,6639851.26,8619000.45,10662650.76,12603926.33,14310333.44,15704647.47,16727618.77,17344725.78 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Population|Low,people,4506929.301,4084695.943,4499259.165,4780987.082,4965412.665,5020413.374,4962901.113,4816647.657,4609127.17,4342473.685 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Population|Low,people,16040965.25,23836100,33344200,45169200,58617100,72551800,85861400,97693900,107383800,114481000 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Population|Low,people,69798122.13,84085724.28,88342300.82,90093030.26,89598592.71,87121951.5,83375663.26,78850703.57,74082162.08,69457812.39 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Population|Low,people,1635506.743,4319300,4921000,5409400,5785300,5972400,6056100,6178100,6347200,6477100 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Population|Low,people,720948.5613,1123314.65,1262192.089,1377260.627,1463357.745,1516945.755,1542495.052,1545233.374,1530075.352,1498029.517 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Population|Low,people,3629.920041,4467.317784,4240.726132,3954.680944,3490.515153,3036.374884,2578.721245,2161.66644,1667.795499,1247.536076 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Population|Low,people,1245478.55,1470552.982,1585251.958,1659067.933,1695068.1,1695164.029,1665552.725,1615645.718,1557798.38,1500488.556 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Population|Low,people,153767476.1,205280595,258209652.4,318895100.5,382437039.2,442963554.3,497024079.8,542408774.7,577708368.3,603273308.8 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Population|Low,people,4537493.998,5763944.246,6464945.236,7029690.965,7440210.602,7693863.463,7801968.948,7775095.163,7638168.94,7407364.07 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Population|Low,people,4089209.551,5862500.052,6454291.94,7000513.498,7546636.128,8074943.6,8579146.303,9065486.719,9527799.049,9989164.909 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Population|Low,people,69738252.5,81756703.89,88323843.16,92547845.58,95146151.32,94842452.8,92082534.66,87879788.09,83483563.96,79982212.57 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Population|Low,people,30516119.68,43058700,47686800,50930400,53615900,54843500,54433800,53256900,51705800,49630900 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Population|Low,people,5492666.963,6491188.477,6699589.456,6715690.654,6572391.867,6278693.063,5851394.187,5321295.201,4726996.11,4122296.876 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Population|Low,people,15105821.14,18264561.59,19155078.57,19600837.37,19621186.14,19306497.86,18772008.34,18088209.9,17288302.68,16465864.05 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Population|Low,people,59442138.49,64268732.44,64894723.47,63643717.09,60705287.33,56997341.87,53453573.58,50389344.29,47639532.44,45258162.87 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Population|Low,people,31254386.94,41091900,50811500,60320100,68980000,76290900,82243000,86684900,89471000,90569700 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Population|Low,people,4782432.692,8047800,9621700,11018200,12108100,12862300,13271700,13334400,13096900,12628600 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Population|Low,people,16310.60024,15602.6792,15141.27958,14508.7341,13711.98714,12700.30352,11649.76344,10679.38998,9820.952991,9043.491562 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Population|Low,people,1846662.52,7486600,7874400,8108600,8283000,8488600,8689700,8905500,9202600,9584400 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Population|Low,people,27287140.32,36814850.26,39657349.09,41332750.98,42043654.89,41753160.66,40497368.48,38566177.55,36270386.94,33708996.57 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Population|Low,people,6714.109848,7649.640383,7123.279434,6662.065991,6272.82517,5948.980241,5674.960653,5461.055885,5305.895725,5195.721596 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Population|Low,people,2816515.793,3180228.798,3483675.57,3685322.707,3848658.462,3919415.268,3890518.85,3826536.594,3734471.691,3585632.786 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Population|Low,people,1169316.173,1967800,2312100,2610100,2845500,2985600,3037600,3008800,2898400,2729700 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Population|Low,people,141517.8872,209517.924,236775.0417,258613.8691,275491.8928,287051.7834,292586.9996,293079.4125,289313.7819,282548.3276 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Population|Low,people,11219570.2,16176700,20805200,25419500,29638900,33273000,36169800,38212100,39372800,39728400 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Population|Low,people,3369814.76,6294600,7111300,7731000,8198100,8571500,8800800,8840900,8778600,8717200 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Population|Low,people,24179142.76,33161739.02,36603862.6,39184705.94,40982488.4,41661301.48,41470893.43,40574749.47,39195547.5,37599826.72 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Population|Low,people,8769207.939,11838100,12562200,12877500,13001700,12855500,12431300,11894500,11349000,10764600 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Population|Low,people,568522.4823,1019200,1200800,1358600,1485400,1583200,1648600,1685900,1702100,1707000 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Population|Low,people,5571082.643,7469032.516,9334712.23,11253792.21,13015736.29,14466647.53,15544136.87,16222062.24,16482669.75,16332491.14 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Population|Low,people,617877.0593,1154509.831,1453636.283,1748439.849,2008722.337,2225112.934,2373084.471,2437315.604,2420332.196,2329230.907 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Population|Low,people,8925765.07,10228004.64,10995676.78,11438384.01,11562948.76,11416595.09,11051057.19,10524915.9,9920765.762,9317189.273 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Population|Low,people,7745648.752,11512200,13741300,15606000,17117100,18071600,18518600,18452100,17867900,16914900 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Population|Low,people,1194084.367,1951125.467,2016765.627,2006180.203,1916116.521,1770621.219,1615315.689,1456007.221,1319164.43,1215911.69 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Population|Low,people,4352654.247,5272142.203,5760481.399,6087050.232,6241894.725,6221199.07,6032028.737,5698985.633,5270586.74,4798795.751 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Population|Low,people,1174339.088,2757900,3277900,3768000,4203200,4519500,4697800,4775500,4860900,5038400 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Population|Low,people,40853360.82,56756646.81,72916596.33,89327081.83,104342802.9,117141653.8,127253355.7,134125376.1,137379820.9,137311834.6 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Population|Low,people,11092092.52,13400088.69,13057517.25,12716945.92,12316188.06,11817979.65,11354013.23,11102918.85,11033217.78,11021266.83 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Population|Low,people,2600771.104,836600,924000,988700,1031600,1052000,1048100,1025000,992800,955800 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Population|Low,people,34556192.72,43065995.17,51819510.91,60094407.05,67163451.11,72586815.56,76118184.01,77567868.63,77051781.23,75040018.3 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Population|Low,people,31945346.98,30596800,34239800,36879600,38881400,40094000,40352300,39713500,38215300,36226400 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Population|Low,people,25752.49942,429500,427700,415300,401000,389500,376200,360700,347400,338400 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Population|Low,people,15832400.19,20920481.86,23210730.81,24997774.79,26238893.88,26945504.03,27158630.88,26945159.07,26413839.96,25655832.22 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Population|Low,people,5103558.174,8818400,10401300,12115300,13943500,15798500,17653500,19503600,21289400,22944200 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Population|Low,people,13330258.58,18783500,24607300,30888700,37072900,42545700,47086800,50492600,52622800,53471500 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Population|Low,people,10123746.43,17132300,21366700,25521700,29389000,32638300,35163300,36966500,37942300,38044600 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Population|Low,people,2768.320073,4264.202491,5056.41693,5717.452837,6249.387045,6683.981563,6927.754459,7063.129926,6982.620888,6808.09838 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Population|Low,people,13349680.25,19992018.22,26526428.13,33895627.44,41553946.01,48810660.14,55073993.54,60057788.23,63642554.98,65690768.04 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Population|Low,people,12334378.07,17298230.08,20281718.57,22776087.91,24659994.66,25787888.81,26175018.85,25916165,25058094.24,23711973.95 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Population|Low,people,320.8199928,1942.176766,1867.743574,1777.751048,1651.009558,1516.094751,1415.118658,1350.985278,1306.666054,1265.557085 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Population|Low,people,6699676.369,7208708.633,7424802.054,7481954.964,7513607.617,7375063.156,7120536.101,6852250.566,6553114.721,6198389.399 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Population|Low,people,15934805.78,25922817.61,29298962.97,32191358.85,34496934.12,36179288.58,37193973.99,37486006.48,37098247.37,36142085.59 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Population|Low,people,5246473.374,5407270.953,6467366.231,7475561.76,8322758.171,8934155.668,9320654.259,9470554.07,9384854.999,9094556.803 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Population|Low,people,2977.380031,9015.353683,10061.83894,10945.69096,11703.57023,12329.70139,12850.22725,13265.5752,13549.33482,13760.37359 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Population|Low,people,520392.6754,611079.7138,615502.793,603377.1595,577991.4632,544179.6268,507631.5273,470205.0743,432180.1438,395705.7522 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Population|Low,people,400393.8698,491806.2429,546845.826,585566.38,611132.2961,621122.0033,615795.606,597659.1309,570340.681,535283.5104 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Population|Low,people,19517233.23,19773100,21879300,23704900,24679200,25057400,24979500,24287100,23021500,21269000 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Population|Low,people,3487379.221,4700017.544,5362125.779,5913312.252,6336847.144,6621837.223,6748087.023,6717025.936,6561905.949,6312313.728 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Population|Low,people,45844944.43,54141062.28,56712921.99,57351623.81,56250428.93,54100217.59,51330524.34,47902784.8,44093770.64,40509429.32 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Population|Low,people,98508632.38,121112502.1,132549273.4,140861726.7,145873899.1,147360034.8,145467675.2,141110957.8,134962442.6,127417799.1 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Population|Low,people,76849083.64,102360307.3,117185845,130665361.2,141904676.1,149973759.8,155335707.7,157823835.5,157704847,155012674 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Population|Low,people,1974893.486,2402600,2726100,2970100,3133700,3198700,3176600,3101400,2988100,2845000 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Population|Low,people,912781.7174,2265500,2811400,3310400,3745300,4091500,4335000,4473200,4500800,4434800 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Population|Low,people,4543334.566,6678839.351,6669943.603,6689849.596,6676581.854,6598340.632,6518254.357,6501709.447,6563205.933,6666494.855 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Population|Low,people,2841235.913,3553353.583,3661079.41,3701877.753,3661598.319,3553766.093,3413040.792,3244301.786,3055759.769,2846854.351 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Population|%,%,0.020907261,0.02027129,0.019522389,0.018781463,0.018106722,0.017510999,0.016989873,0.016445667,0.015978507,0.015451254 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Population|%,%,0.053695545,0.050740885,0.047824806,0.046041978,0.044608989,0.043416677,0.042116834,0.039691702,0.038875449,0.038049066 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Population|%,%,22.12291793,22.32431804,22.34514741,22.33504615,22.31226401,22.28233486,22.22461366,22.15326095,22.08984374,22.02841863 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Population|%,%,0.307143221,0.306354792,0.305182189,0.303654957,0.301089071,0.297888788,0.293911179,0.290678788,0.287252385,0.284149058 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Population|%,%,7.475024438,7.77451155,7.883231769,7.969825638,7.9799291,7.990786894,7.96943444,7.915041909,7.859166026,7.7790094 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Population|%,%,1.073249073,1.052762921,1.036890529,1.022884755,1.000486742,0.986759854,0.972073897,0.953652816,0.935427168,0.917236086 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Population|%,%,0.030812059,0.031563402,0.03212281,0.032488262,0.032901051,0.033054835,0.033212659,0.033278097,0.033396014,0.033340239 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Population|%,%,28.15043134,28.56809386,28.64327743,28.63788481,28.58973581,28.51578908,28.41068268,28.30217533,28.21384374,28.13907071 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Population|%,%,0.002926427,0.002925507,0.002911384,0.002891478,0.002861786,0.002826293,0.002786248,0.002743725,0.00269953,0.002655371 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Population|%,%,0.384424014,0.379979883,0.371717807,0.36558063,0.360951445,0.35542535,0.350663853,0.34637048,0.342805901,0.340571958 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Population|%,%,41.06948033,40.766776,40.48752314,40.27738366,40.15657515,40.15332616,40.11780425,40.08445754,40.07984937,40.08537734 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Population|%,%,3.946835508,3.836363923,3.770188472,3.747146745,3.738950426,3.742515566,3.766824444,3.795904204,3.830026539,3.872574672 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Population|%,%,6.131442122,6.26844231,6.392241466,6.501061546,6.59521708,6.673662619,6.740748799,6.797953287,6.846897446,6.887445545 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Population|%,%,16.10024366,16.63821102,16.84818318,17.37900972,17.55099431,18.11807172,18.26882552,18.70124708,19.0162777,19.24202058 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Population|%,%,0.019057839,0.018704461,0.018245782,0.01800724,0.017313546,0.017147521,0.016601517,0.016500802,0.016042461,0.016098091 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Population|%,%,10.21174788,10.34362649,10.4041011,10.47185023,10.56567181,10.44521051,10.40090758,10.39101429,10.42976978,10.38650354 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Population|%,%,6.441043069,6.472762123,6.47194346,6.468308551,6.437450958,6.467155895,6.434614473,6.446576006,6.449358579,6.421246101 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Population|%,%,0.143571431,0.123757019,0.111244015,0.102820031,0.097358502,0.093693527,0.091480693,0.089123878,0.087523121,0.086452001 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Population|%,%,5.506298287,5.385729779,5.341924231,5.279546599,5.25594727,5.242933415,5.234343803,5.239547744,5.232958503,5.235371155 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Population|%,%,0.060828589,0.065078468,0.070559156,0.076594372,0.082779707,0.089500454,0.096875568,0.10499993,0.113165217,0.120093499 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Population|%,%,2.65785389,2.713543245,2.698009653,2.719438553,2.708534797,2.726137014,2.730626724,2.728156618,2.693069737,2.692317821 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Population|%,%,8.311438603,8.277703746,8.234724705,8.185560969,8.144739849,8.09582732,8.062644679,8.035918319,8.017725889,8.000209939 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Population|%,%,0.010007234,0.009895883,0.009871687,0.009856457,0.009829713,0.009720482,0.009665172,0.009577333,0.009664633,0.009513945 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Population|%,%,7.064450284,6.972897474,6.784027124,6.754544266,6.678872238,6.644857161,6.658417398,6.618840687,6.599920341,6.558984234 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Population|%,%,0.020141385,0.020826652,0.021129712,0.02139885,0.021789508,0.022032426,0.022553669,0.022579046,0.022919226,0.023107298 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Population|%,%,12.2291256,11.90035062,11.77984973,11.69806069,11.65171668,11.63384627,11.64124799,11.65364293,11.66254288,11.66953663 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Population|%,%,33.57047287,33.25200238,33.07210203,32.98230429,32.96283302,32.98057201,33.03557304,33.10564733,33.18939872,33.29911564 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Population|%,%,0.163415406,0.157156815,0.153414621,0.150771714,0.148735828,0.146833752,0.145139738,0.143162468,0.141206043,0.139527052 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Population|%,%,2.6601779,2.703145334,2.727998385,2.74280867,2.748865761,2.751750103,2.752128622,2.750099211,2.747035643,2.741728858 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Population|%,%,53.2701922,52.84369143,52.83440973,53.06665262,53.4472903,53.92960654,54.47207226,55.06339985,55.66322017,56.25322084 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Population|Low|%,%,2.0966041,2.095409557,2.092204154,2.083585914,2.081798846,2.075719328,2.070845503,2.067162494,2.060284428,2.053864327 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Population|Low|%,%,99.99231488,99.99281977,99.99326349,99.99365033,99.99398633,99.99427115,99.99451426,99.99472373,99.99490093,99.99505967 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Population|Low|%,%,99.99998862,99.99998917,99.99998948,99.99998989,99.99999026,99.99999074,99.9999912,99.99999179,99.9999921,99.99999265 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Population|Low|%,%,98.63299722,98.60447385,98.58328669,98.5696597,98.56057112,98.55431144,98.54923081,98.54511339,98.54184611,98.53935162 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Population|Low|%,%,32.53301486,32.22910132,31.94739978,31.71555484,31.51669388,31.34827862,31.20830008,31.09042051,31.00349816,30.93286991 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Population|Low|%,%,93.10241722,93.12552885,93.15600816,93.1874029,93.22520917,93.26672397,93.30822624,93.34940682,93.38917766,93.42466671 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Population|Low|%,%,37.5131237,37.78239496,37.93184238,38.00430819,38.00774793,37.96559838,37.89660586,37.80825537,37.70850607,37.60174513 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Population|Low|%,%,99.99333356,99.99356203,99.99372634,99.99385938,99.99396484,99.99404898,99.99411001,99.99415133,99.99417631,99.99419248 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Population|Low|%,%,99.99852892,99.99865572,99.99875277,99.9988272,99.99889759,99.99894416,99.99897401,99.99901609,99.99903586,99.99905409 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Population|Low|%,%,65.51992805,65.77753562,66.07560107,66.38373252,66.71524094,67.0476524,67.36485661,67.66581266,67.94932484,68.214691 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Population|Low|%,%,94.51936388,94.37904469,94.33218714,94.30691127,94.32856317,94.38264213,94.43817184,94.50741019,94.59411774,94.67650801 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Population|Low|%,%,64.39678172,64.26546591,64.10174313,63.95377577,63.81435596,63.67199102,63.53167914,63.40833087,63.30268869,63.2120933 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Population|Low|%,%,81.71674617,81.21947027,80.89497896,80.66412209,80.48446795,80.34638383,80.24798594,80.180452,80.1410199,80.1287979 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Population|Low|%,%,10.11731461,10.19743448,10.28140257,10.37454203,10.47366997,10.56643695,10.64022176,10.6992257,10.74698209,10.78650778 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Population|Low|%,%,99.99466129,99.99502183,99.99521145,99.99537675,99.99552059,99.99565003,99.99575162,99.99582937,99.99588505,99.99591853 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Population|Low|%,%,78.77574294,79.01322827,79.15784945,79.24463941,79.2906326,79.3020207,79.2947994,79.27491647,79.24771844,79.21361854 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Population|Low|%,%,4.170476952,4.092469863,4.026173817,3.972582844,3.929272884,3.893242664,3.866468599,3.847891411,3.835775095,3.828607219 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Population|Low|%,%,38.36148375,38.08188014,37.9718622,37.98837876,37.97040394,37.94559946,37.87352768,37.78001068,37.70414143,37.65875194 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Population|Low|%,%,0.006169214,0.005991851,0.005854423,0.00574633,0.005639465,0.005526998,0.005439907,0.005370325,0.005279655,0.005204938 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Population|Low|%,%,99.99955075,99.99958458,99.99960507,99.99961799,99.99962619,99.99963,99.99963139,99.9996314,99.9996303,99.99962828 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Population|Low|%,%,99.29816134,99.38404975,99.44592857,99.48930388,99.52718772,99.56104633,99.59091255,99.61715182,99.64013548,99.66023915 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Population|Low|%,%,99.99656845,99.99663233,99.99668299,99.9967331,99.99677661,99.99681507,99.99684608,99.99687267,99.99689416,99.99691338 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Population|Low|%,%,99.99889503,99.99892896,99.99895539,99.99898287,99.99901086,99.99903862,99.99906504,99.99909014,99.99911317,99.99913389 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Population|Low|%,%,73.07913502,73.35454767,73.49113113,73.56658009,73.59061968,73.56370587,73.50406499,73.44324703,73.38764819,73.3444176 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Population|Low|%,%,53.14650768,52.88949418,52.76881412,52.73398184,52.75545687,52.81112734,52.89174451,52.98832729,53.09762461,53.21212565 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Population|Low|%,%,99.57598053,99.58325613,99.59007083,99.59608717,99.60193398,99.60664248,99.61173045,99.61777211,99.62359722,99.62968106 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Population|Low|%,%,29.08184277,29.35712896,29.49798218,29.55426948,29.54883562,29.49910706,29.43169239,29.35187924,29.26527655,29.17352125 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Population|Low|%,%,38.17549889,38.39824981,38.64255194,38.91223877,39.14351152,39.33643255,39.49592815,39.62694832,39.73783612,39.82994611 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Population|Low|%,%,99.81038677,99.82225211,99.83430545,99.84707108,99.85948453,99.8711539,99.88145988,99.89029607,99.89781322,99.90420072 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Population|Low|%,%,77.52926413,77.66888583,77.77050887,77.83874918,77.87840822,77.89682244,77.89785191,77.88485087,77.86664634,77.84568823 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Population|Low|%,%,99.19109357,99.31580417,99.41736227,99.4940105,99.5504975,99.59427356,99.62819914,99.65623821,99.68045774,99.70110324 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Population|Low|%,%,99.99961101,99.99963024,99.99964691,99.99966423,99.99968118,99.99969714,99.99971161,99.99972435,99.99973542,99.99974486 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Population|Low|%,%,0.825952239,0.796015203,0.774283253,0.758582668,0.748146681,0.745268721,0.752596696,0.770745396,0.793815139,0.817396399 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Population|Low|%,%,99.98280637,99.9834906,99.98409651,99.9846301,99.98510717,99.98551717,99.98585307,99.98611534,99.98634344,99.9865368 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Population|Low|%,%,1.1028825,1.111366,1.117903865,1.121230413,1.123810053,1.124454747,1.124098382,1.122676116,1.121477145,1.119828949 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Population|Low|%,%,5.208521501,5.19206452,5.178567673,5.167345908,5.157675119,5.149939094,5.144366196,5.140393482,5.137715172,5.136644996 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Population|Low|%,%,99.99996348,99.99996856,99.99997194,99.99997408,99.99997543,99.99997994,99.99998026,99.99998024,99.99998237,99.99998569 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Population|Low|%,%,99.9995403,99.99955379,99.99956558,99.99957489,99.99958256,99.99958976,99.99959614,99.99960201,99.99960672,99.99961123 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Population|Low|%,%,83.52997996,83.69528481,83.90650381,84.15136672,84.42675377,84.7093026,84.94895764,85.15598106,85.33361397,85.48163349 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Population|Low|%,%,92.17764832,92.23922327,92.34503815,92.45048476,92.57094422,92.70773584,92.8366628,92.96789199,93.09494396,93.19897416 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Population|Low|%,%,88.61437751,88.74694506,88.813352,88.84031651,88.83208423,88.8009581,88.76291816,88.71809041,88.67003356,88.62094111 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Population|Low|%,%,99.99938524,99.99940449,99.99941302,99.99943015,99.99944363,99.99943521,99.99944547,99.99946751,99.99946617,99.99946481 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Population|Low|%,%,15.47111795,15.53535989,15.59350804,15.64163329,15.68136379,15.71462287,15.74246266,15.76617043,15.78561831,15.80343568 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Population|Low|%,%,82.94897261,83.15798357,83.33840006,83.50208718,83.6515083,83.77178547,83.87909706,83.97480492,84.06385052,84.14779216 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Population|Low|%,%,0.007658184,0.007907019,0.008062578,0.008193902,0.008327679,0.008446148,0.008603328,0.008748977,0.008879545,0.009011435 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Population|Low|%,%,95.15419007,95.140608,95.14401894,95.15248202,95.16856247,95.18712931,95.20501429,95.22165932,95.23501872,95.24619755 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Population|Low|%,%,64.1076019,64.34357859,64.5719851,64.78809328,64.98873847,65.1489037,65.27816167,65.38360656,65.47078865,65.54331911 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Population|Low|%,%,42.67217584,43.10777465,43.52331808,43.89344356,44.22297794,44.50676942,44.73544988,44.9169348,45.05980066,45.15915372 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Population|Low|%,%,0.006782167,0.006056638,0.005473914,0.005004238,0.004612551,0.004294202,0.004023619,0.003792989,0.003601494,0.003439257 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Population|Low|%,%,0.229464682,0.236469553,0.242843008,0.248282678,0.253049204,0.257242099,0.261342329,0.264937245,0.268070329,0.270767382 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Population|Low|%,%,99.99993285,99.99994133,99.99994773,99.99995288,99.99995701,99.99996004,99.99996243,99.99996412,99.99996548,99.99996662 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Population|Low|%,%,24.70433168,24.81807625,24.96560024,25.13057037,25.31028616,25.49718934,25.68601862,25.84821891,25.98743587,26.10833571 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Population|Low|%,%,96.46773061,96.47872432,96.49207939,96.50479713,96.52335361,96.5402747,96.55679062,96.57667237,96.59735062,96.61361247 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Population|Low|%,%,22.8421542,22.99796522,23.14401801,23.28546107,23.41619066,23.52674226,23.62356702,23.71199121,23.79380807,23.86434396 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Population|Low|%,%,56.75786426,56.82581574,56.91041577,57.00669123,57.11291393,57.22148687,57.32781717,57.42956506,57.52170067,57.60437193 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Population|Low|%,%,3.620817856,3.559326133,3.504748239,3.43961372,3.379119546,3.321508416,3.257591778,3.211797313,3.169462555,3.131279156 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Population|Low|%,%,0.464555442,0.467198224,0.462633661,0.458124361,0.450712988,0.439496807,0.428996187,0.42063546,0.413920791,0.407900176 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Population|Low|%,%,21.0747101,20.94316253,20.8270333,20.73415157,20.66460261,20.61341645,20.57903092,20.55972701,20.54734918,20.53672663 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Population|Low|%,%,99.99988622,99.99990622,99.99991978,99.99992903,99.99993553,99.99993999,99.99994315,99.99994555,99.99994741,99.99994877 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Population|Low|%,%,60.50268744,60.3381247,60.19098231,60.06332077,59.94653204,59.8372127,59.7315375,59.63250593,59.54782901,59.4753723 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Population|Low|%,%,73.26212176,73.24810713,73.22211879,73.18671967,73.15156073,73.11619018,73.07753872,73.03418992,72.99757786,72.96637537 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Population|Low|%,%,74.72260767,75.04517095,75.31304072,75.5428551,75.7364593,75.88789958,76.01041932,76.11191382,76.19848709,76.27249925 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Population|Low|%,%,10.15328356,10.33299782,10.4355055,10.49240971,10.52024868,10.52767861,10.52529907,10.51698625,10.50409157,10.48950113 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Population|Low|%,%,64.77415653,64.75113649,64.62410108,64.32023088,64.0211022,63.65347686,63.24181093,62.85508028,62.49070827,62.16588672 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Population|Low|%,%,39.3682585,39.24561155,39.14526966,39.04121496,38.92571706,38.80478916,38.70842482,38.62874971,38.56365111,38.50700138 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Population|Low|%,%,26.14961151,26.45583254,26.69215829,26.86708727,26.99324402,27.07816275,27.13605988,27.17371624,27.20230678,27.22650473 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Population|Low|%,%,0.602779298,0.589278167,0.592362918,0.6075712,0.6074687,0.613409067,0.618695116,0.631512252,0.615877215,0.600932599 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Population|Low|%,%,29.10277338,29.04853394,28.95913407,28.84984321,28.72802014,28.60119167,28.46904015,28.33372589,28.21076385,28.10798486 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Population|Low|%,%,99.97827065,99.97910373,99.97984694,99.98049911,99.98105648,99.98150399,99.98187132,99.98217064,99.98242819,99.98264915 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Population|Low|%,%,33.14247718,33.29777211,33.37865728,33.39774503,33.36656712,33.29451701,33.20198714,33.09720098,32.98427663,32.88668512 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Population|Low|%,%,23.32034511,23.3388141,23.27305092,23.22141487,23.20485375,23.14360773,23.06389524,22.99297622,22.93351847,22.88678209 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Population|Low|%,%,96.91505815,96.88799231,96.85279734,96.81739593,96.78235379,96.74553421,96.71397342,96.68934796,96.66891379,96.65115381 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Population|Low|%,%,99.99979937,99.99982248,99.99984262,99.99986084,99.99987625,99.99988952,99.99990065,99.99990981,99.9999177,99.99992422 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Population|Low|%,%,99.41596169,99.4401036,99.45936784,99.47391395,99.48428545,99.49290057,99.50021119,99.50167173,99.50961338,99.5096637 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Population|Low|%,%,92.1534986,92.21717658,92.29891845,92.39514633,92.50132162,92.60753028,92.71104633,92.80660151,92.89138473,92.96521545 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Population|Low|%,%,0.371198231,0.414017916,0.448723575,0.482675209,0.515430107,0.54528803,0.568891661,0.584435505,0.594344771,0.596182449 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Population|Low|%,%,99.99955976,99.99959327,99.99961948,99.99963946,99.99965485,99.99966629,99.99967524,99.9996825,99.99968829,99.99969318 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Population|Low|%,%,0.19026253,0.18484536,0.180848975,0.177996847,0.176089189,0.174851725,0.173966483,0.173273341,0.172622433,0.17194128 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Population|Low|%,%,99.65763715,99.6999435,99.73019868,99.75429588,99.77596926,99.79160983,99.80551678,99.81835382,99.82816144,99.83663613 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Population|Low|%,%,54.53200385,53.84680647,53.16009018,52.54243581,51.98941174,51.5075872,51.04448702,50.68824153,50.45583918,50.36512079 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Population|Low|%,%,99.93488179,99.94104819,99.94638033,99.95053053,99.95411951,99.95705646,99.95949025,99.96168904,99.96365067,99.96550833 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Population|Low|%,%,56.04595095,56.74349315,57.17171784,57.43283751,57.60322318,57.69788151,57.73081302,57.72729363,57.70091316,57.65493908 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Population|Low|%,%,82.20025544,82.14813085,82.06606915,81.98245647,81.89507245,81.80863026,81.72059888,81.63570486,81.55857243,81.49007826 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Population|Low|%,%,20.0917043,20.31788827,20.49279726,20.61787376,20.70743479,20.76152243,20.78884168,20.7932021,20.79445837,20.79409482 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Population|Low|%,%,7.84694783,8.272177705,8.611222908,8.867329974,9.086159251,9.211143232,9.343782186,9.459383459,9.562003423,9.654306956 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Population|Low|%,%,81.65277333,81.77540604,81.91111963,82.04566905,82.18426234,82.33019785,82.45996277,82.56766875,82.65642186,82.73357845 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Population|Low|%,%,64.13685973,64.19629075,64.21993301,64.21502552,64.19523272,64.17890824,64.16408414,64.14916141,64.13450099,64.12281873 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Population|Low|%,%,22.82315114,22.68828816,22.54853303,22.41562759,22.28553138,22.15806095,22.03999423,21.93368453,21.83891771,21.75411758 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Population|Low|%,%,99.97694398,99.97770238,99.9768691,99.97721945,99.97700336,99.9774329,99.97738767,99.97791923,99.97791744,99.97764133 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Population|Low|%,%,62.83788831,63.02830742,63.15862304,63.24931759,63.30328202,63.32980953,63.32779355,63.31902795,63.3109623,63.30349959 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Population|Low|%,%,0.047230808,0.049092256,0.050086346,0.050566051,0.051016654,0.051804173,0.052198664,0.052907737,0.0530913,0.053378011 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Population|Low|%,%,97.69752808,97.64779142,97.61838008,97.60316587,97.59762595,97.59789678,97.60202729,97.60891324,97.61786835,97.62801625 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Population|Low|%,%,98.50813924,98.49694277,98.48936796,98.48522861,98.48437332,98.48456849,98.48637313,98.49036991,98.49802377,98.51010755 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Population|Low|%,%,0.503380411,0.511099149,0.514813554,0.517088728,0.51869606,0.519922754,0.520838667,0.521615937,0.522248623,0.522741464 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Population|Low|%,%,39.24234186,39.21847479,39.20708257,39.09557606,39.02949762,38.90786252,38.78604516,38.72006151,38.62179663,38.58607178 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Population|Low|%,%,23.68076564,23.69587891,23.72912126,23.77742993,23.83402179,23.8931619,23.95291973,24.01254402,24.07048337,24.12603932 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Population|Low|%,%,99.9994442,99.99946282,99.99947786,99.99948847,99.99949742,99.9995038,99.99950926,99.99951503,99.9995205,99.99952503 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Population|Low|%,%,3.102627503,3.180018936,3.239484526,3.28009918,3.319220146,3.349552129,3.369225812,3.378903516,3.378044083,3.376778796 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Population|Low|%,%,2.394427315,2.380205636,2.365289744,2.350038791,2.333791471,2.318074702,2.303385109,2.289517484,2.277653223,2.269371399 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Population|Low|%,%,6.906321421,6.929874212,6.915970988,6.867363841,6.819607384,6.746999243,6.665969603,6.588171246,6.519445846,6.426666871 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Population|Low|%,%,48.82562055,48.42184069,48.14305909,47.95873684,47.83862017,47.76350801,47.72575038,47.71902883,47.73857589,47.77748641 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Population|Low|%,%,99.63636999,99.64563783,99.65492809,99.66412976,99.67330251,99.68164206,99.6906656,99.70088309,99.71228747,99.72460095 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Population|Low|%,%,90.80203354,90.85865855,90.92518058,90.99747589,91.07044025,91.1421181,91.20710758,91.26513524,91.31590535,91.35994668 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Population|Low|%,%,99.95874168,99.95733304,99.95858294,99.95919574,99.95919778,99.95978234,99.96087923,99.96246306,99.96250536,99.96335453 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Population|Low|%,%,59.28481374,59.74398074,60.13346319,60.45846072,60.73650563,60.98168825,61.21116329,61.42322177,61.61882524,61.79603866 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Population|Low|%,%,16.74237824,16.72402496,16.71992971,16.72182561,16.73093378,16.74582784,16.76444973,16.78593603,16.80882185,16.83294122 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,STP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TKM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LTU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KHM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ETH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PSE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BOL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BFA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GHA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SAU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CPV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GTM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BIH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NLD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,OMN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ALB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GAB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NZL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,YEM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,WSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SVK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LSO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VCT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TJK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AFG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LCA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CYP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PYF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LAO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CIV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ESH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CUB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ARM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ATG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UKR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BHR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TON,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,USA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VNM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BGR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ROU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MOZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KGZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KWT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LUX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ECU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,AUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BEL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,THA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HTI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,IRQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SLE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GEO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HKG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DNK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,POL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MAR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HRV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,CHE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BLZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TCD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EST,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,URY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GNQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LBN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,UZB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,RWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TLS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,REU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BDI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TWN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NIC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,QAT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ITA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BTN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NPL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MLT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MDV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ISL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MWI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,TTO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ZWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,DEU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MTQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,KAZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,ERI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,NCL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MKD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,PRY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LVA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,JPN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SYR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,HND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MEX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,EGY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SGP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,SRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,BWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GRC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,LKA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GUF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,COM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,FSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,GLP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,MYT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p2,VIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Difference,days/yr,-4.934973647,-4.934973647,-4.934973647,-4.934973647,-4.934973647,-4.934973647,-4.934973647,-4.934973647,-4.934973647,-4.934973647 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Difference,days/yr,0.654843704,0.654843704,0.654843704,0.654843704,0.654843704,0.654843704,0.654843704,0.654843704,0.654843704,0.654843704 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Difference,days/yr,-1.368242039,-1.368242039,-1.368242039,-1.368242039,-1.368242039,-1.368242039,-1.368242039,-1.368242039,-1.368242039,-1.368242039 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Difference,days/yr,-3.671858143,-3.671858143,-3.671858143,-3.671858143,-3.671858143,-3.671858143,-3.671858143,-3.671858143,-3.671858143,-3.671858143 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Difference,days/yr,-2.582080751,-2.582080751,-2.582080751,-2.582080751,-2.582080751,-2.582080751,-2.582080751,-2.582080751,-2.582080751,-2.582080751 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Difference,days/yr,-3.421341879,-3.421341879,-3.421341879,-3.421341879,-3.421341879,-3.421341879,-3.421341879,-3.421341879,-3.421341879,-3.421341879 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Difference,days/yr,2.829341034,2.829341034,2.829341034,2.829341034,2.829341034,2.829341034,2.829341034,2.829341034,2.829341034,2.829341034 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Difference,days/yr,-0.214871897,-0.214871897,-0.214871897,-0.214871897,-0.214871897,-0.214871897,-0.214871897,-0.214871897,-0.214871897,-0.214871897 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Difference,days/yr,3.542750894,3.542750894,3.542750894,3.542750894,3.542750894,3.542750894,3.542750894,3.542750894,3.542750894,3.542750894 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Difference,days/yr,6.665574013,6.665574013,6.665574013,6.665574013,6.665574013,6.665574013,6.665574013,6.665574013,6.665574013,6.665574013 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Difference,days/yr,0.479538312,0.479538312,0.479538312,0.479538312,0.479538312,0.479538312,0.479538312,0.479538312,0.479538312,0.479538312 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Difference,days/yr,-1.863166201,-1.863166201,-1.863166201,-1.863166201,-1.863166201,-1.863166201,-1.863166201,-1.863166201,-1.863166201,-1.863166201 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Difference,days/yr,-2.997180387,-2.997180387,-2.997180387,-2.997180387,-2.997180387,-2.997180387,-2.997180387,-2.997180387,-2.997180387,-2.997180387 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Difference,days/yr,-3.566151518,-3.566151518,-3.566151518,-3.566151518,-3.566151518,-3.566151518,-3.566151518,-3.566151518,-3.566151518,-3.566151518 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Difference,days/yr,-0.49756043,-0.49756043,-0.49756043,-0.49756043,-0.49756043,-0.49756043,-0.49756043,-0.49756043,-0.49756043,-0.49756043 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Difference,days/yr,-0.124516206,-0.124516206,-0.124516206,-0.124516206,-0.124516206,-0.124516206,-0.124516206,-0.124516206,-0.124516206,-0.124516206 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Difference,days/yr,2.876426777,2.876426777,2.876426777,2.876426777,2.876426777,2.876426777,2.876426777,2.876426777,2.876426777,2.876426777 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Difference,days/yr,-0.191148899,-0.191148899,-0.191148899,-0.191148899,-0.191148899,-0.191148899,-0.191148899,-0.191148899,-0.191148899,-0.191148899 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Difference,days/yr,-1.548220412,-1.548220412,-1.548220412,-1.548220412,-1.548220412,-1.548220412,-1.548220412,-1.548220412,-1.548220412,-1.548220412 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Difference,days/yr,-0.860278825,-0.860278825,-0.860278825,-0.860278825,-0.860278825,-0.860278825,-0.860278825,-0.860278825,-0.860278825,-0.860278825 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Difference,days/yr,0.150631342,0.150631342,0.150631342,0.150631342,0.150631342,0.150631342,0.150631342,0.150631342,0.150631342,0.150631342 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Difference,days/yr,5.142757939,5.142757939,5.142757939,5.142757939,5.142757939,5.142757939,5.142757939,5.142757939,5.142757939,5.142757939 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Difference,days/yr,2.241525135,2.241525135,2.241525135,2.241525135,2.241525135,2.241525135,2.241525135,2.241525135,2.241525135,2.241525135 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Difference,days/yr,1.196869578,1.196869578,1.196869578,1.196869578,1.196869578,1.196869578,1.196869578,1.196869578,1.196869578,1.196869578 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Difference,days/yr,2.878029261,2.878029261,2.878029261,2.878029261,2.878029261,2.878029261,2.878029261,2.878029261,2.878029261,2.878029261 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Difference,days/yr,-3.286917899,-3.286917899,-3.286917899,-3.286917899,-3.286917899,-3.286917899,-3.286917899,-3.286917899,-3.286917899,-3.286917899 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Difference,days/yr,-0.543467976,-0.543467976,-0.543467976,-0.543467976,-0.543467976,-0.543467976,-0.543467976,-0.543467976,-0.543467976,-0.543467976 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Difference,days/yr,1.755400121,1.755400121,1.755400121,1.755400121,1.755400121,1.755400121,1.755400121,1.755400121,1.755400121,1.755400121 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Difference,days/yr,3.125597273,3.125597273,3.125597273,3.125597273,3.125597273,3.125597273,3.125597273,3.125597273,3.125597273,3.125597273 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Difference,days/yr,-0.366836092,-0.366836092,-0.366836092,-0.366836092,-0.366836092,-0.366836092,-0.366836092,-0.366836092,-0.366836092,-0.366836092 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Difference,days/yr,-4.584319827,-4.584319827,-4.584319827,-4.584319827,-4.584319827,-4.584319827,-4.584319827,-4.584319827,-4.584319827,-4.584319827 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Difference,days/yr,-2.86577067,-2.86577067,-2.86577067,-2.86577067,-2.86577067,-2.86577067,-2.86577067,-2.86577067,-2.86577067,-2.86577067 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Difference,days/yr,0.452660297,0.452660297,0.452660297,0.452660297,0.452660297,0.452660297,0.452660297,0.452660297,0.452660297,0.452660297 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Difference,days/yr,-0.872329569,-0.872329569,-0.872329569,-0.872329569,-0.872329569,-0.872329569,-0.872329569,-0.872329569,-0.872329569,-0.872329569 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Difference,days/yr,-2.10537838,-2.10537838,-2.10537838,-2.10537838,-2.10537838,-2.10537838,-2.10537838,-2.10537838,-2.10537838,-2.10537838 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Difference,days/yr,-0.090382824,-0.090382824,-0.090382824,-0.090382824,-0.090382824,-0.090382824,-0.090382824,-0.090382824,-0.090382824,-0.090382824 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Difference,days/yr,0.501062115,0.501062115,0.501062115,0.501062115,0.501062115,0.501062115,0.501062115,0.501062115,0.501062115,0.501062115 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Difference,days/yr,3.287265533,3.287265533,3.287265533,3.287265533,3.287265533,3.287265533,3.287265533,3.287265533,3.287265533,3.287265533 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Difference,days/yr,2.536044651,2.536044651,2.536044651,2.536044651,2.536044651,2.536044651,2.536044651,2.536044651,2.536044651,2.536044651 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Difference,days/yr,1.596342598,1.596342598,1.596342598,1.596342598,1.596342598,1.596342598,1.596342598,1.596342598,1.596342598,1.596342598 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Difference,days/yr,0.900793878,0.900793878,0.900793878,0.900793878,0.900793878,0.900793878,0.900793878,0.900793878,0.900793878,0.900793878 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Difference,days/yr,-2.018087089,-2.018087089,-2.018087089,-2.018087089,-2.018087089,-2.018087089,-2.018087089,-2.018087089,-2.018087089,-2.018087089 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Difference,days/yr,1.920391997,1.920391997,1.920391997,1.920391997,1.920391997,1.920391997,1.920391997,1.920391997,1.920391997,1.920391997 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Difference,days/yr,-2.834480425,-2.834480425,-2.834480425,-2.834480425,-2.834480425,-2.834480425,-2.834480425,-2.834480425,-2.834480425,-2.834480425 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Difference,days/yr,0.520864594,0.520864594,0.520864594,0.520864594,0.520864594,0.520864594,0.520864594,0.520864594,0.520864594,0.520864594 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Difference,days/yr,3.142741595,3.142741595,3.142741595,3.142741595,3.142741595,3.142741595,3.142741595,3.142741595,3.142741595,3.142741595 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Difference,days/yr,-2.493784742,-2.493784742,-2.493784742,-2.493784742,-2.493784742,-2.493784742,-2.493784742,-2.493784742,-2.493784742,-2.493784742 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Difference,days/yr,3.345567563,3.345567563,3.345567563,3.345567563,3.345567563,3.345567563,3.345567563,3.345567563,3.345567563,3.345567563 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Difference,days/yr,-0.842351328,-0.842351328,-0.842351328,-0.842351328,-0.842351328,-0.842351328,-0.842351328,-0.842351328,-0.842351328,-0.842351328 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Difference,days/yr,-0.405617392,-0.405617392,-0.405617392,-0.405617392,-0.405617392,-0.405617392,-0.405617392,-0.405617392,-0.405617392,-0.405617392 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Difference,days/yr,0.259913103,0.259913103,0.259913103,0.259913103,0.259913103,0.259913103,0.259913103,0.259913103,0.259913103,0.259913103 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Difference,days/yr,-0.006779049,-0.006779049,-0.006779049,-0.006779049,-0.006779049,-0.006779049,-0.006779049,-0.006779049,-0.006779049,-0.006779049 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Difference,days/yr,0.42091248,0.42091248,0.42091248,0.42091248,0.42091248,0.42091248,0.42091248,0.42091248,0.42091248,0.42091248 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Difference,days/yr,5.605137145,5.605137145,5.605137145,5.605137145,5.605137145,5.605137145,5.605137145,5.605137145,5.605137145,5.605137145 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Difference,days/yr,2.407369482,2.407369482,2.407369482,2.407369482,2.407369482,2.407369482,2.407369482,2.407369482,2.407369482,2.407369482 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Difference,days/yr,-1.559415231,-1.559415231,-1.559415231,-1.559415231,-1.559415231,-1.559415231,-1.559415231,-1.559415231,-1.559415231,-1.559415231 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Difference,days/yr,2.566355635,2.566355635,2.566355635,2.566355635,2.566355635,2.566355635,2.566355635,2.566355635,2.566355635,2.566355635 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Difference,days/yr,1.167842424,1.167842424,1.167842424,1.167842424,1.167842424,1.167842424,1.167842424,1.167842424,1.167842424,1.167842424 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Difference,days/yr,0.100086237,0.100086237,0.100086237,0.100086237,0.100086237,0.100086237,0.100086237,0.100086237,0.100086237,0.100086237 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Difference,days/yr,-1.356709377,-1.356709377,-1.356709377,-1.356709377,-1.356709377,-1.356709377,-1.356709377,-1.356709377,-1.356709377,-1.356709377 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Difference,days/yr,-1.87426381,-1.87426381,-1.87426381,-1.87426381,-1.87426381,-1.87426381,-1.87426381,-1.87426381,-1.87426381,-1.87426381 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Difference,days/yr,-2.42872862,-2.42872862,-2.42872862,-2.42872862,-2.42872862,-2.42872862,-2.42872862,-2.42872862,-2.42872862,-2.42872862 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Difference,days/yr,0.661508611,0.661508611,0.661508611,0.661508611,0.661508611,0.661508611,0.661508611,0.661508611,0.661508611,0.661508611 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Difference,days/yr,1.200537711,1.200537711,1.200537711,1.200537711,1.200537711,1.200537711,1.200537711,1.200537711,1.200537711,1.200537711 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Difference,days/yr,-7.143443049,-7.143443049,-7.143443049,-7.143443049,-7.143443049,-7.143443049,-7.143443049,-7.143443049,-7.143443049,-7.143443049 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Difference,days/yr,1.224170077,1.224170077,1.224170077,1.224170077,1.224170077,1.224170077,1.224170077,1.224170077,1.224170077,1.224170077 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Difference,days/yr,-1.465915579,-1.465915579,-1.465915579,-1.465915579,-1.465915579,-1.465915579,-1.465915579,-1.465915579,-1.465915579,-1.465915579 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Difference,days/yr,-2.311039618,-2.311039618,-2.311039618,-2.311039618,-2.311039618,-2.311039618,-2.311039618,-2.311039618,-2.311039618,-2.311039618 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Difference,days/yr,2.240394096,2.240394096,2.240394096,2.240394096,2.240394096,2.240394096,2.240394096,2.240394096,2.240394096,2.240394096 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Difference,days/yr,-0.055366286,-0.055366286,-0.055366286,-0.055366286,-0.055366286,-0.055366286,-0.055366286,-0.055366286,-0.055366286,-0.055366286 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Difference,days/yr,1.675089312,1.675089312,1.675089312,1.675089312,1.675089312,1.675089312,1.675089312,1.675089312,1.675089312,1.675089312 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Difference,days/yr,-1.342980925,-1.342980925,-1.342980925,-1.342980925,-1.342980925,-1.342980925,-1.342980925,-1.342980925,-1.342980925,-1.342980925 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Difference,days/yr,-0.309817313,-0.309817313,-0.309817313,-0.309817313,-0.309817313,-0.309817313,-0.309817313,-0.309817313,-0.309817313,-0.309817313 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Difference,days/yr,0.03337018,0.03337018,0.03337018,0.03337018,0.03337018,0.03337018,0.03337018,0.03337018,0.03337018,0.03337018 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Difference,days/yr,-3.091119601,-3.091119601,-3.091119601,-3.091119601,-3.091119601,-3.091119601,-3.091119601,-3.091119601,-3.091119601,-3.091119601 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Difference,days/yr,-0.572968405,-0.572968405,-0.572968405,-0.572968405,-0.572968405,-0.572968405,-0.572968405,-0.572968405,-0.572968405,-0.572968405 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Difference,days/yr,2.188388474,2.188388474,2.188388474,2.188388474,2.188388474,2.188388474,2.188388474,2.188388474,2.188388474,2.188388474 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Difference,days/yr,-4.445371852,-4.445371852,-4.445371852,-4.445371852,-4.445371852,-4.445371852,-4.445371852,-4.445371852,-4.445371852,-4.445371852 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Difference,days/yr,0.553794474,0.553794474,0.553794474,0.553794474,0.553794474,0.553794474,0.553794474,0.553794474,0.553794474,0.553794474 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Difference,days/yr,-2.667157943,-2.667157943,-2.667157943,-2.667157943,-2.667157943,-2.667157943,-2.667157943,-2.667157943,-2.667157943,-2.667157943 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Difference,days/yr,0.639201855,0.639201855,0.639201855,0.639201855,0.639201855,0.639201855,0.639201855,0.639201855,0.639201855,0.639201855 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Difference,days/yr,-1.45420111,-1.45420111,-1.45420111,-1.45420111,-1.45420111,-1.45420111,-1.45420111,-1.45420111,-1.45420111,-1.45420111 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Difference,days/yr,-4.923880069,-4.923880069,-4.923880069,-4.923880069,-4.923880069,-4.923880069,-4.923880069,-4.923880069,-4.923880069,-4.923880069 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Difference,days/yr,-1.286650565,-1.286650565,-1.286650565,-1.286650565,-1.286650565,-1.286650565,-1.286650565,-1.286650565,-1.286650565,-1.286650565 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Difference,days/yr,0.863621956,0.863621956,0.863621956,0.863621956,0.863621956,0.863621956,0.863621956,0.863621956,0.863621956,0.863621956 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Difference,days/yr,-0.502508229,-0.502508229,-0.502508229,-0.502508229,-0.502508229,-0.502508229,-0.502508229,-0.502508229,-0.502508229,-0.502508229 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Difference,days/yr,1.456252001,1.456252001,1.456252001,1.456252001,1.456252001,1.456252001,1.456252001,1.456252001,1.456252001,1.456252001 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Difference,days/yr,4.024443309,4.024443309,4.024443309,4.024443309,4.024443309,4.024443309,4.024443309,4.024443309,4.024443309,4.024443309 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Difference,days/yr,3.508149623,3.508149623,3.508149623,3.508149623,3.508149623,3.508149623,3.508149623,3.508149623,3.508149623,3.508149623 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Difference,days/yr,-0.171372893,-0.171372893,-0.171372893,-0.171372893,-0.171372893,-0.171372893,-0.171372893,-0.171372893,-0.171372893,-0.171372893 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Difference,days/yr,-1.212945635,-1.212945635,-1.212945635,-1.212945635,-1.212945635,-1.212945635,-1.212945635,-1.212945635,-1.212945635,-1.212945635 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Difference,days/yr,-0.58254798,-0.58254798,-0.58254798,-0.58254798,-0.58254798,-0.58254798,-0.58254798,-0.58254798,-0.58254798,-0.58254798 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Difference,days/yr,-1.230625373,-1.230625373,-1.230625373,-1.230625373,-1.230625373,-1.230625373,-1.230625373,-1.230625373,-1.230625373,-1.230625373 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Difference,days/yr,1.423089151,1.423089151,1.423089151,1.423089151,1.423089151,1.423089151,1.423089151,1.423089151,1.423089151,1.423089151 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Difference,days/yr,-4.093564104,-4.093564104,-4.093564104,-4.093564104,-4.093564104,-4.093564104,-4.093564104,-4.093564104,-4.093564104,-4.093564104 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Difference,days/yr,-0.519950342,-0.519950342,-0.519950342,-0.519950342,-0.519950342,-0.519950342,-0.519950342,-0.519950342,-0.519950342,-0.519950342 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Difference,days/yr,0.288311791,0.288311791,0.288311791,0.288311791,0.288311791,0.288311791,0.288311791,0.288311791,0.288311791,0.288311791 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Difference,days/yr,-2.430653436,-2.430653436,-2.430653436,-2.430653436,-2.430653436,-2.430653436,-2.430653436,-2.430653436,-2.430653436,-2.430653436 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Difference,days/yr,7.005607885,7.005607885,7.005607885,7.005607885,7.005607885,7.005607885,7.005607885,7.005607885,7.005607885,7.005607885 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Difference,days/yr,-0.689831521,-0.689831521,-0.689831521,-0.689831521,-0.689831521,-0.689831521,-0.689831521,-0.689831521,-0.689831521,-0.689831521 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Difference,days/yr,0.085782177,0.085782177,0.085782177,0.085782177,0.085782177,0.085782177,0.085782177,0.085782177,0.085782177,0.085782177 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Difference,days/yr,2.096431456,2.096431456,2.096431456,2.096431456,2.096431456,2.096431456,2.096431456,2.096431456,2.096431456,2.096431456 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Difference,days/yr,0.836229045,0.836229045,0.836229045,0.836229045,0.836229045,0.836229045,0.836229045,0.836229045,0.836229045,0.836229045 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Difference,days/yr,0.511562043,0.511562043,0.511562043,0.511562043,0.511562043,0.511562043,0.511562043,0.511562043,0.511562043,0.511562043 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Difference,days/yr,2.663248742,2.663248742,2.663248742,2.663248742,2.663248742,2.663248742,2.663248742,2.663248742,2.663248742,2.663248742 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Difference,days/yr,-4.140822469,-4.140822469,-4.140822469,-4.140822469,-4.140822469,-4.140822469,-4.140822469,-4.140822469,-4.140822469,-4.140822469 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Difference,days/yr,0.219537875,0.219537875,0.219537875,0.219537875,0.219537875,0.219537875,0.219537875,0.219537875,0.219537875,0.219537875 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Difference,days/yr,-1.45873777,-1.45873777,-1.45873777,-1.45873777,-1.45873777,-1.45873777,-1.45873777,-1.45873777,-1.45873777,-1.45873777 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Difference,days/yr,2.058015247,2.058015247,2.058015247,2.058015247,2.058015247,2.058015247,2.058015247,2.058015247,2.058015247,2.058015247 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Difference,days/yr,-0.071817809,-0.071817809,-0.071817809,-0.071817809,-0.071817809,-0.071817809,-0.071817809,-0.071817809,-0.071817809,-0.071817809 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Difference,days/yr,2.005674164,2.005674164,2.005674164,2.005674164,2.005674164,2.005674164,2.005674164,2.005674164,2.005674164,2.005674164 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Difference,days/yr,0.82820344,0.82820344,0.82820344,0.82820344,0.82820344,0.82820344,0.82820344,0.82820344,0.82820344,0.82820344 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Difference,days/yr,3.063327129,3.063327129,3.063327129,3.063327129,3.063327129,3.063327129,3.063327129,3.063327129,3.063327129,3.063327129 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Difference,days/yr,1.129238008,1.129238008,1.129238008,1.129238008,1.129238008,1.129238008,1.129238008,1.129238008,1.129238008,1.129238008 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Difference,days/yr,1.08082261,1.08082261,1.08082261,1.08082261,1.08082261,1.08082261,1.08082261,1.08082261,1.08082261,1.08082261 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Difference,days/yr,-1.605215477,-1.605215477,-1.605215477,-1.605215477,-1.605215477,-1.605215477,-1.605215477,-1.605215477,-1.605215477,-1.605215477 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Difference,days/yr,0.986080325,0.986080325,0.986080325,0.986080325,0.986080325,0.986080325,0.986080325,0.986080325,0.986080325,0.986080325 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Difference,days/yr,-1.081208962,-1.081208962,-1.081208962,-1.081208962,-1.081208962,-1.081208962,-1.081208962,-1.081208962,-1.081208962,-1.081208962 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Difference,days/yr,0.307506071,0.307506071,0.307506071,0.307506071,0.307506071,0.307506071,0.307506071,0.307506071,0.307506071,0.307506071 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Difference,days/yr,1.007482584,1.007482584,1.007482584,1.007482584,1.007482584,1.007482584,1.007482584,1.007482584,1.007482584,1.007482584 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Difference,days/yr,0.503190933,0.503190933,0.503190933,0.503190933,0.503190933,0.503190933,0.503190933,0.503190933,0.503190933,0.503190933 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Difference,days/yr,1.322206964,1.322206964,1.322206964,1.322206964,1.322206964,1.322206964,1.322206964,1.322206964,1.322206964,1.322206964 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Difference,days/yr,0.004276418,0.004276418,0.004276418,0.004276418,0.004276418,0.004276418,0.004276418,0.004276418,0.004276418,0.004276418 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Difference,days/yr,-1.217216135,-1.217216135,-1.217216135,-1.217216135,-1.217216135,-1.217216135,-1.217216135,-1.217216135,-1.217216135,-1.217216135 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Difference,days/yr,3.204486825,3.204486825,3.204486825,3.204486825,3.204486825,3.204486825,3.204486825,3.204486825,3.204486825,3.204486825 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Difference,days/yr,0.393538438,0.393538438,0.393538438,0.393538438,0.393538438,0.393538438,0.393538438,0.393538438,0.393538438,0.393538438 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Difference,days/yr,-9.319728922,-9.319728922,-9.319728922,-9.319728922,-9.319728922,-9.319728922,-9.319728922,-9.319728922,-9.319728922,-9.319728922 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Difference,days/yr,0.051375128,0.051375128,0.051375128,0.051375128,0.051375128,0.051375128,0.051375128,0.051375128,0.051375128,0.051375128 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Difference,days/yr,-0.024366023,-0.024366023,-0.024366023,-0.024366023,-0.024366023,-0.024366023,-0.024366023,-0.024366023,-0.024366023,-0.024366023 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Difference,days/yr,-0.553841501,-0.553841501,-0.553841501,-0.553841501,-0.553841501,-0.553841501,-0.553841501,-0.553841501,-0.553841501,-0.553841501 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Difference,days/yr,0.430929236,0.430929236,0.430929236,0.430929236,0.430929236,0.430929236,0.430929236,0.430929236,0.430929236,0.430929236 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Difference,days/yr,2.405587163,2.405587163,2.405587163,2.405587163,2.405587163,2.405587163,2.405587163,2.405587163,2.405587163,2.405587163 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Difference,days/yr,-2.670568232,-2.670568232,-2.670568232,-2.670568232,-2.670568232,-2.670568232,-2.670568232,-2.670568232,-2.670568232,-2.670568232 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Difference,days/yr,-3.98608223,-3.98608223,-3.98608223,-3.98608223,-3.98608223,-3.98608223,-3.98608223,-3.98608223,-3.98608223,-3.98608223 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Difference,days/yr,0.296992431,0.296992431,0.296992431,0.296992431,0.296992431,0.296992431,0.296992431,0.296992431,0.296992431,0.296992431 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Difference,days/yr,0.049955604,0.049955604,0.049955604,0.049955604,0.049955604,0.049955604,0.049955604,0.049955604,0.049955604,0.049955604 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Difference,days/yr,-0.43044954,-0.43044954,-0.43044954,-0.43044954,-0.43044954,-0.43044954,-0.43044954,-0.43044954,-0.43044954,-0.43044954 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Difference,days/yr,-0.074777014,-0.074777014,-0.074777014,-0.074777014,-0.074777014,-0.074777014,-0.074777014,-0.074777014,-0.074777014,-0.074777014 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Difference,days/yr,3.264421219,3.264421219,3.264421219,3.264421219,3.264421219,3.264421219,3.264421219,3.264421219,3.264421219,3.264421219 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Difference,days/yr,-1.012867738,-1.012867738,-1.012867738,-1.012867738,-1.012867738,-1.012867738,-1.012867738,-1.012867738,-1.012867738,-1.012867738 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Difference,days/yr,1.31721599,1.31721599,1.31721599,1.31721599,1.31721599,1.31721599,1.31721599,1.31721599,1.31721599,1.31721599 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Difference,days/yr,0.453651479,0.453651479,0.453651479,0.453651479,0.453651479,0.453651479,0.453651479,0.453651479,0.453651479,0.453651479 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Difference,days/yr,3.497416311,3.497416311,3.497416311,3.497416311,3.497416311,3.497416311,3.497416311,3.497416311,3.497416311,3.497416311 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Difference,days/yr,0.584068103,0.584068103,0.584068103,0.584068103,0.584068103,0.584068103,0.584068103,0.584068103,0.584068103,0.584068103 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Difference,days/yr,1.999976443,1.999976443,1.999976443,1.999976443,1.999976443,1.999976443,1.999976443,1.999976443,1.999976443,1.999976443 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Difference,days/yr,1.042796823,1.042796823,1.042796823,1.042796823,1.042796823,1.042796823,1.042796823,1.042796823,1.042796823,1.042796823 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Difference,days/yr,2.375800639,2.375800639,2.375800639,2.375800639,2.375800639,2.375800639,2.375800639,2.375800639,2.375800639,2.375800639 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Difference,days/yr,0.073205244,0.073205244,0.073205244,0.073205244,0.073205244,0.073205244,0.073205244,0.073205244,0.073205244,0.073205244 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Difference,days/yr,-0.983198294,-0.983198294,-0.983198294,-0.983198294,-0.983198294,-0.983198294,-0.983198294,-0.983198294,-0.983198294,-0.983198294 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Difference,days/yr,1.062553744,1.062553744,1.062553744,1.062553744,1.062553744,1.062553744,1.062553744,1.062553744,1.062553744,1.062553744 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Difference,days/yr,1.80787929,1.80787929,1.80787929,1.80787929,1.80787929,1.80787929,1.80787929,1.80787929,1.80787929,1.80787929 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Difference,days/yr,4.084407941,4.084407941,4.084407941,4.084407941,4.084407941,4.084407941,4.084407941,4.084407941,4.084407941,4.084407941 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Difference,days/yr,-2.459064115,-2.459064115,-2.459064115,-2.459064115,-2.459064115,-2.459064115,-2.459064115,-2.459064115,-2.459064115,-2.459064115 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Difference,days/yr,2.898110075,2.898110075,2.898110075,2.898110075,2.898110075,2.898110075,2.898110075,2.898110075,2.898110075,2.898110075 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Difference,days/yr,0.245714911,0.245714911,0.245714911,0.245714911,0.245714911,0.245714911,0.245714911,0.245714911,0.245714911,0.245714911 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Difference,days/yr,0.178203375,0.178203375,0.178203375,0.178203375,0.178203375,0.178203375,0.178203375,0.178203375,0.178203375,0.178203375 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Difference,days/yr,1.173335521,1.173335521,1.173335521,1.173335521,1.173335521,1.173335521,1.173335521,1.173335521,1.173335521,1.173335521 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Difference,days/yr,2.945497326,2.945497326,2.945497326,2.945497326,2.945497326,2.945497326,2.945497326,2.945497326,2.945497326,2.945497326 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Difference,days/yr,-0.485584456,-0.485584456,-0.485584456,-0.485584456,-0.485584456,-0.485584456,-0.485584456,-0.485584456,-0.485584456,-0.485584456 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Difference,days/yr,-0.364409313,-0.364409313,-0.364409313,-0.364409313,-0.364409313,-0.364409313,-0.364409313,-0.364409313,-0.364409313,-0.364409313 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Difference,days/yr,2.351856646,2.351856646,2.351856646,2.351856646,2.351856646,2.351856646,2.351856646,2.351856646,2.351856646,2.351856646 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Difference,days/yr,0.345222103,0.345222103,0.345222103,0.345222103,0.345222103,0.345222103,0.345222103,0.345222103,0.345222103,0.345222103 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Difference,days/yr,-2.058413231,-2.058413231,-2.058413231,-2.058413231,-2.058413231,-2.058413231,-2.058413231,-2.058413231,-2.058413231,-2.058413231 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Difference,days/yr,-0.395706831,-0.395706831,-0.395706831,-0.395706831,-0.395706831,-0.395706831,-0.395706831,-0.395706831,-0.395706831,-0.395706831 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Difference,days/yr,-0.218424478,-0.218424478,-0.218424478,-0.218424478,-0.218424478,-0.218424478,-0.218424478,-0.218424478,-0.218424478,-0.218424478 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Difference,days/yr,2.695115485,2.695115485,2.695115485,2.695115485,2.695115485,2.695115485,2.695115485,2.695115485,2.695115485,2.695115485 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Difference,days/yr,-0.722101426,-0.722101426,-0.722101426,-0.722101426,-0.722101426,-0.722101426,-0.722101426,-0.722101426,-0.722101426,-0.722101426 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Difference,days/yr,-0.034788308,-0.034788308,-0.034788308,-0.034788308,-0.034788308,-0.034788308,-0.034788308,-0.034788308,-0.034788308,-0.034788308 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Difference,days/yr,-0.201027849,-0.201027849,-0.201027849,-0.201027849,-0.201027849,-0.201027849,-0.201027849,-0.201027849,-0.201027849,-0.201027849 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Difference,days/yr,0.445599832,0.445599832,0.445599832,0.445599832,0.445599832,0.445599832,0.445599832,0.445599832,0.445599832,0.445599832 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Difference,days/yr,0.250323323,0.250323323,0.250323323,0.250323323,0.250323323,0.250323323,0.250323323,0.250323323,0.250323323,0.250323323 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Difference,days/yr,-0.170781541,-0.170781541,-0.170781541,-0.170781541,-0.170781541,-0.170781541,-0.170781541,-0.170781541,-0.170781541,-0.170781541 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Difference,days/yr,0.79578977,0.79578977,0.79578977,0.79578977,0.79578977,0.79578977,0.79578977,0.79578977,0.79578977,0.79578977 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Difference,days/yr,0.946305481,0.946305481,0.946305481,0.946305481,0.946305481,0.946305481,0.946305481,0.946305481,0.946305481,0.946305481 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Difference,days/yr,-1.087541437,-1.087541437,-1.087541437,-1.087541437,-1.087541437,-1.087541437,-1.087541437,-1.087541437,-1.087541437,-1.087541437 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Difference,days/yr,6.587663424,6.587663424,6.587663424,6.587663424,6.587663424,6.587663424,6.587663424,6.587663424,6.587663424,6.587663424 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Difference,days/yr,-3.63027976,-3.63027976,-3.63027976,-3.63027976,-3.63027976,-3.63027976,-3.63027976,-3.63027976,-3.63027976,-3.63027976 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Difference,days/yr,1.691758868,1.691758868,1.691758868,1.691758868,1.691758868,1.691758868,1.691758868,1.691758868,1.691758868,1.691758868 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Difference,days/yr,-0.239426518,-0.239426518,-0.239426518,-0.239426518,-0.239426518,-0.239426518,-0.239426518,-0.239426518,-0.239426518,-0.239426518 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Difference,days/yr,3.960992592,3.960992592,3.960992592,3.960992592,3.960992592,3.960992592,3.960992592,3.960992592,3.960992592,3.960992592 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Difference,days/yr,3.955408641,3.955408641,3.955408641,3.955408641,3.955408641,3.955408641,3.955408641,3.955408641,3.955408641,3.955408641 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Difference,days/yr,3.214662971,3.214662971,3.214662971,3.214662971,3.214662971,3.214662971,3.214662971,3.214662971,3.214662971,3.214662971 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Difference,days/yr,-1.066724599,-1.066724599,-1.066724599,-1.066724599,-1.066724599,-1.066724599,-1.066724599,-1.066724599,-1.066724599,-1.066724599 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Difference,days/yr,0.146971459,0.146971459,0.146971459,0.146971459,0.146971459,0.146971459,0.146971459,0.146971459,0.146971459,0.146971459 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Difference,days/yr,0.319170475,0.319170475,0.319170475,0.319170475,0.319170475,0.319170475,0.319170475,0.319170475,0.319170475,0.319170475 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Difference,days/yr,3.46778185,3.46778185,3.46778185,3.46778185,3.46778185,3.46778185,3.46778185,3.46778185,3.46778185,3.46778185 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Difference,days/yr,1.660915256,1.660915256,1.660915256,1.660915256,1.660915256,1.660915256,1.660915256,1.660915256,1.660915256,1.660915256 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Difference,days/yr,0.301453959,0.301453959,0.301453959,0.301453959,0.301453959,0.301453959,0.301453959,0.301453959,0.301453959,0.301453959 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Difference,days/yr,0.990285686,0.990285686,0.990285686,0.990285686,0.990285686,0.990285686,0.990285686,0.990285686,0.990285686,0.990285686 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Difference,days/yr,-3.910984073,-3.910984073,-3.910984073,-3.910984073,-3.910984073,-3.910984073,-3.910984073,-3.910984073,-3.910984073,-3.910984073 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Difference,days/yr,3.050784434,3.050784434,3.050784434,3.050784434,3.050784434,3.050784434,3.050784434,3.050784434,3.050784434,3.050784434 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Difference,days/yr,0.093942403,0.093942403,0.093942403,0.093942403,0.093942403,0.093942403,0.093942403,0.093942403,0.093942403,0.093942403 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Difference,days/yr,-0.067401579,-0.067401579,-0.067401579,-0.067401579,-0.067401579,-0.067401579,-0.067401579,-0.067401579,-0.067401579,-0.067401579 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Difference,days/yr,1.41125693,1.41125693,1.41125693,1.41125693,1.41125693,1.41125693,1.41125693,1.41125693,1.41125693,1.41125693 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Difference,days/yr,0.784422757,0.784422757,0.784422757,0.784422757,0.784422757,0.784422757,0.784422757,0.784422757,0.784422757,0.784422757 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Difference,days/yr,0.013066733,0.013066733,0.013066733,0.013066733,0.013066733,0.013066733,0.013066733,0.013066733,0.013066733,0.013066733 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.863563179,-4.863563179,-4.863563179,-4.863563179,-4.863563179,-4.863563179,-4.863563179,-4.863563179,-4.863563179,-4.863563179 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Difference|Land area weighted,days/yr,5.953179558,5.953179558,5.953179558,5.953179558,5.953179558,5.953179558,5.953179558,5.953179558,5.953179558,5.953179558 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.779440465,-1.779440465,-1.779440465,-1.779440465,-1.779440465,-1.779440465,-1.779440465,-1.779440465,-1.779440465,-1.779440465 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Difference|Land area weighted,days/yr,-5.288804598,-5.288804598,-5.288804598,-5.288804598,-5.288804598,-5.288804598,-5.288804598,-5.288804598,-5.288804598,-5.288804598 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Difference|Land area weighted,days/yr,-3.731570672,-3.731570672,-3.731570672,-3.731570672,-3.731570672,-3.731570672,-3.731570672,-3.731570672,-3.731570672,-3.731570672 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Difference|Land area weighted,days/yr,-3.974328456,-3.974328456,-3.974328456,-3.974328456,-3.974328456,-3.974328456,-3.974328456,-3.974328456,-3.974328456,-3.974328456 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Difference|Land area weighted,days/yr,6.294805865,6.294805865,6.294805865,6.294805865,6.294805865,6.294805865,6.294805865,6.294805865,6.294805865,6.294805865 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Difference|Land area weighted,days/yr,-0.958470593,-0.958470593,-0.958470593,-0.958470593,-0.958470593,-0.958470593,-0.958470593,-0.958470593,-0.958470593,-0.958470593 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Difference|Land area weighted,days/yr,4.01183684,4.01183684,4.01183684,4.01183684,4.01183684,4.01183684,4.01183684,4.01183684,4.01183684,4.01183684 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Difference|Land area weighted,days/yr,7.890215881,7.890215881,7.890215881,7.890215881,7.890215881,7.890215881,7.890215881,7.890215881,7.890215881,7.890215881 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Difference|Land area weighted,days/yr,3.621119496,3.621119496,3.621119496,3.621119496,3.621119496,3.621119496,3.621119496,3.621119496,3.621119496,3.621119496 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.511356063,-2.511356063,-2.511356063,-2.511356063,-2.511356063,-2.511356063,-2.511356063,-2.511356063,-2.511356063,-2.511356063 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.033513452,-4.033513452,-4.033513452,-4.033513452,-4.033513452,-4.033513452,-4.033513452,-4.033513452,-4.033513452,-4.033513452 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Difference|Land area weighted,days/yr,-4.025034937,-4.025034937,-4.025034937,-4.025034937,-4.025034937,-4.025034937,-4.025034937,-4.025034937,-4.025034937,-4.025034937 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Difference|Land area weighted,days/yr,-5.297471955,-5.297471955,-5.297471955,-5.297471955,-5.297471955,-5.297471955,-5.297471955,-5.297471955,-5.297471955,-5.297471955 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Difference|Land area weighted,days/yr,-0.31047272,-0.31047272,-0.31047272,-0.31047272,-0.31047272,-0.31047272,-0.31047272,-0.31047272,-0.31047272,-0.31047272 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Difference|Land area weighted,days/yr,4.381326139,4.381326139,4.381326139,4.381326139,4.381326139,4.381326139,4.381326139,4.381326139,4.381326139,4.381326139 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Difference|Land area weighted,days/yr,-0.298628769,-0.298628769,-0.298628769,-0.298628769,-0.298628769,-0.298628769,-0.298628769,-0.298628769,-0.298628769,-0.298628769 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.134670204,-2.134670204,-2.134670204,-2.134670204,-2.134670204,-2.134670204,-2.134670204,-2.134670204,-2.134670204,-2.134670204 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.353020632,-1.353020632,-1.353020632,-1.353020632,-1.353020632,-1.353020632,-1.353020632,-1.353020632,-1.353020632,-1.353020632 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Difference|Land area weighted,days/yr,0.213349228,0.213349228,0.213349228,0.213349228,0.213349228,0.213349228,0.213349228,0.213349228,0.213349228,0.213349228 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Difference|Land area weighted,days/yr,6.715869459,6.715869459,6.715869459,6.715869459,6.715869459,6.715869459,6.715869459,6.715869459,6.715869459,6.715869459 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Difference|Land area weighted,days/yr,3.582413184,3.582413184,3.582413184,3.582413184,3.582413184,3.582413184,3.582413184,3.582413184,3.582413184,3.582413184 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Difference|Land area weighted,days/yr,2.147599978,2.147599978,2.147599978,2.147599978,2.147599978,2.147599978,2.147599978,2.147599978,2.147599978,2.147599978 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Difference|Land area weighted,days/yr,7.638580009,7.638580009,7.638580009,7.638580009,7.638580009,7.638580009,7.638580009,7.638580009,7.638580009,7.638580009 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.376209844,-4.376209844,-4.376209844,-4.376209844,-4.376209844,-4.376209844,-4.376209844,-4.376209844,-4.376209844,-4.376209844 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Difference|Land area weighted,days/yr,-0.645852701,-0.645852701,-0.645852701,-0.645852701,-0.645852701,-0.645852701,-0.645852701,-0.645852701,-0.645852701,-0.645852701 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Difference|Land area weighted,days/yr,3.566899595,3.566899595,3.566899595,3.566899595,3.566899595,3.566899595,3.566899595,3.566899595,3.566899595,3.566899595 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Difference|Land area weighted,days/yr,4.070288149,4.070288149,4.070288149,4.070288149,4.070288149,4.070288149,4.070288149,4.070288149,4.070288149,4.070288149 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Difference|Land area weighted,days/yr,-0.417039246,-0.417039246,-0.417039246,-0.417039246,-0.417039246,-0.417039246,-0.417039246,-0.417039246,-0.417039246,-0.417039246 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Difference|Land area weighted,days/yr,-5.692351325,-5.692351325,-5.692351325,-5.692351325,-5.692351325,-5.692351325,-5.692351325,-5.692351325,-5.692351325,-5.692351325 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Difference|Land area weighted,days/yr,-3.582708007,-3.582708007,-3.582708007,-3.582708007,-3.582708007,-3.582708007,-3.582708007,-3.582708007,-3.582708007,-3.582708007 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Difference|Land area weighted,days/yr,1.724270896,1.724270896,1.724270896,1.724270896,1.724270896,1.724270896,1.724270896,1.724270896,1.724270896,1.724270896 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Difference|Land area weighted,days/yr,-1.545673224,-1.545673224,-1.545673224,-1.545673224,-1.545673224,-1.545673224,-1.545673224,-1.545673224,-1.545673224,-1.545673224 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Difference|Land area weighted,days/yr,-3.367900645,-3.367900645,-3.367900645,-3.367900645,-3.367900645,-3.367900645,-3.367900645,-3.367900645,-3.367900645,-3.367900645 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.063943311,-1.063943311,-1.063943311,-1.063943311,-1.063943311,-1.063943311,-1.063943311,-1.063943311,-1.063943311,-1.063943311 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Difference|Land area weighted,days/yr,0.598236697,0.598236697,0.598236697,0.598236697,0.598236697,0.598236697,0.598236697,0.598236697,0.598236697,0.598236697 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Difference|Land area weighted,days/yr,5.764116167,5.764116167,5.764116167,5.764116167,5.764116167,5.764116167,5.764116167,5.764116167,5.764116167,5.764116167 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Difference|Land area weighted,days/yr,3.127247097,3.127247097,3.127247097,3.127247097,3.127247097,3.127247097,3.127247097,3.127247097,3.127247097,3.127247097 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Difference|Land area weighted,days/yr,2.956257549,2.956257549,2.956257549,2.956257549,2.956257549,2.956257549,2.956257549,2.956257549,2.956257549,2.956257549 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Difference|Land area weighted,days/yr,9.006155738,9.006155738,9.006155738,9.006155738,9.006155738,9.006155738,9.006155738,9.006155738,9.006155738,9.006155738 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.444963489,-2.444963489,-2.444963489,-2.444963489,-2.444963489,-2.444963489,-2.444963489,-2.444963489,-2.444963489,-2.444963489 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Difference|Land area weighted,days/yr,3.032779242,3.032779242,3.032779242,3.032779242,3.032779242,3.032779242,3.032779242,3.032779242,3.032779242,3.032779242 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Difference|Land area weighted,days/yr,-3.619167508,-3.619167508,-3.619167508,-3.619167508,-3.619167508,-3.619167508,-3.619167508,-3.619167508,-3.619167508,-3.619167508 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Difference|Land area weighted,days/yr,0.848881673,0.848881673,0.848881673,0.848881673,0.848881673,0.848881673,0.848881673,0.848881673,0.848881673,0.848881673 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Difference|Land area weighted,days/yr,3.785694124,3.785694124,3.785694124,3.785694124,3.785694124,3.785694124,3.785694124,3.785694124,3.785694124,3.785694124 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Difference|Land area weighted,days/yr,-3.098205057,-3.098205057,-3.098205057,-3.098205057,-3.098205057,-3.098205057,-3.098205057,-3.098205057,-3.098205057,-3.098205057 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Difference|Land area weighted,days/yr,5.540796866,5.540796866,5.540796866,5.540796866,5.540796866,5.540796866,5.540796866,5.540796866,5.540796866,5.540796866 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Difference|Land area weighted,days/yr,-0.963334023,-0.963334023,-0.963334023,-0.963334023,-0.963334023,-0.963334023,-0.963334023,-0.963334023,-0.963334023,-0.963334023 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Difference|Land area weighted,days/yr,-1.698281437,-1.698281437,-1.698281437,-1.698281437,-1.698281437,-1.698281437,-1.698281437,-1.698281437,-1.698281437,-1.698281437 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Difference|Land area weighted,days/yr,1.995883142,1.995883142,1.995883142,1.995883142,1.995883142,1.995883142,1.995883142,1.995883142,1.995883142,1.995883142 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Difference|Land area weighted,days/yr,-0.020326584,-0.020326584,-0.020326584,-0.020326584,-0.020326584,-0.020326584,-0.020326584,-0.020326584,-0.020326584,-0.020326584 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Difference|Land area weighted,days/yr,4.291540125,4.291540125,4.291540125,4.291540125,4.291540125,4.291540125,4.291540125,4.291540125,4.291540125,4.291540125 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Difference|Land area weighted,days/yr,7.007094456,7.007094456,7.007094456,7.007094456,7.007094456,7.007094456,7.007094456,7.007094456,7.007094456,7.007094456 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Difference|Land area weighted,days/yr,2.808229349,2.808229349,2.808229349,2.808229349,2.808229349,2.808229349,2.808229349,2.808229349,2.808229349,2.808229349 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.970718116,-1.970718116,-1.970718116,-1.970718116,-1.970718116,-1.970718116,-1.970718116,-1.970718116,-1.970718116,-1.970718116 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Difference|Land area weighted,days/yr,3.020127728,3.020127728,3.020127728,3.020127728,3.020127728,3.020127728,3.020127728,3.020127728,3.020127728,3.020127728 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Difference|Land area weighted,days/yr,1.753194258,1.753194258,1.753194258,1.753194258,1.753194258,1.753194258,1.753194258,1.753194258,1.753194258,1.753194258 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Difference|Land area weighted,days/yr,1.763249809,1.763249809,1.763249809,1.763249809,1.763249809,1.763249809,1.763249809,1.763249809,1.763249809,1.763249809 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.961750964,-1.961750964,-1.961750964,-1.961750964,-1.961750964,-1.961750964,-1.961750964,-1.961750964,-1.961750964,-1.961750964 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Difference|Land area weighted,days/yr,-2.385454961,-2.385454961,-2.385454961,-2.385454961,-2.385454961,-2.385454961,-2.385454961,-2.385454961,-2.385454961,-2.385454961 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.656769384,-3.656769384,-3.656769384,-3.656769384,-3.656769384,-3.656769384,-3.656769384,-3.656769384,-3.656769384,-3.656769384 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Difference|Land area weighted,days/yr,0.875837686,0.875837686,0.875837686,0.875837686,0.875837686,0.875837686,0.875837686,0.875837686,0.875837686,0.875837686 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Difference|Land area weighted,days/yr,2.255484899,2.255484899,2.255484899,2.255484899,2.255484899,2.255484899,2.255484899,2.255484899,2.255484899,2.255484899 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Difference|Land area weighted,days/yr,-9.45760274,-9.45760274,-9.45760274,-9.45760274,-9.45760274,-9.45760274,-9.45760274,-9.45760274,-9.45760274,-9.45760274 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Difference|Land area weighted,days/yr,3.231790253,3.231790253,3.231790253,3.231790253,3.231790253,3.231790253,3.231790253,3.231790253,3.231790253,3.231790253 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Difference|Land area weighted,days/yr,-2.663264497,-2.663264497,-2.663264497,-2.663264497,-2.663264497,-2.663264497,-2.663264497,-2.663264497,-2.663264497,-2.663264497 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.069641099,-2.069641099,-2.069641099,-2.069641099,-2.069641099,-2.069641099,-2.069641099,-2.069641099,-2.069641099,-2.069641099 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Difference|Land area weighted,days/yr,4.70704004,4.70704004,4.70704004,4.70704004,4.70704004,4.70704004,4.70704004,4.70704004,4.70704004,4.70704004 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Difference|Land area weighted,days/yr,-1.381668239,-1.381668239,-1.381668239,-1.381668239,-1.381668239,-1.381668239,-1.381668239,-1.381668239,-1.381668239,-1.381668239 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Difference|Land area weighted,days/yr,3.013155848,3.013155848,3.013155848,3.013155848,3.013155848,3.013155848,3.013155848,3.013155848,3.013155848,3.013155848 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.674148741,-1.674148741,-1.674148741,-1.674148741,-1.674148741,-1.674148741,-1.674148741,-1.674148741,-1.674148741,-1.674148741 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Difference|Land area weighted,days/yr,-3.995692382,-3.995692382,-3.995692382,-3.995692382,-3.995692382,-3.995692382,-3.995692382,-3.995692382,-3.995692382,-3.995692382 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Difference|Land area weighted,days/yr,0.834034847,0.834034847,0.834034847,0.834034847,0.834034847,0.834034847,0.834034847,0.834034847,0.834034847,0.834034847 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.053866949,-4.053866949,-4.053866949,-4.053866949,-4.053866949,-4.053866949,-4.053866949,-4.053866949,-4.053866949,-4.053866949 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.663056097,-0.663056097,-0.663056097,-0.663056097,-0.663056097,-0.663056097,-0.663056097,-0.663056097,-0.663056097,-0.663056097 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Difference|Land area weighted,days/yr,3.395229029,3.395229029,3.395229029,3.395229029,3.395229029,3.395229029,3.395229029,3.395229029,3.395229029,3.395229029 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Difference|Land area weighted,days/yr,-5.643059179,-5.643059179,-5.643059179,-5.643059179,-5.643059179,-5.643059179,-5.643059179,-5.643059179,-5.643059179,-5.643059179 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Difference|Land area weighted,days/yr,1.385284998,1.385284998,1.385284998,1.385284998,1.385284998,1.385284998,1.385284998,1.385284998,1.385284998,1.385284998 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.984398734,-2.984398734,-2.984398734,-2.984398734,-2.984398734,-2.984398734,-2.984398734,-2.984398734,-2.984398734,-2.984398734 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Difference|Land area weighted,days/yr,0.905898624,0.905898624,0.905898624,0.905898624,0.905898624,0.905898624,0.905898624,0.905898624,0.905898624,0.905898624 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.692875662,-1.692875662,-1.692875662,-1.692875662,-1.692875662,-1.692875662,-1.692875662,-1.692875662,-1.692875662,-1.692875662 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Difference|Land area weighted,days/yr,-5.132085109,-5.132085109,-5.132085109,-5.132085109,-5.132085109,-5.132085109,-5.132085109,-5.132085109,-5.132085109,-5.132085109 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Difference|Land area weighted,days/yr,-2.027646592,-2.027646592,-2.027646592,-2.027646592,-2.027646592,-2.027646592,-2.027646592,-2.027646592,-2.027646592,-2.027646592 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Difference|Land area weighted,days/yr,5.828516212,5.828516212,5.828516212,5.828516212,5.828516212,5.828516212,5.828516212,5.828516212,5.828516212,5.828516212 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.637328134,-0.637328134,-0.637328134,-0.637328134,-0.637328134,-0.637328134,-0.637328134,-0.637328134,-0.637328134,-0.637328134 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Difference|Land area weighted,days/yr,1.692983754,1.692983754,1.692983754,1.692983754,1.692983754,1.692983754,1.692983754,1.692983754,1.692983754,1.692983754 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Difference|Land area weighted,days/yr,6.952475933,6.952475933,6.952475933,6.952475933,6.952475933,6.952475933,6.952475933,6.952475933,6.952475933,6.952475933 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Difference|Land area weighted,days/yr,4.145309402,4.145309402,4.145309402,4.145309402,4.145309402,4.145309402,4.145309402,4.145309402,4.145309402,4.145309402 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Difference|Land area weighted,days/yr,-0.509129834,-0.509129834,-0.509129834,-0.509129834,-0.509129834,-0.509129834,-0.509129834,-0.509129834,-0.509129834,-0.509129834 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.589710444,-4.589710444,-4.589710444,-4.589710444,-4.589710444,-4.589710444,-4.589710444,-4.589710444,-4.589710444,-4.589710444 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Difference|Land area weighted,days/yr,-0.880386975,-0.880386975,-0.880386975,-0.880386975,-0.880386975,-0.880386975,-0.880386975,-0.880386975,-0.880386975,-0.880386975 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Difference|Land area weighted,days/yr,-2.066243317,-2.066243317,-2.066243317,-2.066243317,-2.066243317,-2.066243317,-2.066243317,-2.066243317,-2.066243317,-2.066243317 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Difference|Land area weighted,days/yr,1.76635899,1.76635899,1.76635899,1.76635899,1.76635899,1.76635899,1.76635899,1.76635899,1.76635899,1.76635899 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.157587745,-5.157587745,-5.157587745,-5.157587745,-5.157587745,-5.157587745,-5.157587745,-5.157587745,-5.157587745,-5.157587745 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Difference|Land area weighted,days/yr,-0.721786434,-0.721786434,-0.721786434,-0.721786434,-0.721786434,-0.721786434,-0.721786434,-0.721786434,-0.721786434,-0.721786434 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Difference|Land area weighted,days/yr,0.424581564,0.424581564,0.424581564,0.424581564,0.424581564,0.424581564,0.424581564,0.424581564,0.424581564,0.424581564 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Difference|Land area weighted,days/yr,-2.82525327,-2.82525327,-2.82525327,-2.82525327,-2.82525327,-2.82525327,-2.82525327,-2.82525327,-2.82525327,-2.82525327 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Difference|Land area weighted,days/yr,7.500423317,7.500423317,7.500423317,7.500423317,7.500423317,7.500423317,7.500423317,7.500423317,7.500423317,7.500423317 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Difference|Land area weighted,days/yr,-1.455904861,-1.455904861,-1.455904861,-1.455904861,-1.455904861,-1.455904861,-1.455904861,-1.455904861,-1.455904861,-1.455904861 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Difference|Land area weighted,days/yr,0.155297767,0.155297767,0.155297767,0.155297767,0.155297767,0.155297767,0.155297767,0.155297767,0.155297767,0.155297767 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Difference|Land area weighted,days/yr,2.989163337,2.989163337,2.989163337,2.989163337,2.989163337,2.989163337,2.989163337,2.989163337,2.989163337,2.989163337 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Difference|Land area weighted,days/yr,1.517637049,1.517637049,1.517637049,1.517637049,1.517637049,1.517637049,1.517637049,1.517637049,1.517637049,1.517637049 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Difference|Land area weighted,days/yr,2.720836567,2.720836567,2.720836567,2.720836567,2.720836567,2.720836567,2.720836567,2.720836567,2.720836567,2.720836567 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Difference|Land area weighted,days/yr,4.257673133,4.257673133,4.257673133,4.257673133,4.257673133,4.257673133,4.257673133,4.257673133,4.257673133,4.257673133 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.869040465,-4.869040465,-4.869040465,-4.869040465,-4.869040465,-4.869040465,-4.869040465,-4.869040465,-4.869040465,-4.869040465 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Difference|Land area weighted,days/yr,0.299704128,0.299704128,0.299704128,0.299704128,0.299704128,0.299704128,0.299704128,0.299704128,0.299704128,0.299704128 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.225070734,-2.225070734,-2.225070734,-2.225070734,-2.225070734,-2.225070734,-2.225070734,-2.225070734,-2.225070734,-2.225070734 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Difference|Land area weighted,days/yr,2.195537351,2.195537351,2.195537351,2.195537351,2.195537351,2.195537351,2.195537351,2.195537351,2.195537351,2.195537351 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Difference|Land area weighted,days/yr,-0.166676711,-0.166676711,-0.166676711,-0.166676711,-0.166676711,-0.166676711,-0.166676711,-0.166676711,-0.166676711,-0.166676711 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Difference|Land area weighted,days/yr,2.116851165,2.116851165,2.116851165,2.116851165,2.116851165,2.116851165,2.116851165,2.116851165,2.116851165,2.116851165 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Difference|Land area weighted,days/yr,1.555592162,1.555592162,1.555592162,1.555592162,1.555592162,1.555592162,1.555592162,1.555592162,1.555592162,1.555592162 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Difference|Land area weighted,days/yr,4.790027432,4.790027432,4.790027432,4.790027432,4.790027432,4.790027432,4.790027432,4.790027432,4.790027432,4.790027432 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Difference|Land area weighted,days/yr,3.788767797,3.788767797,3.788767797,3.788767797,3.788767797,3.788767797,3.788767797,3.788767797,3.788767797,3.788767797 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Difference|Land area weighted,days/yr,1.875185685,1.875185685,1.875185685,1.875185685,1.875185685,1.875185685,1.875185685,1.875185685,1.875185685,1.875185685 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.191744036,-2.191744036,-2.191744036,-2.191744036,-2.191744036,-2.191744036,-2.191744036,-2.191744036,-2.191744036,-2.191744036 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Difference|Land area weighted,days/yr,2.107753753,2.107753753,2.107753753,2.107753753,2.107753753,2.107753753,2.107753753,2.107753753,2.107753753,2.107753753 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.335851827,-1.335851827,-1.335851827,-1.335851827,-1.335851827,-1.335851827,-1.335851827,-1.335851827,-1.335851827,-1.335851827 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Difference|Land area weighted,days/yr,0.502348011,0.502348011,0.502348011,0.502348011,0.502348011,0.502348011,0.502348011,0.502348011,0.502348011,0.502348011 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Difference|Land area weighted,days/yr,1.687569431,1.687569431,1.687569431,1.687569431,1.687569431,1.687569431,1.687569431,1.687569431,1.687569431,1.687569431 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Difference|Land area weighted,days/yr,5.031907818,5.031907818,5.031907818,5.031907818,5.031907818,5.031907818,5.031907818,5.031907818,5.031907818,5.031907818 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Difference|Land area weighted,days/yr,2.822624364,2.822624364,2.822624364,2.822624364,2.822624364,2.822624364,2.822624364,2.822624364,2.822624364,2.822624364 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Difference|Land area weighted,days/yr,-0.023402206,-0.023402206,-0.023402206,-0.023402206,-0.023402206,-0.023402206,-0.023402206,-0.023402206,-0.023402206,-0.023402206 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.146052836,-2.146052836,-2.146052836,-2.146052836,-2.146052836,-2.146052836,-2.146052836,-2.146052836,-2.146052836,-2.146052836 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Difference|Land area weighted,days/yr,3.895212537,3.895212537,3.895212537,3.895212537,3.895212537,3.895212537,3.895212537,3.895212537,3.895212537,3.895212537 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Difference|Land area weighted,days/yr,0.899825714,0.899825714,0.899825714,0.899825714,0.899825714,0.899825714,0.899825714,0.899825714,0.899825714,0.899825714 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Difference|Land area weighted,days/yr,-10.47612332,-10.47612332,-10.47612332,-10.47612332,-10.47612332,-10.47612332,-10.47612332,-10.47612332,-10.47612332,-10.47612332 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Difference|Land area weighted,days/yr,0.110264558,0.110264558,0.110264558,0.110264558,0.110264558,0.110264558,0.110264558,0.110264558,0.110264558,0.110264558 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.131084645,-1.131084645,-1.131084645,-1.131084645,-1.131084645,-1.131084645,-1.131084645,-1.131084645,-1.131084645,-1.131084645 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Difference|Land area weighted,days/yr,-1.066460706,-1.066460706,-1.066460706,-1.066460706,-1.066460706,-1.066460706,-1.066460706,-1.066460706,-1.066460706,-1.066460706 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Difference|Land area weighted,days/yr,3.918212779,3.918212779,3.918212779,3.918212779,3.918212779,3.918212779,3.918212779,3.918212779,3.918212779,3.918212779 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Difference|Land area weighted,days/yr,5.456554637,5.456554637,5.456554637,5.456554637,5.456554637,5.456554637,5.456554637,5.456554637,5.456554637,5.456554637 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Difference|Land area weighted,days/yr,-2.990530767,-2.990530767,-2.990530767,-2.990530767,-2.990530767,-2.990530767,-2.990530767,-2.990530767,-2.990530767,-2.990530767 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Difference|Land area weighted,days/yr,-7.081535125,-7.081535125,-7.081535125,-7.081535125,-7.081535125,-7.081535125,-7.081535125,-7.081535125,-7.081535125,-7.081535125 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Difference|Land area weighted,days/yr,0.393655991,0.393655991,0.393655991,0.393655991,0.393655991,0.393655991,0.393655991,0.393655991,0.393655991,0.393655991 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Difference|Land area weighted,days/yr,0.111514455,0.111514455,0.111514455,0.111514455,0.111514455,0.111514455,0.111514455,0.111514455,0.111514455,0.111514455 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Difference|Land area weighted,days/yr,-1.064107161,-1.064107161,-1.064107161,-1.064107161,-1.064107161,-1.064107161,-1.064107161,-1.064107161,-1.064107161,-1.064107161 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Difference|Land area weighted,days/yr,-0.125908099,-0.125908099,-0.125908099,-0.125908099,-0.125908099,-0.125908099,-0.125908099,-0.125908099,-0.125908099,-0.125908099 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Difference|Land area weighted,days/yr,4.847119734,4.847119734,4.847119734,4.847119734,4.847119734,4.847119734,4.847119734,4.847119734,4.847119734,4.847119734 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Difference|Land area weighted,days/yr,-2.355837337,-2.355837337,-2.355837337,-2.355837337,-2.355837337,-2.355837337,-2.355837337,-2.355837337,-2.355837337,-2.355837337 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Difference|Land area weighted,days/yr,2.583529964,2.583529964,2.583529964,2.583529964,2.583529964,2.583529964,2.583529964,2.583529964,2.583529964,2.583529964 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Difference|Land area weighted,days/yr,1.21173156,1.21173156,1.21173156,1.21173156,1.21173156,1.21173156,1.21173156,1.21173156,1.21173156,1.21173156 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Difference|Land area weighted,days/yr,4.176834602,4.176834602,4.176834602,4.176834602,4.176834602,4.176834602,4.176834602,4.176834602,4.176834602,4.176834602 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Difference|Land area weighted,days/yr,2.685634873,2.685634873,2.685634873,2.685634873,2.685634873,2.685634873,2.685634873,2.685634873,2.685634873,2.685634873 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Difference|Land area weighted,days/yr,4.09751125,4.09751125,4.09751125,4.09751125,4.09751125,4.09751125,4.09751125,4.09751125,4.09751125,4.09751125 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Difference|Land area weighted,days/yr,1.799740103,1.799740103,1.799740103,1.799740103,1.799740103,1.799740103,1.799740103,1.799740103,1.799740103,1.799740103 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Difference|Land area weighted,days/yr,3.605763036,3.605763036,3.605763036,3.605763036,3.605763036,3.605763036,3.605763036,3.605763036,3.605763036,3.605763036 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Difference|Land area weighted,days/yr,1.126234523,1.126234523,1.126234523,1.126234523,1.126234523,1.126234523,1.126234523,1.126234523,1.126234523,1.126234523 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Difference|Land area weighted,days/yr,-2.522182107,-2.522182107,-2.522182107,-2.522182107,-2.522182107,-2.522182107,-2.522182107,-2.522182107,-2.522182107,-2.522182107 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Difference|Land area weighted,days/yr,1.188580281,1.188580281,1.188580281,1.188580281,1.188580281,1.188580281,1.188580281,1.188580281,1.188580281,1.188580281 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Difference|Land area weighted,days/yr,3.006626904,3.006626904,3.006626904,3.006626904,3.006626904,3.006626904,3.006626904,3.006626904,3.006626904,3.006626904 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Difference|Land area weighted,days/yr,7.92282625,7.92282625,7.92282625,7.92282625,7.92282625,7.92282625,7.92282625,7.92282625,7.92282625,7.92282625 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.744687395,-2.744687395,-2.744687395,-2.744687395,-2.744687395,-2.744687395,-2.744687395,-2.744687395,-2.744687395,-2.744687395 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Difference|Land area weighted,days/yr,4.360738359,4.360738359,4.360738359,4.360738359,4.360738359,4.360738359,4.360738359,4.360738359,4.360738359,4.360738359 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Difference|Land area weighted,days/yr,4.467543944,4.467543944,4.467543944,4.467543944,4.467543944,4.467543944,4.467543944,4.467543944,4.467543944,4.467543944 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Difference|Land area weighted,days/yr,8.908839128,8.908839128,8.908839128,8.908839128,8.908839128,8.908839128,8.908839128,8.908839128,8.908839128,8.908839128 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Difference|Land area weighted,days/yr,1.648355312,1.648355312,1.648355312,1.648355312,1.648355312,1.648355312,1.648355312,1.648355312,1.648355312,1.648355312 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Difference|Land area weighted,days/yr,3.630647364,3.630647364,3.630647364,3.630647364,3.630647364,3.630647364,3.630647364,3.630647364,3.630647364,3.630647364 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.246178019,-1.246178019,-1.246178019,-1.246178019,-1.246178019,-1.246178019,-1.246178019,-1.246178019,-1.246178019,-1.246178019 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Difference|Land area weighted,days/yr,-0.52986008,-0.52986008,-0.52986008,-0.52986008,-0.52986008,-0.52986008,-0.52986008,-0.52986008,-0.52986008,-0.52986008 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Difference|Land area weighted,days/yr,2.855900863,2.855900863,2.855900863,2.855900863,2.855900863,2.855900863,2.855900863,2.855900863,2.855900863,2.855900863 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Difference|Land area weighted,days/yr,0.512579332,0.512579332,0.512579332,0.512579332,0.512579332,0.512579332,0.512579332,0.512579332,0.512579332,0.512579332 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Difference|Land area weighted,days/yr,-3.086709323,-3.086709323,-3.086709323,-3.086709323,-3.086709323,-3.086709323,-3.086709323,-3.086709323,-3.086709323,-3.086709323 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Difference|Land area weighted,days/yr,-0.689148663,-0.689148663,-0.689148663,-0.689148663,-0.689148663,-0.689148663,-0.689148663,-0.689148663,-0.689148663,-0.689148663 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Difference|Land area weighted,days/yr,-0.693592397,-0.693592397,-0.693592397,-0.693592397,-0.693592397,-0.693592397,-0.693592397,-0.693592397,-0.693592397,-0.693592397 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Difference|Land area weighted,days/yr,3.376639887,3.376639887,3.376639887,3.376639887,3.376639887,3.376639887,3.376639887,3.376639887,3.376639887,3.376639887 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.902085136,-0.902085136,-0.902085136,-0.902085136,-0.902085136,-0.902085136,-0.902085136,-0.902085136,-0.902085136,-0.902085136 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Difference|Land area weighted,days/yr,-0.190805126,-0.190805126,-0.190805126,-0.190805126,-0.190805126,-0.190805126,-0.190805126,-0.190805126,-0.190805126,-0.190805126 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.956577126,-1.956577126,-1.956577126,-1.956577126,-1.956577126,-1.956577126,-1.956577126,-1.956577126,-1.956577126,-1.956577126 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Difference|Land area weighted,days/yr,0.537258925,0.537258925,0.537258925,0.537258925,0.537258925,0.537258925,0.537258925,0.537258925,0.537258925,0.537258925 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Difference|Land area weighted,days/yr,0.500508992,0.500508992,0.500508992,0.500508992,0.500508992,0.500508992,0.500508992,0.500508992,0.500508992,0.500508992 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Difference|Land area weighted,days/yr,-0.310034339,-0.310034339,-0.310034339,-0.310034339,-0.310034339,-0.310034339,-0.310034339,-0.310034339,-0.310034339,-0.310034339 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Difference|Land area weighted,days/yr,2.390530583,2.390530583,2.390530583,2.390530583,2.390530583,2.390530583,2.390530583,2.390530583,2.390530583,2.390530583 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Difference|Land area weighted,days/yr,1.818097133,1.818097133,1.818097133,1.818097133,1.818097133,1.818097133,1.818097133,1.818097133,1.818097133,1.818097133 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Difference|Land area weighted,days/yr,-1.644054966,-1.644054966,-1.644054966,-1.644054966,-1.644054966,-1.644054966,-1.644054966,-1.644054966,-1.644054966,-1.644054966 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Difference|Land area weighted,days/yr,8.31301699,8.31301699,8.31301699,8.31301699,8.31301699,8.31301699,8.31301699,8.31301699,8.31301699,8.31301699 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.78697443,-5.78697443,-5.78697443,-5.78697443,-5.78697443,-5.78697443,-5.78697443,-5.78697443,-5.78697443,-5.78697443 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Difference|Land area weighted,days/yr,2.909577209,2.909577209,2.909577209,2.909577209,2.909577209,2.909577209,2.909577209,2.909577209,2.909577209,2.909577209 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.334818571,-0.334818571,-0.334818571,-0.334818571,-0.334818571,-0.334818571,-0.334818571,-0.334818571,-0.334818571,-0.334818571 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Difference|Land area weighted,days/yr,5.983103666,5.983103666,5.983103666,5.983103666,5.983103666,5.983103666,5.983103666,5.983103666,5.983103666,5.983103666 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Difference|Land area weighted,days/yr,5.159242091,5.159242091,5.159242091,5.159242091,5.159242091,5.159242091,5.159242091,5.159242091,5.159242091,5.159242091 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Difference|Land area weighted,days/yr,3.864458625,3.864458625,3.864458625,3.864458625,3.864458625,3.864458625,3.864458625,3.864458625,3.864458625,3.864458625 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Difference|Land area weighted,days/yr,-1.178570419,-1.178570419,-1.178570419,-1.178570419,-1.178570419,-1.178570419,-1.178570419,-1.178570419,-1.178570419,-1.178570419 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Difference|Land area weighted,days/yr,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Difference|Land area weighted,days/yr,0.489150497,0.489150497,0.489150497,0.489150497,0.489150497,0.489150497,0.489150497,0.489150497,0.489150497,0.489150497 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Difference|Land area weighted,days/yr,4.225345534,4.225345534,4.225345534,4.225345534,4.225345534,4.225345534,4.225345534,4.225345534,4.225345534,4.225345534 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Difference|Land area weighted,days/yr,2.650742475,2.650742475,2.650742475,2.650742475,2.650742475,2.650742475,2.650742475,2.650742475,2.650742475,2.650742475 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Difference|Land area weighted,days/yr,1.153306835,1.153306835,1.153306835,1.153306835,1.153306835,1.153306835,1.153306835,1.153306835,1.153306835,1.153306835 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Difference|Land area weighted,days/yr,2.288386707,2.288386707,2.288386707,2.288386707,2.288386707,2.288386707,2.288386707,2.288386707,2.288386707,2.288386707 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.991965711,-5.991965711,-5.991965711,-5.991965711,-5.991965711,-5.991965711,-5.991965711,-5.991965711,-5.991965711,-5.991965711 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Difference|Land area weighted,days/yr,4.394596578,4.394596578,4.394596578,4.394596578,4.394596578,4.394596578,4.394596578,4.394596578,4.394596578,4.394596578 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Difference|Land area weighted,days/yr,0.907134818,0.907134818,0.907134818,0.907134818,0.907134818,0.907134818,0.907134818,0.907134818,0.907134818,0.907134818 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Difference|Land area weighted,days/yr,-2.147887968,-2.147887968,-2.147887968,-2.147887968,-2.147887968,-2.147887968,-2.147887968,-2.147887968,-2.147887968,-2.147887968 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Difference|Land area weighted,days/yr,6.134915512,6.134915512,6.134915512,6.134915512,6.134915512,6.134915512,6.134915512,6.134915512,6.134915512,6.134915512 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Difference|Land area weighted,days/yr,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Difference|Land area weighted,days/yr,0.3249836,0.3249836,0.3249836,0.3249836,0.3249836,0.3249836,0.3249836,0.3249836,0.3249836,0.3249836 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Difference|Population weighted,days/yr,1.22866472,1.240231532,1.251649126,1.264390314,1.275567256,1.286182458,1.296306144,1.306078466,1.315605104,1.325141308 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Difference|Population weighted,days/yr,6.866219915,6.867863543,6.869308283,6.870547425,6.871562895,6.872367543,6.873033509,6.873600277,6.874076374,6.874511138 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Difference|Population weighted,days/yr,-2.109224628,-2.119662929,-2.132350299,-2.146467837,-2.160123753,-2.173969962,-2.187153997,-2.199900387,-2.21259133,-2.22056278 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Difference|Population weighted,days/yr,-5.475627366,-5.488879312,-5.502340019,-5.513153283,-5.522115521,-5.529044051,-5.534723002,-5.540347529,-5.546336281,-5.553315999 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Difference|Population weighted,days/yr,-3.207494454,-3.220558665,-3.223326849,-3.21699989,-3.20586681,-3.188273546,-3.166186566,-3.142134486,-3.117262878,-3.092998916 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Difference|Population weighted,days/yr,-5.513894006,-5.517046553,-5.521759654,-5.526081802,-5.530722465,-5.535675893,-5.541240247,-5.547134693,-5.553119743,-5.559021726 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Difference|Population weighted,days/yr,5.832669956,5.858909791,5.882805402,5.903680263,5.919368049,5.931731325,5.942356583,5.951541108,5.958493953,5.963851005 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Difference|Population weighted,days/yr,-0.986454866,-0.98462417,-0.984645514,-0.98658692,-0.990270345,-0.995094048,-1.002614549,-1.012854849,-1.024811876,-1.037996462 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Difference|Population weighted,days/yr,1.935692987,1.923886419,1.912901469,1.904648466,1.897898126,1.892345183,1.88792805,1.884846775,1.883031239,1.880671662 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Difference|Population weighted,days/yr,5.307438042,5.406410909,5.488685843,5.556598014,5.611632384,5.655848167,5.693289996,5.722656719,5.746153711,5.765968906 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Difference|Population weighted,days/yr,4.519584346,4.612304225,4.666554419,4.70393345,4.731078493,4.758145544,4.780327638,4.80116602,4.819347322,4.835281516 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Difference|Population weighted,days/yr,-2.505804034,-2.50089384,-2.498393765,-2.497620754,-2.498019547,-2.498945064,-2.500081171,-2.501331265,-2.502535339,-2.503748971 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Difference|Population weighted,days/yr,-3.991395305,-4.017941011,-4.032625019,-4.040419324,-4.042340884,-4.039732582,-4.035237458,-4.029123166,-4.021459374,-4.012795073 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Difference|Population weighted,days/yr,-4.210570255,-4.211998422,-4.214324267,-4.216025562,-4.217882909,-4.219263076,-4.220454876,-4.221222536,-4.221649869,-4.222171525 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Difference|Population weighted,days/yr,-8.415802092,-8.4284519,-8.437828466,-8.444391862,-8.448549742,-8.450568559,-8.451716273,-8.452597305,-8.453403123,-8.454122708 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Difference|Population weighted,days/yr,-0.50399698,-0.53957479,-0.571433109,-0.60063305,-0.624027791,-0.641293038,-0.656225103,-0.672799301,-0.690544129,-0.703836377 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Difference|Population weighted,days/yr,5.706714583,5.725426757,5.750943293,5.779771267,5.810771122,5.842588979,5.872360832,5.900132818,5.926343392,5.950764416 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Difference|Population weighted,days/yr,-0.4918804,-0.494296582,-0.496340123,-0.49746082,-0.497779131,-0.497610568,-0.497007116,-0.495930752,-0.494795837,-0.493647456 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Difference|Population weighted,days/yr,-1.895749786,-1.886234204,-1.87720759,-1.867985777,-1.858874527,-1.850099353,-1.843752401,-1.839897724,-1.838280865,-1.838631553 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Difference|Population weighted,days/yr,-0.929630771,-0.926256856,-0.924697761,-0.924330668,-0.924499302,-0.925268441,-0.926589135,-0.928280286,-0.930255139,-0.932029951 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Difference|Population weighted,days/yr,1.449941081,1.460969537,1.466176861,1.468781376,1.469916089,1.469876373,1.46793075,1.466655885,1.464289734,1.460489278 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Difference|Population weighted,days/yr,5.819798055,5.803023463,5.782381935,5.763677661,5.745783449,5.727437076,5.70935883,5.693563062,5.680187936,5.668960346 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Difference|Population weighted,days/yr,3.88289247,3.931984846,3.96359126,3.985619458,4.003488475,4.017579907,4.027537301,4.034306833,4.037992041,4.038801655 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Difference|Population weighted,days/yr,2.323228445,2.337700201,2.35146293,2.36373259,2.374712823,2.385285561,2.395359815,2.404637365,2.413188075,2.421020199 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Difference|Population weighted,days/yr,6.155680227,6.133272348,6.111942035,6.090423553,6.06866859,6.048816846,6.03310829,6.020492715,6.010247138,6.001881598 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Difference|Population weighted,days/yr,-3.469144342,-3.466013787,-3.463178349,-3.459473821,-3.453726298,-3.448401552,-3.44282886,-3.437913981,-3.433172914,-3.429715635 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Difference|Population weighted,days/yr,-0.732397413,-0.726969572,-0.726533205,-0.727543871,-0.728545045,-0.730131364,-0.732361212,-0.734883495,-0.737895596,-0.740817918 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Difference|Population weighted,days/yr,2.959494399,2.943347565,2.931237961,2.922938201,2.917725975,2.914725114,2.913041041,2.912328259,2.912239159,2.911921374 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Difference|Population weighted,days/yr,3.179815901,3.152165419,3.133697803,3.116335538,3.106227091,3.094940629,3.086180464,3.074290056,3.065562568,3.057913348 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Difference|Population weighted,days/yr,1.907897658,1.911214162,1.913633971,1.91770375,1.920516592,1.923501426,1.926855508,1.930527677,1.93495482,1.940391007 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Difference|Population weighted,days/yr,-0.854370735,-0.882396203,-0.904064994,-0.921555601,-0.934169933,-0.944011948,-0.9515769,-0.957395892,-0.961932821,-0.965345767 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Difference|Population weighted,days/yr,-2.889642442,-2.91674283,-2.935547199,-2.949235398,-2.96056464,-2.969502401,-2.976763914,-2.982869013,-2.98788242,-2.99176633 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Difference|Population weighted,days/yr,2.655300572,2.655934575,2.659165889,2.66618182,2.676408467,2.689855088,2.702664723,2.714386856,2.724708566,2.733417608 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Difference|Population weighted,days/yr,-1.862191989,-1.873805925,-1.88221723,-1.888732459,-1.894928239,-1.899980877,-1.903361154,-1.906155371,-1.90870601,-1.910659569 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Difference|Population weighted,days/yr,-0.751128396,-0.771746893,-0.773427724,-0.770093011,-0.764293501,-0.757175677,-0.748607696,-0.740448373,-0.734008184,-0.728996747 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Difference|Population weighted,days/yr,-1.093653607,-1.08126985,-1.076721467,-1.074176035,-1.072631706,-1.07169935,-1.071188289,-1.070901711,-1.070687494,-1.070517553 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Difference|Population weighted,days/yr,-0.125329381,-0.137551993,-0.147216579,-0.157782785,-0.168843528,-0.179638426,-0.189611882,-0.198512111,-0.206113587,-0.212297087 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Difference|Population weighted,days/yr,6.052745046,6.079561131,6.098315885,6.112100367,6.121985382,6.128075263,6.131320354,6.133189155,6.134290637,6.135048352 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Difference|Population weighted,days/yr,3.259932834,3.224826528,3.206150367,3.198040435,3.197108167,3.200436068,3.206757857,3.215090342,3.225111935,3.235999954 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Difference|Population weighted,days/yr,2.450898967,2.453868944,2.457956642,2.463133183,2.468352255,2.474023763,2.479330214,2.484036799,2.487718971,2.490052011 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Difference|Population weighted,days/yr,9.875957625,9.885319219,9.893357726,9.900166064,9.905858409,9.910571278,9.914427528,9.917611442,9.920273979,9.922530091 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Difference|Population weighted,days/yr,-3.68302868,-3.700093379,-3.713764857,-3.725242891,-3.73476228,-3.742914521,-3.749818929,-3.755794107,-3.760780387,-3.764992634 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Difference|Population weighted,days/yr,3.126807633,3.122001243,3.118427718,3.116570554,3.114526395,3.112489869,3.110639859,3.109080599,3.108182173,3.107693745 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Difference|Population weighted,days/yr,-3.943612898,-3.968945905,-3.992588319,-4.01371087,-4.032007779,-4.047537835,-4.061153812,-4.073039278,-4.083412909,-4.092176913 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Difference|Population weighted,days/yr,0.639723798,0.579108055,0.522567462,0.46816722,0.416822151,0.369417653,0.327616015,0.291552921,0.261751057,0.239700673 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Difference|Population weighted,days/yr,3.985934291,3.985802018,3.984649187,3.983798012,3.98319534,3.981987453,3.98078164,3.979413362,3.978676088,3.978994797 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Difference|Population weighted,days/yr,-3.564408747,-3.548379389,-3.533930603,-3.522728907,-3.515289759,-3.510019412,-3.506427121,-3.504182472,-3.502871681,-3.502418064 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Difference|Population weighted,days/yr,5.194806244,5.195305577,5.19319968,5.188252667,5.181339857,5.173101312,5.164355726,5.155688992,5.147407255,5.140240796 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Difference|Population weighted,days/yr,0.425461271,0.410988115,0.407160575,0.404768486,0.404540617,0.399888417,0.400697849,0.402667814,0.404291331,0.406292198 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Difference|Population weighted,days/yr,-1.843830253,-1.865622412,-1.882262043,-1.895571738,-1.90582026,-1.91560084,-1.926149559,-1.936254432,-1.946571787,-1.955900043 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Difference|Population weighted,days/yr,1.536163567,1.484698568,1.450130925,1.425619688,1.409186054,1.40310611,1.41055781,1.431835453,1.459380769,1.487464002 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Difference|Population weighted,days/yr,-0.200705718,-0.194318546,-0.188286536,-0.182714377,-0.177708004,-0.173184803,-0.169213215,-0.165840849,-0.162933873,-0.160416076 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Difference|Population weighted,days/yr,0.708526202,0.708396393,0.707969843,0.707125401,0.706248024,0.705230315,0.704196908,0.703143266,0.702208266,0.701328439 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Difference|Population weighted,days/yr,6.520991739,6.520560786,6.520903845,6.521409942,6.521555614,6.522026874,6.523302107,6.524907874,6.526345104,6.527658323 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Difference|Population weighted,days/yr,2.295911032,2.296884335,2.295894818,2.296651464,2.298646249,2.299723352,2.30229122,2.302959845,2.305985648,2.309538384 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Difference|Population weighted,days/yr,-2.330415014,-2.330564008,-2.330110753,-2.32741174,-2.324245221,-2.319768831,-2.315594575,-2.311827181,-2.308395905,-2.304943401 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Difference|Population weighted,days/yr,2.000898518,1.974952559,1.953011965,1.935123159,1.920085733,1.908295665,1.8981516,1.889445559,1.882068801,1.875412795 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Difference|Population weighted,days/yr,1.551910813,1.549948089,1.542964708,1.535248574,1.525355153,1.513072486,1.50133393,1.489303339,1.477918197,1.469238681 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Difference|Population weighted,days/yr,1.796755637,1.798968738,1.799844545,1.800706772,1.800706772,1.800699474,1.800693437,1.800707097,1.80069247,1.800688703 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Difference|Population weighted,days/yr,0.411295078,0.446343579,0.472573467,0.493147846,0.510077777,0.523688336,0.535595267,0.545988328,0.554844544,0.563136872 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Difference|Population weighted,days/yr,-2.526272649,-2.523343653,-2.52057649,-2.51845586,-2.51610971,-2.513825051,-2.512282324,-2.511540561,-2.512003448,-2.513477112 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Difference|Population weighted,days/yr,-3.23260948,-3.253177229,-3.26879659,-3.281869045,-3.293104214,-3.30153988,-3.308456133,-3.314193569,-3.318813538,-3.322715973 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Difference|Population weighted,days/yr,0.060719964,0.06165675,0.046644184,0.031069191,0.017405824,0.005396389,-0.005063741,-0.015070907,-0.023279967,-0.032514919 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Difference|Population weighted,days/yr,2.753220271,2.761188356,2.76837547,2.774366318,2.779305779,2.783452903,2.786877803,2.789810478,2.792237364,2.794414819 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Difference|Population weighted,days/yr,-9.430799424,-9.392248929,-9.353140543,-9.315913026,-9.279820818,-9.248422121,-9.220025843,-9.194523508,-9.170850984,-9.149181225 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Difference|Population weighted,days/yr,2.664000334,2.665027222,2.662445784,2.658006682,2.653073513,2.647837618,2.644062187,2.641016086,2.6386848,2.637811505 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Difference|Population weighted,days/yr,-3.157676961,-3.152668894,-3.15207754,-3.154819771,-3.160042362,-3.166288746,-3.173654049,-3.181626855,-3.189406044,-3.196925813 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Difference|Population weighted,days/yr,0.772526286,0.734512288,0.699740124,0.669204545,0.643040232,0.622190166,0.605387845,0.591591618,0.580209487,0.570587022 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Difference|Population weighted,days/yr,7.670154961,7.802345793,7.936581137,8.055305167,8.151702638,8.231350303,8.297498824,8.352203883,8.398709538,8.442135314 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Difference|Population weighted,days/yr,0.04423645,0.044075666,0.043986369,0.043942621,0.043868584,0.043864505,0.043861269,0.043861269,0.043825166,0.043870355 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Difference|Population weighted,days/yr,1.802062103,1.80212218,1.800089803,1.796259722,1.790968912,1.784204908,1.776545221,1.768602177,1.761668716,1.755969572 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Difference|Population weighted,days/yr,-1.634491325,-1.634927516,-1.635874727,-1.637230579,-1.638665723,-1.640230885,-1.641825757,-1.643230456,-1.644314063,-1.645104233 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Difference|Population weighted,days/yr,-4.847039712,-4.843417653,-4.840800352,-4.838750697,-4.837205339,-4.836052315,-4.835264048,-4.834789646,-4.834534154,-4.834371233 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Difference|Population weighted,days/yr,0.425536839,0.421675367,0.417607996,0.413564559,0.409891357,0.406680195,0.403816419,0.401292387,0.399007797,0.396891644 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Difference|Population weighted,days/yr,-4.970140106,-4.969732424,-4.969486994,-4.969670867,-4.969412404,-4.968916047,-4.96907171,-4.968575339,-4.968535066,-4.969124804 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Difference|Population weighted,days/yr,1.073685606,1.068334292,1.060728651,1.054318006,1.048396168,1.04567882,1.042160536,1.037201981,1.033833415,1.030880978 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Difference|Population weighted,days/yr,11.08002263,11.12496941,11.18436685,11.25170924,11.32569229,11.4030919,11.48141756,11.54801946,11.60440332,11.65258292 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Difference|Population weighted,days/yr,-6.490516572,-6.485252577,-6.480763392,-6.476579837,-6.474081532,-6.473609168,-6.474468348,-6.474185258,-6.47391314,-6.474606557 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Difference|Population weighted,days/yr,2.456396668,2.450779136,2.445200246,2.439358644,2.433587427,2.428416212,2.423877477,2.419456794,2.415317836,2.41167843 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Difference|Population weighted,days/yr,-1.028272338,-1.033657828,-1.035698518,-1.039972674,-1.042205993,-1.045689558,-1.047818268,-1.049719946,-1.051778538,-1.05351245 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Difference|Population weighted,days/yr,0.005191554,-0.00787391,-0.024510233,-0.0437356,-0.064476025,-0.085704674,-0.106524971,-0.126107443,-0.143087735,-0.157866303 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Difference|Population weighted,days/yr,-1.382333702,-1.380551462,-1.379622142,-1.379595574,-1.379821642,-1.380966703,-1.381490481,-1.38251929,-1.383323584,-1.383928425 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Difference|Population weighted,days/yr,-3.357603973,-3.383142883,-3.407689932,-3.429703706,-3.447766396,-3.464160004,-3.477713959,-3.490663429,-3.501437208,-3.510609937 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Difference|Population weighted,days/yr,-2.620857633,-2.638729829,-2.654447935,-2.667723335,-2.679481703,-2.690303609,-2.70022961,-2.709364211,-2.717672926,-2.725504859 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Difference|Population weighted,days/yr,3.743637877,3.722085327,3.703078324,3.687921079,3.676622111,3.668348769,3.662842506,3.659819564,3.657922166,3.656293022 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Difference|Population weighted,days/yr,-0.673314007,-0.676786135,-0.679210291,-0.68104211,-0.681623084,-0.680970986,-0.679922657,-0.679164946,-0.6790127,-0.679630417 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Difference|Population weighted,days/yr,1.494358298,1.494404059,1.494936236,1.494996061,1.495334699,1.495494788,1.495344171,1.49526284,1.494777379,1.494198708 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Difference|Population weighted,days/yr,7.159957539,7.154456084,7.148911599,7.144142241,7.139655506,7.135082887,7.130385507,7.125914107,7.122094191,7.118744262 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Difference|Population weighted,days/yr,4.011443515,4.021136502,4.030728814,4.040299764,4.049395467,4.057997964,4.066392441,4.074764393,4.081904563,4.087985689 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Difference|Population weighted,days/yr,-0.628204702,-0.637245833,-0.647474198,-0.657412165,-0.667505848,-0.677363479,-0.685946477,-0.692876879,-0.698139786,-0.702691237 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Difference|Population weighted,days/yr,-4.254511826,-4.249310454,-4.243805001,-4.236890665,-4.228276861,-4.219582672,-4.213167307,-4.208622982,-4.204977851,-4.203048966 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Difference|Population weighted,days/yr,-1.517620278,-1.532271847,-1.55393521,-1.576722239,-1.600432505,-1.623568051,-1.646110656,-1.667759032,-1.68767465,-1.705623922 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Difference|Population weighted,days/yr,-2.650076402,-2.675134615,-2.697812854,-2.718538417,-2.738089316,-2.755536842,-2.770531304,-2.78362772,-2.794899703,-2.804891962 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Difference|Population weighted,days/yr,2.605068684,2.600537527,2.592757177,2.582831766,2.572229952,2.562851347,2.554151266,2.545945005,2.537883846,2.530081184 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Difference|Population weighted,days/yr,-3.849235922,-3.842106847,-3.841607538,-3.843655506,-3.84697215,-3.851603456,-3.85665557,-3.861683094,-3.8667372,-3.872011951 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Difference|Population weighted,days/yr,1.862937218,1.876297056,1.882470816,1.884860054,1.882254073,1.876112704,1.868745773,1.861331218,1.854221439,1.849882406 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Difference|Population weighted,days/yr,-0.188192464,-0.216213015,-0.242574351,-0.267935128,-0.291810822,-0.313721923,-0.333412863,-0.350802936,-0.366169271,-0.3796507 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Difference|Population weighted,days/yr,-4.219718158,-4.216098467,-4.211937463,-4.208792764,-4.205683327,-4.203011282,-4.200866045,-4.198799867,-4.197425069,-4.196166212 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Difference|Population weighted,days/yr,6.340089748,6.328380777,6.319173634,6.30949412,6.298787047,6.287640246,6.278587665,6.271384987,6.265469551,6.26032495 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Difference|Population weighted,days/yr,-1.893496512,-1.899375904,-1.899647888,-1.899744971,-1.89975888,-1.899853588,-1.899854171,-1.899836911,-1.899815245,-1.899732308 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Difference|Population weighted,days/yr,-2.068336203,-2.072589959,-2.078993058,-2.08734863,-2.096815821,-2.106755628,-2.116879556,-2.126967238,-2.135947362,-2.143654298 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Difference|Population weighted,days/yr,1.691898672,1.688282908,1.688216006,1.69710663,1.702001495,1.714550656,1.700373664,1.709044229,1.720732732,1.717321808 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Difference|Population weighted,days/yr,0.430386271,0.399187214,0.364770247,0.329396094,0.294259361,0.260416072,0.227562051,0.195873673,0.167774601,0.143826629 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Difference|Population weighted,days/yr,3.49664493,3.554233434,3.599416796,3.637493332,3.668859548,3.69300284,3.707431659,3.712347486,3.711137909,3.705894766 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Difference|Population weighted,days/yr,4.53922681,4.549168474,4.558154176,4.566104269,4.572941796,4.579078404,4.584785202,4.589898993,4.594722563,4.599300146 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Difference|Population weighted,days/yr,-5.634457615,-5.641523441,-5.647066979,-5.651304592,-5.654185252,-5.655396487,-5.655767276,-5.655526483,-5.654855422,-5.653953868 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Difference|Population weighted,days/yr,-0.374135855,-0.371701671,-0.370870739,-0.371426219,-0.373000042,-0.37543471,-0.378169039,-0.38112962,-0.384206673,-0.3867232 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Difference|Population weighted,days/yr,-2.011771815,-1.996378048,-1.981847363,-1.967058071,-1.952446587,-1.939163315,-1.927604088,-1.917514222,-1.90869355,-1.901262146 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Difference|Population weighted,days/yr,1.425143521,1.428332154,1.428866006,1.428713057,1.429803841,1.428862387,1.427910966,1.426392933,1.42475226,1.423296767 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Difference|Population weighted,days/yr,2.09865405,2.08649839,2.080922608,2.078653024,2.07904599,2.083255341,2.086913047,2.088219749,2.088873623,2.089664477 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Difference|Population weighted,days/yr,7.60208089,7.592713323,7.594738645,7.595920647,7.601680068,7.606813794,7.614529025,7.622310784,7.632619858,7.638042434 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Difference|Population weighted,days/yr,-2.606781815,-2.660050809,-2.725003791,-2.792090738,-2.859397361,-2.909977229,-2.951548411,-2.989224583,-3.026424227,-3.06577026 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Difference|Population weighted,days/yr,6.137286011,6.151389333,6.160069543,6.162854879,6.160360681,6.155565751,6.151009331,6.147330696,6.144671787,6.142390069 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Difference|Population weighted,days/yr,2.753550534,2.758964408,2.759326248,2.759529105,2.759621841,2.759684153,2.759757429,2.759794385,2.759806801,2.75984987 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Difference|Population weighted,days/yr,2.970535854,2.978145803,2.985164176,2.992430274,2.999088061,3.005015894,3.011041171,3.017267549,3.023179461,3.028742378 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Difference|Population weighted,days/yr,-2.329181034,-2.336159557,-2.346120356,-2.358840177,-2.373422907,-2.388594912,-2.404113119,-2.418524524,-2.430876648,-2.441476871 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Difference|Population weighted,days/yr,2.625300275,2.654066813,2.67761918,2.696394892,2.711291715,2.723169436,2.732615109,2.740114041,2.746139738,2.750959096 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Difference|Population weighted,days/yr,-1.816573153,-1.81626603,-1.817216746,-1.818602085,-1.820383061,-1.82253801,-1.824825393,-1.827171448,-1.829409543,-1.831429373 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Difference|Population weighted,days/yr,0.474599383,0.478360744,0.481152897,0.483282929,0.485234282,0.486880419,0.488202765,0.48917943,0.489819931,0.490030649 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Difference|Population weighted,days/yr,0.644527089,0.559614711,0.475942452,0.407114342,0.351865,0.307230506,0.270670648,0.240057206,0.214099123,0.191265107 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Difference|Population weighted,days/yr,4.947813083,4.948118899,4.947430862,4.946006464,4.944137265,4.941616825,4.939249895,4.937251017,4.935819297,4.935435144 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Difference|Population weighted,days/yr,2.835554095,2.834000772,2.832928368,2.832067527,2.831424216,2.830907158,2.830454933,2.830046835,2.829613557,2.829051768 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Difference|Population weighted,days/yr,-0.632526573,-0.646307516,-0.659324464,-0.67210798,-0.683981699,-0.694125272,-0.702509579,-0.709700245,-0.715962732,-0.721245883 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Difference|Population weighted,days/yr,-1.908628561,-1.869806056,-1.834160139,-1.803536259,-1.777901369,-1.756935519,-1.740055181,-1.725924138,-1.713754526,-1.703633368 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Difference|Population weighted,days/yr,3.082741156,3.075287009,3.067397723,3.059928936,3.05254101,3.045347122,3.039050122,3.033821404,3.029556761,3.025985763 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Difference|Population weighted,days/yr,0.764805642,0.761536204,0.758955686,0.75811932,0.758719015,0.760119577,0.762020183,0.764019141,0.765271248,0.7660008 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Difference|Population weighted,days/yr,-10.24419584,-10.2554463,-10.25839642,-10.2767811,-10.27273145,-10.27528778,-10.277437,-10.28005488,-10.27866466,-10.27569611 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Difference|Population weighted,days/yr,0.576272239,0.562290296,0.554867531,0.552381185,0.553205263,0.55621255,0.558506263,0.559869971,0.560132227,0.559888866 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Difference|Population weighted,days/yr,-0.808009015,-0.744506302,-0.688246748,-0.650431309,-0.619440328,-0.593284648,-0.575722722,-0.567378914,-0.559160674,-0.554872722 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Difference|Population weighted,days/yr,-0.864670446,-0.867756772,-0.869459249,-0.870254765,-0.870248772,-0.869104494,-0.865908219,-0.861731394,-0.857144912,-0.852278174 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Difference|Population weighted,days/yr,4.696974462,4.704782784,4.710938778,4.716866793,4.722209092,4.72656655,4.730021798,4.732517115,4.734409812,4.736070877 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Difference|Population weighted,days/yr,5.648926827,5.609872916,5.573232664,5.542127305,5.513957176,5.489230212,5.466383173,5.448891111,5.436679284,5.431022937 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Difference|Population weighted,days/yr,-3.169171048,-3.172413301,-3.174875246,-3.176057618,-3.177070307,-3.177622007,-3.178000384,-3.178442681,-3.17879258,-3.179171102 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Difference|Population weighted,days/yr,-7.309470099,-7.317786417,-7.325190333,-7.331909485,-7.337938966,-7.343303869,-7.348274434,-7.352527301,-7.356317799,-7.359797078 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Difference|Population weighted,days/yr,-0.363400746,-0.365311916,-0.368463001,-0.371728686,-0.374063461,-0.375940655,-0.378105655,-0.380376007,-0.382474016,-0.38369209 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Difference|Population weighted,days/yr,-0.677968062,-0.582477699,-0.51635147,-0.471230248,-0.437428712,-0.412542111,-0.392814622,-0.378594723,-0.367970562,-0.362895709 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Difference|Population weighted,days/yr,-0.968011509,-0.978188516,-0.988531661,-0.998122542,-1.006477208,-1.014651435,-1.022812778,-1.030424644,-1.036278634,-1.04008016 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Difference|Population weighted,days/yr,0.341801165,0.336843509,0.335340407,0.337303078,0.340612771,0.345445687,0.351368163,0.357194517,0.36292038,0.368456918 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Difference|Population weighted,days/yr,6.601329152,6.598796237,6.601163858,6.607853424,6.616821722,6.628408629,6.640956176,6.651876168,6.661896064,6.6706603 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Difference|Population weighted,days/yr,-4.030679625,-4.013355921,-4.001259825,-3.99234406,-3.986526103,-3.981420314,-3.978404335,-3.976120507,-3.975727034,-3.976558955 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Difference|Population weighted,days/yr,1.782919037,1.795589996,1.811153687,1.823409523,1.833016282,1.841969305,1.847562041,1.850712682,1.852674545,1.853233376 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Difference|Population weighted,days/yr,0.936757231,0.909365206,0.882343759,0.861365946,0.84391044,0.828357833,0.813369774,0.798929654,0.785406194,0.773063978 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Difference|Population weighted,days/yr,1.230023303,1.242968975,1.251028761,1.255658283,1.257713561,1.257977352,1.257242465,1.255730082,1.254459842,1.253113887 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Difference|Population weighted,days/yr,2.405737871,2.477835965,2.493626148,2.500932955,2.505166963,2.507905306,2.509693057,2.511163536,2.512237098,2.513074021 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Difference|Population weighted,days/yr,4.138862535,4.144977416,4.143245434,4.137675258,4.132073462,4.126849126,4.119269493,4.11014492,4.099926888,4.088952773 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Difference|Population weighted,days/yr,2.422993687,2.514269326,2.586226978,2.639527284,2.685063612,2.711080062,2.738659045,2.762735868,2.784092106,2.803295121 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Difference|Population weighted,days/yr,5.284587449,5.278778235,5.273664498,5.268909797,5.264628026,5.260861876,5.257807323,5.255559233,5.253671265,5.252133055 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Difference|Population weighted,days/yr,1.109992422,1.10948667,1.108995346,1.108512327,1.108042627,1.107611903,1.107258178,1.106965251,1.106720631,1.106514772 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Difference|Population weighted,days/yr,-1.555358287,-1.560303254,-1.561236674,-1.561227095,-1.560738401,-1.560082754,-1.559212874,-1.558577157,-1.558094847,-1.557529117 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Difference|Population weighted,days/yr,0.925415587,0.921003608,0.915116407,0.909012359,0.903529143,0.898525945,0.893507726,0.888938542,0.884167195,0.879695059 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Difference|Population weighted,days/yr,1.585974664,1.558835758,1.528843022,1.499739893,1.470112334,1.439839003,1.41119043,1.385413811,1.362375416,1.341799155 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Difference|Population weighted,days/yr,8.127201907,8.102816596,8.0832876,8.064312454,8.046192517,8.029360769,8.014095043,8.00047798,7.988868967,7.979070918 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Difference|Population weighted,days/yr,-3.475984048,-3.467976208,-3.463271424,-3.461171548,-3.460572826,-3.461377197,-3.462776364,-3.464903738,-3.467666425,-3.470327217 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Difference|Population weighted,days/yr,1.981406624,1.945594344,1.920819314,1.902658188,1.890164048,1.87670526,1.862853132,1.849258719,1.836504571,1.825504293 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Difference|Population weighted,days/yr,4.700298964,4.707273199,4.710604843,4.712551227,4.713776829,4.714580604,4.715129631,4.71551765,4.715789658,4.715989094 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Difference|Population weighted,days/yr,11.17774873,11.27403334,11.35774029,11.42600536,11.48011887,11.52149045,11.55177562,11.5733139,11.58989166,11.60380409 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Difference|Population weighted,days/yr,0.97019721,0.954708345,0.93833356,0.920904131,0.899623176,0.879286979,0.861465067,0.843029216,0.82593659,0.813007915 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Difference|Population weighted,days/yr,2.203138644,2.20899367,2.212180018,2.213990052,2.214671218,2.214208589,2.213339603,2.212227134,2.211342649,2.210972934 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Difference|Population weighted,days/yr,-1.358503003,-1.363576081,-1.3664927,-1.369198773,-1.371963214,-1.374595311,-1.378373812,-1.383311686,-1.388801442,-1.394594253 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Difference|Population weighted,days/yr,-0.54031702,-0.544798506,-0.544461877,-0.54517543,-0.545849786,-0.544473722,-0.54628429,-0.545374586,-0.545315804,-0.54521513 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Difference|Population weighted,days/yr,2.940330003,2.916044888,2.898017985,2.884539188,2.874365308,2.867822642,2.863449638,2.860931542,2.859962745,2.859748401 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Difference|Population weighted,days/yr,0.494517601,0.522096798,0.537770486,0.546829358,0.550763928,0.551590367,0.551292658,0.550162284,0.548475901,0.546190257 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Difference|Population weighted,days/yr,-3.338653367,-3.330673755,-3.330532259,-3.335260053,-3.343349037,-3.354556466,-3.369529608,-3.385753729,-3.403392016,-3.420605367 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Difference|Population weighted,days/yr,0.113497924,0.114601501,0.115061317,0.115177061,0.115251439,0.115545324,0.115996195,0.116717112,0.117762004,0.119011471 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Difference|Population weighted,days/yr,-1.41727403,-1.421731547,-1.425000861,-1.42730757,-1.428158302,-1.427229318,-1.424740784,-1.420711501,-1.416516222,-1.412699403 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Difference|Population weighted,days/yr,2.962958938,2.957289906,2.952887591,2.949794014,2.947826369,2.946938963,2.946518304,2.946104585,2.946998701,2.949118601 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Difference|Population weighted,days/yr,-0.862748643,-0.863836445,-0.86428784,-0.864306742,-0.863990583,-0.863177798,-0.862085961,-0.86093544,-0.859652965,-0.858411814 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Difference|Population weighted,days/yr,0.173857411,0.189561141,0.201649688,0.212454405,0.22134345,0.230337275,0.238356538,0.245314011,0.251752719,0.257398972 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Difference|Population weighted,days/yr,-3.768576625,-3.739465296,-3.722043553,-3.710260876,-3.702012424,-3.697706112,-3.698110682,-3.702992139,-3.70973532,-3.716670006 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Difference|Population weighted,days/yr,1.050201512,1.064488947,1.077015548,1.087872763,1.096531494,1.102734056,1.108185059,1.112732074,1.116399772,1.121693152 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Difference|Population weighted,days/yr,0.511560244,0.520498265,0.52405086,0.523201671,0.519570675,0.514365812,0.508026647,0.500741502,0.492888853,0.484684543 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Difference|Population weighted,days/yr,1.172810736,1.154185682,1.139031746,1.128253614,1.120376153,1.114612486,1.109411197,1.104361165,1.099545075,1.095242841 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Difference|Population weighted,days/yr,0.848436986,0.875295832,0.893625715,0.904949312,0.912920537,0.917299315,0.916448831,0.910494971,0.900832536,0.889417977 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Difference|Population weighted,days/yr,1.627479433,1.628322972,1.626652154,1.62413972,1.621906832,1.6198238,1.619811151,1.620111709,1.619998774,1.620022457 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Difference|Population weighted,days/yr,-1.281918962,-1.280448936,-1.279034619,-1.277857108,-1.275340247,-1.2724471,-1.269610449,-1.267027172,-1.265492136,-1.264817853 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Difference|Population weighted,days/yr,6.402434778,6.403968964,6.403991006,6.402368628,6.400544928,6.397550968,6.394102893,6.390643948,6.387190697,6.383148073 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Difference|Population weighted,days/yr,-5.718427317,-5.725730702,-5.731962392,-5.737685279,-5.743011496,-5.747897552,-5.75250276,-5.75669702,-5.760474926,-5.763717027 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Difference|Population weighted,days/yr,4.118493803,4.141644668,4.167708641,4.193048738,4.215611152,4.235598639,4.253252285,4.268797983,4.282451967,4.294443099 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Difference|Population weighted,days/yr,-0.377970966,-0.385419752,-0.392372833,-0.398475691,-0.403788246,-0.408670811,-0.412861285,-0.416385956,-0.419267869,-0.421645926 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Difference|Population weighted,days/yr,7.026168111,7.036227414,7.054578902,7.076598209,7.100836275,7.125767073,7.14962794,7.172018944,7.192927185,7.211968708 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Difference|Population weighted,days/yr,2.653435338,2.638510395,2.622214878,2.605007515,2.58745552,2.569414445,2.551383561,2.534172815,2.517006429,2.50030567 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Difference|Population weighted,days/yr,4.678765616,4.688855908,4.700548604,4.713430183,4.726690984,4.739756952,4.751715955,4.762440737,4.771813681,4.779839291 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Difference|Population weighted,days/yr,-0.202480671,-0.192459333,-0.192062476,-0.197184653,-0.205777601,-0.216718743,-0.229256603,-0.243191131,-0.257537187,-0.271866873 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Difference|Population weighted,days/yr,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724,1.130549724 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Difference|Population weighted,days/yr,0.489694243,0.486145015,0.48351976,0.481666326,0.480324872,0.479318734,0.478460227,0.477727718,0.477026949,0.476392365 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Difference|Population weighted,days/yr,5.065164989,5.06745237,5.066096509,5.065980368,5.067917341,5.071427148,5.071314981,5.072973919,5.074078799,5.076137346 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Difference|Population weighted,days/yr,2.95323225,2.948970864,2.945814509,2.943340123,2.941409451,2.939815975,2.938459321,2.937293905,2.936248197,2.935310307 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Difference|Population weighted,days/yr,1.047596966,1.056848552,1.063668218,1.068863021,1.072382803,1.074984511,1.07756644,1.08018035,1.08261239,1.084778104 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Difference|Population weighted,days/yr,2.092339118,2.094017594,2.095155476,2.095307146,2.094760507,2.093692695,2.092693485,2.091627408,2.090493156,2.089856185 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Difference|Population weighted,days/yr,-4.419584273,-4.414842206,-4.409861639,-4.403310919,-4.395162788,-4.385822839,-4.375829396,-4.365577669,-4.355387797,-4.345460106 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Difference|Population weighted,days/yr,4.727444975,4.746034793,4.756722296,4.768924291,4.777040034,4.783794989,4.787820504,4.789259952,4.795451903,4.796158379 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Difference|Population weighted,days/yr,0.594592524,0.672984982,0.726181558,0.767417163,0.79471992,0.815484542,0.832231635,0.844443007,0.852429436,0.85748587 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Difference|Population weighted,days/yr,0.43333407,0.464556427,0.498155154,0.533023386,0.567114808,0.599228159,0.629210651,0.656016995,0.680386214,0.702340103 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Difference|Population weighted,days/yr,7.42084456,7.346323535,7.319476646,7.303181604,7.298106413,7.297723371,7.297288787,7.297087802,7.296931992,7.296797383 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Difference|Population weighted,days/yr,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007,7.131116007 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Difference|Population weighted,days/yr,0.569443238,0.582858604,0.590263481,0.602604173,0.605060431,0.607718671,0.610848285,0.615651034,0.623205928,0.627022526 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Risk score,risk score,0.578343017,0.578343017,0.578343017,0.578343017,0.578343017,0.578343017,0.578343017,0.578343017,0.578343017,0.578343017 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Risk score,risk score,0.099806618,0.099806618,0.099806618,0.099806618,0.099806618,0.099806618,0.099806618,0.099806618,0.099806618,0.099806618 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Risk score,risk score,1.783413352,1.783413352,1.783413352,1.783413352,1.783413352,1.783413352,1.783413352,1.783413352,1.783413352,1.783413352 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Risk score,risk score,0.298636038,0.298636038,0.298636038,0.298636038,0.298636038,0.298636038,0.298636038,0.298636038,0.298636038,0.298636038 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Risk score,risk score,1.349074102,1.349074102,1.349074102,1.349074102,1.349074102,1.349074102,1.349074102,1.349074102,1.349074102,1.349074102 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Risk score,risk score,1.442181317,1.442181317,1.442181317,1.442181317,1.442181317,1.442181317,1.442181317,1.442181317,1.442181317,1.442181317 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Risk score,risk score,0.699253961,0.699253961,0.699253961,0.699253961,0.699253961,0.699253961,0.699253961,0.699253961,0.699253961,0.699253961 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Risk score,risk score,0.560815205,0.560815205,0.560815205,0.560815205,0.560815205,0.560815205,0.560815205,0.560815205,0.560815205,0.560815205 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Risk score,risk score,1.262997866,1.262997866,1.262997866,1.262997866,1.262997866,1.262997866,1.262997866,1.262997866,1.262997866,1.262997866 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Risk score,risk score,1.372650075,1.372650075,1.372650075,1.372650075,1.372650075,1.372650075,1.372650075,1.372650075,1.372650075,1.372650075 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Risk score,risk score,0.083734144,0.083734144,0.083734144,0.083734144,0.083734144,0.083734144,0.083734144,0.083734144,0.083734144,0.083734144 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Risk score,risk score,1.784894716,1.784894716,1.784894716,1.784894716,1.784894716,1.784894716,1.784894716,1.784894716,1.784894716,1.784894716 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Risk score,risk score,1.028304676,1.028304676,1.028304676,1.028304676,1.028304676,1.028304676,1.028304676,1.028304676,1.028304676,1.028304676 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Risk score,risk score,2.477125865,2.477125865,2.477125865,2.477125865,2.477125865,2.477125865,2.477125865,2.477125865,2.477125865,2.477125865 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Risk score,risk score,0.181008951,0.181008951,0.181008951,0.181008951,0.181008951,0.181008951,0.181008951,0.181008951,0.181008951,0.181008951 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Risk score,risk score,0.218019442,0.218019442,0.218019442,0.218019442,0.218019442,0.218019442,0.218019442,0.218019442,0.218019442,0.218019442 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Risk score,risk score,0.805917201,0.805917201,0.805917201,0.805917201,0.805917201,0.805917201,0.805917201,0.805917201,0.805917201,0.805917201 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Risk score,risk score,0.597963647,0.597963647,0.597963647,0.597963647,0.597963647,0.597963647,0.597963647,0.597963647,0.597963647,0.597963647 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Risk score,risk score,1.571355516,1.571355516,1.571355516,1.571355516,1.571355516,1.571355516,1.571355516,1.571355516,1.571355516,1.571355516 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Risk score,risk score,1.783192072,1.783192072,1.783192072,1.783192072,1.783192072,1.783192072,1.783192072,1.783192072,1.783192072,1.783192072 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Risk score,risk score,0.887291574,0.887291574,0.887291574,0.887291574,0.887291574,0.887291574,0.887291574,0.887291574,0.887291574,0.887291574 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Risk score,risk score,1.561016083,1.561016083,1.561016083,1.561016083,1.561016083,1.561016083,1.561016083,1.561016083,1.561016083,1.561016083 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Risk score,risk score,0.766673029,0.766673029,0.766673029,0.766673029,0.766673029,0.766673029,0.766673029,0.766673029,0.766673029,0.766673029 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Risk score,risk score,0.462557367,0.462557367,0.462557367,0.462557367,0.462557367,0.462557367,0.462557367,0.462557367,0.462557367,0.462557367 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Risk score,risk score,0.342162513,0.342162513,0.342162513,0.342162513,0.342162513,0.342162513,0.342162513,0.342162513,0.342162513,0.342162513 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Risk score,risk score,2.10601526,2.10601526,2.10601526,2.10601526,2.10601526,2.10601526,2.10601526,2.10601526,2.10601526,2.10601526 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Risk score,risk score,1.62003487,1.62003487,1.62003487,1.62003487,1.62003487,1.62003487,1.62003487,1.62003487,1.62003487,1.62003487 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Risk score,risk score,0.619343242,0.619343242,0.619343242,0.619343242,0.619343242,0.619343242,0.619343242,0.619343242,0.619343242,0.619343242 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Risk score,risk score,1.055444966,1.055444966,1.055444966,1.055444966,1.055444966,1.055444966,1.055444966,1.055444966,1.055444966,1.055444966 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Risk score,risk score,0.246979566,0.246979566,0.246979566,0.246979566,0.246979566,0.246979566,0.246979566,0.246979566,0.246979566,0.246979566 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Risk score,risk score,2.020602842,2.020602842,2.020602842,2.020602842,2.020602842,2.020602842,2.020602842,2.020602842,2.020602842,2.020602842 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Risk score,risk score,1.718071053,1.718071053,1.718071053,1.718071053,1.718071053,1.718071053,1.718071053,1.718071053,1.718071053,1.718071053 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Risk score,risk score,0.083727103,0.083727103,0.083727103,0.083727103,0.083727103,0.083727103,0.083727103,0.083727103,0.083727103,0.083727103 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Risk score,risk score,0.354844344,0.354844344,0.354844344,0.354844344,0.354844344,0.354844344,0.354844344,0.354844344,0.354844344,0.354844344 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Risk score,risk score,1.799167904,1.799167904,1.799167904,1.799167904,1.799167904,1.799167904,1.799167904,1.799167904,1.799167904,1.799167904 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Risk score,risk score,0.048716034,0.048716034,0.048716034,0.048716034,0.048716034,0.048716034,0.048716034,0.048716034,0.048716034,0.048716034 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Risk score,risk score,1.879265075,1.879265075,1.879265075,1.879265075,1.879265075,1.879265075,1.879265075,1.879265075,1.879265075,1.879265075 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Risk score,risk score,0.921080127,0.921080127,0.921080127,0.921080127,0.921080127,0.921080127,0.921080127,0.921080127,0.921080127,0.921080127 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Risk score,risk score,1.300827088,1.300827088,1.300827088,1.300827088,1.300827088,1.300827088,1.300827088,1.300827088,1.300827088,1.300827088 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Risk score,risk score,0.886330305,0.886330305,0.886330305,0.886330305,0.886330305,0.886330305,0.886330305,0.886330305,0.886330305,0.886330305 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Risk score,risk score,0.300545432,0.300545432,0.300545432,0.300545432,0.300545432,0.300545432,0.300545432,0.300545432,0.300545432,0.300545432 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Risk score,risk score,1.193870114,1.193870114,1.193870114,1.193870114,1.193870114,1.193870114,1.193870114,1.193870114,1.193870114,1.193870114 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Risk score,risk score,0.559535987,0.559535987,0.559535987,0.559535987,0.559535987,0.559535987,0.559535987,0.559535987,0.559535987,0.559535987 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Risk score,risk score,0.418046074,0.418046074,0.418046074,0.418046074,0.418046074,0.418046074,0.418046074,0.418046074,0.418046074,0.418046074 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Risk score,risk score,1.185206239,1.185206239,1.185206239,1.185206239,1.185206239,1.185206239,1.185206239,1.185206239,1.185206239,1.185206239 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Risk score,risk score,1.522986999,1.522986999,1.522986999,1.522986999,1.522986999,1.522986999,1.522986999,1.522986999,1.522986999,1.522986999 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Risk score,risk score,1.842916664,1.842916664,1.842916664,1.842916664,1.842916664,1.842916664,1.842916664,1.842916664,1.842916664,1.842916664 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Risk score,risk score,1.307105656,1.307105656,1.307105656,1.307105656,1.307105656,1.307105656,1.307105656,1.307105656,1.307105656,1.307105656 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Risk score,risk score,2.594344652,2.594344652,2.594344652,2.594344652,2.594344652,2.594344652,2.594344652,2.594344652,2.594344652,2.594344652 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Risk score,risk score,0.096505573,0.096505573,0.096505573,0.096505573,0.096505573,0.096505573,0.096505573,0.096505573,0.096505573,0.096505573 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Risk score,risk score,0.082537452,0.082537452,0.082537452,0.082537452,0.082537452,0.082537452,0.082537452,0.082537452,0.082537452,0.082537452 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Risk score,risk score,0.800659623,0.800659623,0.800659623,0.800659623,0.800659623,0.800659623,0.800659623,0.800659623,0.800659623,0.800659623 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Risk score,risk score,0.098371721,0.098371721,0.098371721,0.098371721,0.098371721,0.098371721,0.098371721,0.098371721,0.098371721,0.098371721 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Risk score,risk score,1.04451734,1.04451734,1.04451734,1.04451734,1.04451734,1.04451734,1.04451734,1.04451734,1.04451734,1.04451734 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Risk score,risk score,2.435735103,2.435735103,2.435735103,2.435735103,2.435735103,2.435735103,2.435735103,2.435735103,2.435735103,2.435735103 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Risk score,risk score,1.62069802,1.62069802,1.62069802,1.62069802,1.62069802,1.62069802,1.62069802,1.62069802,1.62069802,1.62069802 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Risk score,risk score,0.952293234,0.952293234,0.952293234,0.952293234,0.952293234,0.952293234,0.952293234,0.952293234,0.952293234,0.952293234 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Risk score,risk score,0.987568839,0.987568839,0.987568839,0.987568839,0.987568839,0.987568839,0.987568839,0.987568839,0.987568839,0.987568839 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Risk score,risk score,0.037938627,0.037938627,0.037938627,0.037938627,0.037938627,0.037938627,0.037938627,0.037938627,0.037938627,0.037938627 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Risk score,risk score,0.251788226,0.251788226,0.251788226,0.251788226,0.251788226,0.251788226,0.251788226,0.251788226,0.251788226,0.251788226 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Risk score,risk score,1.145189036,1.145189036,1.145189036,1.145189036,1.145189036,1.145189036,1.145189036,1.145189036,1.145189036,1.145189036 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Risk score,risk score,1.396420222,1.396420222,1.396420222,1.396420222,1.396420222,1.396420222,1.396420222,1.396420222,1.396420222,1.396420222 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Risk score,risk score,2.177646641,2.177646641,2.177646641,2.177646641,2.177646641,2.177646641,2.177646641,2.177646641,2.177646641,2.177646641 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Risk score,risk score,0.354066749,0.354066749,0.354066749,0.354066749,0.354066749,0.354066749,0.354066749,0.354066749,0.354066749,0.354066749 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Risk score,risk score,1.208830103,1.208830103,1.208830103,1.208830103,1.208830103,1.208830103,1.208830103,1.208830103,1.208830103,1.208830103 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Risk score,risk score,0.456918016,0.456918016,0.456918016,0.456918016,0.456918016,0.456918016,0.456918016,0.456918016,0.456918016,0.456918016 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Risk score,risk score,0.977792431,0.977792431,0.977792431,0.977792431,0.977792431,0.977792431,0.977792431,0.977792431,0.977792431,0.977792431 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Risk score,risk score,1.575040622,1.575040622,1.575040622,1.575040622,1.575040622,1.575040622,1.575040622,1.575040622,1.575040622,1.575040622 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Risk score,risk score,0.565163884,0.565163884,0.565163884,0.565163884,0.565163884,0.565163884,0.565163884,0.565163884,0.565163884,0.565163884 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Risk score,risk score,0.085693123,0.085693123,0.085693123,0.085693123,0.085693123,0.085693123,0.085693123,0.085693123,0.085693123,0.085693123 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Risk score,risk score,0.593497503,0.593497503,0.593497503,0.593497503,0.593497503,0.593497503,0.593497503,0.593497503,0.593497503,0.593497503 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Risk score,risk score,0.654161271,0.654161271,0.654161271,0.654161271,0.654161271,0.654161271,0.654161271,0.654161271,0.654161271,0.654161271 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Risk score,risk score,0.211698898,0.211698898,0.211698898,0.211698898,0.211698898,0.211698898,0.211698898,0.211698898,0.211698898,0.211698898 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Risk score,risk score,0.023794344,0.023794344,0.023794344,0.023794344,0.023794344,0.023794344,0.023794344,0.023794344,0.023794344,0.023794344 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Risk score,risk score,0.324377158,0.324377158,0.324377158,0.324377158,0.324377158,0.324377158,0.324377158,0.324377158,0.324377158,0.324377158 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Risk score,risk score,2.674189859,2.674189859,2.674189859,2.674189859,2.674189859,2.674189859,2.674189859,2.674189859,2.674189859,2.674189859 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Risk score,risk score,0.369772702,0.369772702,0.369772702,0.369772702,0.369772702,0.369772702,0.369772702,0.369772702,0.369772702,0.369772702 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Risk score,risk score,1.392162008,1.392162008,1.392162008,1.392162008,1.392162008,1.392162008,1.392162008,1.392162008,1.392162008,1.392162008 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Risk score,risk score,0.791555295,0.791555295,0.791555295,0.791555295,0.791555295,0.791555295,0.791555295,0.791555295,0.791555295,0.791555295 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Risk score,risk score,0.340557637,0.340557637,0.340557637,0.340557637,0.340557637,0.340557637,0.340557637,0.340557637,0.340557637,0.340557637 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Risk score,risk score,0.880003015,0.880003015,0.880003015,0.880003015,0.880003015,0.880003015,0.880003015,0.880003015,0.880003015,0.880003015 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Risk score,risk score,2.435918203,2.435918203,2.435918203,2.435918203,2.435918203,2.435918203,2.435918203,2.435918203,2.435918203,2.435918203 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Risk score,risk score,0.601051557,0.601051557,0.601051557,0.601051557,0.601051557,0.601051557,0.601051557,0.601051557,0.601051557,0.601051557 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Risk score,risk score,0.763422885,0.763422885,0.763422885,0.763422885,0.763422885,0.763422885,0.763422885,0.763422885,0.763422885,0.763422885 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Risk score,risk score,0.207720303,0.207720303,0.207720303,0.207720303,0.207720303,0.207720303,0.207720303,0.207720303,0.207720303,0.207720303 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Risk score,risk score,0.774786167,0.774786167,0.774786167,0.774786167,0.774786167,0.774786167,0.774786167,0.774786167,0.774786167,0.774786167 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Risk score,risk score,2.149460525,2.149460525,2.149460525,2.149460525,2.149460525,2.149460525,2.149460525,2.149460525,2.149460525,2.149460525 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Risk score,risk score,1.300550095,1.300550095,1.300550095,1.300550095,1.300550095,1.300550095,1.300550095,1.300550095,1.300550095,1.300550095 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Risk score,risk score,1.758779255,1.758779255,1.758779255,1.758779255,1.758779255,1.758779255,1.758779255,1.758779255,1.758779255,1.758779255 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Risk score,risk score,0.191436854,0.191436854,0.191436854,0.191436854,0.191436854,0.191436854,0.191436854,0.191436854,0.191436854,0.191436854 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Risk score,risk score,0.082140359,0.082140359,0.082140359,0.082140359,0.082140359,0.082140359,0.082140359,0.082140359,0.082140359,0.082140359 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Risk score,risk score,0.275288676,0.275288676,0.275288676,0.275288676,0.275288676,0.275288676,0.275288676,0.275288676,0.275288676,0.275288676 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Risk score,risk score,0.259968374,0.259968374,0.259968374,0.259968374,0.259968374,0.259968374,0.259968374,0.259968374,0.259968374,0.259968374 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Risk score,risk score,1.506320058,1.506320058,1.506320058,1.506320058,1.506320058,1.506320058,1.506320058,1.506320058,1.506320058,1.506320058 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Risk score,risk score,0.492590162,0.492590162,0.492590162,0.492590162,0.492590162,0.492590162,0.492590162,0.492590162,0.492590162,0.492590162 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Risk score,risk score,0.742437533,0.742437533,0.742437533,0.742437533,0.742437533,0.742437533,0.742437533,0.742437533,0.742437533,0.742437533 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Risk score,risk score,0.537966921,0.537966921,0.537966921,0.537966921,0.537966921,0.537966921,0.537966921,0.537966921,0.537966921,0.537966921 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Risk score,risk score,2.540732377,2.540732377,2.540732377,2.540732377,2.540732377,2.540732377,2.540732377,2.540732377,2.540732377,2.540732377 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Risk score,risk score,1.45657702,1.45657702,1.45657702,1.45657702,1.45657702,1.45657702,1.45657702,1.45657702,1.45657702,1.45657702 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Risk score,risk score,1.255046988,1.255046988,1.255046988,1.255046988,1.255046988,1.255046988,1.255046988,1.255046988,1.255046988,1.255046988 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Risk score,risk score,0.754074749,0.754074749,0.754074749,0.754074749,0.754074749,0.754074749,0.754074749,0.754074749,0.754074749,0.754074749 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Risk score,risk score,0.743824155,0.743824155,0.743824155,0.743824155,0.743824155,0.743824155,0.743824155,0.743824155,0.743824155,0.743824155 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Risk score,risk score,0.625967507,0.625967507,0.625967507,0.625967507,0.625967507,0.625967507,0.625967507,0.625967507,0.625967507,0.625967507 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Risk score,risk score,0.161472574,0.161472574,0.161472574,0.161472574,0.161472574,0.161472574,0.161472574,0.161472574,0.161472574,0.161472574 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Risk score,risk score,0.509913839,0.509913839,0.509913839,0.509913839,0.509913839,0.509913839,0.509913839,0.509913839,0.509913839,0.509913839 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Risk score,risk score,1.894406172,1.894406172,1.894406172,1.894406172,1.894406172,1.894406172,1.894406172,1.894406172,1.894406172,1.894406172 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Risk score,risk score,0.384904852,0.384904852,0.384904852,0.384904852,0.384904852,0.384904852,0.384904852,0.384904852,0.384904852,0.384904852 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Risk score,risk score,0.33593399,0.33593399,0.33593399,0.33593399,0.33593399,0.33593399,0.33593399,0.33593399,0.33593399,0.33593399 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Risk score,risk score,1.773806934,1.773806934,1.773806934,1.773806934,1.773806934,1.773806934,1.773806934,1.773806934,1.773806934,1.773806934 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Risk score,risk score,2.135602582,2.135602582,2.135602582,2.135602582,2.135602582,2.135602582,2.135602582,2.135602582,2.135602582,2.135602582 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Risk score,risk score,2.587336082,2.587336082,2.587336082,2.587336082,2.587336082,2.587336082,2.587336082,2.587336082,2.587336082,2.587336082 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Risk score,risk score,1.147032751,1.147032751,1.147032751,1.147032751,1.147032751,1.147032751,1.147032751,1.147032751,1.147032751,1.147032751 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Risk score,risk score,1.295742207,1.295742207,1.295742207,1.295742207,1.295742207,1.295742207,1.295742207,1.295742207,1.295742207,1.295742207 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Risk score,risk score,0.269029865,0.269029865,0.269029865,0.269029865,0.269029865,0.269029865,0.269029865,0.269029865,0.269029865,0.269029865 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Risk score,risk score,0.430792665,0.430792665,0.430792665,0.430792665,0.430792665,0.430792665,0.430792665,0.430792665,0.430792665,0.430792665 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Risk score,risk score,1.335579967,1.335579967,1.335579967,1.335579967,1.335579967,1.335579967,1.335579967,1.335579967,1.335579967,1.335579967 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Risk score,risk score,0.360918534,0.360918534,0.360918534,0.360918534,0.360918534,0.360918534,0.360918534,0.360918534,0.360918534,0.360918534 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Risk score,risk score,2.02785233,2.02785233,2.02785233,2.02785233,2.02785233,2.02785233,2.02785233,2.02785233,2.02785233,2.02785233 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Risk score,risk score,1.123279302,1.123279302,1.123279302,1.123279302,1.123279302,1.123279302,1.123279302,1.123279302,1.123279302,1.123279302 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Risk score,risk score,0.543722217,0.543722217,0.543722217,0.543722217,0.543722217,0.543722217,0.543722217,0.543722217,0.543722217,0.543722217 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Risk score,risk score,0.197850727,0.197850727,0.197850727,0.197850727,0.197850727,0.197850727,0.197850727,0.197850727,0.197850727,0.197850727 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Risk score,risk score,0.351696438,0.351696438,0.351696438,0.351696438,0.351696438,0.351696438,0.351696438,0.351696438,0.351696438,0.351696438 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Risk score,risk score,0.505408729,0.505408729,0.505408729,0.505408729,0.505408729,0.505408729,0.505408729,0.505408729,0.505408729,0.505408729 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Risk score,risk score,0.582183143,0.582183143,0.582183143,0.582183143,0.582183143,0.582183143,0.582183143,0.582183143,0.582183143,0.582183143 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Risk score,risk score,1.895102517,1.895102517,1.895102517,1.895102517,1.895102517,1.895102517,1.895102517,1.895102517,1.895102517,1.895102517 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Risk score,risk score,0.402233219,0.402233219,0.402233219,0.402233219,0.402233219,0.402233219,0.402233219,0.402233219,0.402233219,0.402233219 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Risk score,risk score,1.570381373,1.570381373,1.570381373,1.570381373,1.570381373,1.570381373,1.570381373,1.570381373,1.570381373,1.570381373 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Risk score,risk score,1.332037386,1.332037386,1.332037386,1.332037386,1.332037386,1.332037386,1.332037386,1.332037386,1.332037386,1.332037386 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Risk score,risk score,0.013610559,0.013610559,0.013610559,0.013610559,0.013610559,0.013610559,0.013610559,0.013610559,0.013610559,0.013610559 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Risk score,risk score,0.195244402,0.195244402,0.195244402,0.195244402,0.195244402,0.195244402,0.195244402,0.195244402,0.195244402,0.195244402 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Risk score,risk score,0.155889331,0.155889331,0.155889331,0.155889331,0.155889331,0.155889331,0.155889331,0.155889331,0.155889331,0.155889331 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Risk score,risk score,0.462140514,0.462140514,0.462140514,0.462140514,0.462140514,0.462140514,0.462140514,0.462140514,0.462140514,0.462140514 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Risk score,risk score,2.521566841,2.521566841,2.521566841,2.521566841,2.521566841,2.521566841,2.521566841,2.521566841,2.521566841,2.521566841 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Risk score,risk score,0.24218688,0.24218688,0.24218688,0.24218688,0.24218688,0.24218688,0.24218688,0.24218688,0.24218688,0.24218688 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Risk score,risk score,0.399899518,0.399899518,0.399899518,0.399899518,0.399899518,0.399899518,0.399899518,0.399899518,0.399899518,0.399899518 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Risk score,risk score,0.303448611,0.303448611,0.303448611,0.303448611,0.303448611,0.303448611,0.303448611,0.303448611,0.303448611,0.303448611 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Risk score,risk score,0.902884532,0.902884532,0.902884532,0.902884532,0.902884532,0.902884532,0.902884532,0.902884532,0.902884532,0.902884532 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Risk score,risk score,1.535514097,1.535514097,1.535514097,1.535514097,1.535514097,1.535514097,1.535514097,1.535514097,1.535514097,1.535514097 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Risk score,risk score,1.640557285,1.640557285,1.640557285,1.640557285,1.640557285,1.640557285,1.640557285,1.640557285,1.640557285,1.640557285 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Risk score,risk score,0.905006603,0.905006603,0.905006603,0.905006603,0.905006603,0.905006603,0.905006603,0.905006603,0.905006603,0.905006603 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Risk score,risk score,0.450187344,0.450187344,0.450187344,0.450187344,0.450187344,0.450187344,0.450187344,0.450187344,0.450187344,0.450187344 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Risk score,risk score,0.557303835,0.557303835,0.557303835,0.557303835,0.557303835,0.557303835,0.557303835,0.557303835,0.557303835,0.557303835 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Risk score,risk score,0.756374,0.756374,0.756374,0.756374,0.756374,0.756374,0.756374,0.756374,0.756374,0.756374 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Risk score,risk score,0.162670058,0.162670058,0.162670058,0.162670058,0.162670058,0.162670058,0.162670058,0.162670058,0.162670058,0.162670058 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Risk score,risk score,0.670741517,0.670741517,0.670741517,0.670741517,0.670741517,0.670741517,0.670741517,0.670741517,0.670741517,0.670741517 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Risk score,risk score,0.587720027,0.587720027,0.587720027,0.587720027,0.587720027,0.587720027,0.587720027,0.587720027,0.587720027,0.587720027 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Risk score,risk score,0.969177541,0.969177541,0.969177541,0.969177541,0.969177541,0.969177541,0.969177541,0.969177541,0.969177541,0.969177541 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Risk score,risk score,0.202453653,0.202453653,0.202453653,0.202453653,0.202453653,0.202453653,0.202453653,0.202453653,0.202453653,0.202453653 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Risk score,risk score,1.118071106,1.118071106,1.118071106,1.118071106,1.118071106,1.118071106,1.118071106,1.118071106,1.118071106,1.118071106 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Risk score,risk score,1.112683171,1.112683171,1.112683171,1.112683171,1.112683171,1.112683171,1.112683171,1.112683171,1.112683171,1.112683171 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Risk score,risk score,0.774282795,0.774282795,0.774282795,0.774282795,0.774282795,0.774282795,0.774282795,0.774282795,0.774282795,0.774282795 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Risk score,risk score,1.042569621,1.042569621,1.042569621,1.042569621,1.042569621,1.042569621,1.042569621,1.042569621,1.042569621,1.042569621 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Risk score,risk score,2.543980749,2.543980749,2.543980749,2.543980749,2.543980749,2.543980749,2.543980749,2.543980749,2.543980749,2.543980749 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Risk score,risk score,1.235540836,1.235540836,1.235540836,1.235540836,1.235540836,1.235540836,1.235540836,1.235540836,1.235540836,1.235540836 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Risk score,risk score,0.126192097,0.126192097,0.126192097,0.126192097,0.126192097,0.126192097,0.126192097,0.126192097,0.126192097,0.126192097 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Risk score,risk score,0.014962384,0.014962384,0.014962384,0.014962384,0.014962384,0.014962384,0.014962384,0.014962384,0.014962384,0.014962384 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Risk score,risk score,0.524312803,0.524312803,0.524312803,0.524312803,0.524312803,0.524312803,0.524312803,0.524312803,0.524312803,0.524312803 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Risk score,risk score,1.273072536,1.273072536,1.273072536,1.273072536,1.273072536,1.273072536,1.273072536,1.273072536,1.273072536,1.273072536 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Risk score,risk score,1.026192901,1.026192901,1.026192901,1.026192901,1.026192901,1.026192901,1.026192901,1.026192901,1.026192901,1.026192901 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Risk score,risk score,0.275656275,0.275656275,0.275656275,0.275656275,0.275656275,0.275656275,0.275656275,0.275656275,0.275656275,0.275656275 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Risk score,risk score,2.302587101,2.302587101,2.302587101,2.302587101,2.302587101,2.302587101,2.302587101,2.302587101,2.302587101,2.302587101 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Risk score,risk score,2.000207432,2.000207432,2.000207432,2.000207432,2.000207432,2.000207432,2.000207432,2.000207432,2.000207432,2.000207432 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Risk score,risk score,0.215588111,0.215588111,0.215588111,0.215588111,0.215588111,0.215588111,0.215588111,0.215588111,0.215588111,0.215588111 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Risk score,risk score,1.328656581,1.328656581,1.328656581,1.328656581,1.328656581,1.328656581,1.328656581,1.328656581,1.328656581,1.328656581 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Risk score,risk score,0.254437249,0.254437249,0.254437249,0.254437249,0.254437249,0.254437249,0.254437249,0.254437249,0.254437249,0.254437249 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Risk score,risk score,2.07556043,2.07556043,2.07556043,2.07556043,2.07556043,2.07556043,2.07556043,2.07556043,2.07556043,2.07556043 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Risk score,risk score,0.476411948,0.476411948,0.476411948,0.476411948,0.476411948,0.476411948,0.476411948,0.476411948,0.476411948,0.476411948 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Risk score,risk score,0.088259174,0.088259174,0.088259174,0.088259174,0.088259174,0.088259174,0.088259174,0.088259174,0.088259174,0.088259174 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Risk score,risk score,0.114899892,0.114899892,0.114899892,0.114899892,0.114899892,0.114899892,0.114899892,0.114899892,0.114899892,0.114899892 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Risk score,risk score,0.997272137,0.997272137,0.997272137,0.997272137,0.997272137,0.997272137,0.997272137,0.997272137,0.997272137,0.997272137 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Risk score,risk score,0.416395338,0.416395338,0.416395338,0.416395338,0.416395338,0.416395338,0.416395338,0.416395338,0.416395338,0.416395338 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Risk score,risk score,1.322775949,1.322775949,1.322775949,1.322775949,1.322775949,1.322775949,1.322775949,1.322775949,1.322775949,1.322775949 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Risk score,risk score,0.259533296,0.259533296,0.259533296,0.259533296,0.259533296,0.259533296,0.259533296,0.259533296,0.259533296,0.259533296 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Risk score,risk score,0.677849288,0.677849288,0.677849288,0.677849288,0.677849288,0.677849288,0.677849288,0.677849288,0.677849288,0.677849288 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Risk score,risk score,0.482278766,0.482278766,0.482278766,0.482278766,0.482278766,0.482278766,0.482278766,0.482278766,0.482278766,0.482278766 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Risk score,risk score,1.20376306,1.20376306,1.20376306,1.20376306,1.20376306,1.20376306,1.20376306,1.20376306,1.20376306,1.20376306 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Risk score,risk score,0.273751593,0.273751593,0.273751593,0.273751593,0.273751593,0.273751593,0.273751593,0.273751593,0.273751593,0.273751593 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Risk score,risk score,0.437982402,0.437982402,0.437982402,0.437982402,0.437982402,0.437982402,0.437982402,0.437982402,0.437982402,0.437982402 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Risk score,risk score,1.774378671,1.774378671,1.774378671,1.774378671,1.774378671,1.774378671,1.774378671,1.774378671,1.774378671,1.774378671 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Risk score,risk score,0.890092106,0.890092106,0.890092106,0.890092106,0.890092106,0.890092106,0.890092106,0.890092106,0.890092106,0.890092106 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Risk score,risk score,1.574745766,1.574745766,1.574745766,1.574745766,1.574745766,1.574745766,1.574745766,1.574745766,1.574745766,1.574745766 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Risk score,risk score,1.720348812,1.720348812,1.720348812,1.720348812,1.720348812,1.720348812,1.720348812,1.720348812,1.720348812,1.720348812 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Risk score,risk score,2.653078537,2.653078537,2.653078537,2.653078537,2.653078537,2.653078537,2.653078537,2.653078537,2.653078537,2.653078537 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Risk score,risk score,0.09391412,0.09391412,0.09391412,0.09391412,0.09391412,0.09391412,0.09391412,0.09391412,0.09391412,0.09391412 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Risk score,risk score,0.682091478,0.682091478,0.682091478,0.682091478,0.682091478,0.682091478,0.682091478,0.682091478,0.682091478,0.682091478 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Risk score,risk score,2.303875193,2.303875193,2.303875193,2.303875193,2.303875193,2.303875193,2.303875193,2.303875193,2.303875193,2.303875193 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Risk score,risk score,0.481093657,0.481093657,0.481093657,0.481093657,0.481093657,0.481093657,0.481093657,0.481093657,0.481093657,0.481093657 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Risk score,risk score,0.786929767,0.786929767,0.786929767,0.786929767,0.786929767,0.786929767,0.786929767,0.786929767,0.786929767,0.786929767 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Risk score,risk score,0.716552619,0.716552619,0.716552619,0.716552619,0.716552619,0.716552619,0.716552619,0.716552619,0.716552619,0.716552619 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Risk score,risk score,0.650494731,0.650494731,0.650494731,0.650494731,0.650494731,0.650494731,0.650494731,0.650494731,0.650494731,0.650494731 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Risk score,risk score,0.493919546,0.493919546,0.493919546,0.493919546,0.493919546,0.493919546,0.493919546,0.493919546,0.493919546,0.493919546 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Risk score,risk score,0.112987802,0.112987802,0.112987802,0.112987802,0.112987802,0.112987802,0.112987802,0.112987802,0.112987802,0.112987802 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Risk score,risk score,0.00390944,0.00390944,0.00390944,0.00390944,0.00390944,0.00390944,0.00390944,0.00390944,0.00390944,0.00390944 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Risk score,risk score,0.427476133,0.427476133,0.427476133,0.427476133,0.427476133,0.427476133,0.427476133,0.427476133,0.427476133,0.427476133 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Risk score,risk score,0.165699308,0.165699308,0.165699308,0.165699308,0.165699308,0.165699308,0.165699308,0.165699308,0.165699308,0.165699308 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Risk score,risk score,0.056083491,0.056083491,0.056083491,0.056083491,0.056083491,0.056083491,0.056083491,0.056083491,0.056083491,0.056083491 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Risk score|Land area weighted,risk score,0.60862783,0.60862783,0.60862783,0.60862783,0.60862783,0.60862783,0.60862783,0.60862783,0.60862783,0.60862783 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Risk score|Land area weighted,risk score,0.907365735,0.907365735,0.907365735,0.907365735,0.907365735,0.907365735,0.907365735,0.907365735,0.907365735,0.907365735 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Risk score|Land area weighted,risk score,2.284485434,2.284485434,2.284485434,2.284485434,2.284485434,2.284485434,2.284485434,2.284485434,2.284485434,2.284485434 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Risk score|Land area weighted,risk score,0.431940497,0.431940497,0.431940497,0.431940497,0.431940497,0.431940497,0.431940497,0.431940497,0.431940497,0.431940497 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Risk score|Land area weighted,risk score,1.948652941,1.948652941,1.948652941,1.948652941,1.948652941,1.948652941,1.948652941,1.948652941,1.948652941,1.948652941 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Risk score|Land area weighted,risk score,1.672584512,1.672584512,1.672584512,1.672584512,1.672584512,1.672584512,1.672584512,1.672584512,1.672584512,1.672584512 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.556662381,1.556662381,1.556662381,1.556662381,1.556662381,1.556662381,1.556662381,1.556662381,1.556662381,1.556662381 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Risk score|Land area weighted,risk score,2.496367189,2.496367189,2.496367189,2.496367189,2.496367189,2.496367189,2.496367189,2.496367189,2.496367189,2.496367189 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Risk score|Land area weighted,risk score,1.443641871,1.443641871,1.443641871,1.443641871,1.443641871,1.443641871,1.443641871,1.443641871,1.443641871,1.443641871 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Risk score|Land area weighted,risk score,1.613456989,1.613456989,1.613456989,1.613456989,1.613456989,1.613456989,1.613456989,1.613456989,1.613456989,1.613456989 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Risk score|Land area weighted,risk score,0.624891576,0.624891576,0.624891576,0.624891576,0.624891576,0.624891576,0.624891576,0.624891576,0.624891576,0.624891576 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Risk score|Land area weighted,risk score,2.406217951,2.406217951,2.406217951,2.406217951,2.406217951,2.406217951,2.406217951,2.406217951,2.406217951,2.406217951 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Risk score|Land area weighted,risk score,1.379300999,1.379300999,1.379300999,1.379300999,1.379300999,1.379300999,1.379300999,1.379300999,1.379300999,1.379300999 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Risk score|Land area weighted,risk score,2.7683232,2.7683232,2.7683232,2.7683232,2.7683232,2.7683232,2.7683232,2.7683232,2.7683232,2.7683232 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Risk score|Land area weighted,risk score,1.926089539,1.926089539,1.926089539,1.926089539,1.926089539,1.926089539,1.926089539,1.926089539,1.926089539,1.926089539 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Risk score|Land area weighted,risk score,0.549154271,0.549154271,0.549154271,0.549154271,0.549154271,0.549154271,0.549154271,0.549154271,0.549154271,0.549154271 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Risk score|Land area weighted,risk score,1.229168536,1.229168536,1.229168536,1.229168536,1.229168536,1.229168536,1.229168536,1.229168536,1.229168536,1.229168536 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Risk score|Land area weighted,risk score,0.983886557,0.983886557,0.983886557,0.983886557,0.983886557,0.983886557,0.983886557,0.983886557,0.983886557,0.983886557 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Risk score|Land area weighted,risk score,2.168775203,2.168775203,2.168775203,2.168775203,2.168775203,2.168775203,2.168775203,2.168775203,2.168775203,2.168775203 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Risk score|Land area weighted,risk score,2.801147926,2.801147926,2.801147926,2.801147926,2.801147926,2.801147926,2.801147926,2.801147926,2.801147926,2.801147926 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Risk score|Land area weighted,risk score,1.250757281,1.250757281,1.250757281,1.250757281,1.250757281,1.250757281,1.250757281,1.250757281,1.250757281,1.250757281 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Risk score|Land area weighted,risk score,2.050771204,2.050771204,2.050771204,2.050771204,2.050771204,2.050771204,2.050771204,2.050771204,2.050771204,2.050771204 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Risk score|Land area weighted,risk score,1.224020669,1.224020669,1.224020669,1.224020669,1.224020669,1.224020669,1.224020669,1.224020669,1.224020669,1.224020669 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Risk score|Land area weighted,risk score,0.832118568,0.832118568,0.832118568,0.832118568,0.832118568,0.832118568,0.832118568,0.832118568,0.832118568,0.832118568 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Risk score|Land area weighted,risk score,0.907827178,0.907827178,0.907827178,0.907827178,0.907827178,0.907827178,0.907827178,0.907827178,0.907827178,0.907827178 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Risk score|Land area weighted,risk score,2.806123299,2.806123299,2.806123299,2.806123299,2.806123299,2.806123299,2.806123299,2.806123299,2.806123299,2.806123299 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Risk score|Land area weighted,risk score,1.919809655,1.919809655,1.919809655,1.919809655,1.919809655,1.919809655,1.919809655,1.919809655,1.919809655,1.919809655 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Risk score|Land area weighted,risk score,1.254334334,1.254334334,1.254334334,1.254334334,1.254334334,1.254334334,1.254334334,1.254334334,1.254334334,1.254334334 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Risk score|Land area weighted,risk score,1.374242505,1.374242505,1.374242505,1.374242505,1.374242505,1.374242505,1.374242505,1.374242505,1.374242505,1.374242505 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Risk score|Land area weighted,risk score,0.359118742,0.359118742,0.359118742,0.359118742,0.359118742,0.359118742,0.359118742,0.359118742,0.359118742,0.359118742 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Risk score|Land area weighted,risk score,2.511643387,2.511643387,2.511643387,2.511643387,2.511643387,2.511643387,2.511643387,2.511643387,2.511643387,2.511643387 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Risk score|Land area weighted,risk score,2.138091771,2.138091771,2.138091771,2.138091771,2.138091771,2.138091771,2.138091771,2.138091771,2.138091771,2.138091771 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.31890383,0.31890383,0.31890383,0.31890383,0.31890383,0.31890383,0.31890383,0.31890383,0.31890383,0.31890383 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Risk score|Land area weighted,risk score,0.629007805,0.629007805,0.629007805,0.629007805,0.629007805,0.629007805,0.629007805,0.629007805,0.629007805,0.629007805 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Risk score|Land area weighted,risk score,2.870585177,2.870585177,2.870585177,2.870585177,2.870585177,2.870585177,2.870585177,2.870585177,2.870585177,2.870585177 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Risk score|Land area weighted,risk score,0.573094454,0.573094454,0.573094454,0.573094454,0.573094454,0.573094454,0.573094454,0.573094454,0.573094454,0.573094454 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Risk score|Land area weighted,risk score,2.162532295,2.162532295,2.162532295,2.162532295,2.162532295,2.162532295,2.162532295,2.162532295,2.162532295,2.162532295 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Risk score|Land area weighted,risk score,1.613524984,1.613524984,1.613524984,1.613524984,1.613524984,1.613524984,1.613524984,1.613524984,1.613524984,1.613524984 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Risk score|Land area weighted,risk score,1.609009862,1.609009862,1.609009862,1.609009862,1.609009862,1.609009862,1.609009862,1.609009862,1.609009862,1.609009862 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Risk score|Land area weighted,risk score,1.640226164,1.640226164,1.640226164,1.640226164,1.640226164,1.640226164,1.640226164,1.640226164,1.640226164,1.640226164 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Risk score|Land area weighted,risk score,3.004859418,3.004859418,3.004859418,3.004859418,3.004859418,3.004859418,3.004859418,3.004859418,3.004859418,3.004859418 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.446641284,1.446641284,1.446641284,1.446641284,1.446641284,1.446641284,1.446641284,1.446641284,1.446641284,1.446641284 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.882762613,0.882762613,0.882762613,0.882762613,0.882762613,0.882762613,0.882762613,0.882762613,0.882762613,0.882762613 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Risk score|Land area weighted,risk score,0.545492507,0.545492507,0.545492507,0.545492507,0.545492507,0.545492507,0.545492507,0.545492507,0.545492507,0.545492507 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Risk score|Land area weighted,risk score,1.95405534,1.95405534,1.95405534,1.95405534,1.95405534,1.95405534,1.95405534,1.95405534,1.95405534,1.95405534 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Risk score|Land area weighted,risk score,1.844686324,1.844686324,1.844686324,1.844686324,1.844686324,1.844686324,1.844686324,1.844686324,1.844686324,1.844686324 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Risk score|Land area weighted,risk score,2.266986012,2.266986012,2.266986012,2.266986012,2.266986012,2.266986012,2.266986012,2.266986012,2.266986012,2.266986012 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Risk score|Land area weighted,risk score,2.164216146,2.164216146,2.164216146,2.164216146,2.164216146,2.164216146,2.164216146,2.164216146,2.164216146,2.164216146 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Risk score|Land area weighted,risk score,3.0054641,3.0054641,3.0054641,3.0054641,3.0054641,3.0054641,3.0054641,3.0054641,3.0054641,3.0054641 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Risk score|Land area weighted,risk score,0.402647173,0.402647173,0.402647173,0.402647173,0.402647173,0.402647173,0.402647173,0.402647173,0.402647173,0.402647173 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Risk score|Land area weighted,risk score,0.633808404,0.633808404,0.633808404,0.633808404,0.633808404,0.633808404,0.633808404,0.633808404,0.633808404,0.633808404 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Risk score|Land area weighted,risk score,2.107061299,2.107061299,2.107061299,2.107061299,2.107061299,2.107061299,2.107061299,2.107061299,2.107061299,2.107061299 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Risk score|Land area weighted,risk score,0.998865235,0.998865235,0.998865235,0.998865235,0.998865235,0.998865235,0.998865235,0.998865235,0.998865235,0.998865235 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Risk score|Land area weighted,risk score,1.310211458,1.310211458,1.310211458,1.310211458,1.310211458,1.310211458,1.310211458,1.310211458,1.310211458,1.310211458 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Risk score|Land area weighted,risk score,2.853278589,2.853278589,2.853278589,2.853278589,2.853278589,2.853278589,2.853278589,2.853278589,2.853278589,2.853278589 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Risk score|Land area weighted,risk score,2.04507794,2.04507794,2.04507794,2.04507794,2.04507794,2.04507794,2.04507794,2.04507794,2.04507794,2.04507794 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Risk score|Land area weighted,risk score,1.116929057,1.116929057,1.116929057,1.116929057,1.116929057,1.116929057,1.116929057,1.116929057,1.116929057,1.116929057 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Risk score|Land area weighted,risk score,1.507422853,1.507422853,1.507422853,1.507422853,1.507422853,1.507422853,1.507422853,1.507422853,1.507422853,1.507422853 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Risk score|Land area weighted,risk score,0.668227615,0.668227615,0.668227615,0.668227615,0.668227615,0.668227615,0.668227615,0.668227615,0.668227615,0.668227615 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.377874106,0.377874106,0.377874106,0.377874106,0.377874106,0.377874106,0.377874106,0.377874106,0.377874106,0.377874106 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Risk score|Land area weighted,risk score,1.457209883,1.457209883,1.457209883,1.457209883,1.457209883,1.457209883,1.457209883,1.457209883,1.457209883,1.457209883 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.102826471,2.102826471,2.102826471,2.102826471,2.102826471,2.102826471,2.102826471,2.102826471,2.102826471,2.102826471 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Risk score|Land area weighted,risk score,2.879037466,2.879037466,2.879037466,2.879037466,2.879037466,2.879037466,2.879037466,2.879037466,2.879037466,2.879037466 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Risk score|Land area weighted,risk score,0.660464999,0.660464999,0.660464999,0.660464999,0.660464999,0.660464999,0.660464999,0.660464999,0.660464999,0.660464999 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Risk score|Land area weighted,risk score,1.594653813,1.594653813,1.594653813,1.594653813,1.594653813,1.594653813,1.594653813,1.594653813,1.594653813,1.594653813 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Risk score|Land area weighted,risk score,1.205739581,1.205739581,1.205739581,1.205739581,1.205739581,1.205739581,1.205739581,1.205739581,1.205739581,1.205739581 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Risk score|Land area weighted,risk score,1.773720165,1.773720165,1.773720165,1.773720165,1.773720165,1.773720165,1.773720165,1.773720165,1.773720165,1.773720165 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Risk score|Land area weighted,risk score,1.697586012,1.697586012,1.697586012,1.697586012,1.697586012,1.697586012,1.697586012,1.697586012,1.697586012,1.697586012 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Risk score|Land area weighted,risk score,1.183471292,1.183471292,1.183471292,1.183471292,1.183471292,1.183471292,1.183471292,1.183471292,1.183471292,1.183471292 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Risk score|Land area weighted,risk score,2.142222981,2.142222981,2.142222981,2.142222981,2.142222981,2.142222981,2.142222981,2.142222981,2.142222981,2.142222981 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Risk score|Land area weighted,risk score,1.069538743,1.069538743,1.069538743,1.069538743,1.069538743,1.069538743,1.069538743,1.069538743,1.069538743,1.069538743 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Risk score|Land area weighted,risk score,0.819449128,0.819449128,0.819449128,0.819449128,0.819449128,0.819449128,0.819449128,0.819449128,0.819449128,0.819449128 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Risk score|Land area weighted,risk score,2.731722384,2.731722384,2.731722384,2.731722384,2.731722384,2.731722384,2.731722384,2.731722384,2.731722384,2.731722384 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Risk score|Land area weighted,risk score,0.595167603,0.595167603,0.595167603,0.595167603,0.595167603,0.595167603,0.595167603,0.595167603,0.595167603,0.595167603 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Risk score|Land area weighted,risk score,0.408840721,0.408840721,0.408840721,0.408840721,0.408840721,0.408840721,0.408840721,0.408840721,0.408840721,0.408840721 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Risk score|Land area weighted,risk score,2.962930277,2.962930277,2.962930277,2.962930277,2.962930277,2.962930277,2.962930277,2.962930277,2.962930277,2.962930277 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Risk score|Land area weighted,risk score,0.573534423,0.573534423,0.573534423,0.573534423,0.573534423,0.573534423,0.573534423,0.573534423,0.573534423,0.573534423 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Risk score|Land area weighted,risk score,1.763856621,1.763856621,1.763856621,1.763856621,1.763856621,1.763856621,1.763856621,1.763856621,1.763856621,1.763856621 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Risk score|Land area weighted,risk score,0.900737406,0.900737406,0.900737406,0.900737406,0.900737406,0.900737406,0.900737406,0.900737406,0.900737406,0.900737406 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Risk score|Land area weighted,risk score,0.421924677,0.421924677,0.421924677,0.421924677,0.421924677,0.421924677,0.421924677,0.421924677,0.421924677,0.421924677 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Risk score|Land area weighted,risk score,1.389176768,1.389176768,1.389176768,1.389176768,1.389176768,1.389176768,1.389176768,1.389176768,1.389176768,1.389176768 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Risk score|Land area weighted,risk score,2.842673653,2.842673653,2.842673653,2.842673653,2.842673653,2.842673653,2.842673653,2.842673653,2.842673653,2.842673653 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Risk score|Land area weighted,risk score,0.659977788,0.659977788,0.659977788,0.659977788,0.659977788,0.659977788,0.659977788,0.659977788,0.659977788,0.659977788 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Risk score|Land area weighted,risk score,1.211328822,1.211328822,1.211328822,1.211328822,1.211328822,1.211328822,1.211328822,1.211328822,1.211328822,1.211328822 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Risk score|Land area weighted,risk score,1.402367887,1.402367887,1.402367887,1.402367887,1.402367887,1.402367887,1.402367887,1.402367887,1.402367887,1.402367887 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Risk score|Land area weighted,risk score,0.993655962,0.993655962,0.993655962,0.993655962,0.993655962,0.993655962,0.993655962,0.993655962,0.993655962,0.993655962 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Risk score|Land area weighted,risk score,2.506255148,2.506255148,2.506255148,2.506255148,2.506255148,2.506255148,2.506255148,2.506255148,2.506255148,2.506255148 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Risk score|Land area weighted,risk score,2.252417031,2.252417031,2.252417031,2.252417031,2.252417031,2.252417031,2.252417031,2.252417031,2.252417031,2.252417031 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Risk score|Land area weighted,risk score,2.076411321,2.076411321,2.076411321,2.076411321,2.076411321,2.076411321,2.076411321,2.076411321,2.076411321,2.076411321 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Risk score|Land area weighted,risk score,0.570468128,0.570468128,0.570468128,0.570468128,0.570468128,0.570468128,0.570468128,0.570468128,0.570468128,0.570468128 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Risk score|Land area weighted,risk score,0.310788873,0.310788873,0.310788873,0.310788873,0.310788873,0.310788873,0.310788873,0.310788873,0.310788873,0.310788873 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Risk score|Land area weighted,risk score,0.415476073,0.415476073,0.415476073,0.415476073,0.415476073,0.415476073,0.415476073,0.415476073,0.415476073,0.415476073 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.437769008,0.437769008,0.437769008,0.437769008,0.437769008,0.437769008,0.437769008,0.437769008,0.437769008,0.437769008 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.925135843,1.925135843,1.925135843,1.925135843,1.925135843,1.925135843,1.925135843,1.925135843,1.925135843,1.925135843 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Risk score|Land area weighted,risk score,0.620699055,0.620699055,0.620699055,0.620699055,0.620699055,0.620699055,0.620699055,0.620699055,0.620699055,0.620699055 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.06137625,1.06137625,1.06137625,1.06137625,1.06137625,1.06137625,1.06137625,1.06137625,1.06137625,1.06137625 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Risk score|Land area weighted,risk score,0.812262298,0.812262298,0.812262298,0.812262298,0.812262298,0.812262298,0.812262298,0.812262298,0.812262298,0.812262298 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Risk score|Land area weighted,risk score,2.939237281,2.939237281,2.939237281,2.939237281,2.939237281,2.939237281,2.939237281,2.939237281,2.939237281,2.939237281 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Risk score|Land area weighted,risk score,1.556091061,1.556091061,1.556091061,1.556091061,1.556091061,1.556091061,1.556091061,1.556091061,1.556091061,1.556091061 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Risk score|Land area weighted,risk score,2.644494448,2.644494448,2.644494448,2.644494448,2.644494448,2.644494448,2.644494448,2.644494448,2.644494448,2.644494448 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Risk score|Land area weighted,risk score,1.356341639,1.356341639,1.356341639,1.356341639,1.356341639,1.356341639,1.356341639,1.356341639,1.356341639,1.356341639 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Risk score|Land area weighted,risk score,1.057733909,1.057733909,1.057733909,1.057733909,1.057733909,1.057733909,1.057733909,1.057733909,1.057733909,1.057733909 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Risk score|Land area weighted,risk score,1.138992645,1.138992645,1.138992645,1.138992645,1.138992645,1.138992645,1.138992645,1.138992645,1.138992645,1.138992645 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Risk score|Land area weighted,risk score,0.857613443,0.857613443,0.857613443,0.857613443,0.857613443,0.857613443,0.857613443,0.857613443,0.857613443,0.857613443 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Risk score|Land area weighted,risk score,0.809522255,0.809522255,0.809522255,0.809522255,0.809522255,0.809522255,0.809522255,0.809522255,0.809522255,0.809522255 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Risk score|Land area weighted,risk score,2.222956755,2.222956755,2.222956755,2.222956755,2.222956755,2.222956755,2.222956755,2.222956755,2.222956755,2.222956755 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Risk score|Land area weighted,risk score,0.525364944,0.525364944,0.525364944,0.525364944,0.525364944,0.525364944,0.525364944,0.525364944,0.525364944,0.525364944 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Risk score|Land area weighted,risk score,0.512147701,0.512147701,0.512147701,0.512147701,0.512147701,0.512147701,0.512147701,0.512147701,0.512147701,0.512147701 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Risk score|Land area weighted,risk score,1.94369449,1.94369449,1.94369449,1.94369449,1.94369449,1.94369449,1.94369449,1.94369449,1.94369449,1.94369449 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Risk score|Land area weighted,risk score,2.409573087,2.409573087,2.409573087,2.409573087,2.409573087,2.409573087,2.409573087,2.409573087,2.409573087,2.409573087 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Risk score|Land area weighted,risk score,2.860968568,2.860968568,2.860968568,2.860968568,2.860968568,2.860968568,2.860968568,2.860968568,2.860968568,2.860968568 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Risk score|Land area weighted,risk score,2.157178187,2.157178187,2.157178187,2.157178187,2.157178187,2.157178187,2.157178187,2.157178187,2.157178187,2.157178187 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Risk score|Land area weighted,risk score,2.143040321,2.143040321,2.143040321,2.143040321,2.143040321,2.143040321,2.143040321,2.143040321,2.143040321,2.143040321 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Risk score|Land area weighted,risk score,0.902824507,0.902824507,0.902824507,0.902824507,0.902824507,0.902824507,0.902824507,0.902824507,0.902824507,0.902824507 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Risk score|Land area weighted,risk score,0.750499467,0.750499467,0.750499467,0.750499467,0.750499467,0.750499467,0.750499467,0.750499467,0.750499467,0.750499467 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Risk score|Land area weighted,risk score,1.816465014,1.816465014,1.816465014,1.816465014,1.816465014,1.816465014,1.816465014,1.816465014,1.816465014,1.816465014 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Risk score|Land area weighted,risk score,0.774929506,0.774929506,0.774929506,0.774929506,0.774929506,0.774929506,0.774929506,0.774929506,0.774929506,0.774929506 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Risk score|Land area weighted,risk score,2.49790514,2.49790514,2.49790514,2.49790514,2.49790514,2.49790514,2.49790514,2.49790514,2.49790514,2.49790514 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Risk score|Land area weighted,risk score,1.82053648,1.82053648,1.82053648,1.82053648,1.82053648,1.82053648,1.82053648,1.82053648,1.82053648,1.82053648 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Risk score|Land area weighted,risk score,0.909441314,0.909441314,0.909441314,0.909441314,0.909441314,0.909441314,0.909441314,0.909441314,0.909441314,0.909441314 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Risk score|Land area weighted,risk score,1.97861847,1.97861847,1.97861847,1.97861847,1.97861847,1.97861847,1.97861847,1.97861847,1.97861847,1.97861847 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Risk score|Land area weighted,risk score,0.750685237,0.750685237,0.750685237,0.750685237,0.750685237,0.750685237,0.750685237,0.750685237,0.750685237,0.750685237 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Risk score|Land area weighted,risk score,0.617312379,0.617312379,0.617312379,0.617312379,0.617312379,0.617312379,0.617312379,0.617312379,0.617312379,0.617312379 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Risk score|Land area weighted,risk score,1.028772506,1.028772506,1.028772506,1.028772506,1.028772506,1.028772506,1.028772506,1.028772506,1.028772506,1.028772506 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Risk score|Land area weighted,risk score,2.317774758,2.317774758,2.317774758,2.317774758,2.317774758,2.317774758,2.317774758,2.317774758,2.317774758,2.317774758 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Risk score|Land area weighted,risk score,0.905515895,0.905515895,0.905515895,0.905515895,0.905515895,0.905515895,0.905515895,0.905515895,0.905515895,0.905515895 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Risk score|Land area weighted,risk score,1.784332096,1.784332096,1.784332096,1.784332096,1.784332096,1.784332096,1.784332096,1.784332096,1.784332096,1.784332096 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Risk score|Land area weighted,risk score,2.865994409,2.865994409,2.865994409,2.865994409,2.865994409,2.865994409,2.865994409,2.865994409,2.865994409,2.865994409 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.631936692,0.631936692,0.631936692,0.631936692,0.631936692,0.631936692,0.631936692,0.631936692,0.631936692,0.631936692 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Risk score|Land area weighted,risk score,0.375805972,0.375805972,0.375805972,0.375805972,0.375805972,0.375805972,0.375805972,0.375805972,0.375805972,0.375805972 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Risk score|Land area weighted,risk score,1.417419657,1.417419657,1.417419657,1.417419657,1.417419657,1.417419657,1.417419657,1.417419657,1.417419657,1.417419657 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.048447605,1.048447605,1.048447605,1.048447605,1.048447605,1.048447605,1.048447605,1.048447605,1.048447605,1.048447605 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Risk score|Land area weighted,risk score,2.819335737,2.819335737,2.819335737,2.819335737,2.819335737,2.819335737,2.819335737,2.819335737,2.819335737,2.819335737 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Risk score|Land area weighted,risk score,0.430161876,0.430161876,0.430161876,0.430161876,0.430161876,0.430161876,0.430161876,0.430161876,0.430161876,0.430161876 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Risk score|Land area weighted,risk score,0.520234036,0.520234036,0.520234036,0.520234036,0.520234036,0.520234036,0.520234036,0.520234036,0.520234036,0.520234036 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.665299595,0.665299595,0.665299595,0.665299595,0.665299595,0.665299595,0.665299595,0.665299595,0.665299595,0.665299595 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Risk score|Land area weighted,risk score,2.240908487,2.240908487,2.240908487,2.240908487,2.240908487,2.240908487,2.240908487,2.240908487,2.240908487,2.240908487 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Risk score|Land area weighted,risk score,2.05664027,2.05664027,2.05664027,2.05664027,2.05664027,2.05664027,2.05664027,2.05664027,2.05664027,2.05664027 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Risk score|Land area weighted,risk score,2.459019452,2.459019452,2.459019452,2.459019452,2.459019452,2.459019452,2.459019452,2.459019452,2.459019452,2.459019452 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Risk score|Land area weighted,risk score,2.104574287,2.104574287,2.104574287,2.104574287,2.104574287,2.104574287,2.104574287,2.104574287,2.104574287,2.104574287 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Risk score|Land area weighted,risk score,0.882931299,0.882931299,0.882931299,0.882931299,0.882931299,0.882931299,0.882931299,0.882931299,0.882931299,0.882931299 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Risk score|Land area weighted,risk score,1.487659291,1.487659291,1.487659291,1.487659291,1.487659291,1.487659291,1.487659291,1.487659291,1.487659291,1.487659291 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Risk score|Land area weighted,risk score,0.900986362,0.900986362,0.900986362,0.900986362,0.900986362,0.900986362,0.900986362,0.900986362,0.900986362,0.900986362 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Risk score|Land area weighted,risk score,0.747932326,0.747932326,0.747932326,0.747932326,0.747932326,0.747932326,0.747932326,0.747932326,0.747932326,0.747932326 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Risk score|Land area weighted,risk score,1.374020132,1.374020132,1.374020132,1.374020132,1.374020132,1.374020132,1.374020132,1.374020132,1.374020132,1.374020132 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Risk score|Land area weighted,risk score,1.013591804,1.013591804,1.013591804,1.013591804,1.013591804,1.013591804,1.013591804,1.013591804,1.013591804,1.013591804 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Risk score|Land area weighted,risk score,1.468908207,1.468908207,1.468908207,1.468908207,1.468908207,1.468908207,1.468908207,1.468908207,1.468908207,1.468908207 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Risk score|Land area weighted,risk score,3.114671564,3.114671564,3.114671564,3.114671564,3.114671564,3.114671564,3.114671564,3.114671564,3.114671564,3.114671564 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Risk score|Land area weighted,risk score,2.866940693,2.866940693,2.866940693,2.866940693,2.866940693,2.866940693,2.866940693,2.866940693,2.866940693,2.866940693 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Risk score|Land area weighted,risk score,1.241198166,1.241198166,1.241198166,1.241198166,1.241198166,1.241198166,1.241198166,1.241198166,1.241198166,1.241198166 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Risk score|Land area weighted,risk score,1.260165611,1.260165611,1.260165611,1.260165611,1.260165611,1.260165611,1.260165611,1.260165611,1.260165611,1.260165611 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Risk score|Land area weighted,risk score,2.020775269,2.020775269,2.020775269,2.020775269,2.020775269,2.020775269,2.020775269,2.020775269,2.020775269,2.020775269 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Risk score|Land area weighted,risk score,2.827884216,2.827884216,2.827884216,2.827884216,2.827884216,2.827884216,2.827884216,2.827884216,2.827884216,2.827884216 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Risk score|Land area weighted,risk score,1.865532575,1.865532575,1.865532575,1.865532575,1.865532575,1.865532575,1.865532575,1.865532575,1.865532575,1.865532575 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Risk score|Land area weighted,risk score,2.29440182,2.29440182,2.29440182,2.29440182,2.29440182,2.29440182,2.29440182,2.29440182,2.29440182,2.29440182 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Risk score|Land area weighted,risk score,0.748007549,0.748007549,0.748007549,0.748007549,0.748007549,0.748007549,0.748007549,0.748007549,0.748007549,0.748007549 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Risk score|Land area weighted,risk score,0.736599475,0.736599475,0.736599475,0.736599475,0.736599475,0.736599475,0.736599475,0.736599475,0.736599475,0.736599475 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.563821811,1.563821811,1.563821811,1.563821811,1.563821811,1.563821811,1.563821811,1.563821811,1.563821811,1.563821811 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Risk score|Land area weighted,risk score,2.629605092,2.629605092,2.629605092,2.629605092,2.629605092,2.629605092,2.629605092,2.629605092,2.629605092,2.629605092 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Risk score|Land area weighted,risk score,0.402767453,0.402767453,0.402767453,0.402767453,0.402767453,0.402767453,0.402767453,0.402767453,0.402767453,0.402767453 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Risk score|Land area weighted,risk score,2.800180314,2.800180314,2.800180314,2.800180314,2.800180314,2.800180314,2.800180314,2.800180314,2.800180314,2.800180314 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.9790633,2.9790633,2.9790633,2.9790633,2.9790633,2.9790633,2.9790633,2.9790633,2.9790633,2.9790633 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Risk score|Land area weighted,risk score,0.322906486,0.322906486,0.322906486,0.322906486,0.322906486,0.322906486,0.322906486,0.322906486,0.322906486,0.322906486 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Risk score|Land area weighted,risk score,2.280161694,2.280161694,2.280161694,2.280161694,2.280161694,2.280161694,2.280161694,2.280161694,2.280161694,2.280161694 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Risk score|Land area weighted,risk score,0.805001847,0.805001847,0.805001847,0.805001847,0.805001847,0.805001847,0.805001847,0.805001847,0.805001847,0.805001847 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Risk score|Land area weighted,risk score,2.601760135,2.601760135,2.601760135,2.601760135,2.601760135,2.601760135,2.601760135,2.601760135,2.601760135,2.601760135 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Risk score|Land area weighted,risk score,0.592680371,0.592680371,0.592680371,0.592680371,0.592680371,0.592680371,0.592680371,0.592680371,0.592680371,0.592680371 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.448926408,0.448926408,0.448926408,0.448926408,0.448926408,0.448926408,0.448926408,0.448926408,0.448926408,0.448926408 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Risk score|Land area weighted,risk score,1.121854264,1.121854264,1.121854264,1.121854264,1.121854264,1.121854264,1.121854264,1.121854264,1.121854264,1.121854264 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.137397569,1.137397569,1.137397569,1.137397569,1.137397569,1.137397569,1.137397569,1.137397569,1.137397569,1.137397569 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Risk score|Land area weighted,risk score,0.810560041,0.810560041,0.810560041,0.810560041,0.810560041,0.810560041,0.810560041,0.810560041,0.810560041,0.810560041 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Risk score|Land area weighted,risk score,2.345763732,2.345763732,2.345763732,2.345763732,2.345763732,2.345763732,2.345763732,2.345763732,2.345763732,2.345763732 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Risk score|Land area weighted,risk score,0.779521745,0.779521745,0.779521745,0.779521745,0.779521745,0.779521745,0.779521745,0.779521745,0.779521745,0.779521745 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Risk score|Land area weighted,risk score,1.298120516,1.298120516,1.298120516,1.298120516,1.298120516,1.298120516,1.298120516,1.298120516,1.298120516,1.298120516 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Risk score|Land area weighted,risk score,0.731069812,0.731069812,0.731069812,0.731069812,0.731069812,0.731069812,0.731069812,0.731069812,0.731069812,0.731069812 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Risk score|Land area weighted,risk score,1.519833189,1.519833189,1.519833189,1.519833189,1.519833189,1.519833189,1.519833189,1.519833189,1.519833189,1.519833189 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Risk score|Land area weighted,risk score,0.436013153,0.436013153,0.436013153,0.436013153,0.436013153,0.436013153,0.436013153,0.436013153,0.436013153,0.436013153 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Risk score|Land area weighted,risk score,0.73232664,0.73232664,0.73232664,0.73232664,0.73232664,0.73232664,0.73232664,0.73232664,0.73232664,0.73232664 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Risk score|Land area weighted,risk score,2.435612576,2.435612576,2.435612576,2.435612576,2.435612576,2.435612576,2.435612576,2.435612576,2.435612576,2.435612576 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Risk score|Land area weighted,risk score,1.344627579,1.344627579,1.344627579,1.344627579,1.344627579,1.344627579,1.344627579,1.344627579,1.344627579,1.344627579 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Risk score|Land area weighted,risk score,2.098277119,2.098277119,2.098277119,2.098277119,2.098277119,2.098277119,2.098277119,2.098277119,2.098277119,2.098277119 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Risk score|Land area weighted,risk score,2.05946758,2.05946758,2.05946758,2.05946758,2.05946758,2.05946758,2.05946758,2.05946758,2.05946758,2.05946758 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Risk score|Land area weighted,risk score,2.915488408,2.915488408,2.915488408,2.915488408,2.915488408,2.915488408,2.915488408,2.915488408,2.915488408,2.915488408 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Risk score|Land area weighted,risk score,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Risk score|Land area weighted,risk score,1.052258431,1.052258431,1.052258431,1.052258431,1.052258431,1.052258431,1.052258431,1.052258431,1.052258431,1.052258431 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Risk score|Land area weighted,risk score,2.81109785,2.81109785,2.81109785,2.81109785,2.81109785,2.81109785,2.81109785,2.81109785,2.81109785,2.81109785 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Risk score|Land area weighted,risk score,0.758639443,0.758639443,0.758639443,0.758639443,0.758639443,0.758639443,0.758639443,0.758639443,0.758639443,0.758639443 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Risk score|Land area weighted,risk score,3.010068518,3.010068518,3.010068518,3.010068518,3.010068518,3.010068518,3.010068518,3.010068518,3.010068518,3.010068518 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Risk score|Land area weighted,risk score,1.66327356,1.66327356,1.66327356,1.66327356,1.66327356,1.66327356,1.66327356,1.66327356,1.66327356,1.66327356 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Risk score|Land area weighted,risk score,0.997162377,0.997162377,0.997162377,0.997162377,0.997162377,0.997162377,0.997162377,0.997162377,0.997162377,0.997162377 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Risk score|Land area weighted,risk score,0.711334489,0.711334489,0.711334489,0.711334489,0.711334489,0.711334489,0.711334489,0.711334489,0.711334489,0.711334489 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Risk score|Land area weighted,risk score,1.086631981,1.086631981,1.086631981,1.086631981,1.086631981,1.086631981,1.086631981,1.086631981,1.086631981,1.086631981 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.12432543,0.12432543,0.12432543,0.12432543,0.12432543,0.12432543,0.12432543,0.12432543,0.12432543,0.12432543 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Risk score|Land area weighted,risk score,1.85829377,1.85829377,1.85829377,1.85829377,1.85829377,1.85829377,1.85829377,1.85829377,1.85829377,1.85829377 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Risk score|Land area weighted,risk score,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Risk score|Land area weighted,risk score,1.401880976,1.401880976,1.401880976,1.401880976,1.401880976,1.401880976,1.401880976,1.401880976,1.401880976,1.401880976 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Land area,km2,15370.64858,15370.64858,15370.64858,15370.64858,15370.64858,15370.64858,15370.64858,15370.64858,15370.64858,15370.64858 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Land area,km2,10062.69638,10062.69638,10062.69638,10062.69638,10062.69638,10062.69638,10062.69638,10062.69638,10062.69638,10062.69638 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Land area,km2,452947.934,452947.934,452947.934,452947.934,452947.934,452947.934,452947.934,452947.934,452947.934,452947.934 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Land area,km2,7972.591562,7972.591562,7972.591562,7972.591562,7972.591562,7972.591562,7972.591562,7972.591562,7972.591562,7972.591562 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Land area,km2,4459.063743,4459.063743,4459.063743,4459.063743,4459.063743,4459.063743,4459.063743,4459.063743,4459.063743,4459.063743 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Land area,km2,135301.4173,135301.4173,135301.4173,135301.4173,135301.4173,135301.4173,135301.4173,135301.4173,135301.4173,135301.4173 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Land area,km2,2776.986026,2776.986026,2776.986026,2776.986026,2776.986026,2776.986026,2776.986026,2776.986026,2776.986026,2776.986026 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Land area,km2,24416.70752,24416.70752,24416.70752,24416.70752,24416.70752,24416.70752,24416.70752,24416.70752,24416.70752,24416.70752 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Land area,km2,447.9204457,447.9204457,447.9204457,447.9204457,447.9204457,447.9204457,447.9204457,447.9204457,447.9204457,447.9204457 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Land area,km2,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Land area,km2,12554.68039,12554.68039,12554.68039,12554.68039,12554.68039,12554.68039,12554.68039,12554.68039,12554.68039,12554.68039 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Land area,km2,1359.158689,1359.158689,1359.158689,1359.158689,1359.158689,1359.158689,1359.158689,1359.158689,1359.158689,1359.158689 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Land area,km2,659188.661,659188.661,659188.661,659188.661,659188.661,659188.661,659188.661,659188.661,659188.661,659188.661 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Land area,km2,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Land area,km2,148938.547,148938.547,148938.547,148938.547,148938.547,148938.547,148938.547,148938.547,148938.547,148938.547 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Land area,km2,30495.03799,30495.03799,30495.03799,30495.03799,30495.03799,30495.03799,30495.03799,30495.03799,30495.03799,30495.03799 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Land area,km2,86851.21157,86851.21157,86851.21157,86851.21157,86851.21157,86851.21157,86851.21157,86851.21157,86851.21157,86851.21157 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Land area,km2,56360.48384,56360.48384,56360.48384,56360.48384,56360.48384,56360.48384,56360.48384,56360.48384,56360.48384,56360.48384 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Land area,km2,1264356.826,1264356.826,1264356.826,1264356.826,1264356.826,1264356.826,1264356.826,1264356.826,1264356.826,1264356.826 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Land area,km2,522353.3332,522353.3332,522353.3332,522353.3332,522353.3332,522353.3332,522353.3332,522353.3332,522353.3332,522353.3332 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Land area,km2,41977.79496,41977.79496,41977.79496,41977.79496,41977.79496,41977.79496,41977.79496,41977.79496,41977.79496,41977.79496 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Land area,km2,309.1720423,309.1720423,309.1720423,309.1720423,309.1720423,309.1720423,309.1720423,309.1720423,309.1720423,309.1720423 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Land area,km2,19862.78438,19862.78438,19862.78438,19862.78438,19862.78438,19862.78438,19862.78438,19862.78438,19862.78438,19862.78438 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Land area,km2,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Land area,km2,763653.3758,763653.3758,763653.3758,763653.3758,763653.3758,763653.3758,763653.3758,763653.3758,763653.3758,763653.3758 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Land area,km2,44240.83118,44240.83118,44240.83118,44240.83118,44240.83118,44240.83118,44240.83118,44240.83118,44240.83118,44240.83118 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Land area,km2,1279.335604,1279.335604,1279.335604,1279.335604,1279.335604,1279.335604,1279.335604,1279.335604,1279.335604,1279.335604 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Land area,km2,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Land area,km2,5986.416259,5986.416259,5986.416259,5986.416259,5986.416259,5986.416259,5986.416259,5986.416259,5986.416259,5986.416259 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Land area,km2,6286.610271,6286.610271,6286.610271,6286.610271,6286.610271,6286.610271,6286.610271,6286.610271,6286.610271,6286.610271 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Land area,km2,1446976.282,1446976.282,1446976.282,1446976.282,1446976.282,1446976.282,1446976.282,1446976.282,1446976.282,1446976.282 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Land area,km2,271297.3954,271297.3954,271297.3954,271297.3954,271297.3954,271297.3954,271297.3954,271297.3954,271297.3954,271297.3954 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Land area,km2,87.50891324,87.50891324,87.50891324,87.50891324,87.50891324,87.50891324,87.50891324,87.50891324,87.50891324,87.50891324 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Land area,km2,9216.908696,9216.908696,9216.908696,9216.908696,9216.908696,9216.908696,9216.908696,9216.908696,9216.908696,9216.908696 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Land area,km2,6143.253971,6143.253971,6143.253971,6143.253971,6143.253971,6143.253971,6143.253971,6143.253971,6143.253971,6143.253971 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Land area,km2,587034.7825,587034.7825,587034.7825,587034.7825,587034.7825,587034.7825,587034.7825,587034.7825,587034.7825,587034.7825 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Land area,km2,8568.32523,8568.32523,8568.32523,8568.32523,8568.32523,8568.32523,8568.32523,8568.32523,8568.32523,8568.32523 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Land area,km2,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Land area,km2,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Land area,km2,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Land area,km2,954273.4623,954273.4623,954273.4623,954273.4623,954273.4623,954273.4623,954273.4623,954273.4623,954273.4623,954273.4623 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Land area,km2,3321.444888,3321.444888,3321.444888,3321.444888,3321.444888,3321.444888,3321.444888,3321.444888,3321.444888,3321.444888 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Land area,km2,2615.692426,2615.692426,2615.692426,2615.692426,2615.692426,2615.692426,2615.692426,2615.692426,2615.692426,2615.692426 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Land area,km2,96363.75729,96363.75729,96363.75729,96363.75729,96363.75729,96363.75729,96363.75729,96363.75729,96363.75729,96363.75729 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Land area,km2,90236.648,90236.648,90236.648,90236.648,90236.648,90236.648,90236.648,90236.648,90236.648,90236.648 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Land area,km2,90.08549175,90.08549175,90.08549175,90.08549175,90.08549175,90.08549175,90.08549175,90.08549175,90.08549175,90.08549175 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Land area,km2,34472.7458,34472.7458,34472.7458,34472.7458,34472.7458,34472.7458,34472.7458,34472.7458,34472.7458,34472.7458 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Land area,km2,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Land area,km2,31297.69872,31297.69872,31297.69872,31297.69872,31297.69872,31297.69872,31297.69872,31297.69872,31297.69872,31297.69872 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Land area,km2,896777.2013,896777.2013,896777.2013,896777.2013,896777.2013,896777.2013,896777.2013,896777.2013,896777.2013,896777.2013 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Land area,km2,38153.44839,38153.44839,38153.44839,38153.44839,38153.44839,38153.44839,38153.44839,38153.44839,38153.44839,38153.44839 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Land area,km2,7125.470351,7125.470351,7125.470351,7125.470351,7125.470351,7125.470351,7125.470351,7125.470351,7125.470351,7125.470351 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Land area|%,%,0.553374642,0.553374642,0.553374642,0.553374642,0.553374642,0.553374642,0.553374642,0.553374642,0.553374642,0.553374642 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Land area|%,%,0.927950199,0.927950199,0.927950199,0.927950199,0.927950199,0.927950199,0.927950199,0.927950199,0.927950199,0.927950199 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Land area|%,%,23.53444133,23.53444133,23.53444133,23.53444133,23.53444133,23.53444133,23.53444133,23.53444133,23.53444133,23.53444133 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Land area|%,%,8.955863298,8.955863298,8.955863298,8.955863298,8.955863298,8.955863298,8.955863298,8.955863298,8.955863298,8.955863298 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Land area|%,%,0.884362178,0.884362178,0.884362178,0.884362178,0.884362178,0.884362178,0.884362178,0.884362178,0.884362178,0.884362178 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Land area|%,%,44.02008435,44.02008435,44.02008435,44.02008435,44.02008435,44.02008435,44.02008435,44.02008435,44.02008435,44.02008435 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Land area|%,%,0.613944348,0.613944348,0.613944348,0.613944348,0.613944348,0.613944348,0.613944348,0.613944348,0.613944348,0.613944348 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Land area|%,%,34.55480433,34.55480433,34.55480433,34.55480433,34.55480433,34.55480433,34.55480433,34.55480433,34.55480433,34.55480433 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Land area|%,%,0.07616532,0.07616532,0.07616532,0.07616532,0.07616532,0.07616532,0.07616532,0.07616532,0.07616532,0.07616532 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Land area|%,%,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Land area|%,%,1.610965098,1.610965098,1.610965098,1.610965098,1.610965098,1.610965098,1.610965098,1.610965098,1.610965098,1.610965098 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Land area|%,%,0.212194375,0.212194375,0.212194375,0.212194375,0.212194375,0.212194375,0.212194375,0.212194375,0.212194375,0.212194375 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Land area|%,%,63.43534808,63.43534808,63.43534808,63.43534808,63.43534808,63.43534808,63.43534808,63.43534808,63.43534808,63.43534808 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Land area|%,%,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Land area|%,%,18.16457091,18.16457091,18.16457091,18.16457091,18.16457091,18.16457091,18.16457091,18.16457091,18.16457091,18.16457091 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Land area|%,%,2.361244357,2.361244357,2.361244357,2.361244357,2.361244357,2.361244357,2.361244357,2.361244357,2.361244357,2.361244357 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Land area|%,%,32.52969225,32.52969225,32.52969225,32.52969225,32.52969225,32.52969225,32.52969225,32.52969225,32.52969225,32.52969225 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Land area|%,%,0.602012274,0.602012274,0.602012274,0.602012274,0.602012274,0.602012274,0.602012274,0.602012274,0.602012274,0.602012274 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Land area|%,%,78.27835549,78.27835549,78.27835549,78.27835549,78.27835549,78.27835549,78.27835549,78.27835549,78.27835549,78.27835549 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Land area|%,%,41.83894897,41.83894897,41.83894897,41.83894897,41.83894897,41.83894897,41.83894897,41.83894897,41.83894897,41.83894897 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Land area|%,%,3.371090355,3.371090355,3.371090355,3.371090355,3.371090355,3.371090355,3.371090355,3.371090355,3.371090355,3.371090355 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Land area|%,%,0.341045007,0.341045007,0.341045007,0.341045007,0.341045007,0.341045007,0.341045007,0.341045007,0.341045007,0.341045007 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Land area|%,%,1.627473644,1.627473644,1.627473644,1.627473644,1.627473644,1.627473644,1.627473644,1.627473644,1.627473644,1.627473644 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Land area|%,%,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Land area|%,%,64.6035029,64.6035029,64.6035029,64.6035029,64.6035029,64.6035029,64.6035029,64.6035029,64.6035029,64.6035029 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Land area|%,%,0.521726333,0.521726333,0.521726333,0.521726333,0.521726333,0.521726333,0.521726333,0.521726333,0.521726333,0.521726333 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Land area|%,%,1.717590454,1.717590454,1.717590454,1.717590454,1.717590454,1.717590454,1.717590454,1.717590454,1.717590454,1.717590454 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Land area|%,%,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Land area|%,%,0.077963629,0.077963629,0.077963629,0.077963629,0.077963629,0.077963629,0.077963629,0.077963629,0.077963629,0.077963629 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Land area|%,%,0.38837224,0.38837224,0.38837224,0.38837224,0.38837224,0.38837224,0.38837224,0.38837224,0.38837224,0.38837224 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Land area|%,%,62.70919502,62.70919502,62.70919502,62.70919502,62.70919502,62.70919502,62.70919502,62.70919502,62.70919502,62.70919502 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Land area|%,%,36.9984398,36.9984398,36.9984398,36.9984398,36.9984398,36.9984398,36.9984398,36.9984398,36.9984398,36.9984398 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Land area|%,%,1.003592109,1.003592109,1.003592109,1.003592109,1.003592109,1.003592109,1.003592109,1.003592109,1.003592109,1.003592109 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Land area|%,%,2.225853164,2.225853164,2.225853164,2.225853164,2.225853164,2.225853164,2.225853164,2.225853164,2.225853164,2.225853164 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Land area|%,%,20.90941787,20.90941787,20.90941787,20.90941787,20.90941787,20.90941787,20.90941787,20.90941787,20.90941787,20.90941787 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Land area|%,%,46.5929162,46.5929162,46.5929162,46.5929162,46.5929162,46.5929162,46.5929162,46.5929162,46.5929162,46.5929162 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Land area|%,%,5.509368619,5.509368619,5.509368619,5.509368619,5.509368619,5.509368619,5.509368619,5.509368619,5.509368619,5.509368619 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Land area|%,%,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Land area|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Land area|%,%,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Land area|%,%,51.3133293,51.3133293,51.3133293,51.3133293,51.3133293,51.3133293,51.3133293,51.3133293,51.3133293,51.3133293 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Land area|%,%,0.364639537,0.364639537,0.364639537,0.364639537,0.364639537,0.364639537,0.364639537,0.364639537,0.364639537,0.364639537 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Land area|%,%,12.71478582,12.71478582,12.71478582,12.71478582,12.71478582,12.71478582,12.71478582,12.71478582,12.71478582,12.71478582 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Land area|%,%,12.84639713,12.84639713,12.84639713,12.84639713,12.84639713,12.84639713,12.84639713,12.84639713,12.84639713,12.84639713 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Land area|%,%,45.98941145,45.98941145,45.98941145,45.98941145,45.98941145,45.98941145,45.98941145,45.98941145,45.98941145,45.98941145 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Land area|%,%,0.075863686,0.075863686,0.075863686,0.075863686,0.075863686,0.075863686,0.075863686,0.075863686,0.075863686,0.075863686 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Land area|%,%,8.83075888,8.83075888,8.83075888,8.83075888,8.83075888,8.83075888,8.83075888,8.83075888,8.83075888,8.83075888 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Land area|%,%,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Land area|%,%,1.600676634,1.600676634,1.600676634,1.600676634,1.600676634,1.600676634,1.600676634,1.600676634,1.600676634,1.600676634 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Land area|%,%,89.94262328,89.94262328,89.94262328,89.94262328,89.94262328,89.94262328,89.94262328,89.94262328,89.94262328,89.94262328 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Land area|%,%,6.555094909,6.555094909,6.555094909,6.555094909,6.555094909,6.555094909,6.555094909,6.555094909,6.555094909,6.555094909 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Land area|%,%,65.01239395,65.01239395,65.01239395,65.01239395,65.01239395,65.01239395,65.01239395,65.01239395,65.01239395,65.01239395 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Land area|Low,km2,911669.9685,911669.9685,911669.9685,911669.9685,911669.9685,911669.9685,911669.9685,911669.9685,911669.9685,911669.9685 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Land area|Low,km2,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Land area|Low,km2,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Land area|Low,km2,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Land area|Low,km2,963372.3513,963372.3513,963372.3513,963372.3513,963372.3513,963372.3513,963372.3513,963372.3513,963372.3513,963372.3513 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Land area|Low,km2,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Land area|Low,km2,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Land area|Low,km2,2133841.608,2133841.608,2133841.608,2133841.608,2133841.608,2133841.608,2133841.608,2133841.608,2133841.608,2133841.608 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Land area|Low,km2,1027593.772,1027593.772,1027593.772,1027593.772,1027593.772,1027593.772,1027593.772,1027593.772,1027593.772,1027593.772 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Land area|Low,km2,1688.819179,1688.819179,1688.819179,1688.819179,1688.819179,1688.819179,1688.819179,1688.819179,1688.819179,1688.819179 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Land area|Low,km2,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Land area|Low,km2,144790.5833,144790.5833,144790.5833,144790.5833,144790.5833,144790.5833,144790.5833,144790.5833,144790.5833,144790.5833 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Land area|Low,km2,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Land area|Low,km2,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Land area|Low,km2,65026.88222,65026.88222,65026.88222,65026.88222,65026.88222,65026.88222,65026.88222,65026.88222,65026.88222,65026.88222 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Land area|Low,km2,20265.01154,20265.01154,20265.01154,20265.01154,20265.01154,20265.01154,20265.01154,20265.01154,20265.01154,20265.01154 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Land area|Low,km2,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Land area|Low,km2,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Land area|Low,km2,173522.4323,173522.4323,173522.4323,173522.4323,173522.4323,173522.4323,173522.4323,173522.4323,173522.4323,173522.4323 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Land area|Low,km2,489755.2392,489755.2392,489755.2392,489755.2392,489755.2392,489755.2392,489755.2392,489755.2392,489755.2392,489755.2392 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Land area|Low,km2,76038.06786,76038.06786,76038.06786,76038.06786,76038.06786,76038.06786,76038.06786,76038.06786,76038.06786,76038.06786 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Land area|Low,km2,6594.063256,6594.063256,6594.063256,6594.063256,6594.063256,6594.063256,6594.063256,6594.063256,6594.063256,6594.063256 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Land area|Low,km2,2434.139204,2434.139204,2434.139204,2434.139204,2434.139204,2434.139204,2434.139204,2434.139204,2434.139204,2434.139204 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Land area|Low,km2,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Land area|Low,km2,823937.315,823937.315,823937.315,823937.315,823937.315,823937.315,823937.315,823937.315,823937.315,823937.315 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Land area|Low,km2,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Land area|Low,km2,181375.5697,181375.5697,181375.5697,181375.5697,181375.5697,181375.5697,181375.5697,181375.5697,181375.5697,181375.5697 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Land area|Low,km2,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Land area|Low,km2,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Land area|Low,km2,850649.8195,850649.8195,850649.8195,850649.8195,850649.8195,850649.8195,850649.8195,850649.8195,850649.8195,850649.8195 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Land area|Low,km2,206.0509471,206.0509471,206.0509471,206.0509471,206.0509471,206.0509471,206.0509471,206.0509471,206.0509471,206.0509471 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Land area|Low,km2,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Land area|Low,km2,3125877.453,3125877.453,3125877.453,3125877.453,3125877.453,3125877.453,3125877.453,3125877.453,3125877.453,3125877.453 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Land area|Low,km2,77406.90051,77406.90051,77406.90051,77406.90051,77406.90051,77406.90051,77406.90051,77406.90051,77406.90051,77406.90051 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Land area|Low,km2,415899.6375,415899.6375,415899.6375,415899.6375,415899.6375,415899.6375,415899.6375,415899.6375,415899.6375,415899.6375 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Land area|Low,km2,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Land area|Low,km2,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Land area|Low,km2,417289.2735,417289.2735,417289.2735,417289.2735,417289.2735,417289.2735,417289.2735,417289.2735,417289.2735,417289.2735 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Land area|Low,km2,27931.20402,27931.20402,27931.20402,27931.20402,27931.20402,27931.20402,27931.20402,27931.20402,27931.20402,27931.20402 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Land area|Low,km2,142328.5059,142328.5059,142328.5059,142328.5059,142328.5059,142328.5059,142328.5059,142328.5059,142328.5059,142328.5059 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Land area|Low,km2,754229.4253,754229.4253,754229.4253,754229.4253,754229.4253,754229.4253,754229.4253,754229.4253,754229.4253,754229.4253 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Land area|Low,km2,630015.9533,630015.9533,630015.9533,630015.9533,630015.9533,630015.9533,630015.9533,630015.9533,630015.9533,630015.9533 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Land area|Low,km2,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Land area|Low,km2,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Land area|Low,km2,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Land area|Low,km2,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Land area|Low,km2,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Land area|Low,km2,406211.3701,406211.3701,406211.3701,406211.3701,406211.3701,406211.3701,406211.3701,406211.3701,406211.3701,406211.3701 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Land area|Low,km2,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Land area|Low,km2,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Land area|Low,km2,624392.8221,624392.8221,624392.8221,624392.8221,624392.8221,624392.8221,624392.8221,624392.8221,624392.8221,624392.8221 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Land area|Low,km2,218397.0245,218397.0245,218397.0245,218397.0245,218397.0245,218397.0245,218397.0245,218397.0245,218397.0245,218397.0245 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Land area|Low,km2,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Land area|Low,km2,266895.9173,266895.9173,266895.9173,266895.9173,266895.9173,266895.9173,266895.9173,266895.9173,266895.9173,266895.9173 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Land area|Low,km2,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Land area|Low,km2,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Land area|Low,km2,343603.6582,343603.6582,343603.6582,343603.6582,343603.6582,343603.6582,343603.6582,343603.6582,343603.6582,343603.6582 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Land area|Low,km2,11633.56512,11633.56512,11633.56512,11633.56512,11633.56512,11633.56512,11633.56512,11633.56512,11633.56512,11633.56512 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Land area|Low,km2,54276.74423,54276.74423,54276.74423,54276.74423,54276.74423,54276.74423,54276.74423,54276.74423,54276.74423,54276.74423 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Land area|Low,km2,8391890.738,8391890.738,8391890.738,8391890.738,8391890.738,8391890.738,8391890.738,8391890.738,8391890.738,8391890.738 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Land area|Low,km2,18309.32715,18309.32715,18309.32715,18309.32715,18309.32715,18309.32715,18309.32715,18309.32715,18309.32715,18309.32715 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Land area|Low,km2,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Land area|Low,km2,24291.46329,24291.46329,24291.46329,24291.46329,24291.46329,24291.46329,24291.46329,24291.46329,24291.46329,24291.46329 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Land area|Low,km2,105755.8266,105755.8266,105755.8266,105755.8266,105755.8266,105755.8266,105755.8266,105755.8266,105755.8266,105755.8266 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Land area|Low,km2,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Land area|Low,km2,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Land area|Low,km2,225625.9114,225625.9114,225625.9114,225625.9114,225625.9114,225625.9114,225625.9114,225625.9114,225625.9114,225625.9114 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Land area|Low,km2,608868.7194,608868.7194,608868.7194,608868.7194,608868.7194,608868.7194,608868.7194,608868.7194,608868.7194,608868.7194 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Land area|Low,km2,2777469.844,2777469.844,2777469.844,2777469.844,2777469.844,2777469.844,2777469.844,2777469.844,2777469.844,2777469.844 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Land area|Low,km2,290172.8138,290172.8138,290172.8138,290172.8138,290172.8138,290172.8138,290172.8138,290172.8138,290172.8138,290172.8138 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Land area|Low,km2,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Land area|Low,km2,1687177.489,1687177.489,1687177.489,1687177.489,1687177.489,1687177.489,1687177.489,1687177.489,1687177.489,1687177.489 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Land area|Low,km2,92638.53273,92638.53273,92638.53273,92638.53273,92638.53273,92638.53273,92638.53273,92638.53273,92638.53273,92638.53273 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Land area|Low,km2,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Land area|Low,km2,103255.074,103255.074,103255.074,103255.074,103255.074,103255.074,103255.074,103255.074,103255.074,103255.074 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Land area|Low,km2,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Land area|Low,km2,89179.22446,89179.22446,89179.22446,89179.22446,89179.22446,89179.22446,89179.22446,89179.22446,89179.22446,89179.22446 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Land area|Low,km2,1117687.526,1117687.526,1117687.526,1117687.526,1117687.526,1117687.526,1117687.526,1117687.526,1117687.526,1117687.526 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Land area|Low,km2,11558.01259,11558.01259,11558.01259,11558.01259,11558.01259,11558.01259,11558.01259,11558.01259,11558.01259,11558.01259 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Land area|Low,km2,766151.3909,766151.3909,766151.3909,766151.3909,766151.3909,766151.3909,766151.3909,766151.3909,766151.3909,766151.3909 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Land area|Low,km2,9123.140299,9123.140299,9123.140299,9123.140299,9123.140299,9123.140299,9123.140299,9123.140299,9123.140299,9123.140299 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Land area|Low,km2,94095.30103,94095.30103,94095.30103,94095.30103,94095.30103,94095.30103,94095.30103,94095.30103,94095.30103,94095.30103 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Land area|Low,km2,16567.84709,16567.84709,16567.84709,16567.84709,16567.84709,16567.84709,16567.84709,16567.84709,16567.84709,16567.84709 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Land area|Low,km2,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Land area|Low,km2,5893662.042,5893662.042,5893662.042,5893662.042,5893662.042,5893662.042,5893662.042,5893662.042,5893662.042,5893662.042 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Land area|Low,km2,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Land area|Low,km2,50398.19079,50398.19079,50398.19079,50398.19079,50398.19079,50398.19079,50398.19079,50398.19079,50398.19079,50398.19079 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Land area|Low,km2,84120.40426,84120.40426,84120.40426,84120.40426,84120.40426,84120.40426,84120.40426,84120.40426,84120.40426,84120.40426 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Land area|Low,km2,16174.79501,16174.79501,16174.79501,16174.79501,16174.79501,16174.79501,16174.79501,16174.79501,16174.79501,16174.79501 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Land area|Low,km2,1339.928081,1339.928081,1339.928081,1339.928081,1339.928081,1339.928081,1339.928081,1339.928081,1339.928081,1339.928081 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Land area|Low,km2,8339.799684,8339.799684,8339.799684,8339.799684,8339.799684,8339.799684,8339.799684,8339.799684,8339.799684,8339.799684 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Land area|Low,km2,891592.5813,891592.5813,891592.5813,891592.5813,891592.5813,891592.5813,891592.5813,891592.5813,891592.5813,891592.5813 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Land area|Low,km2,35914.92724,35914.92724,35914.92724,35914.92724,35914.92724,35914.92724,35914.92724,35914.92724,35914.92724,35914.92724 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Land area|Low,km2,7105086.828,7105086.828,7105086.828,7105086.828,7105086.828,7105086.828,7105086.828,7105086.828,7105086.828,7105086.828 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Land area|Low,km2,1617804.012,1617804.012,1617804.012,1617804.012,1617804.012,1617804.012,1617804.012,1617804.012,1617804.012,1617804.012 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Land area|Low,km2,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Land area|Low,km2,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Land area|Low,km2,568513.2316,568513.2316,568513.2316,568513.2316,568513.2316,568513.2316,568513.2316,568513.2316,568513.2316,568513.2316 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Land area|Low,km2,4271.734416,4271.734416,4271.734416,4271.734416,4271.734416,4271.734416,4271.734416,4271.734416,4271.734416,4271.734416 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Land area|Low,km2,2527.144841,2527.144841,2527.144841,2527.144841,2527.144841,2527.144841,2527.144841,2527.144841,2527.144841,2527.144841 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Land area|Low,km2,490450.7363,490450.7363,490450.7363,490450.7363,490450.7363,490450.7363,490450.7363,490450.7363,490450.7363,490450.7363 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Land area|Low,km2,3323.134325,3323.134325,3323.134325,3323.134325,3323.134325,3323.134325,3323.134325,3323.134325,3323.134325,3323.134325 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Land area|Low,km2,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Land area|Low,km2,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Land area|Low,km2,14582.61882,14582.61882,14582.61882,14582.61882,14582.61882,14582.61882,14582.61882,14582.61882,14582.61882,14582.61882 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Land area|Low,km2,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Land area|Low,km2,2891.388615,2891.388615,2891.388615,2891.388615,2891.388615,2891.388615,2891.388615,2891.388615,2891.388615,2891.388615 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Land area|Low,km2,18055.10698,18055.10698,18055.10698,18055.10698,18055.10698,18055.10698,18055.10698,18055.10698,18055.10698,18055.10698 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Land area|Low,km2,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Land area|Low,km2,14053.66109,14053.66109,14053.66109,14053.66109,14053.66109,14053.66109,14053.66109,14053.66109,14053.66109,14053.66109 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Land area|Low,km2,1547056.662,1547056.662,1547056.662,1547056.662,1547056.662,1547056.662,1547056.662,1547056.662,1547056.662,1547056.662 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Land area|Low,km2,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Land area|Low,km2,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Land area|Low,km2,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Land area|Low,km2,15549.91617,15549.91617,15549.91617,15549.91617,15549.91617,15549.91617,15549.91617,15549.91617,15549.91617,15549.91617 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Land area|Low,km2,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Land area|Low,km2,835.9042384,835.9042384,835.9042384,835.9042384,835.9042384,835.9042384,835.9042384,835.9042384,835.9042384,835.9042384 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Land area|Low,km2,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Land area|Low,km2,447353.7377,447353.7377,447353.7377,447353.7377,447353.7377,447353.7377,447353.7377,447353.7377,447353.7377,447353.7377 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Land area|Low,km2,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Land area|Low,km2,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Land area|Low,km2,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Land area|Low,km2,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Land area|Low,km2,387284.4955,387284.4955,387284.4955,387284.4955,387284.4955,387284.4955,387284.4955,387284.4955,387284.4955,387284.4955 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Land area|Low,km2,804.1086089,804.1086089,804.1086089,804.1086089,804.1086089,804.1086089,804.1086089,804.1086089,804.1086089,804.1086089 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Land area|Low,km2,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Land area|Low,km2,16932.38068,16932.38068,16932.38068,16932.38068,16932.38068,16932.38068,16932.38068,16932.38068,16932.38068,16932.38068 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Land area|Low,km2,79106.65055,79106.65055,79106.65055,79106.65055,79106.65055,79106.65055,79106.65055,79106.65055,79106.65055,79106.65055 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Land area|Low,km2,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Land area|Low,km2,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Land area|Low,km2,1225113.786,1225113.786,1225113.786,1225113.786,1225113.786,1225113.786,1225113.786,1225113.786,1225113.786,1225113.786 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Land area|Low,km2,195894.1812,195894.1812,195894.1812,195894.1812,195894.1812,195894.1812,195894.1812,195894.1812,195894.1812,195894.1812 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Land area|Low,km2,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Land area|Low,km2,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Land area|Low,km2,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Land area|Low,km2,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Land area|Low,km2,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Land area|Low,km2,23378.38564,23378.38564,23378.38564,23378.38564,23378.38564,23378.38564,23378.38564,23378.38564,23378.38564,23378.38564 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Land area|Low,km2,662898.8618,662898.8618,662898.8618,662898.8618,662898.8618,662898.8618,662898.8618,662898.8618,662898.8618,662898.8618 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Land area|Low,km2,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Land area|Low,km2,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Land area|Low,km2,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Land area|Low,km2,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Land area|Low,km2,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Land area|Low,km2,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Land area|Low,km2,390371.2723,390371.2723,390371.2723,390371.2723,390371.2723,390371.2723,390371.2723,390371.2723,390371.2723,390371.2723 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Land area|Low,km2,4662.702763,4662.702763,4662.702763,4662.702763,4662.702763,4662.702763,4662.702763,4662.702763,4662.702763,4662.702763 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Land area|Low,km2,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Land area|Low,km2,1532675.665,1532675.665,1532675.665,1532675.665,1532675.665,1532675.665,1532675.665,1532675.665,1532675.665,1532675.665 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Land area|Low,km2,72917.82228,72917.82228,72917.82228,72917.82228,72917.82228,72917.82228,72917.82228,72917.82228,72917.82228,72917.82228 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Land area|Low,km2,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Land area|Low,km2,2104.961499,2104.961499,2104.961499,2104.961499,2104.961499,2104.961499,2104.961499,2104.961499,2104.961499,2104.961499 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Land area|Low,km2,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Land area|Low,km2,4212.496731,4212.496731,4212.496731,4212.496731,4212.496731,4212.496731,4212.496731,4212.496731,4212.496731,4212.496731 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Land area|Low,km2,320771.3704,320771.3704,320771.3704,320771.3704,320771.3704,320771.3704,320771.3704,320771.3704,320771.3704,320771.3704 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Land area|Low,km2,100281.2813,100281.2813,100281.2813,100281.2813,100281.2813,100281.2813,100281.2813,100281.2813,100281.2813,100281.2813 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Land area|Low,km2,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Land area|Low,km2,84282.27105,84282.27105,84282.27105,84282.27105,84282.27105,84282.27105,84282.27105,84282.27105,84282.27105,84282.27105 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Land area|Low,km2,658146.414,658146.414,658146.414,658146.414,658146.414,658146.414,658146.414,658146.414,658146.414,658146.414 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Land area|Low,km2,1843096.126,1843096.126,1843096.126,1843096.126,1843096.126,1843096.126,1843096.126,1843096.126,1843096.126,1843096.126 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Land area|Low,km2,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Land area|Low,km2,50867.81722,50867.81722,50867.81722,50867.81722,50867.81722,50867.81722,50867.81722,50867.81722,50867.81722,50867.81722 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Land area|Low,km2,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Land area|Low,km2,35322.75521,35322.75521,35322.75521,35322.75521,35322.75521,35322.75521,35322.75521,35322.75521,35322.75521,35322.75521 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Land area|Low,km2,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Land area|Low,km2,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Land area|Low,km2,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Land area|Low,km2,6140.683264,6140.683264,6140.683264,6140.683264,6140.683264,6140.683264,6140.683264,6140.683264,6140.683264,6140.683264 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Land area|Low,km2,391.969328,391.969328,391.969328,391.969328,391.969328,391.969328,391.969328,391.969328,391.969328,391.969328 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Land area|Low,km2,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Land area|Low,km2,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Land area|Low,km2,234.4352309,234.4352309,234.4352309,234.4352309,234.4352309,234.4352309,234.4352309,234.4352309,234.4352309,234.4352309 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Land area|Low|%,%,9.282154944,9.282154944,9.282154944,9.282154944,9.282154944,9.282154944,9.282154944,9.282154944,9.282154944,9.282154944 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Land area|Low|%,%,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Land area|Low|%,%,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Land area|Low|%,%,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Land area|Low|%,%,85.36152152,85.36152152,85.36152152,85.36152152,85.36152152,85.36152152,85.36152152,85.36152152,85.36152152,85.36152152 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Land area|Low|%,%,76.82264219,76.82264219,76.82264219,76.82264219,76.82264219,76.82264219,76.82264219,76.82264219,76.82264219,76.82264219 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Land area|Low|%,%,94.76146444,94.76146444,94.76146444,94.76146444,94.76146444,94.76146444,94.76146444,94.76146444,94.76146444,94.76146444 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Land area|Low|%,%,13.11760578,13.11760578,13.11760578,13.11760578,13.11760578,13.11760578,13.11760578,13.11760578,13.11760578,13.11760578 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Land area|Low|%,%,60.80455693,60.80455693,60.80455693,60.80455693,60.80455693,60.80455693,60.80455693,60.80455693,60.80455693,60.80455693 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Land area|Low|%,%,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Land area|Low|%,%,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Land area|Low|%,%,59.68952599,59.68952599,59.68952599,59.68952599,59.68952599,59.68952599,59.68952599,59.68952599,59.68952599,59.68952599 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Land area|Low|%,%,39.52967694,39.52967694,39.52967694,39.52967694,39.52967694,39.52967694,39.52967694,39.52967694,39.52967694,39.52967694 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Land area|Low|%,%,50.69261547,50.69261547,50.69261547,50.69261547,50.69261547,50.69261547,50.69261547,50.69261547,50.69261547,50.69261547 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Land area|Low|%,%,97.13272452,97.13272452,97.13272452,97.13272452,97.13272452,97.13272452,97.13272452,97.13272452,97.13272452,97.13272452 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Land area|Low|%,%,79.42202708,79.42202708,79.42202708,79.42202708,79.42202708,79.42202708,79.42202708,79.42202708,79.42202708,79.42202708 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Land area|Low|%,%,18.95648578,18.95648578,18.95648578,18.95648578,18.95648578,18.95648578,18.95648578,18.95648578,18.95648578,18.95648578 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Land area|Low|%,%,22.05657308,22.05657308,22.05657308,22.05657308,22.05657308,22.05657308,22.05657308,22.05657308,22.05657308,22.05657308 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Land area|Low|%,%,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Land area|Low|%,%,87.60868088,87.60868088,87.60868088,87.60868088,87.60868088,87.60868088,87.60868088,87.60868088,87.60868088,87.60868088 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Land area|Low|%,%,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Land area|Low|%,%,69.16693938,69.16693938,69.16693938,69.16693938,69.16693938,69.16693938,69.16693938,69.16693938,69.16693938,69.16693938 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Land area|Low|%,%,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Land area|Low|%,%,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Land area|Low|%,%,98.30601144,98.30601144,98.30601144,98.30601144,98.30601144,98.30601144,98.30601144,98.30601144,98.30601144,98.30601144 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Land area|Low|%,%,0.425557443,0.425557443,0.425557443,0.425557443,0.425557443,0.425557443,0.425557443,0.425557443,0.425557443,0.425557443 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Land area|Low|%,%,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Land area|Low|%,%,99.94814137,99.94814137,99.94814137,99.94814137,99.94814137,99.94814137,99.94814137,99.94814137,99.94814137,99.94814137 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Land area|Low|%,%,91.20962264,91.20962264,91.20962264,91.20962264,91.20962264,91.20962264,91.20962264,91.20962264,91.20962264,91.20962264 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Land area|Low|%,%,70.72043525,70.72043525,70.72043525,70.72043525,70.72043525,70.72043525,70.72043525,70.72043525,70.72043525,70.72043525 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Land area|Low|%,%,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Land area|Low|%,%,71.49920827,71.49920827,71.49920827,71.49920827,71.49920827,71.49920827,71.49920827,71.49920827,71.49920827,71.49920827 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Land area|Low|%,%,29.0125632,29.0125632,29.0125632,29.0125632,29.0125632,29.0125632,29.0125632,29.0125632,29.0125632,29.0125632 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Land area|Low|%,%,96.77962659,96.77962659,96.77962659,96.77962659,96.77962659,96.77962659,96.77962659,96.77962659,96.77962659,96.77962659 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Land area|Low|%,%,98.3592587,98.3592587,98.3592587,98.3592587,98.3592587,98.3592587,98.3592587,98.3592587,98.3592587,98.3592587 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Land area|Low|%,%,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Land area|Low|%,%,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Land area|Low|%,%,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Land area|Low|%,%,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Land area|Low|%,%,74.08255144,74.08255144,74.08255144,74.08255144,74.08255144,74.08255144,74.08255144,74.08255144,74.08255144,74.08255144 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Land area|Low|%,%,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Land area|Low|%,%,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Land area|Low|%,%,48.34701397,48.34701397,48.34701397,48.34701397,48.34701397,48.34701397,48.34701397,48.34701397,48.34701397,48.34701397 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Land area|Low|%,%,95.07699149,95.07699149,95.07699149,95.07699149,95.07699149,95.07699149,95.07699149,95.07699149,95.07699149,95.07699149 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Land area|Low|%,%,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Land area|Low|%,%,83.18866013,83.18866013,83.18866013,83.18866013,83.18866013,83.18866013,83.18866013,83.18866013,83.18866013,83.18866013 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Land area|Low|%,%,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Land area|Low|%,%,73.83365477,73.83365477,73.83365477,73.83365477,73.83365477,73.83365477,73.83365477,73.83365477,73.83365477,73.83365477 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Land area|Low|%,%,84.50455921,84.50455921,84.50455921,84.50455921,84.50455921,84.50455921,84.50455921,84.50455921,84.50455921,84.50455921 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Land area|Low|%,%,95.22674774,95.22674774,95.22674774,95.22674774,95.22674774,95.22674774,95.22674774,95.22674774,95.22674774,95.22674774 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Land area|Low|%,%,89.63764826,89.63764826,89.63764826,89.63764826,89.63764826,89.63764826,89.63764826,89.63764826,89.63764826,89.63764826 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Land area|Low|%,%,62.45530581,62.45530581,62.45530581,62.45530581,62.45530581,62.45530581,62.45530581,62.45530581,62.45530581,62.45530581 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Land area|Low|%,%,50.0610785,50.0610785,50.0610785,50.0610785,50.0610785,50.0610785,50.0610785,50.0610785,50.0610785,50.0610785 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Land area|Low|%,%,17.66478192,17.66478192,17.66478192,17.66478192,17.66478192,17.66478192,17.66478192,17.66478192,17.66478192,17.66478192 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Land area|Low|%,%,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Land area|Low|%,%,12.07712622,12.07712622,12.07712622,12.07712622,12.07712622,12.07712622,12.07712622,12.07712622,12.07712622,12.07712622 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Land area|Low|%,%,98.28400585,98.28400585,98.28400585,98.28400585,98.28400585,98.28400585,98.28400585,98.28400585,98.28400585,98.28400585 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Land area|Low|%,%,29.94541399,29.94541399,29.94541399,29.94541399,29.94541399,29.94541399,29.94541399,29.94541399,29.94541399,29.94541399 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Land area|Low|%,%,88.76180567,88.76180567,88.76180567,88.76180567,88.76180567,88.76180567,88.76180567,88.76180567,88.76180567,88.76180567 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Land area|Low|%,%,9.995735627,9.995735627,9.995735627,9.995735627,9.995735627,9.995735627,9.995735627,9.995735627,9.995735627,9.995735627 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Land area|Low|%,%,83.02028209,83.02028209,83.02028209,83.02028209,83.02028209,83.02028209,83.02028209,83.02028209,83.02028209,83.02028209 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Land area|Low|%,%,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Land area|Low|%,%,43.45682044,43.45682044,43.45682044,43.45682044,43.45682044,43.45682044,43.45682044,43.45682044,43.45682044,43.45682044 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Land area|Low|%,%,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Land area|Low|%,%,98.37283138,98.37283138,98.37283138,98.37283138,98.37283138,98.37283138,98.37283138,98.37283138,98.37283138,98.37283138 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Land area|Low|%,%,91.57865065,91.57865065,91.57865065,91.57865065,91.57865065,91.57865065,91.57865065,91.57865065,91.57865065,91.57865065 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Land area|Low|%,%,3.508409547,3.508409547,3.508409547,3.508409547,3.508409547,3.508409547,3.508409547,3.508409547,3.508409547,3.508409547 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Land area|Low|%,%,97.39651926,97.39651926,97.39651926,97.39651926,97.39651926,97.39651926,97.39651926,97.39651926,97.39651926,97.39651926 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Land area|Low|%,%,3.814752733,3.814752733,3.814752733,3.814752733,3.814752733,3.814752733,3.814752733,3.814752733,3.814752733,3.814752733 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Land area|Low|%,%,47.46030132,47.46030132,47.46030132,47.46030132,47.46030132,47.46030132,47.46030132,47.46030132,47.46030132,47.46030132 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Land area|Low|%,%,17.7507171,17.7507171,17.7507171,17.7507171,17.7507171,17.7507171,17.7507171,17.7507171,17.7507171,17.7507171 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Land area|Low|%,%,69.50318524,69.50318524,69.50318524,69.50318524,69.50318524,69.50318524,69.50318524,69.50318524,69.50318524,69.50318524 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Land area|Low|%,%,67.66281742,67.66281742,67.66281742,67.66281742,67.66281742,67.66281742,67.66281742,67.66281742,67.66281742,67.66281742 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Land area|Low|%,%,39.79068852,39.79068852,39.79068852,39.79068852,39.79068852,39.79068852,39.79068852,39.79068852,39.79068852,39.79068852 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Land area|Low|%,%,31.3291989,31.3291989,31.3291989,31.3291989,31.3291989,31.3291989,31.3291989,31.3291989,31.3291989,31.3291989 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Land area|Low|%,%,50.85448684,50.85448684,50.85448684,50.85448684,50.85448684,50.85448684,50.85448684,50.85448684,50.85448684,50.85448684 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Land area|Low|%,%,12.06459403,12.06459403,12.06459403,12.06459403,12.06459403,12.06459403,12.06459403,12.06459403,12.06459403,12.06459403 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Land area|Low|%,%,98.12982051,98.12982051,98.12982051,98.12982051,98.12982051,98.12982051,98.12982051,98.12982051,98.12982051,98.12982051 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Land area|Low|%,%,14.10778615,14.10778615,14.10778615,14.10778615,14.10778615,14.10778615,14.10778615,14.10778615,14.10778615,14.10778615 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Land area|Low|%,%,92.53254844,92.53254844,92.53254844,92.53254844,92.53254844,92.53254844,92.53254844,92.53254844,92.53254844,92.53254844 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Land area|Low|%,%,99.94418955,99.94418955,99.94418955,99.94418955,99.94418955,99.94418955,99.94418955,99.94418955,99.94418955,99.94418955 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Land area|Low|%,%,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Land area|Low|%,%,77.53153157,77.53153157,77.53153157,77.53153157,77.53153157,77.53153157,77.53153157,77.53153157,77.53153157,77.53153157 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Land area|Low|%,%,48.9901976,48.9901976,48.9901976,48.9901976,48.9901976,48.9901976,48.9901976,48.9901976,48.9901976,48.9901976 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Land area|Low|%,%,8.314320774,8.314320774,8.314320774,8.314320774,8.314320774,8.314320774,8.314320774,8.314320774,8.314320774,8.314320774 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Land area|Low|%,%,95.40108891,95.40108891,95.40108891,95.40108891,95.40108891,95.40108891,95.40108891,95.40108891,95.40108891,95.40108891 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Land area|Low|%,%,12.88534358,12.88534358,12.88534358,12.88534358,12.88534358,12.88534358,12.88534358,12.88534358,12.88534358,12.88534358 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Land area|Low|%,%,20.87269627,20.87269627,20.87269627,20.87269627,20.87269627,20.87269627,20.87269627,20.87269627,20.87269627,20.87269627 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Land area|Low|%,%,6.597584766,6.597584766,6.597584766,6.597584766,6.597584766,6.597584766,6.597584766,6.597584766,6.597584766,6.597584766 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Land area|Low|%,%,54.20755834,54.20755834,54.20755834,54.20755834,54.20755834,54.20755834,54.20755834,54.20755834,54.20755834,54.20755834 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Land area|Low|%,%,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Land area|Low|%,%,25.75201682,25.75201682,25.75201682,25.75201682,25.75201682,25.75201682,25.75201682,25.75201682,25.75201682,25.75201682 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Land area|Low|%,%,99.10465316,99.10465316,99.10465316,99.10465316,99.10465316,99.10465316,99.10465316,99.10465316,99.10465316,99.10465316 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Land area|Low|%,%,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Land area|Low|%,%,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Land area|Low|%,%,70.55152047,70.55152047,70.55152047,70.55152047,70.55152047,70.55152047,70.55152047,70.55152047,70.55152047,70.55152047 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Land area|Low|%,%,2.979228227,2.979228227,2.979228227,2.979228227,2.979228227,2.979228227,2.979228227,2.979228227,2.979228227,2.979228227 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Land area|Low|%,%,99.8533526,99.8533526,99.8533526,99.8533526,99.8533526,99.8533526,99.8533526,99.8533526,99.8533526,99.8533526 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Land area|Low|%,%,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Land area|Low|%,%,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Land area|Low|%,%,34.03587423,34.03587423,34.03587423,34.03587423,34.03587423,34.03587423,34.03587423,34.03587423,34.03587423,34.03587423 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Land area|Low|%,%,32.15834336,32.15834336,32.15834336,32.15834336,32.15834336,32.15834336,32.15834336,32.15834336,32.15834336,32.15834336 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Land area|Low|%,%,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Land area|Low|%,%,47.00552263,47.00552263,47.00552263,47.00552263,47.00552263,47.00552263,47.00552263,47.00552263,47.00552263,47.00552263 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Land area|Low|%,%,61.41001838,61.41001838,61.41001838,61.41001838,61.41001838,61.41001838,61.41001838,61.41001838,61.41001838,61.41001838 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Land area|Low|%,%,52.64829386,52.64829386,52.64829386,52.64829386,52.64829386,52.64829386,52.64829386,52.64829386,52.64829386,52.64829386 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Land area|Low|%,%,64.98717532,64.98717532,64.98717532,64.98717532,64.98717532,64.98717532,64.98717532,64.98717532,64.98717532,64.98717532 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Land area|Low|%,%,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Land area|Low|%,%,49.99253749,49.99253749,49.99253749,49.99253749,49.99253749,49.99253749,49.99253749,49.99253749,49.99253749,49.99253749 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Land area|Low|%,%,16.21569614,16.21569614,16.21569614,16.21569614,16.21569614,16.21569614,16.21569614,16.21569614,16.21569614,16.21569614 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Land area|Low|%,%,72.77529581,72.77529581,72.77529581,72.77529581,72.77529581,72.77529581,72.77529581,72.77529581,72.77529581,72.77529581 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Land area|Low|%,%,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Land area|Low|%,%,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Land area|Low|%,%,1.315937253,1.315937253,1.315937253,1.315937253,1.315937253,1.315937253,1.315937253,1.315937253,1.315937253,1.315937253 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Land area|Low|%,%,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Land area|Low|%,%,56.27325661,56.27325661,56.27325661,56.27325661,56.27325661,56.27325661,56.27325661,56.27325661,56.27325661,56.27325661 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Land area|Low|%,%,24.94554901,24.94554901,24.94554901,24.94554901,24.94554901,24.94554901,24.94554901,24.94554901,24.94554901,24.94554901 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Land area|Low|%,%,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Land area|Low|%,%,11.58543507,11.58543507,11.58543507,11.58543507,11.58543507,11.58543507,11.58543507,11.58543507,11.58543507,11.58543507 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Land area|Low|%,%,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Land area|Low|%,%,3.465077917,3.465077917,3.465077917,3.465077917,3.465077917,3.465077917,3.465077917,3.465077917,3.465077917,3.465077917 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Land area|Low|%,%,80.51541236,80.51541236,80.51541236,80.51541236,80.51541236,80.51541236,80.51541236,80.51541236,80.51541236,80.51541236 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Land area|Low|%,%,27.10427559,27.10427559,27.10427559,27.10427559,27.10427559,27.10427559,27.10427559,27.10427559,27.10427559,27.10427559 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Land area|Low|%,%,74.98735749,74.98735749,74.98735749,74.98735749,74.98735749,74.98735749,74.98735749,74.98735749,74.98735749,74.98735749 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Land area|Low|%,%,99.18209999,99.18209999,99.18209999,99.18209999,99.18209999,99.18209999,99.18209999,99.18209999,99.18209999,99.18209999 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Land area|Low|%,%,94.2625504,94.2625504,94.2625504,94.2625504,94.2625504,94.2625504,94.2625504,94.2625504,94.2625504,94.2625504 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Land area|Low|%,%,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Land area|Low|%,%,57.80052068,57.80052068,57.80052068,57.80052068,57.80052068,57.80052068,57.80052068,57.80052068,57.80052068,57.80052068 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Land area|Low|%,%,14.64544372,14.64544372,14.64544372,14.64544372,14.64544372,14.64544372,14.64544372,14.64544372,14.64544372,14.64544372 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Land area|Low|%,%,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Land area|Low|%,%,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Land area|Low|%,%,7.38675333,7.38675333,7.38675333,7.38675333,7.38675333,7.38675333,7.38675333,7.38675333,7.38675333,7.38675333 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Land area|Low|%,%,25.02094082,25.02094082,25.02094082,25.02094082,25.02094082,25.02094082,25.02094082,25.02094082,25.02094082,25.02094082 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Land area|Low|%,%,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Risk score|Population weighted,risk score,0.589579706,0.589589511,0.589723054,0.589919013,0.590136587,0.59031205,0.590551032,0.590840155,0.591129456,0.591476039 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Risk score|Population weighted,risk score,1.007540548,1.007635741,1.0077261,1.007810633,1.007884841,1.007947918,1.008001987,1.008047962,1.008086746,1.008121246 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Risk score|Population weighted,risk score,2.2919853,2.293827957,2.296273406,2.298939204,2.301596374,2.304535033,2.307544292,2.310641393,2.313600305,2.315978445 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Risk score|Population weighted,risk score,0.424730977,0.424473251,0.424232846,0.424034842,0.423860622,0.423708854,0.423573148,0.423436358,0.423300583,0.423165847 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Risk score|Population weighted,risk score,2.010527674,2.010399672,2.010567369,2.011049908,2.011791637,2.012742204,2.0138477,2.015053198,2.016303374,2.017528312 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Risk score|Population weighted,risk score,1.443835055,1.444152441,1.444264711,1.444388902,1.444405553,1.444372628,1.44434173,1.444305319,1.444257122,1.444202594 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Risk score|Population weighted,risk score,1.515122142,1.516040022,1.516927906,1.517634185,1.518018165,1.51819947,1.518230748,1.518092992,1.517845925,1.51753061 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Risk score|Population weighted,risk score,2.49343488,2.493676071,2.494334313,2.495236045,2.496315716,2.497475484,2.498613389,2.499651892,2.500565286,2.501349268 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Risk score|Population weighted,risk score,1.044678943,1.04164597,1.038902418,1.036696986,1.034848148,1.033363366,1.032191019,1.031241277,1.030564053,1.029987634 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Risk score|Population weighted,risk score,1.506684915,1.507839441,1.50850721,1.508808637,1.509038919,1.509102734,1.50900981,1.508858889,1.508754755,1.50863692 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Risk score|Population weighted,risk score,0.43956194,0.438645569,0.437985449,0.437727805,0.437486568,0.437382107,0.437123165,0.437123449,0.43711209,0.436985964 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Risk score|Population weighted,risk score,2.409776897,2.409151273,2.408908345,2.408873979,2.408974348,2.409131386,2.409277834,2.409420148,2.409554626,2.409681912 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Risk score|Population weighted,risk score,1.045616904,1.048451776,1.050294931,1.051440481,1.051954691,1.052040536,1.05184063,1.05144812,1.050930516,1.050324792 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Risk score|Population weighted,risk score,2.658214305,2.659649496,2.660165319,2.660468821,2.660612124,2.660695792,2.660576646,2.660340378,2.660074287,2.659798505 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Risk score|Population weighted,risk score,1.864788655,1.865592783,1.866292491,1.866877277,1.867357989,1.867697835,1.867955985,1.868186419,1.868377386,1.868539885 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Risk score|Population weighted,risk score,0.56224002,0.560560559,0.55907875,0.557689355,0.556434993,0.555349551,0.554301324,0.553192725,0.552087033,0.551128749 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Risk score|Population weighted,risk score,1.557720695,1.557842784,1.559308088,1.561540993,1.564338283,1.567385699,1.570425103,1.573431627,1.576370553,1.579209168 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Risk score|Population weighted,risk score,0.981010191,0.980917768,0.98075572,0.98055709,0.980329065,0.980085206,0.979867058,0.979699819,0.979583169,0.979538289 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Risk score|Population weighted,risk score,2.127422882,2.126138376,2.125059206,2.124041165,2.123027693,2.122064102,2.121374709,2.120953389,2.120807727,2.120921276 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Risk score|Population weighted,risk score,2.591204093,2.591636606,2.59196975,2.592169059,2.592222226,2.592181309,2.591941954,2.591549529,2.591069139,2.590474712 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Risk score|Population weighted,risk score,1.982383337,1.980231812,1.979474903,1.979148182,1.979440239,1.98026927,1.981161937,1.98219587,1.983495789,1.984752121 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Risk score|Population weighted,risk score,2.014963686,2.012832479,2.010078822,2.007596692,2.005226267,2.002736996,2.000223981,1.99799796,1.996095474,1.994476837 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Risk score|Population weighted,risk score,1.248267313,1.244373735,1.241789181,1.239945893,1.238513645,1.237425531,1.236632831,1.236065497,1.235721104,1.235601889 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Risk score|Population weighted,risk score,0.827997885,0.827777458,0.82758318,0.82733564,0.827077599,0.826893096,0.826791144,0.826742509,0.826731343,0.826755696 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Risk score|Population weighted,risk score,0.838443256,0.838391067,0.838371298,0.838381049,0.838409345,0.838443293,0.838471085,0.838492291,0.838508735,0.83852471 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Risk score|Population weighted,risk score,2.513542138,2.518081622,2.519521002,2.520604123,2.521091185,2.521464121,2.521446053,2.521055812,2.520488668,2.519672402 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Risk score|Population weighted,risk score,1.691689493,1.696488963,1.6999054,1.702240938,1.703726584,1.704556449,1.705078208,1.705379962,1.705573887,1.705615169 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Risk score|Population weighted,risk score,1.244699567,1.244807821,1.244834759,1.244827699,1.244805034,1.244758051,1.244719163,1.24469225,1.244674668,1.244686246 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Risk score|Population weighted,risk score,1.242098654,1.239663311,1.238400119,1.238116396,1.23769509,1.237055626,1.236220388,1.235224176,1.234259698,1.233925287 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Risk score|Population weighted,risk score,0.424062924,0.424182676,0.42425808,0.424356937,0.424413273,0.424467301,0.424509863,0.424562838,0.424607751,0.424659755 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Risk score|Population weighted,risk score,2.239766266,2.241614617,2.242959063,2.243994727,2.244706457,2.245229594,2.245598563,2.245842934,2.245999405,2.246082562 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Risk score|Population weighted,risk score,1.942136119,1.946252673,1.949268013,1.951492092,1.953470523,1.955155212,1.956607132,1.957882167,1.958982399,1.959907467 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Risk score|Population weighted,risk score,0.373110964,0.373146021,0.373284191,0.373570925,0.37398448,0.374523987,0.375039149,0.375511945,0.375931263,0.376282467 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Risk score|Population weighted,risk score,0.637219895,0.637392003,0.637642981,0.637939514,0.638159129,0.638342751,0.63853981,0.638716091,0.638837184,0.638910879 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Risk score|Population weighted,risk score,2.753706761,2.755598478,2.756098964,2.756275726,2.756272932,2.75614861,2.755873582,2.755553045,2.755285917,2.75505532 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Risk score|Population weighted,risk score,0.571388688,0.57209968,0.572360818,0.57250696,0.572595625,0.572649154,0.572678496,0.572694949,0.572707248,0.572717005 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Risk score|Population weighted,risk score,2.1668062,2.167227257,2.167569039,2.167971461,2.1684022,2.168844085,2.16927438,2.169674398,2.170034003,2.170346798 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Risk score|Population weighted,risk score,1.753350969,1.758870107,1.763772926,1.767829364,1.771313417,1.774295988,1.776797223,1.778725697,1.780254015,1.781479657 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Risk score|Population weighted,risk score,1.348047395,1.346519566,1.345941611,1.345950608,1.346323064,1.346911751,1.34766676,1.348527193,1.349456287,1.350401381 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Risk score|Population weighted,risk score,1.666431901,1.667047051,1.667686764,1.668286163,1.668874159,1.669368269,1.669859729,1.670396156,1.670917554,1.671464696 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Risk score|Population weighted,risk score,3.295064526,3.298187975,3.300869984,3.303141552,3.305040775,3.306613201,3.307899819,3.308962116,3.309850459,3.310603199 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Risk score|Population weighted,risk score,0.784344068,0.784467359,0.784276718,0.783874655,0.783340228,0.782726081,0.782120979,0.781519623,0.780956164,0.780414345 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Risk score|Population weighted,risk score,0.928127391,0.928440859,0.928810773,0.929251241,0.929608282,0.92989338,0.930122659,0.930309708,0.930483986,0.930638548 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Risk score|Population weighted,risk score,0.513948501,0.512256179,0.510684033,0.509307183,0.508126552,0.507126846,0.506254088,0.505489533,0.504829091,0.504260705 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Risk score|Population weighted,risk score,2.017991002,2.023434786,2.02884867,2.034379889,2.039677036,2.04485504,2.049714259,2.054137393,2.058029445,2.061095502 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Risk score|Population weighted,risk score,1.846986781,1.848698476,1.850128718,1.851276702,1.852166132,1.852869363,1.853395029,1.853765532,1.854027183,1.85419406 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Risk score|Population weighted,risk score,1.915736922,1.924553806,1.931566202,1.93685861,1.940619612,1.943330814,1.945283497,1.946864728,1.948211209,1.94936314 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Risk score|Population weighted,risk score,2.164930132,2.164937361,2.164849636,2.164637651,2.164336708,2.163980538,2.163611705,2.163258021,2.162936157,2.1626752 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Risk score|Population weighted,risk score,3.058794223,3.057397187,3.05652698,3.05587885,3.05548717,3.05510107,3.054962553,3.054924959,3.054940964,3.055001029 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Risk score|Population weighted,risk score,0.426759084,0.425553763,0.424696591,0.424091096,0.423700925,0.423383359,0.423085741,0.422831915,0.422609302,0.422434682 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Risk score|Population weighted,risk score,0.450726583,0.435586737,0.425389419,0.418153633,0.413303956,0.411526849,0.413771121,0.420131076,0.428357055,0.436744737 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Risk score|Population weighted,risk score,2.165448501,2.165934859,2.166525598,2.167201288,2.167849731,2.168515446,2.169267676,2.170082656,2.170799945,2.171427104 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Risk score|Population weighted,risk score,0.324673042,0.325038397,0.325379876,0.325666733,0.325927755,0.326138236,0.326310478,0.326443412,0.326562736,0.32665558 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Risk score|Population weighted,risk score,1.229880559,1.229897644,1.22998635,1.230095141,1.230160616,1.230263106,1.230469916,1.230721087,1.230957674,1.231193425 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Risk score|Population weighted,risk score,2.796722324,2.797386918,2.797210931,2.796940273,2.79622842,2.795325535,2.794538952,2.793526907,2.792525683,2.791672913 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Risk score|Population weighted,risk score,1.943937934,1.944280588,1.944619796,1.944784465,1.945008159,1.945194987,1.945329919,1.945374706,1.945377613,1.945346831 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Risk score|Population weighted,risk score,1.881604772,1.895287964,1.908958616,1.922251789,1.934976215,1.946730048,1.956778054,1.965473578,1.972935732,1.979310836 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Risk score|Population weighted,risk score,1.651741225,1.651878136,1.652531723,1.653360785,1.654260503,1.655355115,1.656411672,1.657406092,1.658284824,1.658891039 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Risk score|Population weighted,risk score,0.569810225,0.570132177,0.570256482,0.570380067,0.570380067,0.570382039,0.570380463,0.570380423,0.570377508,0.570378891 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Risk score|Population weighted,risk score,0.413085296,0.413726576,0.414227866,0.414615946,0.414941352,0.415208049,0.415437911,0.415631029,0.415793872,0.41593193 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Risk score|Population weighted,risk score,1.22705562,1.229385488,1.231097854,1.232339891,1.233167417,1.233687909,1.234055697,1.234290208,1.234473386,1.234583389 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Risk score|Population weighted,risk score,1.814379692,1.816994966,1.818750966,1.82001733,1.82099062,1.821666223,1.822148762,1.822482308,1.822667317,1.822739508 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Risk score|Population weighted,risk score,2.83039992,2.832621867,2.833570254,2.835772199,2.836397405,2.838963684,2.839167323,2.840849074,2.84233215,2.843507271 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Risk score|Population weighted,risk score,0.659930246,0.660061257,0.660183754,0.660285681,0.660369338,0.660439302,0.660497795,0.660548079,0.660590338,0.660625625 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Risk score|Population weighted,risk score,1.649767679,1.655148209,1.660718407,1.666062204,1.671307666,1.67584599,1.680013603,1.683824243,1.687424772,1.69079339 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Risk score|Population weighted,risk score,1.196596754,1.197805026,1.198503758,1.19893749,1.199295699,1.199573882,1.199922748,1.200178431,1.200325934,1.200496992 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Risk score|Population weighted,risk score,1.621692123,1.623862313,1.625222364,1.625872137,1.626100724,1.626032256,1.625703427,1.625194125,1.624528693,1.623768467 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Risk score|Population weighted,risk score,1.304707731,1.305509684,1.306356116,1.307227287,1.308125456,1.308844579,1.309423477,1.309891753,1.310278524,1.310589354 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Risk score|Population weighted,risk score,1.30675475,1.313855912,1.320864023,1.327075012,1.332249405,1.336551862,1.340064291,1.342909498,1.345269006,1.347318979 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Risk score|Population weighted,risk score,2.082017781,2.08202457,2.08202834,2.082030188,2.082033314,2.082033486,2.082033622,2.082033622,2.082035147,2.082033239 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Risk score|Population weighted,risk score,0.966481713,0.966019491,0.96555964,0.965099554,0.964644919,0.964191029,0.963752908,0.963336603,0.962974025,0.962660923 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Risk score|Population weighted,risk score,0.834129622,0.83510379,0.835935441,0.836608116,0.837159869,0.83762454,0.838073839,0.838480656,0.838859932,0.839223019 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Risk score|Population weighted,risk score,2.686963503,2.687165111,2.687300462,2.687405222,2.687483337,2.687540224,2.687577833,2.68759901,2.687608748,2.68761421 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Risk score|Population weighted,risk score,0.702230054,0.70300817,0.703859583,0.704742138,0.705585616,0.706383752,0.70707356,0.707716175,0.708264525,0.708730729 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Risk score|Population weighted,risk score,0.427346675,0.427553164,0.427738052,0.427900939,0.428037729,0.428163027,0.428275348,0.428373094,0.428456629,0.428527415 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Risk score|Population weighted,risk score,2.746842547,2.74746084,2.747675145,2.747699115,2.748015016,2.747524289,2.747453055,2.747302052,2.747476403,2.747192946 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Risk score|Population weighted,risk score,0.872616704,0.873906593,0.875317084,0.876747271,0.878179268,0.879573653,0.880911834,0.882055161,0.88303695,0.883891928 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Risk score|Population weighted,risk score,1.633547427,1.634970586,1.636231802,1.63751788,1.63834799,1.638935331,1.639349507,1.639941447,1.640472423,1.640869874 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Risk score|Population weighted,risk score,0.893415299,0.895778575,0.897993631,0.900139131,0.902129252,0.903819507,0.905305814,0.906655793,0.907882448,0.908945359 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Risk score|Population weighted,risk score,0.441136383,0.441172572,0.441216646,0.441241673,0.441271546,0.441285796,0.441308225,0.441329544,0.441351627,0.441381946 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Risk score|Population weighted,risk score,1.511398998,1.512224548,1.513842095,1.515999191,1.518592901,1.521467572,1.524443905,1.527392701,1.530011724,1.532329709 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Risk score|Population weighted,risk score,2.581128849,2.581374569,2.581524071,2.5816652,2.581721247,2.582032315,2.582034828,2.582215489,2.582329081,2.582283622 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Risk score|Population weighted,risk score,0.626116993,0.624157151,0.622328324,0.620692113,0.619225469,0.617902077,0.616716258,0.615660066,0.614734235,0.613929051 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Risk score|Population weighted,risk score,1.185311029,1.185160162,1.184962492,1.184793612,1.184662303,1.184537496,1.184471851,1.184459236,1.1844707,1.184494161 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Risk score|Population weighted,risk score,1.159943716,1.15701486,1.15442428,1.152338918,1.150763084,1.149590735,1.148788031,1.148316811,1.148002346,1.14773268 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Risk score|Population weighted,risk score,1.013507706,1.014252965,1.014987641,1.015698978,1.016366375,1.017054442,1.017730535,1.018318376,1.018771106,1.019077464 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Risk score|Population weighted,risk score,2.428486644,2.427285998,2.426289683,2.425607701,2.425195971,2.424956418,2.424717895,2.424590578,2.4244199,2.424266203 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Risk score|Population weighted,risk score,2.208771109,2.209334446,2.209740133,2.210087457,2.210375752,2.210591443,2.210765331,2.210918693,2.211049001,2.211155857 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Risk score|Population weighted,risk score,1.814564599,1.817712682,1.820857337,1.823990794,1.826982109,1.829819337,1.832527732,1.835150708,1.837368781,1.839211258 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Risk score|Population weighted,risk score,0.481962654,0.482552808,0.48317597,0.483772672,0.484361416,0.484932043,0.48541654,0.485800805,0.486105093,0.486350247 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Risk score|Population weighted,risk score,0.344886565,0.345265051,0.345718211,0.346222482,0.346755457,0.347281631,0.347760058,0.348187841,0.348562262,0.348853835 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Risk score|Population weighted,risk score,0.518862227,0.518194614,0.517341827,0.516667634,0.516081129,0.515578787,0.515100287,0.514626095,0.51419566,0.513774986 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Risk score|Population weighted,risk score,0.510540646,0.51279737,0.514942902,0.516957164,0.518885042,0.520665776,0.522257752,0.523669119,0.524906821,0.526039042 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Risk score|Population weighted,risk score,1.729140777,1.73209556,1.734772212,1.737259339,1.739456847,1.74124025,1.742735721,1.744052076,1.745254135,1.746332708 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Risk score|Population weighted,risk score,0.537102257,0.539093892,0.540404,0.541213084,0.541699209,0.541964534,0.542086905,0.542118395,0.542086094,0.542018621 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Risk score|Population weighted,risk score,1.345485834,1.347820404,1.350184519,1.350868337,1.352002366,1.35244991,1.352226027,1.35222253,1.352322688,1.352681606 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Risk score|Population weighted,risk score,0.797121206,0.796056554,0.795100449,0.794229542,0.793385641,0.792590869,0.791875998,0.79123176,0.790658407,0.790154771 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Risk score|Population weighted,risk score,2.764516346,2.764690319,2.764976352,2.765175501,2.765421321,2.765616949,2.76577981,2.765938709,2.766035009,2.766129045 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Risk score|Population weighted,risk score,1.458840515,1.457277423,1.455950204,1.454553977,1.452970188,1.451284832,1.449964837,1.448843433,1.447917565,1.447116872 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Risk score|Population weighted,risk score,2.665387978,2.666196962,2.666312346,2.666356208,2.666330861,2.66622415,2.665983757,2.665620473,2.665211093,2.66473236 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Risk score|Population weighted,risk score,1.266845377,1.270085228,1.272741288,1.274825274,1.276398278,1.277524391,1.278368966,1.278988988,1.279485089,1.279924227 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Risk score|Population weighted,risk score,0.869343077,0.869193696,0.869478615,0.870328685,0.871017566,0.872383748,0.871092253,0.871847077,0.872874378,0.872495648 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Risk score|Population weighted,risk score,0.887583184,0.886207215,0.884140838,0.88167099,0.878970574,0.876196831,0.873347329,0.870467698,0.867884041,0.865708023 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Risk score|Population weighted,risk score,0.933421729,0.937251987,0.94027322,0.942803481,0.944870636,0.946479783,0.947518359,0.947997597,0.948106683,0.947976382 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Risk score|Population weighted,risk score,0.800426789,0.800563316,0.800482271,0.800369232,0.800228998,0.800017622,0.799760794,0.799489855,0.799224305,0.798956923 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Risk score|Population weighted,risk score,1.977411973,1.98112669,1.984211182,1.986792654,1.988839946,1.99023021,1.991226661,1.991910745,1.992335672,1.992577004 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Risk score|Population weighted,risk score,0.767397522,0.768724665,0.769135363,0.768810544,0.767902144,0.766532307,0.764975024,0.763328967,0.761646056,0.760192202 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Risk score|Population weighted,risk score,0.543450383,0.54477066,0.545997905,0.547172411,0.548268681,0.549266489,0.550157179,0.550930244,0.55161111,0.552199545 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Risk score|Population weighted,risk score,0.926132733,0.925838242,0.9248168,0.92414147,0.923946124,0.923309409,0.922490061,0.921893055,0.921437913,0.921141209 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Risk score|Population weighted,risk score,2.301957292,2.303052743,2.303961246,2.304730546,2.305392245,2.305886244,2.306331227,2.306789587,2.307199802,2.307576838 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Risk score|Population weighted,risk score,2.227359488,2.228137736,2.228656327,2.229875137,2.230948834,2.23249841,2.233998843,2.235403261,2.236254636,2.237307561 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Risk score|Population weighted,risk score,1.994399438,1.992285518,1.989745669,1.987146081,1.984603727,1.982803224,1.981470407,1.980332088,1.979181255,1.977871749 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Risk score|Population weighted,risk score,2.482891393,2.48449805,2.485742909,2.486689418,2.48743156,2.487928922,2.488355513,2.488601026,2.488921389,2.48902242 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Risk score|Population weighted,risk score,0.731010588,0.731275327,0.73129228,0.7313029,0.731306913,0.731309691,0.731313911,0.731316106,0.731316323,0.731318732 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Risk score|Population weighted,risk score,0.802368136,0.802728318,0.803062212,0.803399458,0.803704201,0.803982119,0.804275572,0.804586551,0.804887061,0.805173584 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Risk score|Population weighted,risk score,1.803310891,1.802503574,1.800964457,1.798696971,1.79583373,1.792699511,1.789359755,1.786170913,1.783393751,1.780965175 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Risk score|Population weighted,risk score,0.800398854,0.802015638,0.803485834,0.804798975,0.805993482,0.807146073,0.808242787,0.809163065,0.80990134,0.810494443 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Risk score|Population weighted,risk score,2.465245569,2.46607434,2.466789199,2.467414855,2.467943927,2.468418586,2.468845074,2.469223793,2.469547352,2.469821885 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Risk score|Population weighted,risk score,1.807476966,1.806504277,1.805731156,1.805096379,1.804554598,1.804083324,1.803722732,1.803459597,1.803291249,1.803217335 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Risk score|Population weighted,risk score,0.897180489,0.897408471,0.897282265,0.897299126,0.897415032,0.897566322,0.897685497,0.897710577,0.897691677,0.897545826 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Risk score|Population weighted,risk score,1.982240147,1.982006478,1.982646347,1.984080978,1.985983093,1.988536211,1.990958073,1.993015941,1.994533804,1.995057984 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Risk score|Population weighted,risk score,0.684446684,0.683129775,0.682257032,0.681595772,0.681043897,0.680593219,0.680214702,0.679874619,0.679550796,0.679223199 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Risk score|Population weighted,risk score,0.612269156,0.611882733,0.611509658,0.611125106,0.610754045,0.610433522,0.610165716,0.609932185,0.60972744,0.609557981 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Risk score|Population weighted,risk score,1.03691969,1.038147295,1.039308813,1.040399102,1.041398511,1.04226431,1.042955582,1.043560537,1.044081997,1.044435361 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Risk score|Population weighted,risk score,2.195253414,2.195442307,2.195577012,2.19569018,2.195757048,2.195803605,2.195841679,2.195870641,2.19589452,2.195918439 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Risk score|Population weighted,risk score,0.846817605,0.845507569,0.844414896,0.843357435,0.842228492,0.841148494,0.840127042,0.839105424,0.838187247,0.837439128 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Risk score|Population weighted,risk score,1.610580278,1.613184576,1.612927159,1.611692759,1.612462898,1.612492506,1.612378931,1.612287179,1.61263016,1.611079422 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Risk score|Population weighted,risk score,2.892761899,2.891859793,2.891508355,2.891563495,2.891859836,2.892319989,2.892743011,2.893109569,2.893409362,2.893651672 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Risk score|Population weighted,risk score,0.592840746,0.599628058,0.605489007,0.609321604,0.612440267,0.615006284,0.61673296,0.617537793,0.618336933,0.618733709 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Risk score|Population weighted,risk score,0.386558687,0.385699877,0.384886644,0.384188913,0.383551183,0.38296292,0.382513956,0.382187367,0.381959545,0.381832725 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Risk score|Population weighted,risk score,1.699137925,1.701962597,1.704189538,1.706334006,1.708266592,1.709842909,1.71109285,1.711995535,1.712680221,1.713281114 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Risk score|Population weighted,risk score,1.069987126,1.06836193,1.066813824,1.065442766,1.064191341,1.063091843,1.062052824,1.061254347,1.060726556,1.06048322 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Risk score|Population weighted,risk score,2.571230164,2.570346159,2.569044079,2.568629546,2.568057712,2.567711758,2.567630936,2.567306875,2.567082459,2.566772783 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Risk score|Population weighted,risk score,0.425272192,0.425234987,0.425199573,0.425166446,0.425139269,0.42511284,0.425087852,0.425066277,0.425047424,0.425029485 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Risk score|Population weighted,risk score,0.482374839,0.482197328,0.481993006,0.48180113,0.481679165,0.481597707,0.481560011,0.48147474,0.481411993,0.481413829 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Risk score|Population weighted,risk score,0.692909188,0.692600702,0.692340892,0.692145288,0.691935204,0.691756079,0.691594699,0.691471291,0.691391236,0.691377807 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Risk score|Population weighted,risk score,2.256935197,2.257845508,2.258670245,2.259554147,2.26052677,2.261531718,2.262695466,2.264033833,2.265503149,2.267088967 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Risk score|Population weighted,risk score,2.112596054,2.114431041,2.116177903,2.117705723,2.119096495,2.12028025,2.121218936,2.121963799,2.122542506,2.122955228 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Risk score|Population weighted,risk score,2.144503697,2.144386975,2.143970789,2.143159488,2.142142812,2.140945301,2.139678242,2.138565755,2.137565422,2.136719787 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Risk score|Population weighted,risk score,2.028824742,2.029623644,2.030333623,2.030968314,2.031581625,2.032176348,2.032650287,2.033009924,2.033210952,2.033270798 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Risk score|Population weighted,risk score,0.866549435,0.868318596,0.868874191,0.868944583,0.868836195,0.86849462,0.868073748,0.867640792,0.867193793,0.866757964 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Risk score|Population weighted,risk score,1.484413042,1.484818291,1.485161859,1.485389781,1.485551532,1.485678499,1.485788743,1.485896295,1.485997095,1.486091005 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Risk score|Population weighted,risk score,0.753552343,0.757335025,0.760178521,0.762211895,0.763605365,0.764432579,0.76482608,0.76484585,0.764827056,0.764789104 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Risk score|Population weighted,risk score,0.723295213,0.730442149,0.732127443,0.732960818,0.733463237,0.733793305,0.734014795,0.734193057,0.734319445,0.734413738 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Risk score|Population weighted,risk score,1.299622023,1.301006719,1.301345513,1.301144098,1.300809103,1.300456599,1.299799742,1.298943605,1.297997815,1.296941892 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Risk score|Population weighted,risk score,1.155173829,1.170248985,1.181847427,1.19014516,1.197234571,1.201284694,1.205578576,1.209327281,1.21265225,1.215642296 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Risk score|Population weighted,risk score,2.058602753,2.059318896,2.060393088,2.061629498,2.063040437,2.064611024,2.066166344,2.067687249,2.069112048,2.070527253 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Risk score|Population weighted,risk score,3.088006565,3.087176262,3.086369644,3.085576663,3.084805546,3.084098418,3.0835177,3.083036795,3.082635197,3.082297234 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Risk score|Population weighted,risk score,2.86937178,2.869227929,2.86914894,2.869083532,2.869026433,2.868984142,2.868947226,2.8689073,2.868871029,2.868837216 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Risk score|Population weighted,risk score,1.298500732,1.298973484,1.29943535,1.299541486,1.299449344,1.299455046,1.299519556,1.299599125,1.299707853,1.299850726 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Risk score|Population weighted,risk score,1.134543051,1.133616373,1.132529181,1.131468991,1.130361965,1.129203307,1.128097669,1.127105532,1.12623139,1.125453852 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Risk score|Population weighted,risk score,1.87103128,1.8705032,1.87011766,1.869709389,1.869420411,1.869264054,1.869163231,1.869105156,1.869160603,1.86932411 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Risk score|Population weighted,risk score,2.784524164,2.783961242,2.783604431,2.78345552,2.783420058,2.783458583,2.783567613,2.783716167,2.783862462,2.784066092 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Risk score|Population weighted,risk score,2.011486627,2.014191412,2.016178084,2.017688469,2.018802149,2.020018552,2.021286304,2.022547288,2.023750597,2.024830557 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Risk score|Population weighted,risk score,2.318491709,2.319213535,2.319558357,2.319759805,2.319886654,2.319969843,2.320026667,2.320066827,2.320094979,2.320115621 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Risk score|Population weighted,risk score,0.916053448,0.929283904,0.941108006,0.950888472,0.958758921,0.964775409,0.969093565,0.971992755,0.974177053,0.975999297 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Risk score|Population weighted,risk score,0.953791538,0.953648211,0.95343709,0.953382295,0.952963145,0.952847693,0.952787334,0.952577272,0.952316317,0.952008198 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Risk score|Population weighted,risk score,1.726648417,1.730586547,1.733416756,1.735428844,1.736761382,1.737535974,1.737829968,1.737916735,1.73795087,1.737922099 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Risk score|Population weighted,risk score,2.541404437,2.54187396,2.542165045,2.542454226,2.542760816,2.543043089,2.543432948,2.54392628,2.544472335,2.545051308 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Risk score|Population weighted,risk score,0.462435899,0.462758577,0.462893901,0.462920395,0.462876859,0.462908151,0.462744804,0.462799425,0.46277435,0.46277927 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Risk score|Population weighted,risk score,2.81962882,2.816544206,2.814474884,2.813278143,2.812571855,2.812322361,2.812328819,2.812540125,2.812915284,2.813363257 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Risk score|Population weighted,risk score,2.919959661,2.920414209,2.920602603,2.920666234,2.92063865,2.920541595,2.920399432,2.920223905,2.920030272,2.919822457 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Risk score|Population weighted,risk score,0.260197474,0.260209009,0.260354938,0.260584995,0.260947367,0.261535024,0.262147484,0.262906524,0.263583944,0.264300573 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Risk score|Population weighted,risk score,2.213827931,2.217780904,2.220818554,2.223068431,2.224617256,2.225581387,2.226146253,2.226452847,2.226585372,2.226588468 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Risk score|Population weighted,risk score,0.748901311,0.748647544,0.748421389,0.748216575,0.748056507,0.747957653,0.74791702,0.747938388,0.747975678,0.748009108 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Risk score|Population weighted,risk score,2.540318387,2.539914539,2.539965698,2.540441288,2.541171723,2.542072326,2.543000124,2.543999302,2.545181406,2.546524565 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Risk score|Population weighted,risk score,0.610708585,0.611016963,0.611331514,0.611646785,0.611947358,0.612262576,0.612580218,0.612879179,0.613151413,0.61339795 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Risk score|Population weighted,risk score,0.525564593,0.526278028,0.526876481,0.527431817,0.527906099,0.528400115,0.528857878,0.529271385,0.529657619,0.530003901 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Risk score|Population weighted,risk score,0.788534631,0.790822331,0.79227513,0.793287442,0.793981707,0.794216042,0.793827952,0.792820276,0.791574003,0.790334222 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Risk score|Population weighted,risk score,1.013289107,1.013183883,1.013287397,1.012356801,1.011720185,1.010573693,1.009314385,1.008617599,1.00784214,1.007901833 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Risk score|Population weighted,risk score,1.000209425,0.999385539,0.999550234,1.00052156,1.001976309,1.003667934,1.005509593,1.007465183,1.009459448,1.01145345 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Risk score|Population weighted,risk score,2.140275097,2.138382754,2.137177979,2.135939147,2.134968517,2.13422586,2.133482485,2.13281345,2.132231504,2.131739619 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Risk score|Population weighted,risk score,0.736794473,0.738073084,0.738997298,0.739616867,0.740146625,0.740521604,0.740706286,0.7406996,0.740536265,0.740328731 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Risk score|Population weighted,risk score,1.279236909,1.279264276,1.279274995,1.279310287,1.279373359,1.279388006,1.2792875,1.279171946,1.279052011,1.278931024 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Risk score|Population weighted,risk score,0.770786925,0.771176906,0.771492708,0.771743342,0.771931753,0.772073217,0.772179979,0.772261819,0.772327301,0.772385587 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Risk score|Population weighted,risk score,1.015381636,1.015671191,1.015836059,1.015842417,1.016018341,1.015998093,1.015981221,1.015989073,1.016093089,1.015901385 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Risk score|Population weighted,risk score,0.457102526,0.457789436,0.458427782,0.459006518,0.45952464,0.459989257,0.46040254,0.460764086,0.461081405,0.461367182 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Risk score|Population weighted,risk score,0.842217041,0.844137553,0.846320125,0.848449416,0.850345432,0.852024774,0.853508524,0.854814784,0.855961909,0.856969479 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Risk score|Population weighted,risk score,2.345739487,2.347271016,2.348651955,2.349791327,2.350730849,2.351581958,2.352280672,2.352843256,2.353264442,2.353564311 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Risk score|Population weighted,risk score,1.495263898,1.491126393,1.488443211,1.486860804,1.486023841,1.485678714,1.48575941,1.486172674,1.486840414,1.487685866 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Risk score|Population weighted,risk score,2.309054715,2.310109521,2.311060767,2.311884677,2.312576933,2.313205263,2.313898374,2.314734145,2.315770673,2.316904706 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Risk score|Population weighted,risk score,2.072236781,2.074009396,2.075779779,2.077517792,2.079138546,2.08058383,2.081824572,2.082912205,2.08383487,2.084633408 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Risk score|Population weighted,risk score,3.094942757,3.095408198,3.095625872,3.09562784,3.09549287,3.095277297,3.094987535,3.094611931,3.0941255,3.093624439 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Risk score|Population weighted,risk score,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331,0.722416331 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Risk score|Population weighted,risk score,1.076520196,1.076738951,1.076959365,1.077207368,1.077486517,1.07774461,1.077948058,1.078112024,1.07821854,1.078278202 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Risk score|Population weighted,risk score,2.756701827,2.756438034,2.756313478,2.756364383,2.756303967,2.756255279,2.756563886,2.756618081,2.756525645,2.756415951 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Risk score|Population weighted,risk score,0.862205565,0.861804913,0.861491647,0.861237924,0.861029104,0.860856818,0.86071629,0.860599769,0.860503946,0.860429648 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Risk score|Population weighted,risk score,2.959533262,2.961882186,2.963475338,2.964616382,2.965359845,2.965870283,2.966317371,2.966722785,2.967068281,2.967350343 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Risk score|Population weighted,risk score,1.793435069,1.803930162,1.813270115,1.821110133,1.82799108,1.834257686,1.8399603,1.844958093,1.849364854,1.853241091 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Risk score|Population weighted,risk score,0.89288365,0.892769339,0.892711368,0.892665885,0.892637234,0.892623702,0.892620176,0.892626574,0.892639245,0.892658949 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Risk score|Population weighted,risk score,0.815604053,0.816282825,0.816820043,0.817511096,0.817817673,0.818413794,0.818898319,0.819061764,0.8194843,0.819722471 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Risk score|Population weighted,risk score,0.959193694,0.960920197,0.961951498,0.962675209,0.963039309,0.963236828,0.963357979,0.963389376,0.963340869,0.963248529 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Risk score|Population weighted,risk score,0.126053527,0.126091276,0.126108193,0.12609268,0.126053291,0.125999644,0.125942882,0.125888238,0.125843898,0.125811558 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Risk score|Population weighted,risk score,2.060775678,2.0540563,2.051585946,2.05008479,2.049618277,2.049585988,2.049547195,2.049530134,2.049516298,2.049504782 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Risk score|Population weighted,risk score,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735,1.50635735 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Risk score|Population weighted,risk score,1.431814048,1.433456704,1.4343634,1.435874467,1.436175225,1.436500716,1.436883924,1.437472001,1.438397067,1.438864393 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Population,people,9133.609825,10687.56352,11038.98075,11267.19127,11322.27563,11283.24834,11113.09023,10784.33405,10391.32335,9919.276359 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Population,people,4918.799909,5407.176487,5711.340581,6016.060467,6209.820812,6266.188748,6159.109551,5821.650082,5562.99647,5247.00563 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Population,people,4405035.169,5660784.677,6553439.543,7296847.632,7912611.443,8312838.297,8521586.491,8664735.731,8772992.201,8793430.614 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Population,people,21315.08976,38983.09508,48281.17118,56970.54421,64588.45179,70933.97117,75468.20028,78541.80715,80370.89232,80479.47366 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Population,people,118409.5513,146869.0309,140572.7346,135155.6978,129578.1452,122111.4533,114333.4447,108876.2991,106480.5068,105392.8684 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Population,people,53942.83008,104145.6817,121215.4046,137181.9098,149497.1084,156822.6456,158542.0619,157134.6704,156760.5346,156716.4309 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Population,people,381.4999935,532.1396017,677.2063919,842.5004439,995.19093,1120.806452,1213.198004,1296.103215,1324.739468,1343.203767 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Population,people,973257.8249,1678601.194,1968223.713,2234393.037,2436602.597,2548270.89,2586780.405,2600240.305,2660312.944,2768468.611 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Population,people,967.1999784,1396.601596,1734.167135,2054.846133,2342.816195,2585.274236,2777.850309,2913.863801,2987.483231,3002.336079 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Population,people,8201.790326,105383.403,97759.07987,87539.25598,75515.09185,63173.7226,51509.5893,41022.72742,32212.47753,24982.73989 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Population,people,834114.4202,1061163.866,1144440.052,1200501.488,1225734.034,1223281.886,1201387.754,1165762.149,1121938.007,1074064.055 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Population,people,30981.98942,33371.36081,38303.41279,42484.2357,45572.07461,47037.25262,46898.98218,45375.20021,43205.75805,40836.99589 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Population,people,2028632.121,2878310.945,3468283.542,4000678.831,4462524.829,4831473.046,5089518.559,5241547.521,5286704.756,5238562.968 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Population,people,160.4099964,1412.13097,1355.769977,1273.6603,1172.345849,1066.47954,965.5815604,874.7960245,792.2275088,721.7610199 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Population,people,170549.0109,214108.1483,246937.8108,275599.8941,296658.277,310119.5917,317803.6413,317440.3808,312171.3652,302813.6701 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Population,people,1115149.794,1743036.48,1940218.209,2094347.611,2200487.927,2250401.971,2248843.114,2204793.82,2128152.339,2029094.176 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Population,people,99620.69025,168299.3559,210058.2433,249847.8884,288632.527,323794.4661,353306.6976,379319.0746,403476.6118,423839.0557 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Population,people,21696,23655.09586,22045.39128,20948.2309,19049.5982,16929.2453,15098.74481,13190.60759,12042.57414,10335.41483 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Population,people,664090.5297,845512.7211,936679.2542,1005847.329,1062641.155,1074191.969,1066105.068,1048787.039,1029601.226,993630.6847 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Population,people,392292.3613,517658.6029,663522.5023,809350.5873,929439.5805,1047797.384,1117328.237,1177459.484,1201492.092,1184109.362 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Population,people,133188.8197,224226.1475,279406.2286,333162.3527,381530.329,422499.3875,453828.0103,474261.5357,481806.5133,478701.3557 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Population,people,5271.44994,6916.33287,6388.480466,5918.973985,5442.009506,4915.271941,4430.139313,4079.642989,3849.029763,3672.405992 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Population,people,34162.46946,40675.77065,42738.22549,43774.18188,43929.38278,43302.61909,42084.03301,40623.2227,39071.78756,37290.35939 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Population,people,62064.11058,85737.58451,103161.7975,118405.4983,130716.1168,139768.3407,145579.4255,147896.7611,146537.4468,142473.0301 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Population,people,427261.9549,597840.0191,811257.1314,1061186.564,1351578.262,1653974.868,1939791.075,2203588.738,2408433.711,2563126.765 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Population,people,353521.88,421415.7235,439051.5269,444368.4963,438629.1846,423348.5925,402788.2924,379101.968,354749.991,331396.0206 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Population,people,31560.47901,48688.96686,54204.87718,58632.88734,61778.80009,63547.11441,64159.99928,63865.51778,62877.464,61263.67175 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Population,people,2071.559996,2482.733189,2329.610519,2162.000658,1856.236058,1582.654148,1361.558733,1139.047708,851.3692715,635.6106737 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Population,people,653.9899881,956.4602331,1012.06184,1108.514246,1153.12646,1253.253064,1291.809933,1350.132735,1397.380545,1457.900294 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Population,people,343488.0106,406135.9751,441657.4203,465250.934,480287.7608,480015.8364,466982.493,446556.8813,425012.2062,407994.9466 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Population,people,1337610.523,1913846.523,2113024.526,2260582.332,2370491.824,2426981.001,2404383.655,2343473.723,2251726.219,2153876.439 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Population,people,1594114.003,1921467.401,2006224.652,2042088.89,2034454.164,1990547.339,1927709.306,1851638.355,1765621.124,1678219.762 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Population,people,71.30999841,15.46363115,9.533738269,6.68727314,4.886284905,3.718825482,2.876547658,2.252832997,1.83349471,1.406556344 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Population,people,54578.82019,72775.66051,77619.97802,80242.42509,80899.70248,79454.92617,76587.91832,72400.43275,67835.14796,62636.3512 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Population,people,299229.1254,487893.4603,561598.9699,625781.7648,677635.1031,708909.6501,719010.15,709562.0549,680110.8638,637462.9877 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Population,people,325365.8994,477994.7918,592208.7789,729368.6768,838651.0911,937161.2712,1027847.166,1077157.873,1106790.982,1104582.392 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Population,people,47243.4895,65357.43585,70572.19737,73268.93857,74818.38001,74208.55058,71953.58374,69100.7081,65983.32179,62792.31049 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Population,people,175119,209942.3827,226878.2967,237097.6107,240351.8875,236651.348,227132.5876,212949.7298,195800.6789,177509.5932 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Population,people,21641.80023,280100,269700,257800,243600,228100,214100,202100,191100,180800 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Population,people,15288.00061,21646.48678,28208.00937,35059.90296,41408.51547,46878.84065,51388.5946,54700.21637,56545.27635,57137.21181 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Population,people,5189661.57,6509701.253,7862869.269,9136612.568,10220555.17,11040584.73,11572083.95,11776008.18,11669099.96,11349476.63 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Population,people,158922.0409,210424.4889,233637.6432,251648.4419,263928.8662,270767.0588,272522.2736,270026.0318,264463.9976,256714.3607 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Population,people,44805.68071,77311.48512,91713.50135,107702.7152,125022.911,142620.9683,160253.0605,177642.4291,194274.4626,209637.1936 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Population,people,3385452.969,4629076.585,5940060.195,7362743.43,8778446.688,10051331.43,11130649.35,11965271.91,12517483,12777738.37 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Population,people,3171660.791,5427377.217,6806821.818,8152620.094,9393341.076,10422097.18,11210771.49,11761652.49,12044473.98,12046046.08 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Population,people,1675.319963,2135.449457,2466.297907,2796.098935,3098.179338,3366.346271,3550.55031,3655.233723,3689.31115,3642.084038 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Population,people,513131.8683,722508.2483,850549.153,959716.3887,1043011.051,1095188.056,1115485.151,1107587.562,1072094.875,1012779.5 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Population,people,320.8199928,1942.176766,1867.743574,1777.751048,1651.009558,1516.094751,1415.118658,1350.985278,1306.666054,1265.557085 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Population,people,780304.0929,955283.8107,1037708.707,1092214.513,1118339.803,1115840.331,1088441.812,1044297.883,988917.4062,925879.3311 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Population,people,67146318.79,89419630.84,102418661.8,114303877.6,124278613.8,131515384.1,136394227.3,138754295.1,138814580.8,136590696.7 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Population,people,51762.81964,61758.85213,68782.07897,73834.12808,76792.83435,77291.39893,76511.39963,74295.8632,70849.4324,67475.18227 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Population,people,453270.7785,1143671.203,1434967.299,1702922.713,1936414.829,2122740.406,2255901.919,2334221.709,2354122.867,2324035.57 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Population|Low,people,2882188.075,3717906.105,3973523.249,4189949.18,4392193.454,4604302.916,4845084.194,5098984.405,5348979.996,5612783.652 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Population|Low,people,35911.1992,210699.1831,244406.7244,270375.4154,287612.1691,296108.6657,296156.9868,287754.9275,270998.4169,248048.6191 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Population|Low,people,6157658.982,6049265.617,6750645.211,7235840.519,7604642.655,7763655.206,7754474.586,7641996.766,7440820.568,7148146.84 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Population|Low,people,14763097.04,16809898.18,18951998.01,20670697.91,21928297.86,22591397.91,22711098,22338698.17,21662198.29,20764998.47 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Population|Low,people,63850716.75,86939759.68,107496387.3,126172311.8,141538007.4,152723505.8,158841260.8,159460988.3,155136879.3,146921951.8 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Population|Low,people,1242002.501,1430600,1612200,1753800,1852700,1898300,1892800,1845600,1769300,1670900 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Population|Low,people,3191404.461,5240500,6332600,7281500,8057700,8614300,8929900,9003800,8843200,8483400 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Population|Low,people,15284507.83,18480449.69,19841627.99,21012805.58,21941697.56,22565421.87,22853758.42,22854558.93,22650233.16,22272009.4 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Population|Low,people,9617301.162,11189787.5,12606722.21,13804193.84,14708812.08,15279034.16,15506758.05,15419176.11,15071283,14531394.61 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Population|Low,people,196.060001,2642.134883,2682.298213,2758.669577,2779.263549,2842.991758,2784.667205,2792.488302,2799.184205,2775.846031 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Population|Low,people,16519559.58,20833900,26597000,32575600,38254900,43231100,47311700,50283000,52074500,52672000 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Population|Low,people,6988916.216,9439217.761,11378673.99,13263059.7,14971941.24,16361544.94,17436934.22,18193833.41,18582616.53,18630141.57 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Population|Low,people,27159016.37,34666568.03,40089184.78,44630059.27,48407878.33,50892671.18,52249122.35,53239586.01,54004254.78,54233250.21 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Population|Low,people,75453.69085,560592.464,609192.4019,639592.4987,651492.8178,646293.1761,623893.5989,585894.2352,538294.81,487795.3859 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Population|Low,people,11700143.66,14846587.98,17288662.09,19408302.14,21110582.81,22336744.3,22990326.3,23056934.86,22598992.08,21742911.4 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Population|Low,people,1399246.212,1295878.521,1147082.322,982023.0215,812210.9839,655767.8174,516395.4592,398788.1875,308069.0431,241772.2605 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Population|Low,people,9361680.805,13637600,16640400,19396100,21735500,23533600,24700000,25213500,25117700,24493000 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Population|Low,people,5716453.642,10368700,12769400,15039600,17107500,18883300,20326200,21411900,22120500,22468300 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Population|Low,people,7197286.674,5361485.011,6570262.474,7733329.3,8723261.345,9511281.473,10107518.33,10473276.58,10571736.14,10419051.24 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Population|Low,people,34929184.74,45151824.73,45510958.56,45964906.65,46295784.61,45979555.01,45404348.97,45398220.93,46368808.66,47667822.38 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Population|Low,people,3113072.352,4307477.33,5300206.314,6239216.517,7037504.554,7655378.5,8087123.131,8315442.192,8333869.662,8170393.626 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Population|Low,people,2417380.747,2907763.377,2994376.571,3047698.897,3070162.901,3094479.086,3137906.389,3199741.485,3259354.495,3315363.547 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Population|Low,people,178250.9871,327136.8609,329668.1754,320878.7607,304281.9141,281389.8272,252757.5178,220889.6792,188613.6007,158848.6274 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Population|Low,people,2350816.679,4637269.137,5340544.253,5889827.686,6377214.326,6642811.027,6651017.427,6543627.078,6468433.816,6439037.182 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Population|Low,people,33147998.92,50145978.32,65004293.75,80603301.32,95485385.37,108624344.2,119600531.3,127951093.7,133358605.1,135747963.7 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Population|Low,people,2894299.921,2747610.077,2598691.723,2364186.841,2085999.468,1797358.035,1517970.294,1258519.291,1027915.432,832385.4055 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Population|Low,people,832562.4251,1544583.9,1814086.641,2050065.983,2250588.592,2398456.675,2490283.177,2536345.803,2538992.846,2498842.891 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Population|Low,people,185.7000074,287.4230956,301.5027736,312.8129727,320.7953182,326.4521464,333.433669,341.4506414,345.3422329,348.6683702 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Population|Low,people,22800284.4,30565173.02,38231449.01,45877724.74,53036201.74,59129081.22,63761664.97,66945653.24,68679946.09,69054543.31 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Population|Low,people,164438574.2,205954342,242071964.3,274663173.9,303209887.6,324597959.5,339060193.3,346574250.6,347734631.6,343468283.1 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Population|Low,people,18196.40027,16479.63831,15503.27614,14524.45237,13589.96975,12731.82053,11896.5011,11171.26761,10614.28191,10191.60627 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Population|Low,people,5942006.976,10083260.42,11789108.94,13386762.65,14625828.54,15340711.39,15636806.81,15785106.33,16205696.66,16914777.89 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Population|Low,people,1171641045,1382134410,1506350033,1594125455,1642211574,1656716567,1639650173,1596887804,1535515866,1462173086 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Population|Low,people,6293820.525,9374836.169,9770239.294,9931067.846,9851851.891,9574027.084,9200800.089,8752090.134,8313316.595,7926043.442 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Population|Low,people,11892745.62,17060092.18,21102120.89,25008191.23,28551645.59,31605732.92,34088184.07,35890489.97,36973898,37349858.25 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Population|Low,people,2120633.85,2298900,2487400,2609900,2677300,2678000,2612400,2494700,2342500,2167600 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Population|Low,people,8201.790326,105383.403,97759.07987,87539.25598,75515.09185,63173.7226,51509.5893,41022.72742,32212.47753,24982.73989 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Population|Low,people,8993692.809,12296862.79,15310017.58,18300168.36,20948275.43,23083926.51,24674469.07,25668618.96,26060457.7,25881525.37 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Population|Low,people,14662682.25,19364398.9,19633589.96,19346219.45,18433221.66,17194548.31,15890090.49,14638221.4,13560728.39,12698635.15 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Population|Low,people,6901944.372,9404000,10825600,11981700,12884400,13385300,13574400,13447600,13019900,12364700 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Population|Low,people,63741840.57,81120338.48,87636949.19,92168633.94,94395698.42,94548594.28,93203924.58,90779429.32,87663552.6,84162709.05 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Population|Low,people,32062211.27,38674214.19,50939558.1,64201813.41,76989050.3,88590294.78,97823953.41,104171479.1,107609618.9,107988991.8 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Population|Low,people,138761477,171046867.5,187828736.8,198757032.6,203855650.1,203158384.7,197492430.5,188393580.7,177011531.7,164603980 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Population|Low,people,3304258.005,4702200,5683800,6572000,7341200,7950900,8379800,8631800,8704700,8622900 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Population|Low,people,2859.889936,25247.92207,24340.23363,22944.77519,21167.30066,19246.80124,17347.9638,15578.47705,13961.79356,12590.85371 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Population|Low,people,606515.7237,1205001.029,1286095.433,1343493.475,1394592.275,1436091.983,1458293.667,1466196.395,1466499.699,1473201.633 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Population|Low,people,400.439991,3254.079649,3580.646078,3833.486783,4014.249509,4135.744558,4214.244836,4253.819805,4262.734629,4253.110348 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Population|Low,people,43080476.94,48168818.66,50325364,52514420.66,54355255.85,56072651.3,57960302,60056111,62161272.36,64189552.89 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Population|Low,people,2108541.638,2686599.155,3139799.119,3507199.091,3797899.067,3993299.199,4084499.194,4081899.194,4001099.294,3855499.448 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Population|Low,people,8620890.257,16144227.96,20864209.36,25630291.04,30032274.63,33761661.49,36639152.03,38496246.79,39298845.45,39157847.76 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Population|Low,people,17932313.43,27448001.96,30008661.96,31914452.1,33130083.83,33566143.11,33278626.78,32411699.87,31111693.77,29529923.49 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Population|Low,people,6629990.161,6923651.923,7731935.59,8328603.214,8699072.125,8823645.262,8714976.372,8421323.936,7998963.64,7495721.077 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Population|Low,people,11819257.69,17545145.85,21244053.09,24537413.82,27349206.9,29627938.8,31268536.18,32229823.33,32532169.94,32316919.45 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Population|Low,people,7306580.371,12021500,14929600,17731400,20192300,22210600,23754600,24726500,25101600,24972900 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Population|Low,people,357858.7824,597196.4436,737395.6716,870095.0417,993994.4697,1103293.769,1194893.374,1273593.218,1342192.835,1398592.515 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Population|Low,people,16387731.01,21704791.09,26180471.58,30166567.63,33505170.36,36003376.03,37605509.81,38306481.09,38102400.27,37168394.84 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Population|Low,people,569673.6495,532443.8435,527707.2364,516987.7431,502311.8008,487002.8589,470866.4771,454233.3942,438250.681,423707.1539 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Population|Low,people,5069056.421,7758476.305,9290144.38,10670289.49,11789880.71,12617250.04,13157432.1,13395996.87,13345817.43,13078355.77 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Population|Low,people,1120387738,1226333782,1230997659,1193649506,1132322556,1047452209,953315292,863331386.8,780873859.7,708944219.4 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Population|Low,people,2397643.367,2332796.52,2257119.144,2148072.24,2027367.821,1885749.864,1744721.26,1611659.187,1498174.2,1415808.245 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Population|Low,people,4312.110062,103300,108400,110700,109900,107200,104100,100900,97000,92800 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Population|Low,people,2163796.234,2888113.925,3145396.282,3332578.052,3442744.829,3476364.987,3439654.354,3338693.901,3191616.691,3009690.134 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Population|Low,people,7858905.799,7862913.31,7475529.917,7103764.813,6809964.859,6536307.55,6279460.429,6091545.015,6020379.907,5998777.373 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Population|Low,people,181070.7562,1505200,1740100,1949100,2121900,2231100,2285200,2314000,2354000,2405200 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Population|Low,people,5301566.711,6664496.09,7346196.16,7857396.298,8243696.456,8417296.636,8385696.849,8264497.035,8095297.206,7849697.38 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Population|Low,people,63474704.6,91640876.3,98927930.89,103498685,105342714.2,104895374.9,102839640.2,99493664.25,95120965.07,90029298.01 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Population|Low,people,3908381.612,4850985.905,5640108.053,6294916.215,6763519.774,7058515.772,7159021.113,7048725.608,6758482.115,6359489.456 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Population|Low,people,65665779.85,78315705.77,84259887.56,89643831.65,94442386.13,99387848.38,104725267.7,109935672.7,114724765.8,119468487.5 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Population|Low,people,71871617.89,92101191.76,97771902.94,100051936.3,100160475.3,97772797.17,93242587.89,87565748.16,81380141.9,75335572.7 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Population|Low,people,15456508.53,20121000,25746000,31415600,36468400,40637500,43830400,45851200,46638400,46342900 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Population|Low,people,11622664.48,11590140.77,11121465.4,10634437.55,10321784.81,10068256.72,9811704.039,9670443.944,9674367.329,9722102.993 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Population|Low,people,5467589.608,4797739.901,4326266.458,3861663.587,3454611.753,3073047.023,2707526.319,2409134.658,2182438.712,1997497.395 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Population|Low,people,90301.3572,267816.646,263046.9313,252378.2241,236230.148,219469.367,202902.4232,186349.1847,170733.9054,156624.7438 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Population|Low,people,8984274.021,8316484.938,7654679.347,6954953.212,6240064.101,5529110.947,4835964.737,4236533.943,3739921.345,3316397.977 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Population|Low,people,18517855.39,32364269.65,41592466.64,50755963.98,59105861.9,66183960.29,71761559.2,75536658.87,77283459.35,77204360.45 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Population|Low,people,7741976.194,10176854.48,9717091.221,9269295.026,8784793.491,8278948.811,7826186.817,7514518.573,7366126.978,7292539.078 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Population|Low,people,35477017.35,44335184.47,48548979.77,51717126.13,53844417.02,54804785.24,54790598.31,54048164.39,52787472.39,51188637.54 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Population|Low,people,1945779.286,2788176.826,3164986.122,3472157.473,3727813.7,3951072.055,4100510.142,4171142.73,4198080.053,4205023.96 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Population|Low,people,21359228.04,30156384.79,37050414.47,43315603.36,48618878.28,52769594.36,55654941.13,57105083.3,57093522.93,55922388.82 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Population|Low,people,401673.2489,594413.3812,803715.0782,1038689.459,1280214.97,1509354.959,1709944.745,1872927.589,1991393.094,2061691.709 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Population|Low,people,4655356.171,4221995.739,4654231.966,4950737.444,5146812.053,5209279.663,5154843.963,5007859.49,4796150.755,4522288.452 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Population|Low,people,1310726.864,1208219.129,1136093.664,1062378.551,995320.4041,937203.6192,882709.4664,838077.044,806646.3764,783749.8054 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Population|Low,people,16040965.25,23836100,33344200,45169200,58617100,72551800,85861400,97693900,107383800,114481000 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Population|Low,people,120222348,145056662.1,152596373.4,155846419.1,155256691.1,151246460.2,144961327.9,137263448.9,129090341.4,121139381.2 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Population|Low,people,1635506.743,4319300,4921000,5409400,5785300,5972400,6056100,6178100,6347200,6477100 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Population|Low,people,1667069.424,2578167.02,2881944.709,3134066.782,3322969.456,3440802.391,3497148.05,3503308.536,3469283.929,3397033.09 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Population|Low,people,138087.981,173754.8859,164114.5429,149561.2576,132369.9967,114454.5609,95824.75439,78858.75882,62692.53019,47985.4294 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Population|Low,people,505625.5796,589443.5295,624771.6729,641220.8077,641413.3813,627583.4125,602784.9539,571271.2479,539137.2566,509656.0482 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Population|Low,people,231560.0458,375045.7183,423414.1895,472561.8364,520782.1761,567242.2981,612114.0162,656137.4364,699641.3777,743063.3528 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Population|Low,people,310110.4022,411357.3378,430041.829,447205.1564,462506.8895,469046.6931,471396.397,475540.0734,482853.8842,489143.9281 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Population|Low,people,146946909.2,196252122.3,246941654.8,305077597.3,365970900.8,423993135.2,475835010.5,519373167,553253513.8,577806826 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Population|Low,people,4316259.338,5480597.654,6146135.43,6683274.618,7075031.052,7318674.296,7424448.999,7402215.026,7275318.957,7058495.09 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Population|Low,people,6066914.615,8717224.458,9632835.287,10483234.73,11329364.61,12160646.51,12962016.26,13736683.52,14472213.24,15202606.51 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Population|Low,people,71907584.05,84322896.05,91128340.36,95520338.71,98236545.57,97959026.59,95138412.24,90818529.53,86292908.66,82688398.53 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Population|Low,people,30516119.68,43058700,47686800,50930400,53615900,54843500,54433800,53256900,51705800,49630900 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Population|Low,people,5492666.963,6491188.477,6699589.456,6715690.654,6572391.867,6278693.063,5851394.187,5321295.201,4726996.11,4122296.876 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Population|Low,people,15039031.39,18188412.37,19079143.27,19526179.02,19548775.3,19236865.55,18705491.35,18024980,17228458.23,16409226.39 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Population|Low,people,832145.8067,1106070.498,1081694.119,1035924.405,973266.9936,903174.9189,829781.6915,757617.1723,691012.4659,632255.9186 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Population|Low,people,490008.5816,511570.6453,529785.3223,547096.9186,562505.0068,576068.8399,591417.2361,609619.5219,628417.4136,648024.999 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Population|Low,people,62130030.19,67149111.7,67768062.1,66419691.93,63307834.85,59397677.56,55664400.58,52438022.64,49546583.06,47045034.92 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Population|Low,people,331130.5159,582541.327,633803.9329,663142.6867,671860.8154,659094.835,628116.7909,585775.6589,535422.3816,481269.8368 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Population|Low,people,31254386.94,41091900,50811500,60320100,68980000,76290900,82243000,86684900,89471000,90569700 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Population|Low,people,4782432.692,8047800,9621700,11018200,12108100,12862300,13271700,13334400,13096900,12628600 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Population|Low,people,457877.3294,391182.6413,346855.118,307795.41,272665.5998,239522.4063,211047.0089,188109.9093,169563.7981,154464.7531 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Population|Low,people,1846662.52,7486600,7874400,8108600,8283000,8488600,8689700,8905500,9202600,9584400 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Population|Low,people,258212.055,405008.7084,420023.9139,432586.9242,443630.3297,457749.9504,474471.3129,492468.037,510242.8803,527604.1619 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Population|Low,people,2069536.967,2362422.824,2301215.506,2197545.798,2085084.535,1965171.494,1827649.104,1694935.443,1599635.919,1537818.147 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Population|Low,people,27287140.32,36814850.26,39657349.09,41332750.98,42043654.89,41753160.66,40497368.48,38566177.55,36270386.94,33708996.57 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Population|Low,people,741028.0972,862706.7062,815641.5968,769706.7971,727008.1079,689080.6077,655978.5197,629440.3309,610208.9004,597153.6008 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Population|Low,people,2797960.383,3160731.28,3463563.796,3665036.866,3828333.314,3899547.684,3871465.765,3808291.98,3717250.335,3569251.49 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Population|Low,people,1169316.173,1967800,2312100,2610100,2845500,2985600,3037600,3008800,2898400,2729700 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Population|Low,people,3.709999917,668.5756639,781.7867926,874.3550894,953.4924987,1004.538537,1023.013589,1019.558391,995.1323128,949.8678026 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Population|Low,people,9378.180373,104155.4525,99470.70217,92305.96573,84027.48705,73838.68315,62828.51943,51890.52497,42221.1726,34421.83392 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Population|Low,people,194828.6474,290526.7887,330643.4788,363453.4197,389394.5134,407794.7182,417705.1042,420024.9119,415740.9096,406478.0969 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Population|Low,people,11219570.2,16176700,20805200,25419500,29638900,33273000,36169800,38212100,39372800,39728400 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Population|Low,people,20465.00934,54872.5072,66200.64789,77068.9242,86126.50171,92737.90634,97274.6661,100460.4342,102020.0741,102064.9706 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Population|Low,people,3369814.76,6294600,7111300,7731000,8198100,8571500,8800800,8840900,8778600,8717200 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Population|Low,people,24181451.52,33164862.61,36607226.1,39188239.84,40986080.01,41664854.05,41474352.54,40578060.09,39198679.84,37602774.69 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Population|Low,people,8769207.939,11838100,12562200,12877500,13001700,12855500,12431300,11894500,11349000,10764600 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Population|Low,people,568522.4823,1019200,1200800,1358600,1485400,1583200,1648600,1685900,1702100,1707000 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Population|Low,people,1976229.367,2667572.288,3329854.696,4000802.245,4610949.778,5104543.114,5459318.095,5670056.139,5732917.213,5653292.472 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Population|Low,people,749916.8389,1402252.808,1767472.485,2128209.259,2447744.825,2714407.43,2898144.263,2979782.457,2961907.461,2852896.215 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Population|Low,people,11802734.39,13488115.44,14470110.68,15031454.81,15180008.31,14980309.1,14498704.29,13810607.02,13020104.91,12229984.76 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Population|Low,people,79141.72034,325501.9427,350659.011,369702.7028,380861.647,386963.1899,391420.7129,395648.0642,397617.765,394976.5034 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Population|Low,people,7247318.703,10786919.18,12880611.63,14629023.93,16044829.33,16937756.27,17352404.08,17284336.46,16730605.6,15831199.85 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Population|Low,people,8269575.681,13172390.54,13350369.81,13084778.99,12346120.43,11331841.28,10265485.92,9197778.559,8289842.145,7605646.737 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Population|Low,people,4882677.391,5907137.452,6446171.18,6803479.795,6968265.222,6936706.153,6719200.987,6344025.435,5864465.824,5337879.553 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Population|Low,people,21641.80023,280100,269700,257800,243600,228100,214100,202100,191100,180800 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Population|Low,people,1174339.088,2757900,3277900,3768000,4203200,4519500,4697800,4775500,4860900,5038400 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Population|Low,people,36358835.74,50505941.79,64884861.59,79455368.66,92767942.87,104101598.8,113036099.3,119082832.7,121914788.6,121798140.4 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Population|Low,people,26639383.73,32304731,31598124.47,30883948.63,30013195.78,28893785.5,27842875.52,27301477.71,27196910.63,27228013.41 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Population|Low,people,2600771.104,836600,924000,988700,1031600,1052000,1048100,1025000,992800,955800 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Population|Low,people,34556192.72,43065995.17,51819510.91,60094407.05,67163451.11,72586815.56,76118184.01,77567868.63,77051781.23,75040018.3 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Population|Low,people,31945346.98,30596800,34239800,36879600,38881400,40094000,40352300,39713500,38215300,36226400 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Population|Low,people,25752.49942,429500,427700,415300,401000,389500,376200,360700,347400,338400 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Population|Low,people,453.9599899,205507.9794,257463.1093,303475.992,345027.4425,373556.8999,387943.4636,389837.326,382854.2395,376851.5597 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Population|Low,people,36044.81899,40942.21948,40537.48665,39107.68505,36703.99564,33876.02403,30919.18403,28002.30571,25092.88367,22312.78426 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Population|Low,people,21683984.81,28631927.81,31755313.13,34195514.09,35895024.62,36868579.15,37174375.6,36894680.89,36175714.06,35142877.5 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Population|Low,people,5103558.174,8818400,10401300,12115300,13943500,15798500,17653500,19503600,21289400,22944200 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Population|Low,people,13330258.58,18783500,24607300,30888700,37072900,42545700,47086800,50492600,52622800,53471500 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Population|Low,people,10123746.43,17132300,21366700,25521700,29389000,32638300,35163300,36966500,37942300,38044600 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Population|Low,people,4116.720093,6267.316788,7387.592611,8327.643068,9074.5316,9652.80445,9974.752326,10118.23779,9982.487783,9708.718581 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Population|Low,people,13664296.85,20473600,27173600,34728000,42576800,50012000,56427100,61529000,65195600,67286800 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Population|Low,people,11156.44026,21714.39837,20472.48341,18867.92281,17066.00511,15124.29083,13237.58533,11525.04016,10094.40463,8868.272988 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Population|Low,people,12521176.59,17562200,20592800,23126400,25039500,26184700,26577300,26313400,25440200,24070600 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Population|Low,people,770499.3718,782951.7802,786028.6292,789587.6525,792779.5951,795650.5745,806423.9061,823714.6452,841587.3752,864635.177 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Population|Low,people,3695.170043,22431.30029,21657.73682,20682.83539,19250.26513,17669.17733,16420.98182,15543.19179,14882.48972,14272.81856 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Population|Low,people,6272677.5,6756789.627,6968665.602,7027630.558,7065612.513,6941046.722,6706187.517,6460552.76,6182168.237,5852701.341 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Population|Low,people,18759654.87,30499448.4,34432088.59,37768453.75,40393884.07,42276343.69,43370706.83,43618710.68,43077665.38,41882539.45 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Population|Low,people,5246473.374,5407270.953,6467366.231,7475561.76,8322758.171,8934155.668,9320654.259,9470554.07,9384854.999,9094556.803 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Population|Low,people,4936.560035,14935.20565,16655.70292,18113.64508,19360.88523,20378.80836,21238.77145,21923.13057,22396.25336,22739.07533 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Population|Low,people,1925552.462,1976998.56,1907274.879,1797679.035,1672088.8,1542804.23,1407020.877,1280059.451,1177676.932,1098235.699 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Population|Low,people,816535.5556,961858.2814,971733.955,955142.7169,917695.6671,866600.2237,810726.7107,753022.4081,693612.2109,635939.7331 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Population|Low,people,3553631.623,4349145.465,4854492.203,5250598.148,5540542.022,5716967.75,5764169.932,5688510.794,5513640.112,5271888.137 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Population|Low,people,31259184.72,39119613.13,37139450.27,34811198.71,32532467.45,30371769.43,28088781.44,25980344.81,24360935.76,23047579.67 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Population|Low,people,19517233.23,19773100,21879300,23704900,24679200,25057400,24979500,24287100,23021500,21269000 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Population|Low,people,5126994.844,6956068.197,7969172.368,8809330.857,9451862.676,9880934.694,10068516.34,10017061.07,9776805.128,9393638.695 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Population|Low,people,45891625.92,54194414.51,56767009.24,57404591.62,56300748.18,54147164.82,51373691.37,47941743.35,44128368.03,40540039.03 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Population|Low,people,101500004.1,124758939.1,136506608.6,145033977.8,150163486.3,151665435.9,149694226.3,145191220.1,138848704.2,131073374.2 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Population|Low,people,76849083.64,102360307.3,117185845,130665361.2,141904676.1,149973759.8,155335707.7,157823835.5,157704847,155012674 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Population|Low,people,5889848.104,5419469.246,5150290.96,4839509.173,4520780.343,4218924.568,3911105.723,3612509.881,3342957.848,3104123.922 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Population|Low,people,1974893.486,2402600,2726100,2970100,3133700,3198700,3176600,3101400,2988100,2845000 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Population|Low,people,9732310.853,11727687.9,12128870.67,12470062.11,12840433.09,13166932.42,13479533.75,13847244.26,14210624.18,14596170.25 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Population|Low,people,912781.7174,2265500,2811400,3310400,3745300,4091500,4335000,4473200,4500800,4434800 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Population|Low,people,7663433.893,11178906.04,11091714.08,11065019.9,10992525.33,10820031.25,10648636.24,10584939.27,10651139.81,10787739.21 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Population|Low,people,2841235.913,3553353.583,3661079.41,3701877.753,3661598.319,3553766.093,3413040.792,3244301.786,3055759.769,2846854.351 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Population|Low,people,54558,91969.04663,113610.5284,135263.2104,154895.3163,172446.1719,188030.1105,200985.0903,211308.1305,217749.916 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Population|Low,people,8238.639891,65620.59128,79706.6605,92429.07828,102850.8175,110201.0018,114527.0805,115913.0147,114175.6467,109811.7362 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Population|Low,people,62829.48027,312225.8349,309300.4399,303885.0968,292322.7098,280396.4821,272003.1133,266386.8202,262295.8091,256334.8412 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Population|Low,people,22452.75988,273700,343200,413300,478600,536500,586200,626500,656200,673600 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Population|Low,people,4932.849987,105600,105800,105000,103800,103600,104500,106100,107200,107300 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Population|%,%,0.024447166,0.023515923,0.022501163,0.021593345,0.02070855,0.020014241,0.019426238,0.018825361,0.018287114,0.017737573 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Population|%,%,0.049645055,0.046907978,0.043982785,0.042315665,0.040998659,0.039834138,0.038584868,0.036684059,0.035869935,0.035094211 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Population|%,%,16.21833961,16.32818176,16.34612536,16.34862171,16.34472358,16.3330857,16.30856977,16.27403518,16.24405582,16.21315318 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Population|%,%,0.372872608,0.375968975,0.378100546,0.378803587,0.377544655,0.375643935,0.371285338,0.366813815,0.363332168,0.358191201 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Population|%,%,0.327436512,0.314187926,0.298314672,0.283962614,0.270273166,0.256410078,0.243066644,0.231445861,0.221571273,0.213291917 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Population|%,%,2.294519632,2.245728985,2.26961138,2.329025141,2.344133412,2.360684705,2.383625185,2.40123887,2.42336999,2.433749489 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Population|%,%,0.001673217,0.001740993,0.001771326,0.001836397,0.00187643,0.001895518,0.001902701,0.001936046,0.001928852,0.001945127 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Population|%,%,16.37871566,16.64684432,16.69471745,16.69051809,16.65904978,16.610636,16.54237244,16.47222978,16.4154024,16.36665392 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Population|%,%,0.005067639,0.00508295,0.005093989,0.005090701,0.005085252,0.005073104,0.005059569,0.005047391,0.00503072,0.005012582 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Population|%,%,98.6725425,98.76607593,98.84639016,98.91441354,98.97128683,99.01837399,99.0569025,99.08871358,99.11531548,99.13785673 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Population|%,%,1.289256191,1.289543268,1.28793972,1.285110599,1.281589552,1.277306856,1.272825061,1.268290775,1.264179717,1.260724386 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Population|%,%,0.095809368,0.085667537,0.074732971,0.065820702,0.058912977,0.052868607,0.047754699,0.043400644,0.040015521,0.037696988 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Population|%,%,61.39448305,61.21200598,61.02050638,60.87460181,60.78740301,60.76636665,60.73556122,60.72369055,60.73391106,60.75175367 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Population|%,%,0.825952239,0.796015203,0.774283253,0.758582668,0.748146681,0.745268721,0.752596696,0.770745396,0.793815139,0.817396399 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Population|%,%,8.088479049,7.969483671,7.86476243,7.858117418,7.81111343,7.765997839,7.780723254,7.776779951,7.802138541,7.854070032 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Population|%,%,5.123754762,5.245559514,5.357069873,5.456033624,5.542679056,5.615728146,5.678208485,5.731456342,5.776821995,5.814339966 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Population|%,%,27.83781836,28.18140587,28.48633622,28.71484754,29.03747757,29.3478171,29.56788833,29.7832188,30.06084129,30.30452279 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Population|%,%,0.001673502,0.001669872,0.001552938,0.001524262,0.001463392,0.001407564,0.001380657,0.001332927,0.001346281,0.001273346 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Population|%,%,12.52629873,12.68681403,12.75052754,12.80127433,12.89034239,12.76171657,12.71337,12.69026606,12.71850612,12.65819948 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Population|%,%,2.53803995,2.57272801,2.577186756,2.576269711,2.548616283,2.578400206,2.549208397,2.568001457,2.576186345,2.555104151 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Population|%,%,0.719244563,0.692819395,0.6717707,0.656399938,0.645502951,0.638370886,0.632410663,0.627855778,0.623427398,0.620044137 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Population|%,%,0.067903784,0.06777994,0.065571971,0.063690081,0.061789058,0.05921943,0.056462947,0.054152636,0.052120975,0.05023124 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Population|%,%,0.072791677,0.069327161,0.066484801,0.063883305,0.061537468,0.059558932,0.057859159,0.056576807,0.055681375,0.054773841 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Population|%,%,0.275745276,0.270010722,0.264618527,0.259961048,0.25583958,0.252165617,0.249138631,0.246768515,0.244631905,0.242901716 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Population|%,%,2.663567611,2.508128507,2.432978243,2.349358776,2.3057747,2.279715827,2.259212026,2.25560525,2.242827792,2.238910181 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Population|%,%,0.199397066,0.196688771,0.194547688,0.19256413,0.190560532,0.188562728,0.187000615,0.185721045,0.184665978,0.183723999 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Population|%,%,1.14473391,1.146701999,1.14629554,1.143788524,1.139577955,1.134344521,1.128722961,1.123107672,1.117861328,1.113459802 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Population|%,%,0.344000272,0.327494155,0.325410046,0.332155578,0.323048392,0.319728111,0.326669562,0.332762988,0.314390425,0.306170845 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Population|%,%,0.003729638,0.003807701,0.003649318,0.003677054,0.003545703,0.00359195,0.003472859,0.003424369,0.003363511,0.003340284 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Population|%,%,0.477344346,0.481302418,0.48430588,0.486714559,0.488547139,0.489647696,0.490470126,0.491322233,0.492138409,0.4930244 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Population|%,%,4.38329164,4.444738282,4.431047011,4.438571722,4.421247846,4.425284676,4.41707846,4.400319439,4.354881308,4.339789201 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Population|%,%,10.4913447,10.4612923,10.41696775,10.36356614,10.31518775,10.25796237,10.21773907,10.18570178,10.16272555,10.14213913 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Population|%,%,0.002587577,0.000423139,0.000266797,0.000195426,0.000151993,0.000124659,0.000104957,9.00E-05,8.03E-05,6.74E-05 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Population|%,%,0.200015756,0.197679371,0.195725848,0.194136935,0.192417675,0.190296159,0.189117645,0.187729787,0.187025676,0.185814368 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Population|%,%,25.59009551,24.79385406,24.2895623,23.97539423,23.81427176,23.74429428,23.67033678,23.58289201,23.46504498,23.35285884 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Population|%,%,2.899985414,2.95483499,2.846445979,2.869327393,2.829562133,2.816581827,2.841727536,2.818892111,2.811054795,2.780334451 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Population|%,%,0.538742949,0.552093967,0.561782151,0.568968655,0.575450749,0.577251375,0.578809809,0.580946724,0.581402078,0.583322283 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Population|%,%,3.285110923,3.256384773,3.226094143,3.195773216,3.164606814,3.13180017,3.104982674,3.085244268,3.07066069,3.060351934 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Population|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Population|%,%,0.024001069,0.024483902,0.024843678,0.025203695,0.025475924,0.025683715,0.025911318,0.026161888,0.02639764,0.026682326 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Population|%,%,15.01457375,15.11227064,15.17005927,15.20030174,15.21393647,15.20674671,15.19934741,15.17820221,15.14114656,15.12118374 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Population|%,%,0.630752466,0.633957643,0.635750419,0.636720362,0.63674801,0.636381722,0.635460394,0.634540171,0.633890044,0.633420007 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Population|%,%,0.877930244,0.87670649,0.881750371,0.888981001,0.896639373,0.90275006,0.907769341,0.910818665,0.912540807,0.913682733 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Population|%,%,25.39675392,24.64437717,24.13942283,23.8363655,23.6788778,23.62478799,23.63857674,23.69708018,23.7871854,23.89635296 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Population|%,%,31.32892365,31.67920954,31.8571507,31.94387558,31.96209832,31.93210791,31.88202327,31.8170573,31.74418519,31.66295894 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Population|%,%,0.012260565,0.010430259,0.009076081,0.008051425,0.007276684,0.006731077,0.006292279,0.005940668,0.005658835,0.005412776 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Population|%,%,4.098112221,4.113996244,4.130322991,4.149873689,4.165462772,4.182549566,4.197134963,4.209214932,4.214176286,4.207537412 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Population|%,%,0.503380411,0.511099149,0.514813554,0.517088728,0.51869606,0.519922754,0.520838667,0.521615937,0.522248623,0.522741464 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Population|%,%,0.719258777,0.716654384,0.711839825,0.705576782,0.698190004,0.690146765,0.6824446,0.675411669,0.669103838,0.663865543 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Population|%,%,87.33821169,87.32044729,87.36229448,87.44263644,87.54320774,87.65699539,87.7717499,87.88419729,87.98875588,88.08353462 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Population|%,%,2.621043616,2.570500796,2.523094493,2.485913878,2.450548373,2.416337854,2.408594083,2.395558883,2.371052923,2.371711152 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Population|%,%,49.65817893,50.4820659,51.04102223,51.44159958,51.70252928,51.88171589,52.03925995,52.18236852,52.30454291,52.40451813 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Population|Low|%,%,10.00046659,9.966588046,9.942408305,9.926061035,9.917411502,9.908417546,9.904663787,9.907885732,9.914239369,9.925996311 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Population|Low|%,%,98.01056924,98.04522247,98.07653465,98.10428717,98.12765918,98.14672379,98.16274007,98.17636557,98.18783219,98.1981865 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Population|Low|%,%,99.99231488,99.99281977,99.99326349,99.99365033,99.99398633,99.99427115,99.99451426,99.99472373,99.99490093,99.99505967 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Population|Low|%,%,99.99998862,99.99998917,99.99998948,99.99998989,99.99999026,99.99999074,99.9999912,99.99999179,99.9999921,99.99999265 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Population|Low|%,%,77.04477923,76.90571698,76.80496837,76.74929576,76.71819265,76.70477668,76.70422691,76.71261968,76.72743027,76.74681401 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Population|Low|%,%,40.91075745,40.66266583,40.44392532,40.27061763,40.13157448,40.02657485,39.94951356,39.89540051,39.86088984,39.82663369 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Population|Low|%,%,97.06665273,97.07290148,97.08381883,97.09570753,97.11094441,97.12876197,97.14492124,97.16110646,97.1789113,97.19216259 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Population|Low|%,%,0.725094353,0.647582079,0.601816965,0.581997801,0.560222445,0.553973452,0.529706526,0.5224487,0.517122521,0.506356445 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Population|Low|%,%,30.47749776,30.71232389,30.85139711,30.92595501,30.94271327,30.92183136,30.87603892,30.81292992,30.73996548,30.66054048 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Population|Low|%,%,99.99333356,99.99356203,99.99372634,99.99385938,99.99396484,99.99404898,99.99411001,99.99415133,99.99417631,99.99419248 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Population|Low|%,%,99.99852892,99.99865572,99.99875277,99.9988272,99.99889759,99.99894416,99.99897401,99.99901609,99.99903586,99.99905409 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Population|Low|%,%,83.60992045,83.56836159,83.61745846,83.71890305,83.85168,84.00082845,84.1489195,84.29522188,84.43896802,84.57808576 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Population|Low|%,%,38.63270777,38.59997979,38.56257385,38.52279231,38.48064547,38.43891075,38.40228,38.37453691,38.35520955,38.34611585 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Population|Low|%,%,94.78790564,94.64060672,94.58514444,94.55219283,94.56417385,94.60949223,94.65563796,94.71649634,94.79507305,94.86957653 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Population|Low|%,%,96.58925556,96.59053414,96.5805119,96.57243662,96.56341563,96.54803828,96.52715995,96.50613058,96.48710627,96.46915737 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Population|Low|%,%,84.70371582,84.44047146,84.26535102,84.13750275,84.03793263,83.96080743,83.90524497,83.86729392,83.84596471,83.84190483 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Population|Low|%,%,16.90035103,16.8912631,16.88399532,16.86187113,16.83360237,16.81645021,16.81207414,16.81499117,16.82186706,16.83233254 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Population|Low|%,%,11.17440428,11.25457945,11.33893429,11.43259916,11.53238257,11.6257572,11.70011192,11.75945907,11.80753729,11.84730216 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Population|Low|%,%,99.99466129,99.99502183,99.99521145,99.99537675,99.99552059,99.99565003,99.99575162,99.99582937,99.99588505,99.99591853 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Population|Low|%,%,79.88793512,80.14687844,80.31061322,80.41087809,80.46518979,80.48274691,80.48027621,80.46418776,80.44127659,80.41050174 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Population|Low|%,%,95.4883671,95.57569488,95.61043868,95.60768524,95.58282021,95.53808722,95.49385343,95.45083737,95.40703842,95.38047502 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Population|Low|%,%,71.91018678,71.76100634,71.56160318,71.42340464,71.27980593,71.12228078,70.97857138,70.825886,70.68268828,70.62070118 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Population|Low|%,%,0.006169214,0.005991851,0.005854423,0.00574633,0.005639465,0.005526998,0.005439907,0.005370325,0.005279655,0.005204938 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Population|Low|%,%,99.99955075,99.99958458,99.99960507,99.99961799,99.99962619,99.99963,99.99963139,99.9996314,99.9996303,99.99962828 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Population|Low|%,%,98.47642868,98.60861224,98.70686145,98.77802853,98.84145024,98.89914129,98.95066515,98.99623913,99.0362885,99.07134981 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Population|Low|%,%,0.322710378,0.303520367,0.290290906,0.282214518,0.275636252,0.270774575,0.268265483,0.266725584,0.264880263,0.262873517 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Population|Low|%,%,99.99656845,99.99663233,99.99668299,99.9967331,99.99677661,99.99681507,99.99684608,99.99687267,99.99689416,99.99691338 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Population|Low|%,%,99.9987142,99.99875627,99.99878735,99.99881786,99.99884752,99.99887529,99.99890055,99.99892318,99.99894276,99.99895953 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Population|Low|%,%,93.49304759,93.64254561,93.76879211,93.86997472,93.95243077,94.01694033,94.06520697,94.10141316,94.12935749,94.15254199 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Population|Low|%,%,62.31197568,62.09043527,61.98593823,61.95559791,61.97340959,62.02018218,62.08813027,62.16945747,62.26155178,62.3578507 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Population|Low|%,%,98.6725425,98.76607593,98.84639016,98.91441354,98.97128683,99.01837399,99.0569025,99.08871358,99.11531548,99.13785673 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Population|Low|%,%,22.74584553,22.96607398,23.07727423,23.1184746,23.10888704,23.06310053,23.00330217,22.93323449,22.85846656,22.77956383 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Population|Low|%,%,37.67579401,37.76864335,37.88132936,38.01904556,38.13520146,38.23049695,38.30848276,38.37238687,38.42839804,38.47628197 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Population|Low|%,%,98.52312894,98.57873017,98.62561833,98.6645078,98.69721933,98.7242345,98.74604643,98.76346808,98.777726,98.78924744 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Population|Low|%,%,99.14986899,99.28047901,99.38708444,99.46768229,99.52705039,99.57310915,99.60884429,99.63833345,99.66391339,99.68558164 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Population|Low|%,%,99.99961101,99.99963024,99.99964691,99.99966423,99.99968118,99.99969714,99.99971161,99.99972435,99.99973542,99.99974486 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Population|Low|%,%,14.72559409,14.23219959,13.90076164,13.66573865,13.50816889,13.44989604,13.52140592,13.72553044,13.98977311,14.25917747 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Population|Low|%,%,99.98280637,99.9834906,99.98409651,99.9846301,99.98510717,99.98551717,99.98585307,99.98611534,99.98634344,99.9865368 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Population|Low|%,%,1.1028825,1.111366,1.117903865,1.121230413,1.123810053,1.124454747,1.124098382,1.122676116,1.121477145,1.119828949 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Population|Low|%,%,72.97577199,73.1195484,73.24815407,73.36260604,73.46148659,73.55468829,73.65098054,73.74593825,73.83503429,73.92060981 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Population|Low|%,%,99.99996348,99.99996856,99.99997194,99.99997408,99.99997543,99.99997994,99.99998026,99.99998024,99.99998237,99.99998569 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Population|Low|%,%,99.9995403,99.99955379,99.99956558,99.99957489,99.99958256,99.99958976,99.99959614,99.99960201,99.99960672,99.99961123 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Population|Low|%,%,82.3932146,82.60304906,82.85588607,83.14108071,83.44941118,83.76207317,84.02675126,84.25560753,84.45199792,84.61756799 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Population|Low|%,%,96.72086654,96.68824605,96.6697372,96.65652992,96.64883981,96.65087807,96.65694037,96.66682663,96.67823297,96.68654486 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Population|Low|%,%,67.12613724,67.49301167,67.71099263,67.83931895,67.889643,67.88532425,67.85780267,67.80857665,67.74472777,67.66949234 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Population|Low|%,%,99.99938524,99.99940449,99.99941302,99.99943015,99.99944363,99.99943521,99.99944547,99.99946751,99.99946617,99.99946481 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Population|Low|%,%,84.30087675,84.50014243,84.66753418,84.81211749,84.94213508,85.04821554,85.14332959,85.22835575,85.30878328,85.38275695 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Population|Low|%,%,84.84374802,84.68965222,84.54137078,84.40616215,84.29464688,84.19828127,84.12836826,84.07058934,84.02045264,83.98556074 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Population|Low|%,%,93.60275854,93.557904,93.53467354,93.51290034,93.49998584,93.49573945,93.48684534,93.47500799,93.46399586,93.45487643 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Population|Low|%,%,86.42013978,86.56996635,86.71484852,86.85383266,86.98510146,87.08928742,87.17288787,87.24070372,87.29658173,87.34347863 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Population|Low|%,%,79.70540521,80.77550275,81.81525097,82.73908945,83.49605949,84.12141965,84.63768606,85.05695518,85.40985122,85.72343456 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Population|Low|%,%,26.06427178,25.91143023,25.76335333,25.61984388,25.48067403,25.34218555,25.20687363,25.07939081,24.96961892,24.87964069 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Population|Low|%,%,17.96236496,18.01449632,18.0512109,18.07049562,18.07728106,18.07582182,18.07819326,18.08234736,18.09084489,18.10508939 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Population|Low|%,%,99.99993285,99.99994133,99.99994773,99.99995288,99.99995701,99.99996004,99.99996243,99.99996412,99.99996548,99.99996662 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Population|Low|%,%,33.62410048,33.73925457,33.87427764,34.01659407,34.1642554,34.31225427,34.45782025,34.58287932,34.69053637,34.78446753 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Population|Low|%,%,97.71088647,97.72332604,97.73698258,97.74866403,97.76415504,97.77691885,97.78881166,97.80252263,97.81717562,97.82776403 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Population|Low|%,%,23.48584879,23.63676158,23.77812087,23.91453657,24.04070885,24.14714171,24.24027115,24.32500063,24.4028424,24.46971959 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Population|Low|%,%,94.13197339,94.15152962,94.18777552,94.23517583,94.29060243,94.35087947,94.41245259,94.4722354,94.52464443,94.570682 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Population|Low|%,%,8.232228411,8.094538572,7.967304969,7.848478747,7.740852866,7.642630885,7.552466702,7.474346426,7.405284488,7.345102845 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Population|Low|%,%,70.29207319,69.92057218,69.60783978,69.35334472,69.14893719,68.97973116,68.84299928,68.73226608,68.63662333,68.55300277 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Population|Low|%,%,21.43304722,21.29415966,21.17077918,21.07014728,20.99263734,20.93374351,20.8919299,20.86543329,20.8466307,20.8305285 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Population|Low|%,%,43.49510789,43.26320001,43.08417581,42.95036875,42.87377856,42.84936721,42.85796979,42.87425686,42.8831049,42.87909671 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Population|Low|%,%,99.99988622,99.99990622,99.99991978,99.99992903,99.99993553,99.99993999,99.99994315,99.99994555,99.99994741,99.99994877 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Population|Low|%,%,99.72768192,99.73299442,99.73714905,99.74062266,99.7433237,99.74516947,99.74620278,99.74671568,99.74714248,99.74749115 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Population|Low|%,%,75.5926497,75.56421009,75.52417644,75.47510384,75.42671576,75.37914633,75.32875827,75.27400305,75.22765671,75.18828791 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Population|Low|%,%,8.492557265,8.452529764,8.450080554,8.463866809,8.490481213,8.524408911,8.565320496,8.611978168,8.661228337,8.707694328 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Population|Low|%,%,94.89713415,94.9705694,95.03737188,95.100057,95.15761118,95.20523201,95.24557337,95.28090063,95.31281999,95.34186376 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Population|Low|%,%,1.244711625,1.257778161,1.263156777,1.26445699,1.263117413,1.260718565,1.257670194,1.254249975,1.250493313,1.246841131 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Population|Low|%,%,66.90736624,66.92763088,66.85001818,66.60393973,66.35995891,66.04809959,65.68772173,65.35030849,65.02638062,64.7400749 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Population|Low|%,%,12.88067221,12.58299447,12.31925119,12.07687513,11.858511,11.67040594,11.50739775,11.36283209,11.23322113,11.11654547 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Population|Low|%,%,67.8090517,67.70278147,67.61682831,67.53500833,67.45059099,67.36633992,67.30051004,67.2449981,67.19829375,67.15895822 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Population|Low|%,%,60.46647449,60.71990156,60.94581406,61.1382073,61.29582853,61.4198674,61.52293246,61.60746569,61.67835175,61.7406643 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Population|Low|%,%,22.9306914,22.91978445,22.92422726,22.9776091,23.03689467,23.12213352,22.99058407,23.03790792,23.15086048,23.11436869 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Population|Low|%,%,11.81482143,11.64355897,11.4132309,11.15030879,10.87067625,10.58872956,10.30331181,10.01843583,9.763441808,9.547160111 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Population|Low|%,%,61.42995095,62.59107449,63.49942853,64.2678956,64.90306283,65.38816117,65.66337869,65.73206135,65.66936153,65.52009107 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Population|Low|%,%,8.454451777,8.441042779,8.399746645,8.357256571,8.314431651,8.264266211,8.209477316,8.154678443,8.101847112,8.049499368 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Population|Low|%,%,95.54359761,95.58190965,95.61683161,95.64841352,95.6762906,95.69968213,95.71945652,95.73601872,95.75009252,95.76199761 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Population|Low|%,%,31.52654895,31.66090509,31.7326351,31.75193657,31.72887316,31.67091891,31.59541672,31.50991638,31.4173639,31.33780158 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Population|Low|%,%,34.59899544,34.70357003,34.73432381,34.77395521,34.83621636,34.85364685,34.84665892,34.84062658,34.83477852,34.8316146 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Population|Low|%,%,99.92977224,99.92912771,99.92810962,99.92702038,99.92589272,99.92464427,99.92355126,99.92268523,99.9219649,99.92133086 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Population|Low|%,%,99.99979937,99.99982248,99.99984262,99.99986084,99.99987625,99.99988952,99.99990065,99.99990981,99.9999177,99.99992422 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Population|Low|%,%,98.97639822,99.0255146,99.06508716,99.09502406,99.11714454,99.13406177,99.14764074,99.15384956,99.16515516,99.16738013 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Population|Low|%,%,30.19550342,30.26598709,30.27072589,30.27336873,30.27457365,30.27537272,30.27626853,30.27683221,30.27702168,30.27755572 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Population|Low|%,%,4.444908327,4.453319683,4.462590213,4.472779079,4.48096905,4.488370121,4.498050973,4.50938702,4.52020812,4.530724531 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Population|Low|%,%,96.32055299,96.35014191,96.3856305,96.42518438,96.46702372,96.50752197,96.54555299,96.57983726,96.60990512,96.63564604 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Population|Low|%,%,5.134612865,5.10526464,5.072298069,5.036437481,4.998109069,4.955451227,4.911728802,4.875369612,4.846460183,4.820362745 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Population|Low|%,%,10.42041691,10.38005204,10.27932069,10.23970891,10.24943051,10.28390392,10.30603618,10.2944185,10.26166776,10.18292261 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Population|Low|%,%,7.00143765,7.013866521,7.027336689,7.039771586,7.050592484,7.061971804,7.072583145,7.081591514,7.089562189,7.096700005 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Population|Low|%,%,58.23262037,58.62673277,59.01006504,59.40597422,59.79594309,60.14296845,60.41016407,60.6547181,60.87126294,60.99790356 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Population|Low|%,%,99.99955976,99.99959327,99.99961948,99.99963946,99.99965485,99.99966629,99.99967524,99.9996825,99.99968829,99.99969318 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Population|Low|%,%,20.99904285,20.84638281,20.70787034,20.56499939,20.40839087,20.25337588,20.10908677,19.97145448,19.85258485,19.76151965 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Population|Low|%,%,99.00108542,99.08869772,99.15444149,99.20519885,99.24904244,99.28576445,99.31673804,99.34242808,99.36780814,99.38052319 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Population|Low|%,%,0.53045467,0.547115928,0.563246969,0.576371186,0.587125923,0.596165304,0.602481501,0.606158378,0.609016103,0.610847462 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Population|Low|%,%,98.09678332,98.2598609,98.38842945,98.51223664,98.62381109,98.71481704,98.78698024,98.83909519,98.87862436,98.91331587 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Population|Low|%,%,75.07458429,74.66635536,74.2351771,73.84262896,73.4845279,73.17328516,72.87248852,72.64353371,72.50451859,72.45598874 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Population|Low|%,%,4.183056957,4.108146081,4.041553595,3.992381071,3.935412461,3.879922447,3.830616134,3.794826206,3.767358718,3.758191713 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Population|Low|%,%,99.94442413,99.9504619,99.95556431,99.95954465,99.96287926,99.96558008,99.96782792,99.96984523,99.97163934,99.97334601 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Population|Low|%,%,19.88117235,20.26599423,20.39414911,20.41777749,20.40649589,20.35864378,20.27586831,20.17727406,20.06923413,19.95655349 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Population|Low|%,%,99.76637711,99.77606432,99.78391491,99.78943402,99.79390185,99.79805984,99.80179288,99.80514661,99.80817701,99.8109441 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Population|Low|%,%,26.56770008,26.7940847,26.96814852,27.0944425,27.18502337,27.24227503,27.27442838,27.28446913,27.29083985,27.29486922 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Population|Low|%,%,35.55592765,36.18296384,36.34525404,36.43109014,36.48449536,36.51974235,36.54380664,36.56298532,36.57600634,36.58544863 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Population|Low|%,%,93.56632266,93.69989383,93.73648515,93.73974067,93.73567561,93.72582542,93.70256975,93.67137864,93.63498562,93.59322166 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Population|Low|%,%,54.34367178,55.84692384,57.00365415,57.83481103,58.54488237,58.95061689,59.38063074,59.75610087,60.08917247,60.38863581 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Population|Low|%,%,91.59563972,91.624722,91.66128004,91.70222527,91.74806085,91.79908624,91.85385008,91.91309199,91.96998078,92.02764603 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Population|Low|%,%,57.08077623,57.12624522,57.14613235,57.11849555,57.07398611,57.03459652,56.99541473,56.95465007,56.91479343,56.87812783 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Population|Low|%,%,54.81334381,54.69658171,54.56560689,54.43784186,54.30738903,54.17425644,54.04756923,53.93374551,53.83298917,53.74349555 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Population|Low|%,%,99.97694398,99.97770238,99.9768691,99.97721945,99.97700336,99.9774329,99.97738767,99.97791923,99.97791744,99.97764133 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Population|Low|%,%,39.51773667,45.37601664,50.80171848,55.36872688,59.11040646,61.97028864,63.97484558,65.22290882,66.13477966,66.88881074 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Population|Low|%,%,7.464583683,7.250260222,7.049997678,6.845385095,6.612141172,6.400155683,6.211165936,6.050627855,5.913948543,5.816679942 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Population|Low|%,%,86.06249208,86.26101255,86.40925044,86.52141836,86.59941523,86.65193616,86.6822482,86.69963032,86.70906133,86.71194573 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Population|Low|%,%,0.070236104,0.072153404,0.07317781,0.073650984,0.074079623,0.074814023,0.075156928,0.075792611,0.075900334,0.076119947 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Population|Low|%,%,1.626335608,1.610382555,1.593685459,1.57626757,1.559251267,1.543610005,1.52982611,1.518450614,1.508428665,1.499285374 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Population|Low|%,%,0.953320359,0.960608669,0.968923621,0.978646497,0.98911249,1.00014025,1.010094263,1.017500707,1.023133143,1.027215685 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Population|Low|%,%,5.797881228,5.902973762,5.969607724,6.015949794,6.047836986,6.059388658,6.043791615,6.001232351,5.948237299,5.895422785 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Population|Low|%,%,36.74126052,36.75984107,36.79842852,36.72158765,36.70238331,36.61816664,36.5290602,36.50669191,36.43556607,36.4341024 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Population|Low|%,%,27.87878288,27.87934734,27.88642062,27.89682682,27.90823989,27.91971772,27.93073576,27.94099208,27.95011359,27.95798243 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Population|Low|%,%,99.9994442,99.99946282,99.99947786,99.99948847,99.99949742,99.9995038,99.99950926,99.99951503,99.9995205,99.99952503 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Population|Low|%,%,5.144223034,5.268150142,5.362428501,5.428122589,5.490892011,5.536215255,5.56863436,5.584088276,5.583708142,5.580141185 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Population|Low|%,%,96.05018738,96.19494745,96.29783295,96.37996111,96.4518228,96.50971039,96.56309633,96.60826047,96.64179645,96.66716834 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Population|Low|%,%,3.757037965,3.746516945,3.734235463,3.720098449,3.705435905,3.691509121,3.678683716,3.6666086,3.65543885,3.647112619 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Population|Low|%,%,61.29594895,61.282327,61.39486788,61.57759239,61.82674606,62.10112808,62.39697261,62.70611676,63.02527476,63.29481141 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Population|Low|%,%,31.22303811,31.01005072,30.79459376,30.59324661,30.41403843,30.25516602,30.11497734,29.99146306,29.88287218,29.78762575 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Population|Low|%,%,71.78132602,71.6647593,71.55004416,71.44631676,71.35473812,71.27147459,71.20943992,71.16310559,71.12731533,71.09983194 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Population|Low|%,%,99.73782446,99.74383165,99.74996923,99.75617582,99.76246604,99.76814405,99.7745017,99.7819682,99.79052492,99.79995477 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Population|Low|%,%,93.55938206,93.59421737,93.63980442,93.69277376,93.74846971,93.80500682,93.85712242,93.90409183,93.94535907,93.98103374 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Population|Low|%,%,99.95874168,99.95733304,99.95858294,99.95919574,99.95919778,99.95978234,99.96087923,99.96246306,99.96250536,99.96335453 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Population|Low|%,%,62.60103823,62.64413314,62.69069017,62.74239525,62.79908239,62.85082633,62.89164667,62.92474971,62.9475935,62.96141985 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Population|Low|%,%,17.67685618,17.5131866,17.38973505,17.29248718,17.21482286,17.15083015,17.09713328,17.0517025,17.01278259,16.97963567 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Population|Low|%,%,99.99819392,99.99826498,99.99832381,99.99837236,99.99841103,99.9984404,99.99846221,99.99848156,99.99849605,99.99850952 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Population|Low|%,%,16.74237824,16.72402496,16.71992971,16.72182561,16.73093378,16.74582784,16.76444973,16.78593603,16.80882185,16.83294122 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Population|Low|%,%,29.79771807,30.38290275,30.71384925,30.95976434,31.02870919,31.11062095,31.15660488,31.1074277,31.1204905,31.08049044 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Population|Low|%,%,7.333046067,7.535667349,7.654533804,7.736593143,7.775823503,7.795218349,7.805826099,7.806115878,7.797285169,7.78365014 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Population|Low|%,%,70.00191786,69.5690363,69.41212745,69.31685602,69.28720308,69.28502152,69.28250466,69.28135767,69.28045671,69.2796868 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p5,CAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,STP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TKM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LTU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KHM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ETH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PSE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BOL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BFA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GHA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SAU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CPV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GTM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BIH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NLD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,OMN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ALB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GAB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NZL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,YEM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,WSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SVK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LSO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VCT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TJK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AFG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LCA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CYP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PYF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LAO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CIV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ESH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CUB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ARM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ATG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UKR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BHR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TON,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,USA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VNM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BGR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ROU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MOZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KGZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KWT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LUX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ECU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,AUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BEL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,THA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HTI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,IRQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SLE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GEO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HKG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DNK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,POL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MAR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HRV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,CHE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BLZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TCD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EST,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,URY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GNQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LBN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,UZB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,RWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TLS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,REU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BDI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TWN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NIC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,QAT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ITA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BTN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NPL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MLT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MDV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ISL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MWI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,TTO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ZWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,DEU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MTQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,KAZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,ERI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,NCL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MKD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,PRY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LVA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,JPN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SYR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,HND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MEX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,EGY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SGP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,SRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,BWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GRC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,LKA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GUF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,COM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,FSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,GLP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,MYT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p5,VIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +Climate Solutions,ssp2_1p2,CAN,cdd|Hazard|Difference,days/yr,-3.52888267,-3.52888267,-3.52888267,-3.52888267,-3.52888267,-3.52888267,-3.52888267,-3.52888267,-3.52888267,-3.52888267 +Climate Solutions,ssp2_1p2,STP,cdd|Hazard|Difference,days/yr,0.595266154,0.595266154,0.595266154,0.595266154,0.595266154,0.595266154,0.595266154,0.595266154,0.595266154,0.595266154 +Climate Solutions,ssp2_1p2,TKM,cdd|Hazard|Difference,days/yr,-0.172663824,-0.172663824,-0.172663824,-0.172663824,-0.172663824,-0.172663824,-0.172663824,-0.172663824,-0.172663824,-0.172663824 +Climate Solutions,ssp2_1p2,LTU,cdd|Hazard|Difference,days/yr,-3.623383757,-3.623383757,-3.623383757,-3.623383757,-3.623383757,-3.623383757,-3.623383757,-3.623383757,-3.623383757,-3.623383757 +Climate Solutions,ssp2_1p2,KHM,cdd|Hazard|Difference,days/yr,-0.85372216,-0.85372216,-0.85372216,-0.85372216,-0.85372216,-0.85372216,-0.85372216,-0.85372216,-0.85372216,-0.85372216 +Climate Solutions,ssp2_1p2,ETH,cdd|Hazard|Difference,days/yr,-1.751278463,-1.751278463,-1.751278463,-1.751278463,-1.751278463,-1.751278463,-1.751278463,-1.751278463,-1.751278463,-1.751278463 +Climate Solutions,ssp2_1p2,SWZ,cdd|Hazard|Difference,days/yr,1.687054312,1.687054312,1.687054312,1.687054312,1.687054312,1.687054312,1.687054312,1.687054312,1.687054312,1.687054312 +Climate Solutions,ssp2_1p2,PSE,cdd|Hazard|Difference,days/yr,-0.198297528,-0.198297528,-0.198297528,-0.198297528,-0.198297528,-0.198297528,-0.198297528,-0.198297528,-0.198297528,-0.198297528 +Climate Solutions,ssp2_1p2,ARG,cdd|Hazard|Difference,days/yr,2.416326591,2.416326591,2.416326591,2.416326591,2.416326591,2.416326591,2.416326591,2.416326591,2.416326591,2.416326591 +Climate Solutions,ssp2_1p2,BOL,cdd|Hazard|Difference,days/yr,5.370624944,5.370624944,5.370624944,5.370624944,5.370624944,5.370624944,5.370624944,5.370624944,5.370624944,5.370624944 +Climate Solutions,ssp2_1p2,BHS,cdd|Hazard|Difference,days/yr,0.441237617,0.441237617,0.441237617,0.441237617,0.441237617,0.441237617,0.441237617,0.441237617,0.441237617,0.441237617 +Climate Solutions,ssp2_1p2,BFA,cdd|Hazard|Difference,days/yr,-1.725609009,-1.725609009,-1.725609009,-1.725609009,-1.725609009,-1.725609009,-1.725609009,-1.725609009,-1.725609009,-1.725609009 +Climate Solutions,ssp2_1p2,GHA,cdd|Hazard|Difference,days/yr,-4.264578273,-4.264578273,-4.264578273,-4.264578273,-4.264578273,-4.264578273,-4.264578273,-4.264578273,-4.264578273,-4.264578273 +Climate Solutions,ssp2_1p2,SAU,cdd|Hazard|Difference,days/yr,-3.209629891,-3.209629891,-3.209629891,-3.209629891,-3.209629891,-3.209629891,-3.209629891,-3.209629891,-3.209629891,-3.209629891 +Climate Solutions,ssp2_1p2,CPV,cdd|Hazard|Difference,days/yr,-0.426869906,-0.426869906,-0.426869906,-0.426869906,-0.426869906,-0.426869906,-0.426869906,-0.426869906,-0.426869906,-0.426869906 +Climate Solutions,ssp2_1p2,SVN,cdd|Hazard|Difference,days/yr,-1.102059183,-1.102059183,-1.102059183,-1.102059183,-1.102059183,-1.102059183,-1.102059183,-1.102059183,-1.102059183,-1.102059183 +Climate Solutions,ssp2_1p2,GTM,cdd|Hazard|Difference,days/yr,2.526363087,2.526363087,2.526363087,2.526363087,2.526363087,2.526363087,2.526363087,2.526363087,2.526363087,2.526363087 +Climate Solutions,ssp2_1p2,BIH,cdd|Hazard|Difference,days/yr,-1.782980617,-1.782980617,-1.782980617,-1.782980617,-1.782980617,-1.782980617,-1.782980617,-1.782980617,-1.782980617,-1.782980617 +Climate Solutions,ssp2_1p2,GIN,cdd|Hazard|Difference,days/yr,-1.784834491,-1.784834491,-1.784834491,-1.784834491,-1.784834491,-1.784834491,-1.784834491,-1.784834491,-1.784834491,-1.784834491 +Climate Solutions,ssp2_1p2,JOR,cdd|Hazard|Difference,days/yr,-0.799607327,-0.799607327,-0.799607327,-0.799607327,-0.799607327,-0.799607327,-0.799607327,-0.799607327,-0.799607327,-0.799607327 +Climate Solutions,ssp2_1p2,COG,cdd|Hazard|Difference,days/yr,-0.108364301,-0.108364301,-0.108364301,-0.108364301,-0.108364301,-0.108364301,-0.108364301,-0.108364301,-0.108364301,-0.108364301 +Climate Solutions,ssp2_1p2,ESP,cdd|Hazard|Difference,days/yr,2.999489019,2.999489019,2.999489019,2.999489019,2.999489019,2.999489019,2.999489019,2.999489019,2.999489019,2.999489019 +Climate Solutions,ssp2_1p2,LBR,cdd|Hazard|Difference,days/yr,-0.324292248,-0.324292248,-0.324292248,-0.324292248,-0.324292248,-0.324292248,-0.324292248,-0.324292248,-0.324292248,-0.324292248 +Climate Solutions,ssp2_1p2,NLD,cdd|Hazard|Difference,days/yr,0.509740543,0.509740543,0.509740543,0.509740543,0.509740543,0.509740543,0.509740543,0.509740543,0.509740543,0.509740543 +Climate Solutions,ssp2_1p2,JAM,cdd|Hazard|Difference,days/yr,2.19549353,2.19549353,2.19549353,2.19549353,2.19549353,2.19549353,2.19549353,2.19549353,2.19549353,2.19549353 +Climate Solutions,ssp2_1p2,OMN,cdd|Hazard|Difference,days/yr,-1.877519324,-1.877519324,-1.877519324,-1.877519324,-1.877519324,-1.877519324,-1.877519324,-1.877519324,-1.877519324,-1.877519324 +Climate Solutions,ssp2_1p2,TZA,cdd|Hazard|Difference,days/yr,-1.449492759,-1.449492759,-1.449492759,-1.449492759,-1.449492759,-1.449492759,-1.449492759,-1.449492759,-1.449492759,-1.449492759 +Climate Solutions,ssp2_1p2,ALB,cdd|Hazard|Difference,days/yr,0.514804799,0.514804799,0.514804799,0.514804799,0.514804799,0.514804799,0.514804799,0.514804799,0.514804799,0.514804799 +Climate Solutions,ssp2_1p2,GAB,cdd|Hazard|Difference,days/yr,1.38737006,1.38737006,1.38737006,1.38737006,1.38737006,1.38737006,1.38737006,1.38737006,1.38737006,1.38737006 +Climate Solutions,ssp2_1p2,NZL,cdd|Hazard|Difference,days/yr,0.302518013,0.302518013,0.302518013,0.302518013,0.302518013,0.302518013,0.302518013,0.302518013,0.302518013,0.302518013 +Climate Solutions,ssp2_1p2,YEM,cdd|Hazard|Difference,days/yr,-2.716245788,-2.716245788,-2.716245788,-2.716245788,-2.716245788,-2.716245788,-2.716245788,-2.716245788,-2.716245788,-2.716245788 +Climate Solutions,ssp2_1p2,PAK,cdd|Hazard|Difference,days/yr,-1.756551816,-1.756551816,-1.756551816,-1.756551816,-1.756551816,-1.756551816,-1.756551816,-1.756551816,-1.756551816,-1.756551816 +Climate Solutions,ssp2_1p2,WSM,cdd|Hazard|Difference,days/yr,0.747629618,0.747629618,0.747629618,0.747629618,0.747629618,0.747629618,0.747629618,0.747629618,0.747629618,0.747629618 +Climate Solutions,ssp2_1p2,SVK,cdd|Hazard|Difference,days/yr,-1.886629593,-1.886629593,-1.886629593,-1.886629593,-1.886629593,-1.886629593,-1.886629593,-1.886629593,-1.886629593,-1.886629593 +Climate Solutions,ssp2_1p2,ARE,cdd|Hazard|Difference,days/yr,-1.996851773,-1.996851773,-1.996851773,-1.996851773,-1.996851773,-1.996851773,-1.996851773,-1.996851773,-1.996851773,-1.996851773 +Climate Solutions,ssp2_1p2,GUM,cdd|Hazard|Difference,days/yr,-0.22746887,-0.22746887,-0.22746887,-0.22746887,-0.22746887,-0.22746887,-0.22746887,-0.22746887,-0.22746887,-0.22746887 +Climate Solutions,ssp2_1p2,IND,cdd|Hazard|Difference,days/yr,1.106683984,1.106683984,1.106683984,1.106683984,1.106683984,1.106683984,1.106683984,1.106683984,1.106683984,1.106683984 +Climate Solutions,ssp2_1p2,AZE,cdd|Hazard|Difference,days/yr,3.494780761,3.494780761,3.494780761,3.494780761,3.494780761,3.494780761,3.494780761,3.494780761,3.494780761,3.494780761 +Climate Solutions,ssp2_1p2,MDG,cdd|Hazard|Difference,days/yr,1.621170639,1.621170639,1.621170639,1.621170639,1.621170639,1.621170639,1.621170639,1.621170639,1.621170639,1.621170639 +Climate Solutions,ssp2_1p2,LSO,cdd|Hazard|Difference,days/yr,1.603071069,1.603071069,1.603071069,1.603071069,1.603071069,1.603071069,1.603071069,1.603071069,1.603071069,1.603071069 +Climate Solutions,ssp2_1p2,VCT,cdd|Hazard|Difference,days/yr,0.174284347,0.174284347,0.174284347,0.174284347,0.174284347,0.174284347,0.174284347,0.174284347,0.174284347,0.174284347 +Climate Solutions,ssp2_1p2,KEN,cdd|Hazard|Difference,days/yr,-0.638041585,-0.638041585,-0.638041585,-0.638041585,-0.638041585,-0.638041585,-0.638041585,-0.638041585,-0.638041585,-0.638041585 +Climate Solutions,ssp2_1p2,KOR,cdd|Hazard|Difference,days/yr,1.65620844,1.65620844,1.65620844,1.65620844,1.65620844,1.65620844,1.65620844,1.65620844,1.65620844,1.65620844 +Climate Solutions,ssp2_1p2,BLR,cdd|Hazard|Difference,days/yr,-3.518399009,-3.518399009,-3.518399009,-3.518399009,-3.518399009,-3.518399009,-3.518399009,-3.518399009,-3.518399009,-3.518399009 +Climate Solutions,ssp2_1p2,TJK,cdd|Hazard|Difference,days/yr,1.405793753,1.405793753,1.405793753,1.405793753,1.405793753,1.405793753,1.405793753,1.405793753,1.405793753,1.405793753 +Climate Solutions,ssp2_1p2,TUR,cdd|Hazard|Difference,days/yr,2.748489783,2.748489783,2.748489783,2.748489783,2.748489783,2.748489783,2.748489783,2.748489783,2.748489783,2.748489783 +Climate Solutions,ssp2_1p2,AFG,cdd|Hazard|Difference,days/yr,-1.651588467,-1.651588467,-1.651588467,-1.651588467,-1.651588467,-1.651588467,-1.651588467,-1.651588467,-1.651588467,-1.651588467 +Climate Solutions,ssp2_1p2,BGD,cdd|Hazard|Difference,days/yr,3.008706004,3.008706004,3.008706004,3.008706004,3.008706004,3.008706004,3.008706004,3.008706004,3.008706004,3.008706004 +Climate Solutions,ssp2_1p2,MRT,cdd|Hazard|Difference,days/yr,-0.938295892,-0.938295892,-0.938295892,-0.938295892,-0.938295892,-0.938295892,-0.938295892,-0.938295892,-0.938295892,-0.938295892 +Climate Solutions,ssp2_1p2,SLB,cdd|Hazard|Difference,days/yr,-0.275102534,-0.275102534,-0.275102534,-0.275102534,-0.275102534,-0.275102534,-0.275102534,-0.275102534,-0.275102534,-0.275102534 +Climate Solutions,ssp2_1p2,LCA,cdd|Hazard|Difference,days/yr,0.112923407,0.112923407,0.112923407,0.112923407,0.112923407,0.112923407,0.112923407,0.112923407,0.112923407,0.112923407 +Climate Solutions,ssp2_1p2,CYP,cdd|Hazard|Difference,days/yr,-0.656272879,-0.656272879,-0.656272879,-0.656272879,-0.656272879,-0.656272879,-0.656272879,-0.656272879,-0.656272879,-0.656272879 +Climate Solutions,ssp2_1p2,PYF,cdd|Hazard|Difference,days/yr,0.201267853,0.201267853,0.201267853,0.201267853,0.201267853,0.201267853,0.201267853,0.201267853,0.201267853,0.201267853 +Climate Solutions,ssp2_1p2,FRA,cdd|Hazard|Difference,days/yr,3.886530387,3.886530387,3.886530387,3.886530387,3.886530387,3.886530387,3.886530387,3.886530387,3.886530387,3.886530387 +Climate Solutions,ssp2_1p2,NAM,cdd|Hazard|Difference,days/yr,2.229999498,2.229999498,2.229999498,2.229999498,2.229999498,2.229999498,2.229999498,2.229999498,2.229999498,2.229999498 +Climate Solutions,ssp2_1p2,SOM,cdd|Hazard|Difference,days/yr,0.189367354,0.189367354,0.189367354,0.189367354,0.189367354,0.189367354,0.189367354,0.189367354,0.189367354,0.189367354 +Climate Solutions,ssp2_1p2,PER,cdd|Hazard|Difference,days/yr,2.113019789,2.113019789,2.113019789,2.113019789,2.113019789,2.113019789,2.113019789,2.113019789,2.113019789,2.113019789 +Climate Solutions,ssp2_1p2,LAO,cdd|Hazard|Difference,days/yr,1.644127559,1.644127559,1.644127559,1.644127559,1.644127559,1.644127559,1.644127559,1.644127559,1.644127559,1.644127559 +Climate Solutions,ssp2_1p2,SYC,cdd|Hazard|Difference,days/yr,0.140440479,0.140440479,0.140440479,0.140440479,0.140440479,0.140440479,0.140440479,0.140440479,0.140440479,0.140440479 +Climate Solutions,ssp2_1p2,NOR,cdd|Hazard|Difference,days/yr,-0.986036681,-0.986036681,-0.986036681,-0.986036681,-0.986036681,-0.986036681,-0.986036681,-0.986036681,-0.986036681,-0.986036681 +Climate Solutions,ssp2_1p2,CIV,cdd|Hazard|Difference,days/yr,-2.514090891,-2.514090891,-2.514090891,-2.514090891,-2.514090891,-2.514090891,-2.514090891,-2.514090891,-2.514090891,-2.514090891 +Climate Solutions,ssp2_1p2,BEN,cdd|Hazard|Difference,days/yr,-2.750180146,-2.750180146,-2.750180146,-2.750180146,-2.750180146,-2.750180146,-2.750180146,-2.750180146,-2.750180146,-2.750180146 +Climate Solutions,ssp2_1p2,ESH,cdd|Hazard|Difference,days/yr,0.338164175,0.338164175,0.338164175,0.338164175,0.338164175,0.338164175,0.338164175,0.338164175,0.338164175,0.338164175 +Climate Solutions,ssp2_1p2,CUB,cdd|Hazard|Difference,days/yr,1.669333377,1.669333377,1.669333377,1.669333377,1.669333377,1.669333377,1.669333377,1.669333377,1.669333377,1.669333377 +Climate Solutions,ssp2_1p2,CMR,cdd|Hazard|Difference,days/yr,-6.48675963,-6.48675963,-6.48675963,-6.48675963,-6.48675963,-6.48675963,-6.48675963,-6.48675963,-6.48675963,-6.48675963 +Climate Solutions,ssp2_1p2,MNE,cdd|Hazard|Difference,days/yr,0.312630015,0.312630015,0.312630015,0.312630015,0.312630015,0.312630015,0.312630015,0.312630015,0.312630015,0.312630015 +Climate Solutions,ssp2_1p2,TGO,cdd|Hazard|Difference,days/yr,-2.517876773,-2.517876773,-2.517876773,-2.517876773,-2.517876773,-2.517876773,-2.517876773,-2.517876773,-2.517876773,-2.517876773 +Climate Solutions,ssp2_1p2,CHN,cdd|Hazard|Difference,days/yr,-1.057181644,-1.057181644,-1.057181644,-1.057181644,-1.057181644,-1.057181644,-1.057181644,-1.057181644,-1.057181644,-1.057181644 +Climate Solutions,ssp2_1p2,ARM,cdd|Hazard|Difference,days/yr,2.962482161,2.962482161,2.962482161,2.962482161,2.962482161,2.962482161,2.962482161,2.962482161,2.962482161,2.962482161 +Climate Solutions,ssp2_1p2,ATG,cdd|Hazard|Difference,days/yr,-0.258094268,-0.258094268,-0.258094268,-0.258094268,-0.258094268,-0.258094268,-0.258094268,-0.258094268,-0.258094268,-0.258094268 +Climate Solutions,ssp2_1p2,DOM,cdd|Hazard|Difference,days/yr,-0.076720191,-0.076720191,-0.076720191,-0.076720191,-0.076720191,-0.076720191,-0.076720191,-0.076720191,-0.076720191,-0.076720191 +Climate Solutions,ssp2_1p2,UKR,cdd|Hazard|Difference,days/yr,-1.612537964,-1.612537964,-1.612537964,-1.612537964,-1.612537964,-1.612537964,-1.612537964,-1.612537964,-1.612537964,-1.612537964 +Climate Solutions,ssp2_1p2,BHR,cdd|Hazard|Difference,days/yr,-0.208712538,-0.208712538,-0.208712538,-0.208712538,-0.208712538,-0.208712538,-0.208712538,-0.208712538,-0.208712538,-0.208712538 +Climate Solutions,ssp2_1p2,TON,cdd|Hazard|Difference,days/yr,0.033256491,0.033256491,0.033256491,0.033256491,0.033256491,0.033256491,0.033256491,0.033256491,0.033256491,0.033256491 +Climate Solutions,ssp2_1p2,FIN,cdd|Hazard|Difference,days/yr,-2.830546393,-2.830546393,-2.830546393,-2.830546393,-2.830546393,-2.830546393,-2.830546393,-2.830546393,-2.830546393,-2.830546393 +Climate Solutions,ssp2_1p2,LBY,cdd|Hazard|Difference,days/yr,-0.258563518,-0.258563518,-0.258563518,-0.258563518,-0.258563518,-0.258563518,-0.258563518,-0.258563518,-0.258563518,-0.258563518 +Climate Solutions,ssp2_1p2,IDN,cdd|Hazard|Difference,days/yr,0.607170385,0.607170385,0.607170385,0.607170385,0.607170385,0.607170385,0.607170385,0.607170385,0.607170385,0.607170385 +Climate Solutions,ssp2_1p2,CAF,cdd|Hazard|Difference,days/yr,-4.144743677,-4.144743677,-4.144743677,-4.144743677,-4.144743677,-4.144743677,-4.144743677,-4.144743677,-4.144743677,-4.144743677 +Climate Solutions,ssp2_1p2,USA,cdd|Hazard|Difference,days/yr,0.230998748,0.230998748,0.230998748,0.230998748,0.230998748,0.230998748,0.230998748,0.230998748,0.230998748,0.230998748 +Climate Solutions,ssp2_1p2,SWE,cdd|Hazard|Difference,days/yr,-1.892963771,-1.892963771,-1.892963771,-1.892963771,-1.892963771,-1.892963771,-1.892963771,-1.892963771,-1.892963771,-1.892963771 +Climate Solutions,ssp2_1p2,VNM,cdd|Hazard|Difference,days/yr,1.112920991,1.112920991,1.112920991,1.112920991,1.112920991,1.112920991,1.112920991,1.112920991,1.112920991,1.112920991 +Climate Solutions,ssp2_1p2,MLI,cdd|Hazard|Difference,days/yr,-1.031528763,-1.031528763,-1.031528763,-1.031528763,-1.031528763,-1.031528763,-1.031528763,-1.031528763,-1.031528763,-1.031528763 +Climate Solutions,ssp2_1p2,RUS,cdd|Hazard|Difference,days/yr,-4.028716753,-4.028716753,-4.028716753,-4.028716753,-4.028716753,-4.028716753,-4.028716753,-4.028716753,-4.028716753,-4.028716753 +Climate Solutions,ssp2_1p2,BGR,cdd|Hazard|Difference,days/yr,-1.226084413,-1.226084413,-1.226084413,-1.226084413,-1.226084413,-1.226084413,-1.226084413,-1.226084413,-1.226084413,-1.226084413 +Climate Solutions,ssp2_1p2,MUS,cdd|Hazard|Difference,days/yr,0.439074812,0.439074812,0.439074812,0.439074812,0.439074812,0.439074812,0.439074812,0.439074812,0.439074812,0.439074812 +Climate Solutions,ssp2_1p2,ROU,cdd|Hazard|Difference,days/yr,-0.99418536,-0.99418536,-0.99418536,-0.99418536,-0.99418536,-0.99418536,-0.99418536,-0.99418536,-0.99418536,-0.99418536 +Climate Solutions,ssp2_1p2,AGO,cdd|Hazard|Difference,days/yr,1.410493662,1.410493662,1.410493662,1.410493662,1.410493662,1.410493662,1.410493662,1.410493662,1.410493662,1.410493662 +Climate Solutions,ssp2_1p2,PRT,cdd|Hazard|Difference,days/yr,1.865553099,1.865553099,1.865553099,1.865553099,1.865553099,1.865553099,1.865553099,1.865553099,1.865553099,1.865553099 +Climate Solutions,ssp2_1p2,ZAF,cdd|Hazard|Difference,days/yr,2.911468164,2.911468164,2.911468164,2.911468164,2.911468164,2.911468164,2.911468164,2.911468164,2.911468164,2.911468164 +Climate Solutions,ssp2_1p2,FJI,cdd|Hazard|Difference,days/yr,-0.101388221,-0.101388221,-0.101388221,-0.101388221,-0.101388221,-0.101388221,-0.101388221,-0.101388221,-0.101388221,-0.101388221 +Climate Solutions,ssp2_1p2,BRN,cdd|Hazard|Difference,days/yr,-1.72892008,-1.72892008,-1.72892008,-1.72892008,-1.72892008,-1.72892008,-1.72892008,-1.72892008,-1.72892008,-1.72892008 +Climate Solutions,ssp2_1p2,MYS,cdd|Hazard|Difference,days/yr,-1.002708076,-1.002708076,-1.002708076,-1.002708076,-1.002708076,-1.002708076,-1.002708076,-1.002708076,-1.002708076,-1.002708076 +Climate Solutions,ssp2_1p2,AUT,cdd|Hazard|Difference,days/yr,-2.038173206,-2.038173206,-2.038173206,-2.038173206,-2.038173206,-2.038173206,-2.038173206,-2.038173206,-2.038173206,-2.038173206 +Climate Solutions,ssp2_1p2,MOZ,cdd|Hazard|Difference,days/yr,0.636841273,0.636841273,0.636841273,0.636841273,0.636841273,0.636841273,0.636841273,0.636841273,0.636841273,0.636841273 +Climate Solutions,ssp2_1p2,UGA,cdd|Hazard|Difference,days/yr,-3.127867975,-3.127867975,-3.127867975,-3.127867975,-3.127867975,-3.127867975,-3.127867975,-3.127867975,-3.127867975,-3.127867975 +Climate Solutions,ssp2_1p2,KGZ,cdd|Hazard|Difference,days/yr,0.432542776,0.432542776,0.432542776,0.432542776,0.432542776,0.432542776,0.432542776,0.432542776,0.432542776,0.432542776 +Climate Solutions,ssp2_1p2,HUN,cdd|Hazard|Difference,days/yr,-1.557453769,-1.557453769,-1.557453769,-1.557453769,-1.557453769,-1.557453769,-1.557453769,-1.557453769,-1.557453769,-1.557453769 +Climate Solutions,ssp2_1p2,NER,cdd|Hazard|Difference,days/yr,-1.974949787,-1.974949787,-1.974949787,-1.974949787,-1.974949787,-1.974949787,-1.974949787,-1.974949787,-1.974949787,-1.974949787 +Climate Solutions,ssp2_1p2,BRA,cdd|Hazard|Difference,days/yr,4.948398075,4.948398075,4.948398075,4.948398075,4.948398075,4.948398075,4.948398075,4.948398075,4.948398075,4.948398075 +Climate Solutions,ssp2_1p2,KWT,cdd|Hazard|Difference,days/yr,-0.531163584,-0.531163584,-0.531163584,-0.531163584,-0.531163584,-0.531163584,-0.531163584,-0.531163584,-0.531163584,-0.531163584 +Climate Solutions,ssp2_1p2,PAN,cdd|Hazard|Difference,days/yr,-0.983254299,-0.983254299,-0.983254299,-0.983254299,-0.983254299,-0.983254299,-0.983254299,-0.983254299,-0.983254299,-0.983254299 +Climate Solutions,ssp2_1p2,GUY,cdd|Hazard|Difference,days/yr,-0.365151448,-0.365151448,-0.365151448,-0.365151448,-0.365151448,-0.365151448,-0.365151448,-0.365151448,-0.365151448,-0.365151448 +Climate Solutions,ssp2_1p2,CRI,cdd|Hazard|Difference,days/yr,0.80673855,0.80673855,0.80673855,0.80673855,0.80673855,0.80673855,0.80673855,0.80673855,0.80673855,0.80673855 +Climate Solutions,ssp2_1p2,LUX,cdd|Hazard|Difference,days/yr,0.085434991,0.085434991,0.085434991,0.085434991,0.085434991,0.085434991,0.085434991,0.085434991,0.085434991,0.085434991 +Climate Solutions,ssp2_1p2,IRL,cdd|Hazard|Difference,days/yr,0.642732668,0.642732668,0.642732668,0.642732668,0.642732668,0.642732668,0.642732668,0.642732668,0.642732668,0.642732668 +Climate Solutions,ssp2_1p2,NGA,cdd|Hazard|Difference,days/yr,-3.83053049,-3.83053049,-3.83053049,-3.83053049,-3.83053049,-3.83053049,-3.83053049,-3.83053049,-3.83053049,-3.83053049 +Climate Solutions,ssp2_1p2,ECU,cdd|Hazard|Difference,days/yr,-0.526462566,-0.526462566,-0.526462566,-0.526462566,-0.526462566,-0.526462566,-0.526462566,-0.526462566,-0.526462566,-0.526462566 +Climate Solutions,ssp2_1p2,CZE,cdd|Hazard|Difference,days/yr,-2.412634235,-2.412634235,-2.412634235,-2.412634235,-2.412634235,-2.412634235,-2.412634235,-2.412634235,-2.412634235,-2.412634235 +Climate Solutions,ssp2_1p2,AUS,cdd|Hazard|Difference,days/yr,1.945367546,1.945367546,1.945367546,1.945367546,1.945367546,1.945367546,1.945367546,1.945367546,1.945367546,1.945367546 +Climate Solutions,ssp2_1p2,IRN,cdd|Hazard|Difference,days/yr,0.455155439,0.455155439,0.455155439,0.455155439,0.455155439,0.455155439,0.455155439,0.455155439,0.455155439,0.455155439 +Climate Solutions,ssp2_1p2,DZA,cdd|Hazard|Difference,days/yr,1.814974585,1.814974585,1.814974585,1.814974585,1.814974585,1.814974585,1.814974585,1.814974585,1.814974585,1.814974585 +Climate Solutions,ssp2_1p2,SLV,cdd|Hazard|Difference,days/yr,0.296322076,0.296322076,0.296322076,0.296322076,0.296322076,0.296322076,0.296322076,0.296322076,0.296322076,0.296322076 +Climate Solutions,ssp2_1p2,CHL,cdd|Hazard|Difference,days/yr,3.131094545,3.131094545,3.131094545,3.131094545,3.131094545,3.131094545,3.131094545,3.131094545,3.131094545,3.131094545 +Climate Solutions,ssp2_1p2,PRI,cdd|Hazard|Difference,days/yr,0.165812697,0.165812697,0.165812697,0.165812697,0.165812697,0.165812697,0.165812697,0.165812697,0.165812697,0.165812697 +Climate Solutions,ssp2_1p2,BEL,cdd|Hazard|Difference,days/yr,-0.083966943,-0.083966943,-0.083966943,-0.083966943,-0.083966943,-0.083966943,-0.083966943,-0.083966943,-0.083966943,-0.083966943 +Climate Solutions,ssp2_1p2,THA,cdd|Hazard|Difference,days/yr,-0.752824816,-0.752824816,-0.752824816,-0.752824816,-0.752824816,-0.752824816,-0.752824816,-0.752824816,-0.752824816,-0.752824816 +Climate Solutions,ssp2_1p2,HTI,cdd|Hazard|Difference,days/yr,-0.497158176,-0.497158176,-0.497158176,-0.497158176,-0.497158176,-0.497158176,-0.497158176,-0.497158176,-0.497158176,-0.497158176 +Climate Solutions,ssp2_1p2,IRQ,cdd|Hazard|Difference,days/yr,-0.948821934,-0.948821934,-0.948821934,-0.948821934,-0.948821934,-0.948821934,-0.948821934,-0.948821934,-0.948821934,-0.948821934 +Climate Solutions,ssp2_1p2,SLE,cdd|Hazard|Difference,days/yr,-0.372284432,-0.372284432,-0.372284432,-0.372284432,-0.372284432,-0.372284432,-0.372284432,-0.372284432,-0.372284432,-0.372284432 +Climate Solutions,ssp2_1p2,GEO,cdd|Hazard|Difference,days/yr,1.641979431,1.641979431,1.641979431,1.641979431,1.641979431,1.641979431,1.641979431,1.641979431,1.641979431,1.641979431 +Climate Solutions,ssp2_1p2,HKG,cdd|Hazard|Difference,days/yr,0.441446214,0.441446214,0.441446214,0.441446214,0.441446214,0.441446214,0.441446214,0.441446214,0.441446214,0.441446214 +Climate Solutions,ssp2_1p2,DNK,cdd|Hazard|Difference,days/yr,1.15088688,1.15088688,1.15088688,1.15088688,1.15088688,1.15088688,1.15088688,1.15088688,1.15088688,1.15088688 +Climate Solutions,ssp2_1p2,POL,cdd|Hazard|Difference,days/yr,-1.786353431,-1.786353431,-1.786353431,-1.786353431,-1.786353431,-1.786353431,-1.786353431,-1.786353431,-1.786353431,-1.786353431 +Climate Solutions,ssp2_1p2,MDA,cdd|Hazard|Difference,days/yr,-0.898404336,-0.898404336,-0.898404336,-0.898404336,-0.898404336,-0.898404336,-0.898404336,-0.898404336,-0.898404336,-0.898404336 +Climate Solutions,ssp2_1p2,MAR,cdd|Hazard|Difference,days/yr,2.504253858,2.504253858,2.504253858,2.504253858,2.504253858,2.504253858,2.504253858,2.504253858,2.504253858,2.504253858 +Climate Solutions,ssp2_1p2,HRV,cdd|Hazard|Difference,days/yr,-0.717048153,-0.717048153,-0.717048153,-0.717048153,-0.717048153,-0.717048153,-0.717048153,-0.717048153,-0.717048153,-0.717048153 +Climate Solutions,ssp2_1p2,MNG,cdd|Hazard|Difference,days/yr,-7.213723253,-7.213723253,-7.213723253,-7.213723253,-7.213723253,-7.213723253,-7.213723253,-7.213723253,-7.213723253,-7.213723253 +Climate Solutions,ssp2_1p2,GNB,cdd|Hazard|Difference,days/yr,-0.07994046,-0.07994046,-0.07994046,-0.07994046,-0.07994046,-0.07994046,-0.07994046,-0.07994046,-0.07994046,-0.07994046 +Climate Solutions,ssp2_1p2,KIR,cdd|Hazard|Difference,days/yr,-0.051240064,-0.051240064,-0.051240064,-0.051240064,-0.051240064,-0.051240064,-0.051240064,-0.051240064,-0.051240064,-0.051240064 +Climate Solutions,ssp2_1p2,CHE,cdd|Hazard|Difference,days/yr,-0.557386557,-0.557386557,-0.557386557,-0.557386557,-0.557386557,-0.557386557,-0.557386557,-0.557386557,-0.557386557,-0.557386557 +Climate Solutions,ssp2_1p2,GRD,cdd|Hazard|Difference,days/yr,0.488342857,0.488342857,0.488342857,0.488342857,0.488342857,0.488342857,0.488342857,0.488342857,0.488342857,0.488342857 +Climate Solutions,ssp2_1p2,BLZ,cdd|Hazard|Difference,days/yr,4.28592078,4.28592078,4.28592078,4.28592078,4.28592078,4.28592078,4.28592078,4.28592078,4.28592078,4.28592078 +Climate Solutions,ssp2_1p2,TCD,cdd|Hazard|Difference,days/yr,-2.096503763,-2.096503763,-2.096503763,-2.096503763,-2.096503763,-2.096503763,-2.096503763,-2.096503763,-2.096503763,-2.096503763 +Climate Solutions,ssp2_1p2,EST,cdd|Hazard|Difference,days/yr,-3.840016837,-3.840016837,-3.840016837,-3.840016837,-3.840016837,-3.840016837,-3.840016837,-3.840016837,-3.840016837,-3.840016837 +Climate Solutions,ssp2_1p2,URY,cdd|Hazard|Difference,days/yr,-1.160932423,-1.160932423,-1.160932423,-1.160932423,-1.160932423,-1.160932423,-1.160932423,-1.160932423,-1.160932423,-1.160932423 +Climate Solutions,ssp2_1p2,GNQ,cdd|Hazard|Difference,days/yr,-1.21953219,-1.21953219,-1.21953219,-1.21953219,-1.21953219,-1.21953219,-1.21953219,-1.21953219,-1.21953219,-1.21953219 +Climate Solutions,ssp2_1p2,LBN,cdd|Hazard|Difference,days/yr,-0.60363113,-0.60363113,-0.60363113,-0.60363113,-0.60363113,-0.60363113,-0.60363113,-0.60363113,-0.60363113,-0.60363113 +Climate Solutions,ssp2_1p2,UZB,cdd|Hazard|Difference,days/yr,0.700975702,0.700975702,0.700975702,0.700975702,0.700975702,0.700975702,0.700975702,0.700975702,0.700975702,0.700975702 +Climate Solutions,ssp2_1p2,TUN,cdd|Hazard|Difference,days/yr,2.970396588,2.970396588,2.970396588,2.970396588,2.970396588,2.970396588,2.970396588,2.970396588,2.970396588,2.970396588 +Climate Solutions,ssp2_1p2,DJI,cdd|Hazard|Difference,days/yr,-0.683345209,-0.683345209,-0.683345209,-0.683345209,-0.683345209,-0.683345209,-0.683345209,-0.683345209,-0.683345209,-0.683345209 +Climate Solutions,ssp2_1p2,RWA,cdd|Hazard|Difference,days/yr,1.535243523,1.535243523,1.535243523,1.535243523,1.535243523,1.535243523,1.535243523,1.535243523,1.535243523,1.535243523 +Climate Solutions,ssp2_1p2,TLS,cdd|Hazard|Difference,days/yr,0.08484223,0.08484223,0.08484223,0.08484223,0.08484223,0.08484223,0.08484223,0.08484223,0.08484223,0.08484223 +Climate Solutions,ssp2_1p2,COL,cdd|Hazard|Difference,days/yr,1.425917624,1.425917624,1.425917624,1.425917624,1.425917624,1.425917624,1.425917624,1.425917624,1.425917624,1.425917624 +Climate Solutions,ssp2_1p2,REU,cdd|Hazard|Difference,days/yr,0.325494479,0.325494479,0.325494479,0.325494479,0.325494479,0.325494479,0.325494479,0.325494479,0.325494479,0.325494479 +Climate Solutions,ssp2_1p2,BDI,cdd|Hazard|Difference,days/yr,1.491708279,1.491708279,1.491708279,1.491708279,1.491708279,1.491708279,1.491708279,1.491708279,1.491708279,1.491708279 +Climate Solutions,ssp2_1p2,TWN,cdd|Hazard|Difference,days/yr,0.165244772,0.165244772,0.165244772,0.165244772,0.165244772,0.165244772,0.165244772,0.165244772,0.165244772,0.165244772 +Climate Solutions,ssp2_1p2,NIC,cdd|Hazard|Difference,days/yr,3.209348539,3.209348539,3.209348539,3.209348539,3.209348539,3.209348539,3.209348539,3.209348539,3.209348539,3.209348539 +Climate Solutions,ssp2_1p2,BRB,cdd|Hazard|Difference,days/yr,-0.104598875,-0.104598875,-0.104598875,-0.104598875,-0.104598875,-0.104598875,-0.104598875,-0.104598875,-0.104598875,-0.104598875 +Climate Solutions,ssp2_1p2,QAT,cdd|Hazard|Difference,days/yr,-0.67177624,-0.67177624,-0.67177624,-0.67177624,-0.67177624,-0.67177624,-0.67177624,-0.67177624,-0.67177624,-0.67177624 +Climate Solutions,ssp2_1p2,COD,cdd|Hazard|Difference,days/yr,0.765205805,0.765205805,0.765205805,0.765205805,0.765205805,0.765205805,0.765205805,0.765205805,0.765205805,0.765205805 +Climate Solutions,ssp2_1p2,ITA,cdd|Hazard|Difference,days/yr,0.908240306,0.908240306,0.908240306,0.908240306,0.908240306,0.908240306,0.908240306,0.908240306,0.908240306,0.908240306 +Climate Solutions,ssp2_1p2,BTN,cdd|Hazard|Difference,days/yr,3.824743138,3.824743138,3.824743138,3.824743138,3.824743138,3.824743138,3.824743138,3.824743138,3.824743138,3.824743138 +Climate Solutions,ssp2_1p2,SDN,cdd|Hazard|Difference,days/yr,-2.022622879,-2.022622879,-2.022622879,-2.022622879,-2.022622879,-2.022622879,-2.022622879,-2.022622879,-2.022622879,-2.022622879 +Climate Solutions,ssp2_1p2,NPL,cdd|Hazard|Difference,days/yr,2.971950077,2.971950077,2.971950077,2.971950077,2.971950077,2.971950077,2.971950077,2.971950077,2.971950077,2.971950077 +Climate Solutions,ssp2_1p2,MLT,cdd|Hazard|Difference,days/yr,0.227752226,0.227752226,0.227752226,0.227752226,0.227752226,0.227752226,0.227752226,0.227752226,0.227752226,0.227752226 +Climate Solutions,ssp2_1p2,MDV,cdd|Hazard|Difference,days/yr,0.050527178,0.050527178,0.050527178,0.050527178,0.050527178,0.050527178,0.050527178,0.050527178,0.050527178,0.050527178 +Climate Solutions,ssp2_1p2,SUR,cdd|Hazard|Difference,days/yr,0.258517261,0.258517261,0.258517261,0.258517261,0.258517261,0.258517261,0.258517261,0.258517261,0.258517261,0.258517261 +Climate Solutions,ssp2_1p2,VEN,cdd|Hazard|Difference,days/yr,1.360421728,1.360421728,1.360421728,1.360421728,1.360421728,1.360421728,1.360421728,1.360421728,1.360421728,1.360421728 +Climate Solutions,ssp2_1p2,ISR,cdd|Hazard|Difference,days/yr,-0.371746225,-0.371746225,-0.371746225,-0.371746225,-0.371746225,-0.371746225,-0.371746225,-0.371746225,-0.371746225,-0.371746225 +Climate Solutions,ssp2_1p2,ISL,cdd|Hazard|Difference,days/yr,-0.016568458,-0.016568458,-0.016568458,-0.016568458,-0.016568458,-0.016568458,-0.016568458,-0.016568458,-0.016568458,-0.016568458 +Climate Solutions,ssp2_1p2,ZMB,cdd|Hazard|Difference,days/yr,1.721684174,1.721684174,1.721684174,1.721684174,1.721684174,1.721684174,1.721684174,1.721684174,1.721684174,1.721684174 +Climate Solutions,ssp2_1p2,SEN,cdd|Hazard|Difference,days/yr,0.057303947,0.057303947,0.057303947,0.057303947,0.057303947,0.057303947,0.057303947,0.057303947,0.057303947,0.057303947 +Climate Solutions,ssp2_1p2,PNG,cdd|Hazard|Difference,days/yr,-2.896551094,-2.896551094,-2.896551094,-2.896551094,-2.896551094,-2.896551094,-2.896551094,-2.896551094,-2.896551094,-2.896551094 +Climate Solutions,ssp2_1p2,MWI,cdd|Hazard|Difference,days/yr,-1.134262649,-1.134262649,-1.134262649,-1.134262649,-1.134262649,-1.134262649,-1.134262649,-1.134262649,-1.134262649,-1.134262649 +Climate Solutions,ssp2_1p2,TTO,cdd|Hazard|Difference,days/yr,0.743151949,0.743151949,0.743151949,0.743151949,0.743151949,0.743151949,0.743151949,0.743151949,0.743151949,0.743151949 +Climate Solutions,ssp2_1p2,ZWE,cdd|Hazard|Difference,days/yr,2.080067324,2.080067324,2.080067324,2.080067324,2.080067324,2.080067324,2.080067324,2.080067324,2.080067324,2.080067324 +Climate Solutions,ssp2_1p2,DEU,cdd|Hazard|Difference,days/yr,-1.228284228,-1.228284228,-1.228284228,-1.228284228,-1.228284228,-1.228284228,-1.228284228,-1.228284228,-1.228284228,-1.228284228 +Climate Solutions,ssp2_1p2,VUT,cdd|Hazard|Difference,days/yr,0.243001078,0.243001078,0.243001078,0.243001078,0.243001078,0.243001078,0.243001078,0.243001078,0.243001078,0.243001078 +Climate Solutions,ssp2_1p2,MTQ,cdd|Hazard|Difference,days/yr,-0.305751375,-0.305751375,-0.305751375,-0.305751375,-0.305751375,-0.305751375,-0.305751375,-0.305751375,-0.305751375,-0.305751375 +Climate Solutions,ssp2_1p2,KAZ,cdd|Hazard|Difference,days/yr,0.679747095,0.679747095,0.679747095,0.679747095,0.679747095,0.679747095,0.679747095,0.679747095,0.679747095,0.679747095 +Climate Solutions,ssp2_1p2,PHL,cdd|Hazard|Difference,days/yr,-0.616316743,-0.616316743,-0.616316743,-0.616316743,-0.616316743,-0.616316743,-0.616316743,-0.616316743,-0.616316743,-0.616316743 +Climate Solutions,ssp2_1p2,ERI,cdd|Hazard|Difference,days/yr,0.299758323,0.299758323,0.299758323,0.299758323,0.299758323,0.299758323,0.299758323,0.299758323,0.299758323,0.299758323 +Climate Solutions,ssp2_1p2,NCL,cdd|Hazard|Difference,days/yr,0.328542793,0.328542793,0.328542793,0.328542793,0.328542793,0.328542793,0.328542793,0.328542793,0.328542793,0.328542793 +Climate Solutions,ssp2_1p2,MKD,cdd|Hazard|Difference,days/yr,0.045688498,0.045688498,0.045688498,0.045688498,0.045688498,0.045688498,0.045688498,0.045688498,0.045688498,0.045688498 +Climate Solutions,ssp2_1p2,PRK,cdd|Hazard|Difference,days/yr,-1.003275512,-1.003275512,-1.003275512,-1.003275512,-1.003275512,-1.003275512,-1.003275512,-1.003275512,-1.003275512,-1.003275512 +Climate Solutions,ssp2_1p2,PRY,cdd|Hazard|Difference,days/yr,5.028865376,5.028865376,5.028865376,5.028865376,5.028865376,5.028865376,5.028865376,5.028865376,5.028865376,5.028865376 +Climate Solutions,ssp2_1p2,LVA,cdd|Hazard|Difference,days/yr,-3.336598934,-3.336598934,-3.336598934,-3.336598934,-3.336598934,-3.336598934,-3.336598934,-3.336598934,-3.336598934,-3.336598934 +Climate Solutions,ssp2_1p2,JPN,cdd|Hazard|Difference,days/yr,1.186029798,1.186029798,1.186029798,1.186029798,1.186029798,1.186029798,1.186029798,1.186029798,1.186029798,1.186029798 +Climate Solutions,ssp2_1p2,SYR,cdd|Hazard|Difference,days/yr,-0.335449035,-0.335449035,-0.335449035,-0.335449035,-0.335449035,-0.335449035,-0.335449035,-0.335449035,-0.335449035,-0.335449035 +Climate Solutions,ssp2_1p2,HND,cdd|Hazard|Difference,days/yr,3.897029596,3.897029596,3.897029596,3.897029596,3.897029596,3.897029596,3.897029596,3.897029596,3.897029596,3.897029596 +Climate Solutions,ssp2_1p2,MMR,cdd|Hazard|Difference,days/yr,4.140109845,4.140109845,4.140109845,4.140109845,4.140109845,4.140109845,4.140109845,4.140109845,4.140109845,4.140109845 +Climate Solutions,ssp2_1p2,MEX,cdd|Hazard|Difference,days/yr,3.054684693,3.054684693,3.054684693,3.054684693,3.054684693,3.054684693,3.054684693,3.054684693,3.054684693,3.054684693 +Climate Solutions,ssp2_1p2,EGY,cdd|Hazard|Difference,days/yr,-0.706577954,-0.706577954,-0.706577954,-0.706577954,-0.706577954,-0.706577954,-0.706577954,-0.706577954,-0.706577954,-0.706577954 +Climate Solutions,ssp2_1p2,SGP,cdd|Hazard|Difference,days/yr,-0.097037552,-0.097037552,-0.097037552,-0.097037552,-0.097037552,-0.097037552,-0.097037552,-0.097037552,-0.097037552,-0.097037552 +Climate Solutions,ssp2_1p2,SRB,cdd|Hazard|Difference,days/yr,-0.633187203,-0.633187203,-0.633187203,-0.633187203,-0.633187203,-0.633187203,-0.633187203,-0.633187203,-0.633187203,-0.633187203 +Climate Solutions,ssp2_1p2,BWA,cdd|Hazard|Difference,days/yr,2.935297855,2.935297855,2.935297855,2.935297855,2.935297855,2.935297855,2.935297855,2.935297855,2.935297855,2.935297855 +Climate Solutions,ssp2_1p2,GBR,cdd|Hazard|Difference,days/yr,-0.49336412,-0.49336412,-0.49336412,-0.49336412,-0.49336412,-0.49336412,-0.49336412,-0.49336412,-0.49336412,-0.49336412 +Climate Solutions,ssp2_1p2,GMB,cdd|Hazard|Difference,days/yr,0.23825075,0.23825075,0.23825075,0.23825075,0.23825075,0.23825075,0.23825075,0.23825075,0.23825075,0.23825075 +Climate Solutions,ssp2_1p2,GRC,cdd|Hazard|Difference,days/yr,0.101786548,0.101786548,0.101786548,0.101786548,0.101786548,0.101786548,0.101786548,0.101786548,0.101786548,0.101786548 +Climate Solutions,ssp2_1p2,LKA,cdd|Hazard|Difference,days/yr,-4.978752167,-4.978752167,-4.978752167,-4.978752167,-4.978752167,-4.978752167,-4.978752167,-4.978752167,-4.978752167,-4.978752167 +Climate Solutions,ssp2_1p2,GUF,cdd|Hazard|Difference,days/yr,1.289496406,1.289496406,1.289496406,1.289496406,1.289496406,1.289496406,1.289496406,1.289496406,1.289496406,1.289496406 +Climate Solutions,ssp2_1p2,COM,cdd|Hazard|Difference,days/yr,-0.181571455,-0.181571455,-0.181571455,-0.181571455,-0.181571455,-0.181571455,-0.181571455,-0.181571455,-0.181571455,-0.181571455 +Climate Solutions,ssp2_1p2,FSM,cdd|Hazard|Difference,days/yr,-0.188785614,-0.188785614,-0.188785614,-0.188785614,-0.188785614,-0.188785614,-0.188785614,-0.188785614,-0.188785614,-0.188785614 +Climate Solutions,ssp2_1p2,GLP,cdd|Hazard|Difference,days/yr,0.834762366,0.834762366,0.834762366,0.834762366,0.834762366,0.834762366,0.834762366,0.834762366,0.834762366,0.834762366 +Climate Solutions,ssp2_1p2,MYT,cdd|Hazard|Difference,days/yr,0.498583567,0.498583567,0.498583567,0.498583567,0.498583567,0.498583567,0.498583567,0.498583567,0.498583567,0.498583567 +Climate Solutions,ssp2_1p2,VIR,cdd|Hazard|Difference,days/yr,-0.236959451,-0.236959451,-0.236959451,-0.236959451,-0.236959451,-0.236959451,-0.236959451,-0.236959451,-0.236959451,-0.236959451 +Climate Solutions,ssp2_1p2,CAN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.452107559,-3.452107559,-3.452107559,-3.452107559,-3.452107559,-3.452107559,-3.452107559,-3.452107559,-3.452107559,-3.452107559 +Climate Solutions,ssp2_1p2,STP,cdd|Hazard|Difference|Land area weighted,days/yr,5.411869678,5.411869678,5.411869678,5.411869678,5.411869678,5.411869678,5.411869678,5.411869678,5.411869678,5.411869678 +Climate Solutions,ssp2_1p2,TKM,cdd|Hazard|Difference|Land area weighted,days/yr,-0.252638963,-0.252638963,-0.252638963,-0.252638963,-0.252638963,-0.252638963,-0.252638963,-0.252638963,-0.252638963,-0.252638963 +Climate Solutions,ssp2_1p2,LTU,cdd|Hazard|Difference|Land area weighted,days/yr,-5.227623387,-5.227623387,-5.227623387,-5.227623387,-5.227623387,-5.227623387,-5.227623387,-5.227623387,-5.227623387,-5.227623387 +Climate Solutions,ssp2_1p2,KHM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.23408146,-1.23408146,-1.23408146,-1.23408146,-1.23408146,-1.23408146,-1.23408146,-1.23408146,-1.23408146,-1.23408146 +Climate Solutions,ssp2_1p2,ETH,cdd|Hazard|Difference|Land area weighted,days/yr,-2.032453424,-2.032453424,-2.032453424,-2.032453424,-2.032453424,-2.032453424,-2.032453424,-2.032453424,-2.032453424,-2.032453424 +Climate Solutions,ssp2_1p2,SWZ,cdd|Hazard|Difference|Land area weighted,days/yr,3.753822112,3.753822112,3.753822112,3.753822112,3.753822112,3.753822112,3.753822112,3.753822112,3.753822112,3.753822112 +Climate Solutions,ssp2_1p2,PSE,cdd|Hazard|Difference|Land area weighted,days/yr,-0.885416086,-0.885416086,-0.885416086,-0.885416086,-0.885416086,-0.885416086,-0.885416086,-0.885416086,-0.885416086,-0.885416086 +Climate Solutions,ssp2_1p2,ARG,cdd|Hazard|Difference|Land area weighted,days/yr,2.711569574,2.711569574,2.711569574,2.711569574,2.711569574,2.711569574,2.711569574,2.711569574,2.711569574,2.711569574 +Climate Solutions,ssp2_1p2,BOL,cdd|Hazard|Difference|Land area weighted,days/yr,6.356965601,6.356965601,6.356965601,6.356965601,6.356965601,6.356965601,6.356965601,6.356965601,6.356965601,6.356965601 +Climate Solutions,ssp2_1p2,BHS,cdd|Hazard|Difference|Land area weighted,days/yr,3.321299405,3.321299405,3.321299405,3.321299405,3.321299405,3.321299405,3.321299405,3.321299405,3.321299405,3.321299405 +Climate Solutions,ssp2_1p2,BFA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.326857717,-2.326857717,-2.326857717,-2.326857717,-2.326857717,-2.326857717,-2.326857717,-2.326857717,-2.326857717,-2.326857717 +Climate Solutions,ssp2_1p2,GHA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.738371396,-5.738371396,-5.738371396,-5.738371396,-5.738371396,-5.738371396,-5.738371396,-5.738371396,-5.738371396,-5.738371396 +Climate Solutions,ssp2_1p2,SAU,cdd|Hazard|Difference|Land area weighted,days/yr,-3.618234765,-3.618234765,-3.618234765,-3.618234765,-3.618234765,-3.618234765,-3.618234765,-3.618234765,-3.618234765,-3.618234765 +Climate Solutions,ssp2_1p2,CPV,cdd|Hazard|Difference|Land area weighted,days/yr,-4.544722148,-4.544722148,-4.544722148,-4.544722148,-4.544722148,-4.544722148,-4.544722148,-4.544722148,-4.544722148,-4.544722148 +Climate Solutions,ssp2_1p2,SVN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.771235949,-2.771235949,-2.771235949,-2.771235949,-2.771235949,-2.771235949,-2.771235949,-2.771235949,-2.771235949,-2.771235949 +Climate Solutions,ssp2_1p2,GTM,cdd|Hazard|Difference|Land area weighted,days/yr,3.840340602,3.840340602,3.840340602,3.840340602,3.840340602,3.840340602,3.840340602,3.840340602,3.840340602,3.840340602 +Climate Solutions,ssp2_1p2,BIH,cdd|Hazard|Difference|Land area weighted,days/yr,-2.915800709,-2.915800709,-2.915800709,-2.915800709,-2.915800709,-2.915800709,-2.915800709,-2.915800709,-2.915800709,-2.915800709 +Climate Solutions,ssp2_1p2,GIN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.464004691,-2.464004691,-2.464004691,-2.464004691,-2.464004691,-2.464004691,-2.464004691,-2.464004691,-2.464004691,-2.464004691 +Climate Solutions,ssp2_1p2,JOR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.250658546,-1.250658546,-1.250658546,-1.250658546,-1.250658546,-1.250658546,-1.250658546,-1.250658546,-1.250658546,-1.250658546 +Climate Solutions,ssp2_1p2,COG,cdd|Hazard|Difference|Land area weighted,days/yr,-0.152024598,-0.152024598,-0.152024598,-0.152024598,-0.152024598,-0.152024598,-0.152024598,-0.152024598,-0.152024598,-0.152024598 +Climate Solutions,ssp2_1p2,ESP,cdd|Hazard|Difference|Land area weighted,days/yr,3.91023788,3.91023788,3.91023788,3.91023788,3.91023788,3.91023788,3.91023788,3.91023788,3.91023788,3.91023788 +Climate Solutions,ssp2_1p2,LBR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.516860586,-0.516860586,-0.516860586,-0.516860586,-0.516860586,-0.516860586,-0.516860586,-0.516860586,-0.516860586,-0.516860586 +Climate Solutions,ssp2_1p2,NLD,cdd|Hazard|Difference|Land area weighted,days/yr,0.912917001,0.912917001,0.912917001,0.912917001,0.912917001,0.912917001,0.912917001,0.912917001,0.912917001,0.912917001 +Climate Solutions,ssp2_1p2,JAM,cdd|Hazard|Difference|Land area weighted,days/yr,5.826631219,5.826631219,5.826631219,5.826631219,5.826631219,5.826631219,5.826631219,5.826631219,5.826631219,5.826631219 +Climate Solutions,ssp2_1p2,OMN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.489582494,-2.489582494,-2.489582494,-2.489582494,-2.489582494,-2.489582494,-2.489582494,-2.489582494,-2.489582494,-2.489582494 +Climate Solutions,ssp2_1p2,TZA,cdd|Hazard|Difference|Land area weighted,days/yr,-1.716984893,-1.716984893,-1.716984893,-1.716984893,-1.716984893,-1.716984893,-1.716984893,-1.716984893,-1.716984893,-1.716984893 +Climate Solutions,ssp2_1p2,ALB,cdd|Hazard|Difference|Land area weighted,days/yr,1.039833328,1.039833328,1.039833328,1.039833328,1.039833328,1.039833328,1.039833328,1.039833328,1.039833328,1.039833328 +Climate Solutions,ssp2_1p2,GAB,cdd|Hazard|Difference|Land area weighted,days/yr,1.806750919,1.806750919,1.806750919,1.806750919,1.806750919,1.806750919,1.806750919,1.806750919,1.806750919,1.806750919 +Climate Solutions,ssp2_1p2,NZL,cdd|Hazard|Difference|Land area weighted,days/yr,0.557580278,0.557580278,0.557580278,0.557580278,0.557580278,0.557580278,0.557580278,0.557580278,0.557580278,0.557580278 +Climate Solutions,ssp2_1p2,YEM,cdd|Hazard|Difference|Land area weighted,days/yr,-3.368991791,-3.368991791,-3.368991791,-3.368991791,-3.368991791,-3.368991791,-3.368991791,-3.368991791,-3.368991791,-3.368991791 +Climate Solutions,ssp2_1p2,PAK,cdd|Hazard|Difference|Land area weighted,days/yr,-2.205742781,-2.205742781,-2.205742781,-2.205742781,-2.205742781,-2.205742781,-2.205742781,-2.205742781,-2.205742781,-2.205742781 +Climate Solutions,ssp2_1p2,WSM,cdd|Hazard|Difference|Land area weighted,days/yr,2.848158173,2.848158173,2.848158173,2.848158173,2.848158173,2.848158173,2.848158173,2.848158173,2.848158173,2.848158173 +Climate Solutions,ssp2_1p2,SVK,cdd|Hazard|Difference|Land area weighted,days/yr,-3.340569109,-3.340569109,-3.340569109,-3.340569109,-3.340569109,-3.340569109,-3.340569109,-3.340569109,-3.340569109,-3.340569109 +Climate Solutions,ssp2_1p2,ARE,cdd|Hazard|Difference|Land area weighted,days/yr,-3.19389894,-3.19389894,-3.19389894,-3.19389894,-3.19389894,-3.19389894,-3.19389894,-3.19389894,-3.19389894,-3.19389894 +Climate Solutions,ssp2_1p2,GUM,cdd|Hazard|Difference|Land area weighted,days/yr,-2.675811826,-2.675811826,-2.675811826,-2.675811826,-2.675811826,-2.675811826,-2.675811826,-2.675811826,-2.675811826,-2.675811826 +Climate Solutions,ssp2_1p2,IND,cdd|Hazard|Difference|Land area weighted,days/yr,1.297326283,1.297326283,1.297326283,1.297326283,1.297326283,1.297326283,1.297326283,1.297326283,1.297326283,1.297326283 +Climate Solutions,ssp2_1p2,AZE,cdd|Hazard|Difference|Land area weighted,days/yr,6.123047291,6.123047291,6.123047291,6.123047291,6.123047291,6.123047291,6.123047291,6.123047291,6.123047291,6.123047291 +Climate Solutions,ssp2_1p2,MDG,cdd|Hazard|Difference|Land area weighted,days/yr,2.006191045,2.006191045,2.006191045,2.006191045,2.006191045,2.006191045,2.006191045,2.006191045,2.006191045,2.006191045 +Climate Solutions,ssp2_1p2,LSO,cdd|Hazard|Difference|Land area weighted,days/yr,2.972336189,2.972336189,2.972336189,2.972336189,2.972336189,2.972336189,2.972336189,2.972336189,2.972336189,2.972336189 +Climate Solutions,ssp2_1p2,VCT,cdd|Hazard|Difference|Land area weighted,days/yr,1.742498486,1.742498486,1.742498486,1.742498486,1.742498486,1.742498486,1.742498486,1.742498486,1.742498486,1.742498486 +Climate Solutions,ssp2_1p2,KEN,cdd|Hazard|Difference|Land area weighted,days/yr,-0.773127497,-0.773127497,-0.773127497,-0.773127497,-0.773127497,-0.773127497,-0.773127497,-0.773127497,-0.773127497,-0.773127497 +Climate Solutions,ssp2_1p2,KOR,cdd|Hazard|Difference|Land area weighted,days/yr,2.609157862,2.609157862,2.609157862,2.609157862,2.609157862,2.609157862,2.609157862,2.609157862,2.609157862,2.609157862 +Climate Solutions,ssp2_1p2,BLR,cdd|Hazard|Difference|Land area weighted,days/yr,-4.530175207,-4.530175207,-4.530175207,-4.530175207,-4.530175207,-4.530175207,-4.530175207,-4.530175207,-4.530175207,-4.530175207 +Climate Solutions,ssp2_1p2,TJK,cdd|Hazard|Difference|Land area weighted,days/yr,2.295001278,2.295001278,2.295001278,2.295001278,2.295001278,2.295001278,2.295001278,2.295001278,2.295001278,2.295001278 +Climate Solutions,ssp2_1p2,TUR,cdd|Hazard|Difference|Land area weighted,days/yr,3.308997497,3.308997497,3.308997497,3.308997497,3.308997497,3.308997497,3.308997497,3.308997497,3.308997497,3.308997497 +Climate Solutions,ssp2_1p2,AFG,cdd|Hazard|Difference|Land area weighted,days/yr,-2.056120665,-2.056120665,-2.056120665,-2.056120665,-2.056120665,-2.056120665,-2.056120665,-2.056120665,-2.056120665,-2.056120665 +Climate Solutions,ssp2_1p2,BGD,cdd|Hazard|Difference|Land area weighted,days/yr,4.987531167,4.987531167,4.987531167,4.987531167,4.987531167,4.987531167,4.987531167,4.987531167,4.987531167,4.987531167 +Climate Solutions,ssp2_1p2,MRT,cdd|Hazard|Difference|Land area weighted,days/yr,-1.076879651,-1.076879651,-1.076879651,-1.076879651,-1.076879651,-1.076879651,-1.076879651,-1.076879651,-1.076879651,-1.076879651 +Climate Solutions,ssp2_1p2,SLB,cdd|Hazard|Difference|Land area weighted,days/yr,-1.154147668,-1.154147668,-1.154147668,-1.154147668,-1.154147668,-1.154147668,-1.154147668,-1.154147668,-1.154147668,-1.154147668 +Climate Solutions,ssp2_1p2,LCA,cdd|Hazard|Difference|Land area weighted,days/yr,0.867143372,0.867143372,0.867143372,0.867143372,0.867143372,0.867143372,0.867143372,0.867143372,0.867143372,0.867143372 +Climate Solutions,ssp2_1p2,CYP,cdd|Hazard|Difference|Land area weighted,days/yr,-1.728500744,-1.728500744,-1.728500744,-1.728500744,-1.728500744,-1.728500744,-1.728500744,-1.728500744,-1.728500744,-1.728500744 +Climate Solutions,ssp2_1p2,PYF,cdd|Hazard|Difference|Land area weighted,days/yr,2.048639363,2.048639363,2.048639363,2.048639363,2.048639363,2.048639363,2.048639363,2.048639363,2.048639363,2.048639363 +Climate Solutions,ssp2_1p2,FRA,cdd|Hazard|Difference|Land area weighted,days/yr,4.879720651,4.879720651,4.879720651,4.879720651,4.879720651,4.879720651,4.879720651,4.879720651,4.879720651,4.879720651 +Climate Solutions,ssp2_1p2,NAM,cdd|Hazard|Difference|Land area weighted,days/yr,2.601675156,2.601675156,2.601675156,2.601675156,2.601675156,2.601675156,2.601675156,2.601675156,2.601675156,2.601675156 +Climate Solutions,ssp2_1p2,SOM,cdd|Hazard|Difference|Land area weighted,days/yr,0.236493179,0.236493179,0.236493179,0.236493179,0.236493179,0.236493179,0.236493179,0.236493179,0.236493179,0.236493179 +Climate Solutions,ssp2_1p2,PER,cdd|Hazard|Difference|Land area weighted,days/yr,2.483636103,2.483636103,2.483636103,2.483636103,2.483636103,2.483636103,2.483636103,2.483636103,2.483636103,2.483636103 +Climate Solutions,ssp2_1p2,LAO,cdd|Hazard|Difference|Land area weighted,days/yr,2.484104019,2.484104019,2.484104019,2.484104019,2.484104019,2.484104019,2.484104019,2.484104019,2.484104019,2.484104019 +Climate Solutions,ssp2_1p2,SYC,cdd|Hazard|Difference|Land area weighted,days/yr,2.481061031,2.481061031,2.481061031,2.481061031,2.481061031,2.481061031,2.481061031,2.481061031,2.481061031,2.481061031 +Climate Solutions,ssp2_1p2,NOR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.406266574,-1.406266574,-1.406266574,-1.406266574,-1.406266574,-1.406266574,-1.406266574,-1.406266574,-1.406266574,-1.406266574 +Climate Solutions,ssp2_1p2,CIV,cdd|Hazard|Difference|Land area weighted,days/yr,-3.203210142,-3.203210142,-3.203210142,-3.203210142,-3.203210142,-3.203210142,-3.203210142,-3.203210142,-3.203210142,-3.203210142 +Climate Solutions,ssp2_1p2,BEN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.144831925,-4.144831925,-4.144831925,-4.144831925,-4.144831925,-4.144831925,-4.144831925,-4.144831925,-4.144831925,-4.144831925 +Climate Solutions,ssp2_1p2,ESH,cdd|Hazard|Difference|Land area weighted,days/yr,0.446342546,0.446342546,0.446342546,0.446342546,0.446342546,0.446342546,0.446342546,0.446342546,0.446342546,0.446342546 +Climate Solutions,ssp2_1p2,CUB,cdd|Hazard|Difference|Land area weighted,days/yr,3.119416505,3.119416505,3.119416505,3.119416505,3.119416505,3.119416505,3.119416505,3.119416505,3.119416505,3.119416505 +Climate Solutions,ssp2_1p2,CMR,cdd|Hazard|Difference|Land area weighted,days/yr,-8.589830287,-8.589830287,-8.589830287,-8.589830287,-8.589830287,-8.589830287,-8.589830287,-8.589830287,-8.589830287,-8.589830287 +Climate Solutions,ssp2_1p2,MNE,cdd|Hazard|Difference|Land area weighted,days/yr,0.828153143,0.828153143,0.828153143,0.828153143,0.828153143,0.828153143,0.828153143,0.828153143,0.828153143,0.828153143 +Climate Solutions,ssp2_1p2,TGO,cdd|Hazard|Difference|Land area weighted,days/yr,-4.574036947,-4.574036947,-4.574036947,-4.574036947,-4.574036947,-4.574036947,-4.574036947,-4.574036947,-4.574036947,-4.574036947 +Climate Solutions,ssp2_1p2,CHN,cdd|Hazard|Difference|Land area weighted,days/yr,-0.774466929,-0.774466929,-0.774466929,-0.774466929,-0.774466929,-0.774466929,-0.774466929,-0.774466929,-0.774466929,-0.774466929 +Climate Solutions,ssp2_1p2,ARM,cdd|Hazard|Difference|Land area weighted,days/yr,6.210350951,6.210350951,6.210350951,6.210350951,6.210350951,6.210350951,6.210350951,6.210350951,6.210350951,6.210350951 +Climate Solutions,ssp2_1p2,ATG,cdd|Hazard|Difference|Land area weighted,days/yr,-6.449242483,-6.449242483,-6.449242483,-6.449242483,-6.449242483,-6.449242483,-6.449242483,-6.449242483,-6.449242483,-6.449242483 +Climate Solutions,ssp2_1p2,DOM,cdd|Hazard|Difference|Land area weighted,days/yr,-0.14237936,-0.14237936,-0.14237936,-0.14237936,-0.14237936,-0.14237936,-0.14237936,-0.14237936,-0.14237936,-0.14237936 +Climate Solutions,ssp2_1p2,UKR,cdd|Hazard|Difference|Land area weighted,days/yr,-2.009046169,-2.009046169,-2.009046169,-2.009046169,-2.009046169,-2.009046169,-2.009046169,-2.009046169,-2.009046169,-2.009046169 +Climate Solutions,ssp2_1p2,BHR,cdd|Hazard|Difference|Land area weighted,days/yr,-2.691932519,-2.691932519,-2.691932519,-2.691932519,-2.691932519,-2.691932519,-2.691932519,-2.691932519,-2.691932519,-2.691932519 +Climate Solutions,ssp2_1p2,TON,cdd|Hazard|Difference|Land area weighted,days/yr,0.836380317,0.836380317,0.836380317,0.836380317,0.836380317,0.836380317,0.836380317,0.836380317,0.836380317,0.836380317 +Climate Solutions,ssp2_1p2,FIN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.711073808,-3.711073808,-3.711073808,-3.711073808,-3.711073808,-3.711073808,-3.711073808,-3.711073808,-3.711073808,-3.711073808 +Climate Solutions,ssp2_1p2,LBY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.31192246,-0.31192246,-0.31192246,-0.31192246,-0.31192246,-0.31192246,-0.31192246,-0.31192246,-0.31192246,-0.31192246 +Climate Solutions,ssp2_1p2,IDN,cdd|Hazard|Difference|Land area weighted,days/yr,0.939746373,0.939746373,0.939746373,0.939746373,0.939746373,0.939746373,0.939746373,0.939746373,0.939746373,0.939746373 +Climate Solutions,ssp2_1p2,CAF,cdd|Hazard|Difference|Land area weighted,days/yr,-5.262274275,-5.262274275,-5.262274275,-5.262274275,-5.262274275,-5.262274275,-5.262274275,-5.262274275,-5.262274275,-5.262274275 +Climate Solutions,ssp2_1p2,USA,cdd|Hazard|Difference|Land area weighted,days/yr,0.791544729,0.791544729,0.791544729,0.791544729,0.791544729,0.791544729,0.791544729,0.791544729,0.791544729,0.791544729 +Climate Solutions,ssp2_1p2,SWE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.062082524,-2.062082524,-2.062082524,-2.062082524,-2.062082524,-2.062082524,-2.062082524,-2.062082524,-2.062082524,-2.062082524 +Climate Solutions,ssp2_1p2,VNM,cdd|Hazard|Difference|Land area weighted,days/yr,1.705196391,1.705196391,1.705196391,1.705196391,1.705196391,1.705196391,1.705196391,1.705196391,1.705196391,1.705196391 +Climate Solutions,ssp2_1p2,MLI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.203239179,-1.203239179,-1.203239179,-1.203239179,-1.203239179,-1.203239179,-1.203239179,-1.203239179,-1.203239179,-1.203239179 +Climate Solutions,ssp2_1p2,RUS,cdd|Hazard|Difference|Land area weighted,days/yr,-4.307805153,-4.307805153,-4.307805153,-4.307805153,-4.307805153,-4.307805153,-4.307805153,-4.307805153,-4.307805153,-4.307805153 +Climate Solutions,ssp2_1p2,BGR,cdd|Hazard|Difference|Land area weighted,days/yr,-1.935300622,-1.935300622,-1.935300622,-1.935300622,-1.935300622,-1.935300622,-1.935300622,-1.935300622,-1.935300622,-1.935300622 +Climate Solutions,ssp2_1p2,MUS,cdd|Hazard|Difference|Land area weighted,days/yr,2.962164826,2.962164826,2.962164826,2.962164826,2.962164826,2.962164826,2.962164826,2.962164826,2.962164826,2.962164826 +Climate Solutions,ssp2_1p2,ROU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.255817487,-1.255817487,-1.255817487,-1.255817487,-1.255817487,-1.255817487,-1.255817487,-1.255817487,-1.255817487,-1.255817487 +Climate Solutions,ssp2_1p2,AGO,cdd|Hazard|Difference|Land area weighted,days/yr,1.644138944,1.644138944,1.644138944,1.644138944,1.644138944,1.644138944,1.644138944,1.644138944,1.644138944,1.644138944 +Climate Solutions,ssp2_1p2,PRT,cdd|Hazard|Difference|Land area weighted,days/yr,3.215373731,3.215373731,3.215373731,3.215373731,3.215373731,3.215373731,3.215373731,3.215373731,3.215373731,3.215373731 +Climate Solutions,ssp2_1p2,ZAF,cdd|Hazard|Difference|Land area weighted,days/yr,3.453400113,3.453400113,3.453400113,3.453400113,3.453400113,3.453400113,3.453400113,3.453400113,3.453400113,3.453400113 +Climate Solutions,ssp2_1p2,FJI,cdd|Hazard|Difference|Land area weighted,days/yr,-0.302091983,-0.302091983,-0.302091983,-0.302091983,-0.302091983,-0.302091983,-0.302091983,-0.302091983,-0.302091983,-0.302091983 +Climate Solutions,ssp2_1p2,BRN,cdd|Hazard|Difference|Land area weighted,days/yr,-6.541918224,-6.541918224,-6.541918224,-6.541918224,-6.541918224,-6.541918224,-6.541918224,-6.541918224,-6.541918224,-6.541918224 +Climate Solutions,ssp2_1p2,MYS,cdd|Hazard|Difference|Land area weighted,days/yr,-1.513920714,-1.513920714,-1.513920714,-1.513920714,-1.513920714,-1.513920714,-1.513920714,-1.513920714,-1.513920714,-1.513920714 +Climate Solutions,ssp2_1p2,AUT,cdd|Hazard|Difference|Land area weighted,days/yr,-3.432905627,-3.432905627,-3.432905627,-3.432905627,-3.432905627,-3.432905627,-3.432905627,-3.432905627,-3.432905627,-3.432905627 +Climate Solutions,ssp2_1p2,MOZ,cdd|Hazard|Difference|Land area weighted,days/yr,0.753578655,0.753578655,0.753578655,0.753578655,0.753578655,0.753578655,0.753578655,0.753578655,0.753578655,0.753578655 +Climate Solutions,ssp2_1p2,UGA,cdd|Hazard|Difference|Land area weighted,days/yr,-3.941143864,-3.941143864,-3.941143864,-3.941143864,-3.941143864,-3.941143864,-3.941143864,-3.941143864,-3.941143864,-3.941143864 +Climate Solutions,ssp2_1p2,KGZ,cdd|Hazard|Difference|Land area weighted,days/yr,0.633913608,0.633913608,0.633913608,0.633913608,0.633913608,0.633913608,0.633913608,0.633913608,0.633913608,0.633913608 +Climate Solutions,ssp2_1p2,HUN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.361328007,-2.361328007,-2.361328007,-2.361328007,-2.361328007,-2.361328007,-2.361328007,-2.361328007,-2.361328007,-2.361328007 +Climate Solutions,ssp2_1p2,NER,cdd|Hazard|Difference|Land area weighted,days/yr,-2.299721587,-2.299721587,-2.299721587,-2.299721587,-2.299721587,-2.299721587,-2.299721587,-2.299721587,-2.299721587,-2.299721587 +Climate Solutions,ssp2_1p2,BRA,cdd|Hazard|Difference|Land area weighted,days/yr,5.291395424,5.291395424,5.291395424,5.291395424,5.291395424,5.291395424,5.291395424,5.291395424,5.291395424,5.291395424 +Climate Solutions,ssp2_1p2,KWT,cdd|Hazard|Difference|Land area weighted,days/yr,-1.120228197,-1.120228197,-1.120228197,-1.120228197,-1.120228197,-1.120228197,-1.120228197,-1.120228197,-1.120228197,-1.120228197 +Climate Solutions,ssp2_1p2,PAN,cdd|Hazard|Difference|Land area weighted,days/yr,-1.767636743,-1.767636743,-1.767636743,-1.767636743,-1.767636743,-1.767636743,-1.767636743,-1.767636743,-1.767636743,-1.767636743 +Climate Solutions,ssp2_1p2,GUY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.511007784,-0.511007784,-0.511007784,-0.511007784,-0.511007784,-0.511007784,-0.511007784,-0.511007784,-0.511007784,-0.511007784 +Climate Solutions,ssp2_1p2,CRI,cdd|Hazard|Difference|Land area weighted,days/yr,1.462174252,1.462174252,1.462174252,1.462174252,1.462174252,1.462174252,1.462174252,1.462174252,1.462174252,1.462174252 +Climate Solutions,ssp2_1p2,LUX,cdd|Hazard|Difference|Land area weighted,days/yr,0.457600209,0.457600209,0.457600209,0.457600209,0.457600209,0.457600209,0.457600209,0.457600209,0.457600209,0.457600209 +Climate Solutions,ssp2_1p2,IRL,cdd|Hazard|Difference|Land area weighted,days/yr,1.050105983,1.050105983,1.050105983,1.050105983,1.050105983,1.050105983,1.050105983,1.050105983,1.050105983,1.050105983 +Climate Solutions,ssp2_1p2,NGA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.505451982,-4.505451982,-4.505451982,-4.505451982,-4.505451982,-4.505451982,-4.505451982,-4.505451982,-4.505451982,-4.505451982 +Climate Solutions,ssp2_1p2,ECU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.719038495,-0.719038495,-0.719038495,-0.719038495,-0.719038495,-0.719038495,-0.719038495,-0.719038495,-0.719038495,-0.719038495 +Climate Solutions,ssp2_1p2,CZE,cdd|Hazard|Difference|Land area weighted,days/yr,-3.676828437,-3.676828437,-3.676828437,-3.676828437,-3.676828437,-3.676828437,-3.676828437,-3.676828437,-3.676828437,-3.676828437 +Climate Solutions,ssp2_1p2,AUS,cdd|Hazard|Difference|Land area weighted,days/yr,2.068694437,2.068694437,2.068694437,2.068694437,2.068694437,2.068694437,2.068694437,2.068694437,2.068694437,2.068694437 +Climate Solutions,ssp2_1p2,IRN,cdd|Hazard|Difference|Land area weighted,days/yr,0.444146737,0.444146737,0.444146737,0.444146737,0.444146737,0.444146737,0.444146737,0.444146737,0.444146737,0.444146737 +Climate Solutions,ssp2_1p2,DZA,cdd|Hazard|Difference|Land area weighted,days/yr,1.925662482,1.925662482,1.925662482,1.925662482,1.925662482,1.925662482,1.925662482,1.925662482,1.925662482,1.925662482 +Climate Solutions,ssp2_1p2,SLV,cdd|Hazard|Difference|Land area weighted,days/yr,0.555546082,0.555546082,0.555546082,0.555546082,0.555546082,0.555546082,0.555546082,0.555546082,0.555546082,0.555546082 +Climate Solutions,ssp2_1p2,CHL,cdd|Hazard|Difference|Land area weighted,days/yr,4.834326051,4.834326051,4.834326051,4.834326051,4.834326051,4.834326051,4.834326051,4.834326051,4.834326051,4.834326051 +Climate Solutions,ssp2_1p2,PRI,cdd|Hazard|Difference|Land area weighted,days/yr,0.55547115,0.55547115,0.55547115,0.55547115,0.55547115,0.55547115,0.55547115,0.55547115,0.55547115,0.55547115 +Climate Solutions,ssp2_1p2,BEL,cdd|Hazard|Difference|Land area weighted,days/yr,-0.155457529,-0.155457529,-0.155457529,-0.155457529,-0.155457529,-0.155457529,-0.155457529,-0.155457529,-0.155457529,-0.155457529 +Climate Solutions,ssp2_1p2,THA,cdd|Hazard|Difference|Land area weighted,days/yr,-1.034992232,-1.034992232,-1.034992232,-1.034992232,-1.034992232,-1.034992232,-1.034992232,-1.034992232,-1.034992232,-1.034992232 +Climate Solutions,ssp2_1p2,HTI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.075055191,-1.075055191,-1.075055191,-1.075055191,-1.075055191,-1.075055191,-1.075055191,-1.075055191,-1.075055191,-1.075055191 +Climate Solutions,ssp2_1p2,IRQ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.173291051,-1.173291051,-1.173291051,-1.173291051,-1.173291051,-1.173291051,-1.173291051,-1.173291051,-1.173291051,-1.173291051 +Climate Solutions,ssp2_1p2,SLE,cdd|Hazard|Difference|Land area weighted,days/yr,-0.599574055,-0.599574055,-0.599574055,-0.599574055,-0.599574055,-0.599574055,-0.599574055,-0.599574055,-0.599574055,-0.599574055 +Climate Solutions,ssp2_1p2,GEO,cdd|Hazard|Difference|Land area weighted,days/yr,2.752651183,2.752651183,2.752651183,2.752651183,2.752651183,2.752651183,2.752651183,2.752651183,2.752651183,2.752651183 +Climate Solutions,ssp2_1p2,HKG,cdd|Hazard|Difference|Land area weighted,days/yr,4.415212323,4.415212323,4.415212323,4.415212323,4.415212323,4.415212323,4.415212323,4.415212323,4.415212323,4.415212323 +Climate Solutions,ssp2_1p2,DNK,cdd|Hazard|Difference|Land area weighted,days/yr,2.446806747,2.446806747,2.446806747,2.446806747,2.446806747,2.446806747,2.446806747,2.446806747,2.446806747,2.446806747 +Climate Solutions,ssp2_1p2,POL,cdd|Hazard|Difference|Land area weighted,days/yr,-2.194090877,-2.194090877,-2.194090877,-2.194090877,-2.194090877,-2.194090877,-2.194090877,-2.194090877,-2.194090877,-2.194090877 +Climate Solutions,ssp2_1p2,MDA,cdd|Hazard|Difference|Land area weighted,days/yr,-1.57955664,-1.57955664,-1.57955664,-1.57955664,-1.57955664,-1.57955664,-1.57955664,-1.57955664,-1.57955664,-1.57955664 +Climate Solutions,ssp2_1p2,MAR,cdd|Hazard|Difference|Land area weighted,days/yr,3.0543018,3.0543018,3.0543018,3.0543018,3.0543018,3.0543018,3.0543018,3.0543018,3.0543018,3.0543018 +Climate Solutions,ssp2_1p2,HRV,cdd|Hazard|Difference|Land area weighted,days/yr,-1.598392391,-1.598392391,-1.598392391,-1.598392391,-1.598392391,-1.598392391,-1.598392391,-1.598392391,-1.598392391,-1.598392391 +Climate Solutions,ssp2_1p2,MNG,cdd|Hazard|Difference|Land area weighted,days/yr,-8.092413713,-8.092413713,-8.092413713,-8.092413713,-8.092413713,-8.092413713,-8.092413713,-8.092413713,-8.092413713,-8.092413713 +Climate Solutions,ssp2_1p2,GNB,cdd|Hazard|Difference|Land area weighted,days/yr,-0.17249983,-0.17249983,-0.17249983,-0.17249983,-0.17249983,-0.17249983,-0.17249983,-0.17249983,-0.17249983,-0.17249983 +Climate Solutions,ssp2_1p2,KIR,cdd|Hazard|Difference|Land area weighted,days/yr,-2.37946495,-2.37946495,-2.37946495,-2.37946495,-2.37946495,-2.37946495,-2.37946495,-2.37946495,-2.37946495,-2.37946495 +Climate Solutions,ssp2_1p2,CHE,cdd|Hazard|Difference|Land area weighted,days/yr,-1.074068245,-1.074068245,-1.074068245,-1.074068245,-1.074068245,-1.074068245,-1.074068245,-1.074068245,-1.074068245,-1.074068245 +Climate Solutions,ssp2_1p2,GRD,cdd|Hazard|Difference|Land area weighted,days/yr,4.440244631,4.440244631,4.440244631,4.440244631,4.440244631,4.440244631,4.440244631,4.440244631,4.440244631,4.440244631 +Climate Solutions,ssp2_1p2,BLZ,cdd|Hazard|Difference|Land area weighted,days/yr,9.722353701,9.722353701,9.722353701,9.722353701,9.722353701,9.722353701,9.722353701,9.722353701,9.722353701,9.722353701 +Climate Solutions,ssp2_1p2,TCD,cdd|Hazard|Difference|Land area weighted,days/yr,-2.349540077,-2.349540077,-2.349540077,-2.349540077,-2.349540077,-2.349540077,-2.349540077,-2.349540077,-2.349540077,-2.349540077 +Climate Solutions,ssp2_1p2,EST,cdd|Hazard|Difference|Land area weighted,days/yr,-6.825947654,-6.825947654,-6.825947654,-6.825947654,-6.825947654,-6.825947654,-6.825947654,-6.825947654,-6.825947654,-6.825947654 +Climate Solutions,ssp2_1p2,URY,cdd|Hazard|Difference|Land area weighted,days/yr,-1.503592695,-1.503592695,-1.503592695,-1.503592695,-1.503592695,-1.503592695,-1.503592695,-1.503592695,-1.503592695,-1.503592695 +Climate Solutions,ssp2_1p2,GNQ,cdd|Hazard|Difference|Land area weighted,days/yr,-2.672245025,-2.672245025,-2.672245025,-2.672245025,-2.672245025,-2.672245025,-2.672245025,-2.672245025,-2.672245025,-2.672245025 +Climate Solutions,ssp2_1p2,LBN,cdd|Hazard|Difference|Land area weighted,days/yr,-1.497367053,-1.497367053,-1.497367053,-1.497367053,-1.497367053,-1.497367053,-1.497367053,-1.497367053,-1.497367053,-1.497367053 +Climate Solutions,ssp2_1p2,UZB,cdd|Hazard|Difference|Land area weighted,days/yr,0.928694052,0.928694052,0.928694052,0.928694052,0.928694052,0.928694052,0.928694052,0.928694052,0.928694052,0.928694052 +Climate Solutions,ssp2_1p2,TUN,cdd|Hazard|Difference|Land area weighted,days/yr,4.413686442,4.413686442,4.413686442,4.413686442,4.413686442,4.413686442,4.413686442,4.413686442,4.413686442,4.413686442 +Climate Solutions,ssp2_1p2,DJI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.589364725,-1.589364725,-1.589364725,-1.589364725,-1.589364725,-1.589364725,-1.589364725,-1.589364725,-1.589364725,-1.589364725 +Climate Solutions,ssp2_1p2,RWA,cdd|Hazard|Difference|Land area weighted,days/yr,3.011249296,3.011249296,3.011249296,3.011249296,3.011249296,3.011249296,3.011249296,3.011249296,3.011249296,3.011249296 +Climate Solutions,ssp2_1p2,TLS,cdd|Hazard|Difference|Land area weighted,days/yr,0.227405642,0.227405642,0.227405642,0.227405642,0.227405642,0.227405642,0.227405642,0.227405642,0.227405642,0.227405642 +Climate Solutions,ssp2_1p2,COL,cdd|Hazard|Difference|Land area weighted,days/yr,1.704662759,1.704662759,1.704662759,1.704662759,1.704662759,1.704662759,1.704662759,1.704662759,1.704662759,1.704662759 +Climate Solutions,ssp2_1p2,REU,cdd|Hazard|Difference|Land area weighted,days/yr,1.496270094,1.496270094,1.496270094,1.496270094,1.496270094,1.496270094,1.496270094,1.496270094,1.496270094,1.496270094 +Climate Solutions,ssp2_1p2,BDI,cdd|Hazard|Difference|Land area weighted,days/yr,3.056321341,3.056321341,3.056321341,3.056321341,3.056321341,3.056321341,3.056321341,3.056321341,3.056321341,3.056321341 +Climate Solutions,ssp2_1p2,TWN,cdd|Hazard|Difference|Land area weighted,days/yr,0.28217659,0.28217659,0.28217659,0.28217659,0.28217659,0.28217659,0.28217659,0.28217659,0.28217659,0.28217659 +Climate Solutions,ssp2_1p2,NIC,cdd|Hazard|Difference|Land area weighted,days/yr,4.86806192,4.86806192,4.86806192,4.86806192,4.86806192,4.86806192,4.86806192,4.86806192,4.86806192,4.86806192 +Climate Solutions,ssp2_1p2,BRB,cdd|Hazard|Difference|Land area weighted,days/yr,-1.60921345,-1.60921345,-1.60921345,-1.60921345,-1.60921345,-1.60921345,-1.60921345,-1.60921345,-1.60921345,-1.60921345 +Climate Solutions,ssp2_1p2,QAT,cdd|Hazard|Difference|Land area weighted,days/yr,-1.723223441,-1.723223441,-1.723223441,-1.723223441,-1.723223441,-1.723223441,-1.723223441,-1.723223441,-1.723223441,-1.723223441 +Climate Solutions,ssp2_1p2,COD,cdd|Hazard|Difference|Land area weighted,days/yr,0.854289554,0.854289554,0.854289554,0.854289554,0.854289554,0.854289554,0.854289554,0.854289554,0.854289554,0.854289554 +Climate Solutions,ssp2_1p2,ITA,cdd|Hazard|Difference|Land area weighted,days/yr,1.585919812,1.585919812,1.585919812,1.585919812,1.585919812,1.585919812,1.585919812,1.585919812,1.585919812,1.585919812 +Climate Solutions,ssp2_1p2,BTN,cdd|Hazard|Difference|Land area weighted,days/yr,7.414195264,7.414195264,7.414195264,7.414195264,7.414195264,7.414195264,7.414195264,7.414195264,7.414195264,7.414195264 +Climate Solutions,ssp2_1p2,SDN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.253379463,-2.253379463,-2.253379463,-2.253379463,-2.253379463,-2.253379463,-2.253379463,-2.253379463,-2.253379463,-2.253379463 +Climate Solutions,ssp2_1p2,NPL,cdd|Hazard|Difference|Land area weighted,days/yr,4.477985377,4.477985377,4.477985377,4.477985377,4.477985377,4.477985377,4.477985377,4.477985377,4.477985377,4.477985377 +Climate Solutions,ssp2_1p2,MLT,cdd|Hazard|Difference|Land area weighted,days/yr,4.14094965,4.14094965,4.14094965,4.14094965,4.14094965,4.14094965,4.14094965,4.14094965,4.14094965,4.14094965 +Climate Solutions,ssp2_1p2,MDV,cdd|Hazard|Difference|Land area weighted,days/yr,2.525981912,2.525981912,2.525981912,2.525981912,2.525981912,2.525981912,2.525981912,2.525981912,2.525981912,2.525981912 +Climate Solutions,ssp2_1p2,SUR,cdd|Hazard|Difference|Land area weighted,days/yr,0.364436423,0.364436423,0.364436423,0.364436423,0.364436423,0.364436423,0.364436423,0.364436423,0.364436423,0.364436423 +Climate Solutions,ssp2_1p2,VEN,cdd|Hazard|Difference|Land area weighted,days/yr,1.675699981,1.675699981,1.675699981,1.675699981,1.675699981,1.675699981,1.675699981,1.675699981,1.675699981,1.675699981 +Climate Solutions,ssp2_1p2,ISR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.949577469,-0.949577469,-0.949577469,-0.949577469,-0.949577469,-0.949577469,-0.949577469,-0.949577469,-0.949577469,-0.949577469 +Climate Solutions,ssp2_1p2,ISL,cdd|Hazard|Difference|Land area weighted,days/yr,-0.038620219,-0.038620219,-0.038620219,-0.038620219,-0.038620219,-0.038620219,-0.038620219,-0.038620219,-0.038620219,-0.038620219 +Climate Solutions,ssp2_1p2,ZMB,cdd|Hazard|Difference|Land area weighted,days/yr,2.08770471,2.08770471,2.08770471,2.08770471,2.08770471,2.08770471,2.08770471,2.08770471,2.08770471,2.08770471 +Climate Solutions,ssp2_1p2,SEN,cdd|Hazard|Difference|Land area weighted,days/yr,0.08495352,0.08495352,0.08495352,0.08495352,0.08495352,0.08495352,0.08495352,0.08495352,0.08495352,0.08495352 +Climate Solutions,ssp2_1p2,PNG,cdd|Hazard|Difference|Land area weighted,days/yr,-4.342848209,-4.342848209,-4.342848209,-4.342848209,-4.342848209,-4.342848209,-4.342848209,-4.342848209,-4.342848209,-4.342848209 +Climate Solutions,ssp2_1p2,MWI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.959063886,-1.959063886,-1.959063886,-1.959063886,-1.959063886,-1.959063886,-1.959063886,-1.959063886,-1.959063886,-1.959063886 +Climate Solutions,ssp2_1p2,TTO,cdd|Hazard|Difference|Land area weighted,days/yr,2.349789854,2.349789854,2.349789854,2.349789854,2.349789854,2.349789854,2.349789854,2.349789854,2.349789854,2.349789854 +Climate Solutions,ssp2_1p2,ZWE,cdd|Hazard|Difference|Land area weighted,days/yr,2.606326767,2.606326767,2.606326767,2.606326767,2.606326767,2.606326767,2.606326767,2.606326767,2.606326767,2.606326767 +Climate Solutions,ssp2_1p2,DEU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.53084767,-1.53084767,-1.53084767,-1.53084767,-1.53084767,-1.53084767,-1.53084767,-1.53084767,-1.53084767,-1.53084767 +Climate Solutions,ssp2_1p2,VUT,cdd|Hazard|Difference|Land area weighted,days/yr,1.235215021,1.235215021,1.235215021,1.235215021,1.235215021,1.235215021,1.235215021,1.235215021,1.235215021,1.235215021 +Climate Solutions,ssp2_1p2,MTQ,cdd|Hazard|Difference|Land area weighted,days/yr,-2.980078451,-2.980078451,-2.980078451,-2.980078451,-2.980078451,-2.980078451,-2.980078451,-2.980078451,-2.980078451,-2.980078451 +Climate Solutions,ssp2_1p2,KAZ,cdd|Hazard|Difference|Land area weighted,days/yr,0.832560226,0.832560226,0.832560226,0.832560226,0.832560226,0.832560226,0.832560226,0.832560226,0.832560226,0.832560226 +Climate Solutions,ssp2_1p2,PHL,cdd|Hazard|Difference|Land area weighted,days/yr,-1.204400482,-1.204400482,-1.204400482,-1.204400482,-1.204400482,-1.204400482,-1.204400482,-1.204400482,-1.204400482,-1.204400482 +Climate Solutions,ssp2_1p2,ERI,cdd|Hazard|Difference|Land area weighted,days/yr,0.529097062,0.529097062,0.529097062,0.529097062,0.529097062,0.529097062,0.529097062,0.529097062,0.529097062,0.529097062 +Climate Solutions,ssp2_1p2,NCL,cdd|Hazard|Difference|Land area weighted,days/yr,0.987587871,0.987587871,0.987587871,0.987587871,0.987587871,0.987587871,0.987587871,0.987587871,0.987587871,0.987587871 +Climate Solutions,ssp2_1p2,MKD,cdd|Hazard|Difference|Land area weighted,days/yr,0.092059539,0.092059539,0.092059539,0.092059539,0.092059539,0.092059539,0.092059539,0.092059539,0.092059539,0.092059539 +Climate Solutions,ssp2_1p2,PRK,cdd|Hazard|Difference|Land area weighted,days/yr,-1.521974122,-1.521974122,-1.521974122,-1.521974122,-1.521974122,-1.521974122,-1.521974122,-1.521974122,-1.521974122,-1.521974122 +Climate Solutions,ssp2_1p2,PRY,cdd|Hazard|Difference|Land area weighted,days/yr,6.339052828,6.339052828,6.339052828,6.339052828,6.339052828,6.339052828,6.339052828,6.339052828,6.339052828,6.339052828 +Climate Solutions,ssp2_1p2,LVA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.31725418,-5.31725418,-5.31725418,-5.31725418,-5.31725418,-5.31725418,-5.31725418,-5.31725418,-5.31725418,-5.31725418 +Climate Solutions,ssp2_1p2,JPN,cdd|Hazard|Difference|Land area weighted,days/yr,2.017273997,2.017273997,2.017273997,2.017273997,2.017273997,2.017273997,2.017273997,2.017273997,2.017273997,2.017273997 +Climate Solutions,ssp2_1p2,SYR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.465888018,-0.465888018,-0.465888018,-0.465888018,-0.465888018,-0.465888018,-0.465888018,-0.465888018,-0.465888018,-0.465888018 +Climate Solutions,ssp2_1p2,HND,cdd|Hazard|Difference|Land area weighted,days/yr,5.882969274,5.882969274,5.882969274,5.882969274,5.882969274,5.882969274,5.882969274,5.882969274,5.882969274,5.882969274 +Climate Solutions,ssp2_1p2,MMR,cdd|Hazard|Difference|Land area weighted,days/yr,5.425607916,5.425607916,5.425607916,5.425607916,5.425607916,5.425607916,5.425607916,5.425607916,5.425607916,5.425607916 +Climate Solutions,ssp2_1p2,MEX,cdd|Hazard|Difference|Land area weighted,days/yr,3.674416542,3.674416542,3.674416542,3.674416542,3.674416542,3.674416542,3.674416542,3.674416542,3.674416542,3.674416542 +Climate Solutions,ssp2_1p2,EGY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.78186127,-0.78186127,-0.78186127,-0.78186127,-0.78186127,-0.78186127,-0.78186127,-0.78186127,-0.78186127,-0.78186127 +Climate Solutions,ssp2_1p2,SGP,cdd|Hazard|Difference|Land area weighted,days/yr,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734 +Climate Solutions,ssp2_1p2,SRB,cdd|Hazard|Difference|Land area weighted,days/yr,-0.969097193,-0.969097193,-0.969097193,-0.969097193,-0.969097193,-0.969097193,-0.969097193,-0.969097193,-0.969097193,-0.969097193 +Climate Solutions,ssp2_1p2,BWA,cdd|Hazard|Difference|Land area weighted,days/yr,3.57931587,3.57931587,3.57931587,3.57931587,3.57931587,3.57931587,3.57931587,3.57931587,3.57931587,3.57931587 +Climate Solutions,ssp2_1p2,GBR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.719784,-0.719784,-0.719784,-0.719784,-0.719784,-0.719784,-0.719784,-0.719784,-0.719784,-0.719784 +Climate Solutions,ssp2_1p2,GMB,cdd|Hazard|Difference|Land area weighted,days/yr,0.911502612,0.911502612,0.911502612,0.911502612,0.911502612,0.911502612,0.911502612,0.911502612,0.911502612,0.911502612 +Climate Solutions,ssp2_1p2,GRC,cdd|Hazard|Difference|Land area weighted,days/yr,0.234478089,0.234478089,0.234478089,0.234478089,0.234478089,0.234478089,0.234478089,0.234478089,0.234478089,0.234478089 +Climate Solutions,ssp2_1p2,LKA,cdd|Hazard|Difference|Land area weighted,days/yr,-7.630902647,-7.630902647,-7.630902647,-7.630902647,-7.630902647,-7.630902647,-7.630902647,-7.630902647,-7.630902647,-7.630902647 +Climate Solutions,ssp2_1p2,GUF,cdd|Hazard|Difference|Land area weighted,days/yr,1.858045214,1.858045214,1.858045214,1.858045214,1.858045214,1.858045214,1.858045214,1.858045214,1.858045214,1.858045214 +Climate Solutions,ssp2_1p2,COM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.74439182,-1.74439182,-1.74439182,-1.74439182,-1.74439182,-1.74439182,-1.74439182,-1.74439182,-1.74439182,-1.74439182 +Climate Solutions,ssp2_1p2,FSM,cdd|Hazard|Difference|Land area weighted,days/yr,-6.00594728,-6.00594728,-6.00594728,-6.00594728,-6.00594728,-6.00594728,-6.00594728,-6.00594728,-6.00594728,-6.00594728 +Climate Solutions,ssp2_1p2,GLP,cdd|Hazard|Difference|Land area weighted,days/yr,3.628819444,3.628819444,3.628819444,3.628819444,3.628819444,3.628819444,3.628819444,3.628819444,3.628819444,3.628819444 +Climate Solutions,ssp2_1p2,MYT,cdd|Hazard|Difference|Land area weighted,days/yr,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904 +Climate Solutions,ssp2_1p2,VIR,cdd|Hazard|Difference|Land area weighted,days/yr,-5.928120338,-5.928120338,-5.928120338,-5.928120338,-5.928120338,-5.928120338,-5.928120338,-5.928120338,-5.928120338,-5.928120338 +Climate Solutions,ssp2_1p2,CAN,cdd|Hazard|Difference|Population weighted,days/yr,1.425446347,1.437668796,1.449530673,1.461978932,1.473465403,1.483846224,1.493596961,1.503026206,1.51188043,1.520276819 +Climate Solutions,ssp2_1p2,STP,cdd|Hazard|Difference|Population weighted,days/yr,7.026690679,7.028765535,7.030654662,7.032343678,7.033776044,7.034952814,7.035944976,7.036788961,7.037499529,7.038139451 +Climate Solutions,ssp2_1p2,TKM,cdd|Hazard|Difference|Population weighted,days/yr,-0.68423142,-0.69614065,-0.709794208,-0.724732472,-0.738682958,-0.753017265,-0.766297674,-0.779544028,-0.792409898,-0.801004942 +Climate Solutions,ssp2_1p2,LTU,cdd|Hazard|Difference|Population weighted,days/yr,-5.184467786,-5.186589752,-5.188968141,-5.190765224,-5.192353165,-5.193469098,-5.194397772,-5.195443412,-5.196520756,-5.197834777 +Climate Solutions,ssp2_1p2,KHM,cdd|Hazard|Difference|Population weighted,days/yr,-0.723615587,-0.72687816,-0.727642937,-0.72491647,-0.721770317,-0.716784269,-0.710290302,-0.703910448,-0.697532392,-0.69105923 +Climate Solutions,ssp2_1p2,ETH,cdd|Hazard|Difference|Population weighted,days/yr,-3.452415046,-3.456900437,-3.462314639,-3.466950817,-3.471614599,-3.476424277,-3.481807277,-3.487491742,-3.493256765,-3.498939522 +Climate Solutions,ssp2_1p2,SWZ,cdd|Hazard|Difference|Population weighted,days/yr,3.459009086,3.477207102,3.495202646,3.51103346,3.522282172,3.530686085,3.537395395,3.542406819,3.545604716,3.547570295 +Climate Solutions,ssp2_1p2,PSE,cdd|Hazard|Difference|Population weighted,days/yr,-0.964853346,-0.965394379,-0.971013324,-0.980289464,-0.992543332,-1.006446529,-1.022399354,-1.039756888,-1.0574666,-1.075097516 +Climate Solutions,ssp2_1p2,ARG,cdd|Hazard|Difference|Population weighted,days/yr,1.019456382,1.013399831,1.007640655,1.003743544,1.000771499,0.998453403,0.996708684,0.995756818,0.995526337,0.994172715 +Climate Solutions,ssp2_1p2,BOL,cdd|Hazard|Difference|Population weighted,days/yr,4.781249311,4.870723726,4.946839577,5.011589897,5.065499322,5.109940126,5.148184322,5.179301271,5.204439555,5.225937253 +Climate Solutions,ssp2_1p2,BHS,cdd|Hazard|Difference|Population weighted,days/yr,4.61254849,4.704010818,4.757372294,4.793560847,4.820122859,4.846134207,4.867908118,4.887999434,4.905252956,4.920859745 +Climate Solutions,ssp2_1p2,BFA,cdd|Hazard|Difference|Population weighted,days/yr,-2.322269575,-2.318102232,-2.315582713,-2.314372637,-2.314079875,-2.314244557,-2.314610629,-2.315133901,-2.315671275,-2.31626732 +Climate Solutions,ssp2_1p2,GHA,cdd|Hazard|Difference|Population weighted,days/yr,-6.024779855,-6.048338073,-6.061282139,-6.068222482,-6.070053367,-6.067812999,-6.064006288,-6.058761333,-6.052019635,-6.044289532 +Climate Solutions,ssp2_1p2,SAU,cdd|Hazard|Difference|Population weighted,days/yr,-4.051868979,-4.050785319,-4.051638897,-4.052491707,-4.05381092,-4.054887071,-4.056107101,-4.0571893,-4.058115414,-4.058977174 +Climate Solutions,ssp2_1p2,CPV,cdd|Hazard|Difference|Population weighted,days/yr,-8.018929416,-8.031893413,-8.041547963,-8.048331529,-8.052633284,-8.054834782,-8.056150049,-8.057131094,-8.05805741,-8.058877688 +Climate Solutions,ssp2_1p2,SVN,cdd|Hazard|Difference|Population weighted,days/yr,-2.945820384,-2.97873489,-3.008397391,-3.035144685,-3.056946279,-3.073385138,-3.087510965,-3.102716634,-3.118561225,-3.1305708 +Climate Solutions,ssp2_1p2,GTM,cdd|Hazard|Difference|Population weighted,days/yr,3.48423629,3.504173764,3.525987947,3.548295972,3.571478784,3.594867849,3.616407203,3.636244346,3.654928327,3.672238203 +Climate Solutions,ssp2_1p2,BIH,cdd|Hazard|Difference|Population weighted,days/yr,-3.116909338,-3.117974432,-3.11667031,-3.112975925,-3.107262195,-3.100057209,-3.092893181,-3.086251728,-3.080998438,-3.077783046 +Climate Solutions,ssp2_1p2,GIN,cdd|Hazard|Difference|Population weighted,days/yr,-2.454903247,-2.447215671,-2.439735789,-2.432308519,-2.425073155,-2.41824827,-2.412997009,-2.409465979,-2.407395338,-2.406751228 +Climate Solutions,ssp2_1p2,JOR,cdd|Hazard|Difference|Population weighted,days/yr,-1.213452454,-1.212555559,-1.213342494,-1.215054234,-1.217040517,-1.219271288,-1.221240028,-1.222496573,-1.223276524,-1.223153055 +Climate Solutions,ssp2_1p2,COG,cdd|Hazard|Difference|Population weighted,days/yr,0.786090319,0.800959761,0.808452972,0.812576281,0.814231449,0.814060076,0.811918995,0.809947722,0.806748645,0.801972941 +Climate Solutions,ssp2_1p2,ESP,cdd|Hazard|Difference|Population weighted,days/yr,3.837094643,3.83784337,3.838522047,3.839109745,3.839579603,3.839935122,3.840134025,3.840278313,3.840408667,3.84056179 +Climate Solutions,ssp2_1p2,LBR,cdd|Hazard|Difference|Population weighted,days/yr,0.145052667,0.159235837,0.167832025,0.173494187,0.178460604,0.182603375,0.185470453,0.18729478,0.188184547,0.188134982 +Climate Solutions,ssp2_1p2,NLD,cdd|Hazard|Difference|Population weighted,days/yr,1.286674072,1.300836769,1.314461379,1.326564526,1.337313032,1.347630872,1.357543338,1.366708049,1.375125995,1.382838773 +Climate Solutions,ssp2_1p2,JAM,cdd|Hazard|Difference|Population weighted,days/yr,4.942171724,4.929250137,4.916978094,4.904606265,4.89210939,4.880715328,4.871684401,4.864436396,4.858546227,4.853750815 +Climate Solutions,ssp2_1p2,OMN,cdd|Hazard|Difference|Population weighted,days/yr,-2.14246072,-2.127518392,-2.121399355,-2.116320159,-2.110882092,-2.106238346,-2.102583242,-2.100717463,-2.09918164,-2.099322232 +Climate Solutions,ssp2_1p2,TZA,cdd|Hazard|Difference|Population weighted,days/yr,-1.371319008,-1.364305981,-1.362074278,-1.36144775,-1.360925526,-1.360927008,-1.361505811,-1.362301976,-1.363465751,-1.364575893 +Climate Solutions,ssp2_1p2,ALB,cdd|Hazard|Difference|Population weighted,days/yr,0.699522154,0.680405033,0.667113821,0.658695647,0.654064895,0.652296913,0.651593064,0.651628008,0.652124135,0.652025205 +Climate Solutions,ssp2_1p2,GAB,cdd|Hazard|Difference|Population weighted,days/yr,0.476505895,0.44888081,0.434032321,0.421168986,0.413034653,0.404129207,0.395724369,0.384859031,0.376781264,0.369806602 +Climate Solutions,ssp2_1p2,NZL,cdd|Hazard|Difference|Population weighted,days/yr,3.456767807,3.460964687,3.463892946,3.468504239,3.471694213,3.474780345,3.478266626,3.481941792,3.486356366,3.491581696 +Climate Solutions,ssp2_1p2,YEM,cdd|Hazard|Difference|Population weighted,days/yr,0.925248839,0.896040805,0.874674822,0.858205435,0.846826331,0.838479679,0.83260396,0.828573121,0.825868661,0.824360274 +Climate Solutions,ssp2_1p2,PAK,cdd|Hazard|Difference|Population weighted,days/yr,-1.205108985,-1.232561668,-1.251728743,-1.265678667,-1.277307143,-1.28664772,-1.294386213,-1.301009025,-1.306564617,-1.31101618 +Climate Solutions,ssp2_1p2,WSM,cdd|Hazard|Difference|Population weighted,days/yr,4.509257385,4.510197245,4.514833998,4.524855,4.539457595,4.558624893,4.576898571,4.593592748,4.608282252,4.620781281 +Climate Solutions,ssp2_1p2,SVK,cdd|Hazard|Difference|Population weighted,days/yr,-3.448172346,-3.448158147,-3.447116429,-3.445936167,-3.445716488,-3.445547724,-3.445071747,-3.444810401,-3.444834146,-3.444838321 +Climate Solutions,ssp2_1p2,ARE,cdd|Hazard|Difference|Population weighted,days/yr,-1.077529713,-1.097913441,-1.100994975,-1.099713405,-1.096236678,-1.091493343,-1.085265125,-1.079112134,-1.074186638,-1.070264261 +Climate Solutions,ssp2_1p2,GUM,cdd|Hazard|Difference|Population weighted,days/yr,-2.661700525,-2.667582355,-2.66974267,-2.670951657,-2.671685157,-2.672127992,-2.672370727,-2.672506841,-2.672608586,-2.672689302 +Climate Solutions,ssp2_1p2,IND,cdd|Hazard|Difference|Population weighted,days/yr,0.604223027,0.594724853,0.587462288,0.579630208,0.571543299,0.563751732,0.556661525,0.550444734,0.545250079,0.541120909 +Climate Solutions,ssp2_1p2,AZE,cdd|Hazard|Difference|Population weighted,days/yr,6.229832756,6.236165214,6.23713761,6.236437891,6.234162443,6.229942331,6.224526604,6.219583389,6.215195245,6.211553583 +Climate Solutions,ssp2_1p2,MDG,cdd|Hazard|Difference|Population weighted,days/yr,1.872148859,1.837882059,1.81900401,1.810084596,1.807953388,1.809860358,1.814509622,1.821023726,1.829149099,1.838147087 +Climate Solutions,ssp2_1p2,LSO,cdd|Hazard|Difference|Population weighted,days/yr,2.788501361,2.795475161,2.803984228,2.813474303,2.822936065,2.832239577,2.840973975,2.849105295,2.856091502,2.86188439 +Climate Solutions,ssp2_1p2,VCT,cdd|Hazard|Difference|Population weighted,days/yr,1.910786546,1.912597814,1.914153093,1.915470361,1.916571708,1.917483547,1.918229649,1.918845668,1.919360812,1.919797322 +Climate Solutions,ssp2_1p2,KEN,cdd|Hazard|Difference|Population weighted,days/yr,-2.316993438,-2.334304668,-2.349180436,-2.362285523,-2.373713969,-2.383842071,-2.392495944,-2.400012384,-2.406518276,-2.412062505 +Climate Solutions,ssp2_1p2,KOR,cdd|Hazard|Difference|Population weighted,days/yr,2.907179233,2.91636876,2.927368636,2.940546548,2.951715728,2.960923188,2.968479002,2.974672958,2.980052305,2.984611246 +Climate Solutions,ssp2_1p2,BLR,cdd|Hazard|Difference|Population weighted,days/yr,-5.378493736,-5.421131577,-5.460849825,-5.495916625,-5.526033014,-5.551652095,-5.574009637,-5.593405743,-5.610140338,-5.624342411 +Climate Solutions,ssp2_1p2,TJK,cdd|Hazard|Difference|Population weighted,days/yr,3.135511924,3.043876674,2.95713014,2.872116396,2.791803023,2.715987133,2.647346162,2.586730994,2.535632386,2.49742273 +Climate Solutions,ssp2_1p2,TUR,cdd|Hazard|Difference|Population weighted,days/yr,3.455746961,3.456771039,3.456532092,3.456330964,3.456069406,3.45505897,3.453891716,3.452417829,3.451501461,3.451598765 +Climate Solutions,ssp2_1p2,AFG,cdd|Hazard|Difference|Population weighted,days/yr,-2.890708575,-2.877940737,-2.867280406,-2.859810523,-2.855711775,-2.853539602,-2.852752449,-2.853154815,-2.854390305,-2.85632515 +Climate Solutions,ssp2_1p2,BGD,cdd|Hazard|Difference|Population weighted,days/yr,4.590157093,4.589349437,4.587004542,4.582835741,4.577458467,4.571354029,4.565077711,4.559004387,4.55332724,4.548466984 +Climate Solutions,ssp2_1p2,MRT,cdd|Hazard|Difference|Population weighted,days/yr,-0.006198296,-0.020395661,-0.024475861,-0.027296287,-0.027690615,-0.031897239,-0.031296788,-0.029861321,-0.028430021,-0.026709502 +Climate Solutions,ssp2_1p2,SLB,cdd|Hazard|Difference|Population weighted,days/yr,-0.814776726,-0.857141923,-0.886619855,-0.907784194,-0.921549508,-0.932562185,-0.943132219,-0.951869101,-0.959933032,-0.966151528 +Climate Solutions,ssp2_1p2,LCA,cdd|Hazard|Difference|Population weighted,days/yr,0.65037308,0.628565962,0.613905716,0.603508096,0.596537704,0.593966738,0.597148178,0.606210278,0.617938364,0.62989597 +Climate Solutions,ssp2_1p2,CYP,cdd|Hazard|Difference|Population weighted,days/yr,-2.068868441,-2.066395163,-2.06415289,-2.062163033,-2.060407295,-2.058882243,-2.057682973,-2.056818729,-2.056104907,-2.055471018 +Climate Solutions,ssp2_1p2,PYF,cdd|Hazard|Difference|Population weighted,days/yr,0.404222993,0.406288112,0.408391589,0.410429909,0.412344441,0.414061812,0.415579098,0.416892738,0.418066207,0.41906462 +Climate Solutions,ssp2_1p2,FRA,cdd|Hazard|Difference|Population weighted,days/yr,4.447905659,4.450759339,4.453706984,4.456396062,4.458507961,4.460620244,4.46313936,4.465723409,4.46806631,4.470203961 +Climate Solutions,ssp2_1p2,NAM,cdd|Hazard|Difference|Population weighted,days/yr,2.248175775,2.250009041,2.249368195,2.250142815,2.251116858,2.251935958,2.253435317,2.25363896,2.255642399,2.257616782 +Climate Solutions,ssp2_1p2,SOM,cdd|Hazard|Difference|Population weighted,days/yr,0.094041634,0.085204609,0.079949023,0.079233491,0.080938127,0.08462748,0.088742177,0.093182955,0.097808316,0.102639747 +Climate Solutions,ssp2_1p2,PER,cdd|Hazard|Difference|Population weighted,days/yr,2.023127842,1.98955481,1.960348182,1.935943499,1.915516554,1.89927636,1.885248786,1.873179036,1.862911082,1.853779367 +Climate Solutions,ssp2_1p2,LAO,cdd|Hazard|Difference|Population weighted,days/yr,2.07288445,2.074711898,2.072599783,2.069384113,2.064471001,2.057468309,2.05049837,2.043278732,2.036507444,2.031673335 +Climate Solutions,ssp2_1p2,SYC,cdd|Hazard|Difference|Population weighted,days/yr,3.561463169,3.564246301,3.56533459,3.566411099,3.566411099,3.566414728,3.566404189,3.566412812,3.566391094,3.56639451 +Climate Solutions,ssp2_1p2,NOR,cdd|Hazard|Difference|Population weighted,days/yr,0.710375251,0.738251366,0.759076572,0.77568096,0.789163979,0.800033729,0.809482837,0.81779403,0.824718766,0.831226646 +Climate Solutions,ssp2_1p2,CIV,cdd|Hazard|Difference|Population weighted,days/yr,-3.410229394,-3.411541912,-3.412112612,-3.412668885,-3.412580857,-3.412142505,-3.411828965,-3.411781164,-3.412125293,-3.41282854 +Climate Solutions,ssp2_1p2,BEN,cdd|Hazard|Difference|Population weighted,days/yr,-4.372926119,-4.38385261,-4.390488877,-4.394532492,-4.39699448,-4.39818988,-4.398693156,-4.398710288,-4.398253014,-4.397510146 +Climate Solutions,ssp2_1p2,ESH,cdd|Hazard|Difference|Population weighted,days/yr,0.02143817,0.016406814,0.004517995,-0.00677294,-0.020192935,-0.029850391,-0.037697068,-0.047205854,-0.055881153,-0.064426813 +Climate Solutions,ssp2_1p2,CUB,cdd|Hazard|Difference|Population weighted,days/yr,3.770075478,3.775141752,3.779775239,3.783616664,3.786811147,3.789473052,3.791681294,3.793548712,3.795116959,3.796525988 +Climate Solutions,ssp2_1p2,CMR,cdd|Hazard|Difference|Population weighted,days/yr,-8.932255485,-8.895937242,-8.857661413,-8.820807215,-8.784536743,-8.753005799,-8.724287002,-8.698298966,-8.674073456,-8.651685133 +Climate Solutions,ssp2_1p2,MNE,cdd|Hazard|Difference|Population weighted,days/yr,0.33671617,0.334018797,0.328667299,0.322153727,0.31564686,0.30925017,0.304465055,0.300599905,0.297543079,0.296027476 +Climate Solutions,ssp2_1p2,TGO,cdd|Hazard|Difference|Population weighted,days/yr,-4.942916742,-4.935646544,-4.932719246,-4.932968363,-4.935478239,-4.939144863,-4.943810615,-4.949056822,-4.954325374,-4.959552474 +Climate Solutions,ssp2_1p2,CHN,cdd|Hazard|Difference|Population weighted,days/yr,1.711628174,1.67769225,1.646302735,1.618158286,1.593405969,1.57366268,1.557707889,1.544634617,1.533814886,1.52472298 +Climate Solutions,ssp2_1p2,ARM,cdd|Hazard|Difference|Population weighted,days/yr,9.324373558,9.449291981,9.577864904,9.691467388,9.782317793,9.856930161,9.919223041,9.970969116,10.01549095,10.05855506 +Climate Solutions,ssp2_1p2,ATG,cdd|Hazard|Difference|Population weighted,days/yr,-4.665111687,-4.665312865,-4.665424596,-4.665479334,-4.665571971,-4.665577075,-4.665581124,-4.665581124,-4.665626297,-4.665569756 +Climate Solutions,ssp2_1p2,DOM,cdd|Hazard|Difference|Population weighted,days/yr,-0.901042391,-0.903536065,-0.907487587,-0.912622089,-0.918661825,-0.925668403,-0.933183067,-0.940721465,-0.947276448,-0.952669838 +Climate Solutions,ssp2_1p2,UKR,cdd|Hazard|Difference|Population weighted,days/yr,-1.996944529,-1.99608367,-1.995869072,-1.996035804,-1.99633789,-1.996794553,-1.997269452,-1.997656914,-1.997880487,-1.997922346 +Climate Solutions,ssp2_1p2,BHR,cdd|Hazard|Difference|Population weighted,days/yr,-3.244043474,-3.242173413,-3.240683375,-3.239505556,-3.23861323,-3.237935025,-3.237461762,-3.237166287,-3.236995422,-3.236879595 +Climate Solutions,ssp2_1p2,TON,cdd|Hazard|Difference|Population weighted,days/yr,-0.544073538,-0.554709682,-0.57109523,-0.591781322,-0.616475454,-0.64358925,-0.667766699,-0.688361637,-0.706159281,-0.721033211 +Climate Solutions,ssp2_1p2,FIN,cdd|Hazard|Difference|Population weighted,days/yr,-4.752713686,-4.755390613,-4.757921093,-4.760690461,-4.762665895,-4.764079563,-4.76579093,-4.766738764,-4.768087346,-4.7700679 +Climate Solutions,ssp2_1p2,LBY,cdd|Hazard|Difference|Population weighted,days/yr,0.962559753,0.957724017,0.949539103,0.941885126,0.935400397,0.931048558,0.925980972,0.919705823,0.915708248,0.911409121 +Climate Solutions,ssp2_1p2,IDN,cdd|Hazard|Difference|Population weighted,days/yr,7.704790617,7.748920753,7.808138798,7.875815301,7.950644133,8.0292976,8.109154571,8.177112126,8.234665171,8.283847952 +Climate Solutions,ssp2_1p2,CAF,cdd|Hazard|Difference|Population weighted,days/yr,-6.291883729,-6.281542792,-6.274613104,-6.268879919,-6.266131957,-6.266159222,-6.267842097,-6.26868333,-6.269893386,-6.272005074 +Climate Solutions,ssp2_1p2,USA,cdd|Hazard|Difference|Population weighted,days/yr,0.898046485,0.895134008,0.892111849,0.888853989,0.885541269,0.882420556,0.87958988,0.876851224,0.874385704,0.87213238 +Climate Solutions,ssp2_1p2,SWE,cdd|Hazard|Difference|Population weighted,days/yr,-0.63458996,-0.642860774,-0.647624501,-0.654079606,-0.658521248,-0.663560657,-0.667325443,-0.670747894,-0.674058338,-0.677085388 +Climate Solutions,ssp2_1p2,VNM,cdd|Hazard|Difference|Population weighted,days/yr,1.269509848,1.262273967,1.25644859,1.251508898,1.247689432,1.24507637,1.243449906,1.242721162,1.242288918,1.242026609 +Climate Solutions,ssp2_1p2,MLI,cdd|Hazard|Difference|Population weighted,days/yr,-1.005887236,-1.002617232,-1.000562309,-0.999663612,-0.99926592,-0.999774493,-0.999927737,-1.00052608,-1.000975284,-1.00139164 +Climate Solutions,ssp2_1p2,RUS,cdd|Hazard|Difference|Population weighted,days/yr,-3.460094835,-3.494514121,-3.527008024,-3.556119152,-3.580185541,-3.601998133,-3.621222537,-3.638433533,-3.65273345,-3.66505611 +Climate Solutions,ssp2_1p2,BGR,cdd|Hazard|Difference|Population weighted,days/yr,-2.387190414,-2.405762495,-2.422513782,-2.437043151,-2.450219997,-2.462696434,-2.473935002,-2.483774296,-2.492253903,-2.499703957 +Climate Solutions,ssp2_1p2,MUS,cdd|Hazard|Difference|Population weighted,days/yr,1.173576085,1.155584905,1.139735072,1.127134829,1.117785159,1.110976244,1.106489393,1.104086501,1.102615228,1.101351308 +Climate Solutions,ssp2_1p2,ROU,cdd|Hazard|Difference|Population weighted,days/yr,-0.975162479,-0.966144869,-0.95855804,-0.95238227,-0.947560644,-0.943616405,-0.940418851,-0.938002147,-0.936221871,-0.934995598 +Climate Solutions,ssp2_1p2,AGO,cdd|Hazard|Difference|Population weighted,days/yr,1.684269072,1.685013176,1.686134013,1.686731221,1.68712046,1.687274,1.687392448,1.687281464,1.686952696,1.68662171 +Climate Solutions,ssp2_1p2,PRT,cdd|Hazard|Difference|Population weighted,days/yr,3.371688619,3.376585552,3.38008616,3.383146715,3.385725835,3.387669226,3.389226856,3.390604338,3.391781957,3.392716851 +Climate Solutions,ssp2_1p2,ZAF,cdd|Hazard|Difference|Population weighted,days/yr,3.338039341,3.355626544,3.373352879,3.39114803,3.408067049,3.423966118,3.43948882,3.454984286,3.468244731,3.479596544 +Climate Solutions,ssp2_1p2,FJI,cdd|Hazard|Difference|Population weighted,days/yr,-0.269164095,-0.28077484,-0.293732813,-0.30624383,-0.318859808,-0.331196293,-0.341861388,-0.350410489,-0.357041739,-0.362624494 +Climate Solutions,ssp2_1p2,BRN,cdd|Hazard|Difference|Population weighted,days/yr,-6.167783191,-6.16299328,-6.157899618,-6.151709173,-6.144228344,-6.136813075,-6.131164162,-6.12705404,-6.123709903,-6.121640314 +Climate Solutions,ssp2_1p2,MYS,cdd|Hazard|Difference|Population weighted,days/yr,-1.515741719,-1.523190065,-1.532238183,-1.54132407,-1.550555088,-1.559353085,-1.56741931,-1.574729067,-1.581130741,-1.586731041 +Climate Solutions,ssp2_1p2,AUT,cdd|Hazard|Difference|Population weighted,days/yr,-3.737418709,-3.764833858,-3.788521194,-3.809120673,-3.828101682,-3.843836848,-3.855887845,-3.865674735,-3.873762049,-3.881092451 +Climate Solutions,ssp2_1p2,MOZ,cdd|Hazard|Difference|Population weighted,days/yr,1.248250176,1.241418542,1.231804406,1.220349283,1.208562716,1.198247389,1.1888343,1.180039651,1.171413951,1.163176698 +Climate Solutions,ssp2_1p2,UGA,cdd|Hazard|Difference|Population weighted,days/yr,-3.342805815,-3.330296611,-3.327053525,-3.327546372,-3.330283825,-3.334991646,-3.340367764,-3.345866404,-3.351522085,-3.357547312 +Climate Solutions,ssp2_1p2,KGZ,cdd|Hazard|Difference|Population weighted,days/yr,3.22215181,3.231625585,3.23073793,3.219687789,3.204349894,3.183186207,3.159350281,3.136800824,3.115923738,3.099820378 +Climate Solutions,ssp2_1p2,HUN,cdd|Hazard|Difference|Population weighted,days/yr,-2.65915217,-2.675708365,-2.6911637,-2.706044415,-2.719618258,-2.731637081,-2.742346741,-2.751845622,-2.760340029,-2.767930213 +Climate Solutions,ssp2_1p2,NER,cdd|Hazard|Difference|Population weighted,days/yr,-3.792768568,-3.79038824,-3.787148359,-3.784801897,-3.782328439,-3.780041471,-3.778186126,-3.776300042,-3.775065397,-3.773903625 +Climate Solutions,ssp2_1p2,BRA,cdd|Hazard|Difference|Population weighted,days/yr,5.176289739,5.174431607,5.17306122,5.171554904,5.169785749,5.167900502,5.166326141,5.165140051,5.164251299,5.163323221 +Climate Solutions,ssp2_1p2,KWT,cdd|Hazard|Difference|Population weighted,days/yr,-1.349344015,-1.35136433,-1.351256007,-1.351126487,-1.351034888,-1.351120978,-1.351384088,-1.351849842,-1.35238081,-1.35297313 +Climate Solutions,ssp2_1p2,PAN,cdd|Hazard|Difference|Population weighted,days/yr,-3.444901655,-3.449340715,-3.455948237,-3.464265333,-3.473452744,-3.482850198,-3.492243977,-3.501529611,-3.50979589,-3.516901903 +Climate Solutions,ssp2_1p2,GUY,cdd|Hazard|Difference|Population weighted,days/yr,-0.463620545,-0.465391114,-0.466719836,-0.463757779,-0.465238851,-0.453325184,-0.466091389,-0.464942772,-0.451648422,-0.45790482 +Climate Solutions,ssp2_1p2,CRI,cdd|Hazard|Difference|Population weighted,days/yr,0.371951274,0.33489634,0.293239587,0.250030524,0.206846245,0.165147177,0.124530527,0.085256384,0.050314192,0.02042349 +Climate Solutions,ssp2_1p2,LUX,cdd|Hazard|Difference|Population weighted,days/yr,0.955945147,0.991553532,1.019480337,1.042995408,1.062380118,1.077321412,1.086305083,1.089490194,1.088944563,1.085922036 +Climate Solutions,ssp2_1p2,IRL,cdd|Hazard|Difference|Population weighted,days/yr,1.693295315,1.705282184,1.718161704,1.729931089,1.740474696,1.750785173,1.761015658,1.770627532,1.779793139,1.788677941 +Climate Solutions,ssp2_1p2,NGA,cdd|Hazard|Difference|Population weighted,days/yr,-5.50771342,-5.504092374,-5.5011774,-5.49881519,-5.496922742,-5.495503983,-5.494424582,-5.493627297,-5.493101563,-5.492778315 +Climate Solutions,ssp2_1p2,ECU,cdd|Hazard|Difference|Population weighted,days/yr,-0.962041658,-0.959303576,-0.958443329,-0.959138574,-0.96103691,-0.963918255,-0.967107007,-0.970487964,-0.973971637,-0.976869667 +Climate Solutions,ssp2_1p2,CZE,cdd|Hazard|Difference|Population weighted,days/yr,-3.602596271,-3.591615554,-3.580590589,-3.568875095,-3.557595005,-3.547315983,-3.537802395,-3.529271052,-3.522036623,-3.51615879 +Climate Solutions,ssp2_1p2,AUS,cdd|Hazard|Difference|Population weighted,days/yr,1.182136238,1.18866316,1.191646765,1.193834233,1.196545107,1.197053195,1.196724339,1.195663916,1.194012872,1.192168889 +Climate Solutions,ssp2_1p2,IRN,cdd|Hazard|Difference|Population weighted,days/yr,2.459699642,2.447702668,2.442573867,2.440818722,2.44181782,2.446788509,2.451163373,2.453065102,2.454215365,2.455475285 +Climate Solutions,ssp2_1p2,DZA,cdd|Hazard|Difference|Population weighted,days/yr,5.753134767,5.746792233,5.749334186,5.751697375,5.757508357,5.763256757,5.770734205,5.778217,5.78741268,5.792680526 +Climate Solutions,ssp2_1p2,SLV,cdd|Hazard|Difference|Population weighted,days/yr,-2.515521946,-2.564229222,-2.621104325,-2.678830123,-2.736018706,-2.780135301,-2.816463561,-2.8487392,-2.879535203,-2.910854759 +Climate Solutions,ssp2_1p2,CHL,cdd|Hazard|Difference|Population weighted,days/yr,6.569809664,6.591638348,6.606305424,6.613134143,6.612985153,6.609242187,6.605423743,6.602305291,6.600125589,6.598131138 +Climate Solutions,ssp2_1p2,PRI,cdd|Hazard|Difference|Population weighted,days/yr,-0.300537925,-0.294866708,-0.294483458,-0.294274109,-0.294173976,-0.294106702,-0.294038171,-0.293995804,-0.293979319,-0.293937178 +Climate Solutions,ssp2_1p2,BEL,cdd|Hazard|Difference|Population weighted,days/yr,0.813397311,0.818258006,0.82282601,0.827699816,0.832209217,0.836329516,0.840740999,0.84544594,0.85000187,0.854296293 +Climate Solutions,ssp2_1p2,THA,cdd|Hazard|Difference|Population weighted,days/yr,-0.978945261,-0.980085007,-0.981372468,-0.982806016,-0.984238672,-0.985604473,-0.986969946,-0.988187389,-0.989185485,-0.99006119 +Climate Solutions,ssp2_1p2,HTI,cdd|Hazard|Difference|Population weighted,days/yr,-1.27232091,-1.274282272,-1.277733206,-1.282290806,-1.287781922,-1.294522453,-1.301911938,-1.308253653,-1.313314761,-1.317587307 +Climate Solutions,ssp2_1p2,IRQ,cdd|Hazard|Difference|Population weighted,days/yr,-1.404227374,-1.405834526,-1.408103768,-1.410427174,-1.412787408,-1.415331058,-1.417874435,-1.420363329,-1.422646679,-1.424644792 +Climate Solutions,ssp2_1p2,SLE,cdd|Hazard|Difference|Population weighted,days/yr,-0.655946527,-0.652735865,-0.650187119,-0.647901538,-0.645871628,-0.644030299,-0.642916819,-0.642521941,-0.642547861,-0.642918477 +Climate Solutions,ssp2_1p2,GEO,cdd|Hazard|Difference|Population weighted,days/yr,2.056995226,2.020114823,1.982376358,1.951676064,1.927337258,1.907869501,1.891894348,1.87808078,1.866168606,1.855214476 +Climate Solutions,ssp2_1p2,HKG,cdd|Hazard|Difference|Population weighted,days/yr,4.313569017,4.312446869,4.3157438,4.323313087,4.333377909,4.346870171,4.359704701,4.370628738,4.378750147,4.381720225 +Climate Solutions,ssp2_1p2,DNK,cdd|Hazard|Difference|Population weighted,days/yr,2.249258769,2.246188585,2.245552359,2.245727753,2.246641814,2.248236794,2.249744415,2.251053142,2.252160486,2.252946644 +Climate Solutions,ssp2_1p2,POL,cdd|Hazard|Difference|Population weighted,days/yr,-2.618450199,-2.628952773,-2.638783624,-2.648370837,-2.657310067,-2.664963569,-2.67125311,-2.676651753,-2.681381858,-2.685377823 +Climate Solutions,ssp2_1p2,MDA,cdd|Hazard|Difference|Population weighted,days/yr,-1.157911269,-1.102369142,-1.051243659,-1.006526567,-0.9685839,-0.937459677,-0.912755336,-0.891859273,-0.873624608,-0.8589227 +Climate Solutions,ssp2_1p2,MAR,cdd|Hazard|Difference|Population weighted,days/yr,1.710268798,1.700071849,1.689469233,1.679401262,1.669527769,1.659958242,1.651663847,1.64486162,1.639293385,1.63472705 +Climate Solutions,ssp2_1p2,HRV,cdd|Hazard|Difference|Population weighted,days/yr,-1.837228259,-1.838700118,-1.839722349,-1.839612961,-1.838516741,-1.836905652,-1.83506868,-1.833183048,-1.831798869,-1.830840556 +Climate Solutions,ssp2_1p2,MNG,cdd|Hazard|Difference|Population weighted,days/yr,-7.96750584,-7.97173097,-7.975526314,-7.992294507,-7.98545998,-7.987585362,-7.989145016,-7.992253252,-7.990745219,-7.986821485 +Climate Solutions,ssp2_1p2,GNB,cdd|Hazard|Difference|Population weighted,days/yr,0.07749206,0.075788391,0.075952803,0.077728427,0.080320871,0.08349197,0.086190039,0.088348589,0.090041311,0.091266547 +Climate Solutions,ssp2_1p2,KIR,cdd|Hazard|Difference|Population weighted,days/yr,-2.625274216,-2.53251193,-2.451321959,-2.397292791,-2.353158561,-2.316413062,-2.291558794,-2.279653007,-2.268132739,-2.262273168 +Climate Solutions,ssp2_1p2,CHE,cdd|Hazard|Difference|Population weighted,days/yr,-0.874250248,-0.868029228,-0.860644425,-0.854006873,-0.847429724,-0.840359208,-0.8328596,-0.825855813,-0.81979863,-0.814162793 +Climate Solutions,ssp2_1p2,GRD,cdd|Hazard|Difference|Population weighted,days/yr,5.322762396,5.331611036,5.338587207,5.345305024,5.351359089,5.356297101,5.360212698,5.363040472,5.365185337,5.367067709 +Climate Solutions,ssp2_1p2,BLZ,cdd|Hazard|Difference|Population weighted,days/yr,9.83741778,9.79358842,9.749027061,9.710140843,9.67484324,9.643900114,9.614879992,9.592767854,9.578052666,9.572752495 +Climate Solutions,ssp2_1p2,TCD,cdd|Hazard|Difference|Population weighted,days/yr,-2.665048405,-2.667217741,-2.669322223,-2.670074282,-2.670958828,-2.671402321,-2.671559628,-2.671961835,-2.672287207,-2.672621353 +Climate Solutions,ssp2_1p2,EST,cdd|Hazard|Difference|Population weighted,days/yr,-6.998758503,-7.003328561,-7.007327958,-7.010999614,-7.014295062,-7.01718814,-7.019867862,-7.022119595,-7.024068526,-7.025925034 +Climate Solutions,ssp2_1p2,URY,cdd|Hazard|Difference|Population weighted,days/yr,-1.145643143,-1.141510893,-1.138114728,-1.134955969,-1.131854992,-1.12938094,-1.128234326,-1.127343027,-1.126813957,-1.125634271 +Climate Solutions,ssp2_1p2,GNQ,cdd|Hazard|Difference|Population weighted,days/yr,-3.408911918,-3.332445784,-3.279102395,-3.242742529,-3.215020993,-3.194311024,-3.177808319,-3.165949199,-3.15716035,-3.153076443 +Climate Solutions,ssp2_1p2,LBN,cdd|Hazard|Difference|Population weighted,days/yr,-1.795197648,-1.794168518,-1.793187491,-1.792145127,-1.790986871,-1.789783787,-1.788147633,-1.78605779,-1.783560176,-1.780736485 +Climate Solutions,ssp2_1p2,UZB,cdd|Hazard|Difference|Population weighted,days/yr,2.357838219,2.347263773,2.342072005,2.341962908,2.343989216,2.348886727,2.355891188,2.363680385,2.3718452,2.379732331 +Climate Solutions,ssp2_1p2,TUN,cdd|Hazard|Difference|Population weighted,days/yr,5.85162872,5.848927891,5.85102998,5.857423572,5.866071318,5.877262054,5.889422077,5.900104959,5.909834768,5.918356169 +Climate Solutions,ssp2_1p2,DJI,cdd|Hazard|Difference|Population weighted,days/yr,-2.549070511,-2.531638267,-2.518832838,-2.509585771,-2.503391964,-2.498095758,-2.494405948,-2.491132807,-2.489469364,-2.488457648 +Climate Solutions,ssp2_1p2,RWA,cdd|Hazard|Difference|Population weighted,days/yr,2.606659271,2.60758596,2.616648723,2.62533917,2.632903223,2.641079215,2.646923158,2.650903248,2.65392813,2.655890581 +Climate Solutions,ssp2_1p2,TLS,cdd|Hazard|Difference|Population weighted,days/yr,-0.201839317,-0.213285607,-0.225048132,-0.234500691,-0.242608755,-0.249973909,-0.257169422,-0.264050914,-0.270454432,-0.276224478 +Climate Solutions,ssp2_1p2,COL,cdd|Hazard|Difference|Population weighted,days/yr,-0.669712533,-0.655881017,-0.646041729,-0.638926204,-0.634096824,-0.630831292,-0.628552882,-0.627043976,-0.625801792,-0.624848769 +Climate Solutions,ssp2_1p2,REU,cdd|Hazard|Difference|Population weighted,days/yr,1.340310415,1.410645697,1.426933513,1.43485744,1.439585574,1.44267472,1.444732133,1.446399199,1.447585,1.44848137 +Climate Solutions,ssp2_1p2,BDI,cdd|Hazard|Difference|Population weighted,days/yr,3.171556352,3.173331624,3.170216493,3.164308114,3.158595294,3.153455313,3.146314255,3.13784112,3.128431653,3.118431243 +Climate Solutions,ssp2_1p2,TWN,cdd|Hazard|Difference|Population weighted,days/yr,1.918361956,2.023130605,2.10655593,2.169364201,2.223023605,2.253677986,2.286183896,2.31455215,2.339718673,2.362350693 +Climate Solutions,ssp2_1p2,NIC,cdd|Hazard|Difference|Population weighted,days/yr,6.201568945,6.189034461,6.177100521,6.16544537,6.154187362,6.143109861,6.133982624,6.127157773,6.121827276,6.117714444 +Climate Solutions,ssp2_1p2,BRB,cdd|Hazard|Difference|Population weighted,days/yr,-1.47301818,-1.468777292,-1.464657376,-1.460607109,-1.456668521,-1.453056763,-1.450090664,-1.447634376,-1.445583156,-1.443856964 +Climate Solutions,ssp2_1p2,QAT,cdd|Hazard|Difference|Population weighted,days/yr,-0.55152996,-0.557536059,-0.559029418,-0.559415004,-0.559279806,-0.558899569,-0.558330989,-0.558139758,-0.558087052,-0.557909397 +Climate Solutions,ssp2_1p2,COD,cdd|Hazard|Difference|Population weighted,days/yr,0.645662184,0.641570457,0.635428991,0.629064855,0.623299773,0.617879007,0.612547452,0.60771382,0.602678221,0.597989646 +Climate Solutions,ssp2_1p2,ITA,cdd|Hazard|Difference|Population weighted,days/yr,-0.023554124,-0.049702808,-0.077970222,-0.105303012,-0.13275048,-0.160333499,-0.186278018,-0.20962853,-0.230491732,-0.249118938 +Climate Solutions,ssp2_1p2,BTN,cdd|Hazard|Difference|Population weighted,days/yr,6.035859253,6.019715753,6.010330295,6.001868018,5.99561535,5.99161357,5.988928439,5.987103092,5.986934902,5.988421453 +Climate Solutions,ssp2_1p2,SDN,cdd|Hazard|Difference|Population weighted,days/yr,-2.882982571,-2.87438175,-2.869193776,-2.866621663,-2.865648505,-2.866036568,-2.867096763,-2.868900623,-2.87137051,-2.873797968 +Climate Solutions,ssp2_1p2,NPL,cdd|Hazard|Difference|Population weighted,days/yr,2.836901568,2.799980629,2.774459438,2.75619165,2.743948543,2.731724121,2.71993253,2.708971631,2.699271458,2.691366114 +Climate Solutions,ssp2_1p2,MLT,cdd|Hazard|Difference|Population weighted,days/yr,4.662499593,4.678127236,4.685592676,4.689954069,4.69270036,4.694501432,4.695731674,4.696601134,4.697210642,4.697657532 +Climate Solutions,ssp2_1p2,MDV,cdd|Hazard|Difference|Population weighted,days/yr,3.092371942,3.137300748,3.177463333,3.210688339,3.237428214,3.257869233,3.272537748,3.282381203,3.289795997,3.295981426 +Climate Solutions,ssp2_1p2,SUR,cdd|Hazard|Difference|Population weighted,days/yr,-1.764054227,-1.782546895,-1.800327892,-1.819087871,-1.839050156,-1.858871098,-1.876140103,-1.892533672,-1.907384881,-1.917753877 +Climate Solutions,ssp2_1p2,VEN,cdd|Hazard|Difference|Population weighted,days/yr,2.17082042,2.170921458,2.170097541,2.16962021,2.169056436,2.168723471,2.168717166,2.168681406,2.168534172,2.168434445 +Climate Solutions,ssp2_1p2,ISR,cdd|Hazard|Difference|Population weighted,days/yr,-1.568268566,-1.569282604,-1.571003196,-1.574094716,-1.578311264,-1.582986261,-1.589430682,-1.59750914,-1.606346612,-1.615544629 +Climate Solutions,ssp2_1p2,ISL,cdd|Hazard|Difference|Population weighted,days/yr,1.625701325,1.630352665,1.632727604,1.633658007,1.630936713,1.632125172,1.62596001,1.627046882,1.626908106,1.627192605 +Climate Solutions,ssp2_1p2,ZMB,cdd|Hazard|Difference|Population weighted,days/yr,2.201980683,2.170555699,2.14748307,2.130684579,2.118657768,2.11117285,2.106419173,2.103891862,2.103179414,2.103425607 +Climate Solutions,ssp2_1p2,SEN,cdd|Hazard|Difference|Population weighted,days/yr,0.381543204,0.38626813,0.388845359,0.390323768,0.391104867,0.391590163,0.391865057,0.391934503,0.392012935,0.391927044 +Climate Solutions,ssp2_1p2,PNG,cdd|Hazard|Difference|Population weighted,days/yr,-4.389367473,-4.383188064,-4.382220604,-4.385009748,-4.390417202,-4.398216263,-4.408723973,-4.420291113,-4.432717279,-4.444972875 +Climate Solutions,ssp2_1p2,MWI,cdd|Hazard|Difference|Population weighted,days/yr,-0.941698382,-0.949873593,-0.955570093,-0.959334746,-0.961436579,-0.962120771,-0.961901741,-0.960935113,-0.959346434,-0.957323024 +Climate Solutions,ssp2_1p2,TTO,cdd|Hazard|Difference|Population weighted,days/yr,2.342077511,2.33860914,2.336204789,2.33466433,2.334390362,2.335652621,2.33824421,2.34214546,2.346150718,2.349804531 +Climate Solutions,ssp2_1p2,ZWE,cdd|Hazard|Difference|Population weighted,days/yr,2.032449279,2.027866313,2.024096511,2.021345153,2.019384407,2.018382124,2.017672186,2.016822819,2.016662541,2.017176972 +Climate Solutions,ssp2_1p2,DEU,cdd|Hazard|Difference|Population weighted,days/yr,-1.540521279,-1.540397567,-1.539905474,-1.53919908,-1.538377889,-1.53730155,-1.536093376,-1.534899573,-1.533721877,-1.532686687 +Climate Solutions,ssp2_1p2,VUT,cdd|Hazard|Difference|Population weighted,days/yr,1.424793459,1.415962107,1.408987939,1.403874064,1.399890992,1.396305117,1.393211901,1.390605064,1.388551074,1.386928755 +Climate Solutions,ssp2_1p2,MTQ,cdd|Hazard|Difference|Population weighted,days/yr,-4.246081761,-4.213686952,-4.194933673,-4.182465742,-4.173645018,-4.168186516,-4.166269798,-4.167523569,-4.170226152,-4.17328811 +Climate Solutions,ssp2_1p2,KAZ,cdd|Hazard|Difference|Population weighted,days/yr,1.194458059,1.199177449,1.204400258,1.206879899,1.208875304,1.208237241,1.206815481,1.206338585,1.205478211,1.208445205 +Climate Solutions,ssp2_1p2,PHL,cdd|Hazard|Difference|Population weighted,days/yr,-0.627125346,-0.624321565,-0.622254342,-0.6207585,-0.619662932,-0.618865165,-0.618318681,-0.618000628,-0.617873634,-0.617909099 +Climate Solutions,ssp2_1p2,ERI,cdd|Hazard|Difference|Population weighted,days/yr,2.651951286,2.646918517,2.640005569,2.636608814,2.633977008,2.631869524,2.630040798,2.627937903,2.625469437,2.622951448 +Climate Solutions,ssp2_1p2,NCL,cdd|Hazard|Difference|Population weighted,days/yr,-0.743393039,-0.716293047,-0.697682647,-0.686207085,-0.678034054,-0.673548077,-0.674361546,-0.680333423,-0.690078648,-0.701616179 +Climate Solutions,ssp2_1p2,MKD,cdd|Hazard|Difference|Population weighted,days/yr,0.2772587,0.285320713,0.290636402,0.293860475,0.296190751,0.298352783,0.302101317,0.305309715,0.307521342,0.309317119 +Climate Solutions,ssp2_1p2,PRK,cdd|Hazard|Difference|Population weighted,days/yr,-1.714960728,-1.719670531,-1.723951395,-1.728137767,-1.731061781,-1.73300488,-1.734321291,-1.735289245,-1.736493507,-1.73780814 +Climate Solutions,ssp2_1p2,PRY,cdd|Hazard|Difference|Population weighted,days/yr,5.603458359,5.603120504,5.602868449,5.602537714,5.602280336,5.601976435,5.601559765,5.601232431,5.600827937,5.600502828 +Climate Solutions,ssp2_1p2,LVA,cdd|Hazard|Difference|Population weighted,days/yr,-5.428959576,-5.443428219,-5.456238571,-5.468133185,-5.479123791,-5.48915465,-5.498362965,-5.506547072,-5.513791116,-5.520030499 +Climate Solutions,ssp2_1p2,JPN,cdd|Hazard|Difference|Population weighted,days/yr,2.526285684,2.527493987,2.529183516,2.530931195,2.532489959,2.533871101,2.535087566,2.536161708,2.537101593,2.537929273 +Climate Solutions,ssp2_1p2,SYR,cdd|Hazard|Difference|Population weighted,days/yr,-0.537829987,-0.543418412,-0.548930601,-0.553899265,-0.558301969,-0.562536257,-0.566258025,-0.569519953,-0.572263946,-0.574496782 +Climate Solutions,ssp2_1p2,HND,cdd|Hazard|Difference|Population weighted,days/yr,6.499320887,6.521214345,6.550419876,6.581807175,6.614109134,6.646034748,6.675455776,6.702316013,6.726846734,6.748892809 +Climate Solutions,ssp2_1p2,MMR,cdd|Hazard|Difference|Population weighted,days/yr,2.915006009,2.900420746,2.883936056,2.865932558,2.847197684,2.827695107,2.808036774,2.789219182,2.770382887,2.752082364 +Climate Solutions,ssp2_1p2,MEX,cdd|Hazard|Difference|Population weighted,days/yr,4.190487202,4.198696236,4.208606018,4.219785272,4.231428423,4.243006771,4.253644638,4.263221368,4.271623035,4.278850725 +Climate Solutions,ssp2_1p2,EGY,cdd|Hazard|Difference|Population weighted,days/yr,0.290815727,0.295854916,0.296653012,0.294856504,0.291577193,0.28716836,0.281986543,0.27602448,0.269673492,0.26324927 +Climate Solutions,ssp2_1p2,SGP,cdd|Hazard|Difference|Population weighted,days/yr,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734,-0.746442734 +Climate Solutions,ssp2_1p2,SRB,cdd|Hazard|Difference|Population weighted,days/yr,-0.862791225,-0.86456131,-0.865772673,-0.866361285,-0.866446522,-0.8664195,-0.866505146,-0.866640335,-0.867016876,-0.867504582 +Climate Solutions,ssp2_1p2,BWA,cdd|Hazard|Difference|Population weighted,days/yr,4.482886841,4.484354316,4.481750967,4.480644908,4.481609363,4.483874768,4.482275431,4.482878348,4.483226775,4.484682369 +Climate Solutions,ssp2_1p2,GBR,cdd|Hazard|Difference|Population weighted,days/yr,-0.757578333,-0.763771218,-0.768523066,-0.772299936,-0.775353914,-0.777907285,-0.780059519,-0.781888448,-0.783443392,-0.784751525 +Climate Solutions,ssp2_1p2,GMB,cdd|Hazard|Difference|Population weighted,days/yr,0.947687524,0.951639462,0.954820932,0.957379976,0.959229453,0.960738206,0.962296238,0.963927219,0.965491584,0.966937928 +Climate Solutions,ssp2_1p2,GRC,cdd|Hazard|Difference|Population weighted,days/yr,0.295598502,0.306552297,0.31643963,0.324285484,0.330806349,0.3363938,0.341600663,0.346152478,0.350107259,0.353953053 +Climate Solutions,ssp2_1p2,LKA,cdd|Hazard|Difference|Population weighted,days/yr,-6.570602049,-6.568022457,-6.562426355,-6.553665621,-6.541468762,-6.526601248,-6.510174875,-6.492899295,-6.475410941,-6.457991166 +Climate Solutions,ssp2_1p2,GUF,cdd|Hazard|Difference|Population weighted,days/yr,2.212915956,2.220696166,2.226618077,2.234739992,2.238447388,2.243119907,2.246174263,2.248656755,2.251708056,2.252349818 +Climate Solutions,ssp2_1p2,COM,cdd|Hazard|Difference|Population weighted,days/yr,-1.686905412,-1.641826812,-1.610983742,-1.586938524,-1.570796356,-1.558373204,-1.548283415,-1.540817879,-1.535803299,-1.532511572 +Climate Solutions,ssp2_1p2,FSM,cdd|Hazard|Difference|Population weighted,days/yr,-4.225815456,-4.201545294,-4.174571584,-4.145394902,-4.115987226,-4.087694577,-4.061046971,-4.037069139,-4.015485794,-3.996312441 +Climate Solutions,ssp2_1p2,GLP,cdd|Hazard|Difference|Population weighted,days/yr,4.365451281,4.323406094,4.308252557,4.299054712,4.296190119,4.295974294,4.295729149,4.295615888,4.295528007,4.295452139 +Climate Solutions,ssp2_1p2,MYT,cdd|Hazard|Difference|Population weighted,days/yr,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904,4.532577904 +Climate Solutions,ssp2_1p2,VIR,cdd|Hazard|Difference|Population weighted,days/yr,-5.328251189,-5.295331792,-5.277161278,-5.246878975,-5.240851669,-5.234328725,-5.2266491,-5.214863836,-5.196325201,-5.186959814 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Difference,days/yr,-6.563847561,-6.563847561,-6.563847561,-6.563847561,-6.563847561,-6.563847561,-6.563847561,-6.563847561,-6.563847561,-6.563847561 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Difference,days/yr,0.958190236,0.958190236,0.958190236,0.958190236,0.958190236,0.958190236,0.958190236,0.958190236,0.958190236,0.958190236 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Difference,days/yr,-1.131702928,-1.131702928,-1.131702928,-1.131702928,-1.131702928,-1.131702928,-1.131702928,-1.131702928,-1.131702928,-1.131702928 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Difference,days/yr,-2.86295788,-2.86295788,-2.86295788,-2.86295788,-2.86295788,-2.86295788,-2.86295788,-2.86295788,-2.86295788,-2.86295788 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Difference,days/yr,-2.018481736,-2.018481736,-2.018481736,-2.018481736,-2.018481736,-2.018481736,-2.018481736,-2.018481736,-2.018481736,-2.018481736 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Difference,days/yr,-5.53493687,-5.53493687,-5.53493687,-5.53493687,-5.53493687,-5.53493687,-5.53493687,-5.53493687,-5.53493687,-5.53493687 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Difference,days/yr,3.467804026,3.467804026,3.467804026,3.467804026,3.467804026,3.467804026,3.467804026,3.467804026,3.467804026,3.467804026 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Difference,days/yr,-0.072627865,-0.072627865,-0.072627865,-0.072627865,-0.072627865,-0.072627865,-0.072627865,-0.072627865,-0.072627865,-0.072627865 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Difference,days/yr,5.849416339,5.849416339,5.849416339,5.849416339,5.849416339,5.849416339,5.849416339,5.849416339,5.849416339,5.849416339 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Difference,days/yr,8.975903129,8.975903129,8.975903129,8.975903129,8.975903129,8.975903129,8.975903129,8.975903129,8.975903129,8.975903129 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Difference,days/yr,0.247724556,0.247724556,0.247724556,0.247724556,0.247724556,0.247724556,0.247724556,0.247724556,0.247724556,0.247724556 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Difference,days/yr,-2.52568592,-2.52568592,-2.52568592,-2.52568592,-2.52568592,-2.52568592,-2.52568592,-2.52568592,-2.52568592,-2.52568592 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Difference,days/yr,-2.679157338,-2.679157338,-2.679157338,-2.679157338,-2.679157338,-2.679157338,-2.679157338,-2.679157338,-2.679157338,-2.679157338 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Difference,days/yr,-3.128258734,-3.128258734,-3.128258734,-3.128258734,-3.128258734,-3.128258734,-3.128258734,-3.128258734,-3.128258734,-3.128258734 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Difference,days/yr,-0.651729585,-0.651729585,-0.651729585,-0.651729585,-0.651729585,-0.651729585,-0.651729585,-0.651729585,-0.651729585,-0.651729585 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Difference,days/yr,0.241411382,0.241411382,0.241411382,0.241411382,0.241411382,0.241411382,0.241411382,0.241411382,0.241411382,0.241411382 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Difference,days/yr,5.294635548,5.294635548,5.294635548,5.294635548,5.294635548,5.294635548,5.294635548,5.294635548,5.294635548,5.294635548 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Difference,days/yr,2.636971337,2.636971337,2.636971337,2.636971337,2.636971337,2.636971337,2.636971337,2.636971337,2.636971337,2.636971337 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Difference,days/yr,-1.213663322,-1.213663322,-1.213663322,-1.213663322,-1.213663322,-1.213663322,-1.213663322,-1.213663322,-1.213663322,-1.213663322 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Difference,days/yr,0.198535296,0.198535296,0.198535296,0.198535296,0.198535296,0.198535296,0.198535296,0.198535296,0.198535296,0.198535296 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Difference,days/yr,0.92259354,0.92259354,0.92259354,0.92259354,0.92259354,0.92259354,0.92259354,0.92259354,0.92259354,0.92259354 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Difference,days/yr,8.086358918,8.086358918,8.086358918,8.086358918,8.086358918,8.086358918,8.086358918,8.086358918,8.086358918,8.086358918 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Difference,days/yr,0.963509358,0.963509358,0.963509358,0.963509358,0.963509358,0.963509358,0.963509358,0.963509358,0.963509358,0.963509358 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Difference,days/yr,1.716652946,1.716652946,1.716652946,1.716652946,1.716652946,1.716652946,1.716652946,1.716652946,1.716652946,1.716652946 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Difference,days/yr,1.119023081,1.119023081,1.119023081,1.119023081,1.119023081,1.119023081,1.119023081,1.119023081,1.119023081,1.119023081 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Difference,days/yr,-3.631545948,-3.631545948,-3.631545948,-3.631545948,-3.631545948,-3.631545948,-3.631545948,-3.631545948,-3.631545948,-3.631545948 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Difference,days/yr,0.452839843,0.452839843,0.452839843,0.452839843,0.452839843,0.452839843,0.452839843,0.452839843,0.452839843,0.452839843 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Difference,days/yr,2.700815082,2.700815082,2.700815082,2.700815082,2.700815082,2.700815082,2.700815082,2.700815082,2.700815082,2.700815082 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Difference,days/yr,3.51697696,3.51697696,3.51697696,3.51697696,3.51697696,3.51697696,3.51697696,3.51697696,3.51697696,3.51697696 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Difference,days/yr,-0.804975428,-0.804975428,-0.804975428,-0.804975428,-0.804975428,-0.804975428,-0.804975428,-0.804975428,-0.804975428,-0.804975428 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Difference,days/yr,-5.595177774,-5.595177774,-5.595177774,-5.595177774,-5.595177774,-5.595177774,-5.595177774,-5.595177774,-5.595177774,-5.595177774 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Difference,days/yr,-2.612626863,-2.612626863,-2.612626863,-2.612626863,-2.612626863,-2.612626863,-2.612626863,-2.612626863,-2.612626863,-2.612626863 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Difference,days/yr,-0.03451465,-0.03451465,-0.03451465,-0.03451465,-0.03451465,-0.03451465,-0.03451465,-0.03451465,-0.03451465,-0.03451465 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Difference,days/yr,-1.48754121,-1.48754121,-1.48754121,-1.48754121,-1.48754121,-1.48754121,-1.48754121,-1.48754121,-1.48754121,-1.48754121 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Difference,days/yr,-1.749373458,-1.749373458,-1.749373458,-1.749373458,-1.749373458,-1.749373458,-1.749373458,-1.749373458,-1.749373458,-1.749373458 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Difference,days/yr,-0.131978433,-0.131978433,-0.131978433,-0.131978433,-0.131978433,-0.131978433,-0.131978433,-0.131978433,-0.131978433,-0.131978433 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Difference,days/yr,0.999311262,0.999311262,0.999311262,0.999311262,0.999311262,0.999311262,0.999311262,0.999311262,0.999311262,0.999311262 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Difference,days/yr,5.185808102,5.185808102,5.185808102,5.185808102,5.185808102,5.185808102,5.185808102,5.185808102,5.185808102,5.185808102 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Difference,days/yr,4.227245353,4.227245353,4.227245353,4.227245353,4.227245353,4.227245353,4.227245353,4.227245353,4.227245353,4.227245353 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Difference,days/yr,3.162175512,3.162175512,3.162175512,3.162175512,3.162175512,3.162175512,3.162175512,3.162175512,3.162175512,3.162175512 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Difference,days/yr,3.238041616,3.238041616,3.238041616,3.238041616,3.238041616,3.238041616,3.238041616,3.238041616,3.238041616,3.238041616 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Difference,days/yr,-2.176002895,-2.176002895,-2.176002895,-2.176002895,-2.176002895,-2.176002895,-2.176002895,-2.176002895,-2.176002895,-2.176002895 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Difference,days/yr,0.709862852,0.709862852,0.709862852,0.709862852,0.709862852,0.709862852,0.709862852,0.709862852,0.709862852,0.709862852 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Difference,days/yr,-0.316310854,-0.316310854,-0.316310854,-0.316310854,-0.316310854,-0.316310854,-0.316310854,-0.316310854,-0.316310854,-0.316310854 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Difference,days/yr,1.071054212,1.071054212,1.071054212,1.071054212,1.071054212,1.071054212,1.071054212,1.071054212,1.071054212,1.071054212 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Difference,days/yr,7.446034593,7.446034593,7.446034593,7.446034593,7.446034593,7.446034593,7.446034593,7.446034593,7.446034593,7.446034593 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Difference,days/yr,-2.305850535,-2.305850535,-2.305850535,-2.305850535,-2.305850535,-2.305850535,-2.305850535,-2.305850535,-2.305850535,-2.305850535 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Difference,days/yr,3.798001141,3.798001141,3.798001141,3.798001141,3.798001141,3.798001141,3.798001141,3.798001141,3.798001141,3.798001141 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Difference,days/yr,-0.324751242,-0.324751242,-0.324751242,-0.324751242,-0.324751242,-0.324751242,-0.324751242,-0.324751242,-0.324751242,-0.324751242 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Difference,days/yr,-0.300096716,-0.300096716,-0.300096716,-0.300096716,-0.300096716,-0.300096716,-0.300096716,-0.300096716,-0.300096716,-0.300096716 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Difference,days/yr,0.805592334,0.805592334,0.805592334,0.805592334,0.805592334,0.805592334,0.805592334,0.805592334,0.805592334,0.805592334 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Difference,days/yr,0.457101211,0.457101211,0.457101211,0.457101211,0.457101211,0.457101211,0.457101211,0.457101211,0.457101211,0.457101211 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Difference,days/yr,0.671532158,0.671532158,0.671532158,0.671532158,0.671532158,0.671532158,0.671532158,0.671532158,0.671532158,0.671532158 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Difference,days/yr,7.536573285,7.536573285,7.536573285,7.536573285,7.536573285,7.536573285,7.536573285,7.536573285,7.536573285,7.536573285 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Difference,days/yr,3.519195313,3.519195313,3.519195313,3.519195313,3.519195313,3.519195313,3.519195313,3.519195313,3.519195313,3.519195313 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Difference,days/yr,-3.595208666,-3.595208666,-3.595208666,-3.595208666,-3.595208666,-3.595208666,-3.595208666,-3.595208666,-3.595208666,-3.595208666 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Difference,days/yr,2.595700659,2.595700659,2.595700659,2.595700659,2.595700659,2.595700659,2.595700659,2.595700659,2.595700659,2.595700659 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Difference,days/yr,1.629444995,1.629444995,1.629444995,1.629444995,1.629444995,1.629444995,1.629444995,1.629444995,1.629444995,1.629444995 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Difference,days/yr,0.221060404,0.221060404,0.221060404,0.221060404,0.221060404,0.221060404,0.221060404,0.221060404,0.221060404,0.221060404 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Difference,days/yr,-2.130410332,-2.130410332,-2.130410332,-2.130410332,-2.130410332,-2.130410332,-2.130410332,-2.130410332,-2.130410332,-2.130410332 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Difference,days/yr,-2.794087282,-2.794087282,-2.794087282,-2.794087282,-2.794087282,-2.794087282,-2.794087282,-2.794087282,-2.794087282,-2.794087282 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Difference,days/yr,-3.368069263,-3.368069263,-3.368069263,-3.368069263,-3.368069263,-3.368069263,-3.368069263,-3.368069263,-3.368069263,-3.368069263 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Difference,days/yr,0.179689135,0.179689135,0.179689135,0.179689135,0.179689135,0.179689135,0.179689135,0.179689135,0.179689135,0.179689135 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Difference,days/yr,-0.584392662,-0.584392662,-0.584392662,-0.584392662,-0.584392662,-0.584392662,-0.584392662,-0.584392662,-0.584392662,-0.584392662 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Difference,days/yr,-6.480721774,-6.480721774,-6.480721774,-6.480721774,-6.480721774,-6.480721774,-6.480721774,-6.480721774,-6.480721774,-6.480721774 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Difference,days/yr,3.09098011,3.09098011,3.09098011,3.09098011,3.09098011,3.09098011,3.09098011,3.09098011,3.09098011,3.09098011 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Difference,days/yr,-2.092200425,-2.092200425,-2.092200425,-2.092200425,-2.092200425,-2.092200425,-2.092200425,-2.092200425,-2.092200425,-2.092200425 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Difference,days/yr,-3.657042637,-3.657042637,-3.657042637,-3.657042637,-3.657042637,-3.657042637,-3.657042637,-3.657042637,-3.657042637,-3.657042637 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Difference,days/yr,3.585254483,3.585254483,3.585254483,3.585254483,3.585254483,3.585254483,3.585254483,3.585254483,3.585254483,3.585254483 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Difference,days/yr,0.542337121,0.542337121,0.542337121,0.542337121,0.542337121,0.542337121,0.542337121,0.542337121,0.542337121,0.542337121 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Difference,days/yr,3.976558058,3.976558058,3.976558058,3.976558058,3.976558058,3.976558058,3.976558058,3.976558058,3.976558058,3.976558058 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Difference,days/yr,-0.201348512,-0.201348512,-0.201348512,-0.201348512,-0.201348512,-0.201348512,-0.201348512,-0.201348512,-0.201348512,-0.201348512 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Difference,days/yr,-0.35130364,-0.35130364,-0.35130364,-0.35130364,-0.35130364,-0.35130364,-0.35130364,-0.35130364,-0.35130364,-0.35130364 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Difference,days/yr,0.147199096,0.147199096,0.147199096,0.147199096,0.147199096,0.147199096,0.147199096,0.147199096,0.147199096,0.147199096 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Difference,days/yr,-2.374638369,-2.374638369,-2.374638369,-2.374638369,-2.374638369,-2.374638369,-2.374638369,-2.374638369,-2.374638369,-2.374638369 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Difference,days/yr,-0.211823452,-0.211823452,-0.211823452,-0.211823452,-0.211823452,-0.211823452,-0.211823452,-0.211823452,-0.211823452,-0.211823452 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Difference,days/yr,1.056197649,1.056197649,1.056197649,1.056197649,1.056197649,1.056197649,1.056197649,1.056197649,1.056197649,1.056197649 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Difference,days/yr,-3.845390658,-3.845390658,-3.845390658,-3.845390658,-3.845390658,-3.845390658,-3.845390658,-3.845390658,-3.845390658,-3.845390658 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Difference,days/yr,-0.221493787,-0.221493787,-0.221493787,-0.221493787,-0.221493787,-0.221493787,-0.221493787,-0.221493787,-0.221493787,-0.221493787 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Difference,days/yr,-2.586619288,-2.586619288,-2.586619288,-2.586619288,-2.586619288,-2.586619288,-2.586619288,-2.586619288,-2.586619288,-2.586619288 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Difference,days/yr,1.468548811,1.468548811,1.468548811,1.468548811,1.468548811,1.468548811,1.468548811,1.468548811,1.468548811,1.468548811 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Difference,days/yr,-1.452401785,-1.452401785,-1.452401785,-1.452401785,-1.452401785,-1.452401785,-1.452401785,-1.452401785,-1.452401785,-1.452401785 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Difference,days/yr,-5.780288763,-5.780288763,-5.780288763,-5.780288763,-5.780288763,-5.780288763,-5.780288763,-5.780288763,-5.780288763,-5.780288763 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Difference,days/yr,1.028105176,1.028105176,1.028105176,1.028105176,1.028105176,1.028105176,1.028105176,1.028105176,1.028105176,1.028105176 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Difference,days/yr,1.327512785,1.327512785,1.327512785,1.327512785,1.327512785,1.327512785,1.327512785,1.327512785,1.327512785,1.327512785 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Difference,days/yr,1.517195996,1.517195996,1.517195996,1.517195996,1.517195996,1.517195996,1.517195996,1.517195996,1.517195996,1.517195996 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Difference,days/yr,1.453371689,1.453371689,1.453371689,1.453371689,1.453371689,1.453371689,1.453371689,1.453371689,1.453371689,1.453371689 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Difference,days/yr,7.032046208,7.032046208,7.032046208,7.032046208,7.032046208,7.032046208,7.032046208,7.032046208,7.032046208,7.032046208 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Difference,days/yr,5.145414612,5.145414612,5.145414612,5.145414612,5.145414612,5.145414612,5.145414612,5.145414612,5.145414612,5.145414612 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Difference,days/yr,0.806737101,0.806737101,0.806737101,0.806737101,0.806737101,0.806737101,0.806737101,0.806737101,0.806737101,0.806737101 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Difference,days/yr,-1.375255183,-1.375255183,-1.375255183,-1.375255183,-1.375255183,-1.375255183,-1.375255183,-1.375255183,-1.375255183,-1.375255183 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Difference,days/yr,-1.252387072,-1.252387072,-1.252387072,-1.252387072,-1.252387072,-1.252387072,-1.252387072,-1.252387072,-1.252387072,-1.252387072 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Difference,days/yr,-2.056580541,-2.056580541,-2.056580541,-2.056580541,-2.056580541,-2.056580541,-2.056580541,-2.056580541,-2.056580541,-2.056580541 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Difference,days/yr,3.877271725,3.877271725,3.877271725,3.877271725,3.877271725,3.877271725,3.877271725,3.877271725,3.877271725,3.877271725 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Difference,days/yr,-3.932458121,-3.932458121,-3.932458121,-3.932458121,-3.932458121,-3.932458121,-3.932458121,-3.932458121,-3.932458121,-3.932458121 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Difference,days/yr,-1.234430359,-1.234430359,-1.234430359,-1.234430359,-1.234430359,-1.234430359,-1.234430359,-1.234430359,-1.234430359,-1.234430359 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Difference,days/yr,0.029129721,0.029129721,0.029129721,0.029129721,0.029129721,0.029129721,0.029129721,0.029129721,0.029129721,0.029129721 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Difference,days/yr,-3.423814183,-3.423814183,-3.423814183,-3.423814183,-3.423814183,-3.423814183,-3.423814183,-3.423814183,-3.423814183,-3.423814183 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Difference,days/yr,9.735496583,9.735496583,9.735496583,9.735496583,9.735496583,9.735496583,9.735496583,9.735496583,9.735496583,9.735496583 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Difference,days/yr,-0.935232738,-0.935232738,-0.935232738,-0.935232738,-0.935232738,-0.935232738,-0.935232738,-0.935232738,-0.935232738,-0.935232738 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Difference,days/yr,1.445748836,1.445748836,1.445748836,1.445748836,1.445748836,1.445748836,1.445748836,1.445748836,1.445748836,1.445748836 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Difference,days/yr,6.208187319,6.208187319,6.208187319,6.208187319,6.208187319,6.208187319,6.208187319,6.208187319,6.208187319,6.208187319 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Difference,days/yr,2.210139989,2.210139989,2.210139989,2.210139989,2.210139989,2.210139989,2.210139989,2.210139989,2.210139989,2.210139989 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Difference,days/yr,0.863480974,0.863480974,0.863480974,0.863480974,0.863480974,0.863480974,0.863480974,0.863480974,0.863480974,0.863480974 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Difference,days/yr,4.089505148,4.089505148,4.089505148,4.089505148,4.089505148,4.089505148,4.089505148,4.089505148,4.089505148,4.089505148 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Difference,days/yr,-4.896117799,-4.896117799,-4.896117799,-4.896117799,-4.896117799,-4.896117799,-4.896117799,-4.896117799,-4.896117799,-4.896117799 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Difference,days/yr,-0.708189919,-0.708189919,-0.708189919,-0.708189919,-0.708189919,-0.708189919,-0.708189919,-0.708189919,-0.708189919,-0.708189919 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Difference,days/yr,-2.54013443,-2.54013443,-2.54013443,-2.54013443,-2.54013443,-2.54013443,-2.54013443,-2.54013443,-2.54013443,-2.54013443 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Difference,days/yr,1.550099608,1.550099608,1.550099608,1.550099608,1.550099608,1.550099608,1.550099608,1.550099608,1.550099608,1.550099608 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Difference,days/yr,0.184587096,0.184587096,0.184587096,0.184587096,0.184587096,0.184587096,0.184587096,0.184587096,0.184587096,0.184587096 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Difference,days/yr,3.416048649,3.416048649,3.416048649,3.416048649,3.416048649,3.416048649,3.416048649,3.416048649,3.416048649,3.416048649 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Difference,days/yr,2.386689224,2.386689224,2.386689224,2.386689224,2.386689224,2.386689224,2.386689224,2.386689224,2.386689224,2.386689224 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Difference,days/yr,3.946475268,3.946475268,3.946475268,3.946475268,3.946475268,3.946475268,3.946475268,3.946475268,3.946475268,3.946475268 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Difference,days/yr,1.641667166,1.641667166,1.641667166,1.641667166,1.641667166,1.641667166,1.641667166,1.641667166,1.641667166,1.641667166 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Difference,days/yr,2.041206188,2.041206188,2.041206188,2.041206188,2.041206188,2.041206188,2.041206188,2.041206188,2.041206188,2.041206188 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Difference,days/yr,-1.480079811,-1.480079811,-1.480079811,-1.480079811,-1.480079811,-1.480079811,-1.480079811,-1.480079811,-1.480079811,-1.480079811 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Difference,days/yr,1.366118421,1.366118421,1.366118421,1.366118421,1.366118421,1.366118421,1.366118421,1.366118421,1.366118421,1.366118421 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Difference,days/yr,-1.143675456,-1.143675456,-1.143675456,-1.143675456,-1.143675456,-1.143675456,-1.143675456,-1.143675456,-1.143675456,-1.143675456 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Difference,days/yr,0.230337862,0.230337862,0.230337862,0.230337862,0.230337862,0.230337862,0.230337862,0.230337862,0.230337862,0.230337862 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Difference,days/yr,2.996333582,2.996333582,2.996333582,2.996333582,2.996333582,2.996333582,2.996333582,2.996333582,2.996333582,2.996333582 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Difference,days/yr,0.951622986,0.951622986,0.951622986,0.951622986,0.951622986,0.951622986,0.951622986,0.951622986,0.951622986,0.951622986 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Difference,days/yr,2.08835139,2.08835139,2.08835139,2.08835139,2.08835139,2.08835139,2.08835139,2.08835139,2.08835139,2.08835139 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Difference,days/yr,0.110689998,0.110689998,0.110689998,0.110689998,0.110689998,0.110689998,0.110689998,0.110689998,0.110689998,0.110689998 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Difference,days/yr,0.359655091,0.359655091,0.359655091,0.359655091,0.359655091,0.359655091,0.359655091,0.359655091,0.359655091,0.359655091 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Difference,days/yr,3.71948171,3.71948171,3.71948171,3.71948171,3.71948171,3.71948171,3.71948171,3.71948171,3.71948171,3.71948171 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Difference,days/yr,1.857749401,1.857749401,1.857749401,1.857749401,1.857749401,1.857749401,1.857749401,1.857749401,1.857749401,1.857749401 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Difference,days/yr,-13.06672513,-13.06672513,-13.06672513,-13.06672513,-13.06672513,-13.06672513,-13.06672513,-13.06672513,-13.06672513,-13.06672513 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Difference,days/yr,0.511680493,0.511680493,0.511680493,0.511680493,0.511680493,0.511680493,0.511680493,0.511680493,0.511680493,0.511680493 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Difference,days/yr,-0.049971256,-0.049971256,-0.049971256,-0.049971256,-0.049971256,-0.049971256,-0.049971256,-0.049971256,-0.049971256,-0.049971256 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Difference,days/yr,-1.124522421,-1.124522421,-1.124522421,-1.124522421,-1.124522421,-1.124522421,-1.124522421,-1.124522421,-1.124522421,-1.124522421 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Difference,days/yr,2.069491476,2.069491476,2.069491476,2.069491476,2.069491476,2.069491476,2.069491476,2.069491476,2.069491476,2.069491476 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Difference,days/yr,2.834421391,2.834421391,2.834421391,2.834421391,2.834421391,2.834421391,2.834421391,2.834421391,2.834421391,2.834421391 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Difference,days/yr,-3.553062613,-3.553062613,-3.553062613,-3.553062613,-3.553062613,-3.553062613,-3.553062613,-3.553062613,-3.553062613,-3.553062613 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Difference,days/yr,-3.437188749,-3.437188749,-3.437188749,-3.437188749,-3.437188749,-3.437188749,-3.437188749,-3.437188749,-3.437188749,-3.437188749 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Difference,days/yr,2.741078012,2.741078012,2.741078012,2.741078012,2.741078012,2.741078012,2.741078012,2.741078012,2.741078012,2.741078012 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Difference,days/yr,0.036860507,0.036860507,0.036860507,0.036860507,0.036860507,0.036860507,0.036860507,0.036860507,0.036860507,0.036860507 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Difference,days/yr,0.03301088,0.03301088,0.03301088,0.03301088,0.03301088,0.03301088,0.03301088,0.03301088,0.03301088,0.03301088 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Difference,days/yr,-0.158452989,-0.158452989,-0.158452989,-0.158452989,-0.158452989,-0.158452989,-0.158452989,-0.158452989,-0.158452989,-0.158452989 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Difference,days/yr,5.253243337,5.253243337,5.253243337,5.253243337,5.253243337,5.253243337,5.253243337,5.253243337,5.253243337,5.253243337 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Difference,days/yr,-1.919296139,-1.919296139,-1.919296139,-1.919296139,-1.919296139,-1.919296139,-1.919296139,-1.919296139,-1.919296139,-1.919296139 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Difference,days/yr,1.268518208,1.268518208,1.268518208,1.268518208,1.268518208,1.268518208,1.268518208,1.268518208,1.268518208,1.268518208 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Difference,days/yr,1.126995949,1.126995949,1.126995949,1.126995949,1.126995949,1.126995949,1.126995949,1.126995949,1.126995949,1.126995949 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Difference,days/yr,4.920356946,4.920356946,4.920356946,4.920356946,4.920356946,4.920356946,4.920356946,4.920356946,4.920356946,4.920356946 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Difference,days/yr,0.624108497,0.624108497,0.624108497,0.624108497,0.624108497,0.624108497,0.624108497,0.624108497,0.624108497,0.624108497 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Difference,days/yr,1.696693109,1.696693109,1.696693109,1.696693109,1.696693109,1.696693109,1.696693109,1.696693109,1.696693109,1.696693109 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Difference,days/yr,2.642839655,2.642839655,2.642839655,2.642839655,2.642839655,2.642839655,2.642839655,2.642839655,2.642839655,2.642839655 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Difference,days/yr,5.468878845,5.468878845,5.468878845,5.468878845,5.468878845,5.468878845,5.468878845,5.468878845,5.468878845,5.468878845 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Difference,days/yr,1.334197651,1.334197651,1.334197651,1.334197651,1.334197651,1.334197651,1.334197651,1.334197651,1.334197651,1.334197651 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Difference,days/yr,-1.613453895,-1.613453895,-1.613453895,-1.613453895,-1.613453895,-1.613453895,-1.613453895,-1.613453895,-1.613453895,-1.613453895 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Difference,days/yr,0.829583726,0.829583726,0.829583726,0.829583726,0.829583726,0.829583726,0.829583726,0.829583726,0.829583726,0.829583726 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Difference,days/yr,3.409686016,3.409686016,3.409686016,3.409686016,3.409686016,3.409686016,3.409686016,3.409686016,3.409686016,3.409686016 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Difference,days/yr,5.50267521,5.50267521,5.50267521,5.50267521,5.50267521,5.50267521,5.50267521,5.50267521,5.50267521,5.50267521 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Difference,days/yr,-3.044474668,-3.044474668,-3.044474668,-3.044474668,-3.044474668,-3.044474668,-3.044474668,-3.044474668,-3.044474668,-3.044474668 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Difference,days/yr,3.561320608,3.561320608,3.561320608,3.561320608,3.561320608,3.561320608,3.561320608,3.561320608,3.561320608,3.561320608 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Difference,days/yr,0.512948105,0.512948105,0.512948105,0.512948105,0.512948105,0.512948105,0.512948105,0.512948105,0.512948105,0.512948105 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Difference,days/yr,0.228768103,0.228768103,0.228768103,0.228768103,0.228768103,0.228768103,0.228768103,0.228768103,0.228768103,0.228768103 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Difference,days/yr,3.272902701,3.272902701,3.272902701,3.272902701,3.272902701,3.272902701,3.272902701,3.272902701,3.272902701,3.272902701 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Difference,days/yr,6.553659296,6.553659296,6.553659296,6.553659296,6.553659296,6.553659296,6.553659296,6.553659296,6.553659296,6.553659296 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Difference,days/yr,0.082054074,0.082054074,0.082054074,0.082054074,0.082054074,0.082054074,0.082054074,0.082054074,0.082054074,0.082054074 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Difference,days/yr,-2.268379357,-2.268379357,-2.268379357,-2.268379357,-2.268379357,-2.268379357,-2.268379357,-2.268379357,-2.268379357,-2.268379357 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Difference,days/yr,2.77739751,2.77739751,2.77739751,2.77739751,2.77739751,2.77739751,2.77739751,2.77739751,2.77739751,2.77739751 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Difference,days/yr,1.115869429,1.115869429,1.115869429,1.115869429,1.115869429,1.115869429,1.115869429,1.115869429,1.115869429,1.115869429 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Difference,days/yr,-2.891839369,-2.891839369,-2.891839369,-2.891839369,-2.891839369,-2.891839369,-2.891839369,-2.891839369,-2.891839369,-2.891839369 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Difference,days/yr,0.948662929,0.948662929,0.948662929,0.948662929,0.948662929,0.948662929,0.948662929,0.948662929,0.948662929,0.948662929 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Difference,days/yr,0.91412756,0.91412756,0.91412756,0.91412756,0.91412756,0.91412756,0.91412756,0.91412756,0.91412756,0.91412756 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Difference,days/yr,3.434344421,3.434344421,3.434344421,3.434344421,3.434344421,3.434344421,3.434344421,3.434344421,3.434344421,3.434344421 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Difference,days/yr,-1.355168023,-1.355168023,-1.355168023,-1.355168023,-1.355168023,-1.355168023,-1.355168023,-1.355168023,-1.355168023,-1.355168023 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Difference,days/yr,0.5650673,0.5650673,0.5650673,0.5650673,0.5650673,0.5650673,0.5650673,0.5650673,0.5650673,0.5650673 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Difference,days/yr,1.152128499,1.152128499,1.152128499,1.152128499,1.152128499,1.152128499,1.152128499,1.152128499,1.152128499,1.152128499 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Difference,days/yr,0.509019505,0.509019505,0.509019505,0.509019505,0.509019505,0.509019505,0.509019505,0.509019505,0.509019505,0.509019505 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Difference,days/yr,1.496891579,1.496891579,1.496891579,1.496891579,1.496891579,1.496891579,1.496891579,1.496891579,1.496891579,1.496891579 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Difference,days/yr,-0.231637465,-0.231637465,-0.231637465,-0.231637465,-0.231637465,-0.231637465,-0.231637465,-0.231637465,-0.231637465,-0.231637465 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Difference,days/yr,1.515205318,1.515205318,1.515205318,1.515205318,1.515205318,1.515205318,1.515205318,1.515205318,1.515205318,1.515205318 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Difference,days/yr,2.879771812,2.879771812,2.879771812,2.879771812,2.879771812,2.879771812,2.879771812,2.879771812,2.879771812,2.879771812 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Difference,days/yr,-2.654931975,-2.654931975,-2.654931975,-2.654931975,-2.654931975,-2.654931975,-2.654931975,-2.654931975,-2.654931975,-2.654931975 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Difference,days/yr,9.81620866,9.81620866,9.81620866,9.81620866,9.81620866,9.81620866,9.81620866,9.81620866,9.81620866,9.81620866 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Difference,days/yr,-2.518050496,-2.518050496,-2.518050496,-2.518050496,-2.518050496,-2.518050496,-2.518050496,-2.518050496,-2.518050496,-2.518050496 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Difference,days/yr,2.94672605,2.94672605,2.94672605,2.94672605,2.94672605,2.94672605,2.94672605,2.94672605,2.94672605,2.94672605 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Difference,days/yr,0.746732199,0.746732199,0.746732199,0.746732199,0.746732199,0.746732199,0.746732199,0.746732199,0.746732199,0.746732199 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Difference,days/yr,5.835554826,5.835554826,5.835554826,5.835554826,5.835554826,5.835554826,5.835554826,5.835554826,5.835554826,5.835554826 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Difference,days/yr,3.907241756,3.907241756,3.907241756,3.907241756,3.907241756,3.907241756,3.907241756,3.907241756,3.907241756,3.907241756 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Difference,days/yr,5.933382013,5.933382013,5.933382013,5.933382013,5.933382013,5.933382013,5.933382013,5.933382013,5.933382013,5.933382013 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Difference,days/yr,-1.109274641,-1.109274641,-1.109274641,-1.109274641,-1.109274641,-1.109274641,-1.109274641,-1.109274641,-1.109274641,-1.109274641 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Difference,days/yr,0.208304168,0.208304168,0.208304168,0.208304168,0.208304168,0.208304168,0.208304168,0.208304168,0.208304168,0.208304168 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Difference,days/yr,3.080262829,3.080262829,3.080262829,3.080262829,3.080262829,3.080262829,3.080262829,3.080262829,3.080262829,3.080262829 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Difference,days/yr,4.553108192,4.553108192,4.553108192,4.553108192,4.553108192,4.553108192,4.553108192,4.553108192,4.553108192,4.553108192 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Difference,days/yr,2.799068315,2.799068315,2.799068315,2.799068315,2.799068315,2.799068315,2.799068315,2.799068315,2.799068315,2.799068315 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Difference,days/yr,0.42701584,0.42701584,0.42701584,0.42701584,0.42701584,0.42701584,0.42701584,0.42701584,0.42701584,0.42701584 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Difference,days/yr,2.337702432,2.337702432,2.337702432,2.337702432,2.337702432,2.337702432,2.337702432,2.337702432,2.337702432,2.337702432 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Difference,days/yr,-3.304786896,-3.304786896,-3.304786896,-3.304786896,-3.304786896,-3.304786896,-3.304786896,-3.304786896,-3.304786896,-3.304786896 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Difference,days/yr,4.243925338,4.243925338,4.243925338,4.243925338,4.243925338,4.243925338,4.243925338,4.243925338,4.243925338,4.243925338 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Difference,days/yr,0.412637301,0.412637301,0.412637301,0.412637301,0.412637301,0.412637301,0.412637301,0.412637301,0.412637301,0.412637301 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Difference,days/yr,-0.131438024,-0.131438024,-0.131438024,-0.131438024,-0.131438024,-0.131438024,-0.131438024,-0.131438024,-0.131438024,-0.131438024 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Difference,days/yr,6.029234716,6.029234716,6.029234716,6.029234716,6.029234716,6.029234716,6.029234716,6.029234716,6.029234716,6.029234716 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Difference,days/yr,1.184757425,1.184757425,1.184757425,1.184757425,1.184757425,1.184757425,1.184757425,1.184757425,1.184757425,1.184757425 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Difference,days/yr,0.436963206,0.436963206,0.436963206,0.436963206,0.436963206,0.436963206,0.436963206,0.436963206,0.436963206,0.436963206 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Difference|Land area weighted,days/yr,-6.449297248,-6.449297248,-6.449297248,-6.449297248,-6.449297248,-6.449297248,-6.449297248,-6.449297248,-6.449297248,-6.449297248 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Difference|Land area weighted,days/yr,8.710748215,8.710748215,8.710748215,8.710748215,8.710748215,8.710748215,8.710748215,8.710748215,8.710748215,8.710748215 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.470555919,-1.470555919,-1.470555919,-1.470555919,-1.470555919,-1.470555919,-1.470555919,-1.470555919,-1.470555919,-1.470555919 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Difference|Land area weighted,days/yr,-4.116281856,-4.116281856,-4.116281856,-4.116281856,-4.116281856,-4.116281856,-4.116281856,-4.116281856,-4.116281856,-4.116281856 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Difference|Land area weighted,days/yr,-2.913075557,-2.913075557,-2.913075557,-2.913075557,-2.913075557,-2.913075557,-2.913075557,-2.913075557,-2.913075557,-2.913075557 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Difference|Land area weighted,days/yr,-6.429971103,-6.429971103,-6.429971103,-6.429971103,-6.429971103,-6.429971103,-6.429971103,-6.429971103,-6.429971103,-6.429971103 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Difference|Land area weighted,days/yr,7.718458767,7.718458767,7.718458767,7.718458767,7.718458767,7.718458767,7.718458767,7.718458767,7.718458767,7.718458767 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Difference|Land area weighted,days/yr,-0.322801266,-0.322801266,-0.322801266,-0.322801266,-0.322801266,-0.322801266,-0.322801266,-0.322801266,-0.322801266,-0.322801266 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Difference|Land area weighted,days/yr,6.678906415,6.678906415,6.678906415,6.678906415,6.678906415,6.678906415,6.678906415,6.678906415,6.678906415,6.678906415 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Difference|Land area weighted,days/yr,10.62379803,10.62379803,10.62379803,10.62379803,10.62379803,10.62379803,10.62379803,10.62379803,10.62379803,10.62379803 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Difference|Land area weighted,days/yr,1.907884159,1.907884159,1.907884159,1.907884159,1.907884159,1.907884159,1.907884159,1.907884159,1.907884159,1.907884159 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Difference|Land area weighted,days/yr,-3.40631367,-3.40631367,-3.40631367,-3.40631367,-3.40631367,-3.40631367,-3.40631367,-3.40631367,-3.40631367,-3.40631367 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Difference|Land area weighted,days/yr,-3.604529694,-3.604529694,-3.604529694,-3.604529694,-3.604529694,-3.604529694,-3.604529694,-3.604529694,-3.604529694,-3.604529694 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Difference|Land area weighted,days/yr,-3.541971649,-3.541971649,-3.541971649,-3.541971649,-3.541971649,-3.541971649,-3.541971649,-3.541971649,-3.541971649,-3.541971649 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Difference|Land area weighted,days/yr,-6.941592556,-6.941592556,-6.941592556,-6.941592556,-6.941592556,-6.941592556,-6.941592556,-6.941592556,-6.941592556,-6.941592556 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Difference|Land area weighted,days/yr,0.609936971,0.609936971,0.609936971,0.609936971,0.609936971,0.609936971,0.609936971,0.609936971,0.609936971,0.609936971 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Difference|Land area weighted,days/yr,8.067996886,8.067996886,8.067996886,8.067996886,8.067996886,8.067996886,8.067996886,8.067996886,8.067996886,8.067996886 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Difference|Land area weighted,days/yr,4.357334851,4.357334851,4.357334851,4.357334851,4.357334851,4.357334851,4.357334851,4.357334851,4.357334851,4.357334851 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Difference|Land area weighted,days/yr,-1.674375453,-1.674375453,-1.674375453,-1.674375453,-1.674375453,-1.674375453,-1.674375453,-1.674375453,-1.674375453,-1.674375453 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Difference|Land area weighted,days/yr,0.303986477,0.303986477,0.303986477,0.303986477,0.303986477,0.303986477,0.303986477,0.303986477,0.303986477,0.303986477 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Difference|Land area weighted,days/yr,1.301334829,1.301334829,1.301334829,1.301334829,1.301334829,1.301334829,1.301334829,1.301334829,1.301334829,1.301334829 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Difference|Land area weighted,days/yr,10.52461525,10.52461525,10.52461525,10.52461525,10.52461525,10.52461525,10.52461525,10.52461525,10.52461525,10.52461525 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Difference|Land area weighted,days/yr,1.540016977,1.540016977,1.540016977,1.540016977,1.540016977,1.540016977,1.540016977,1.540016977,1.540016977,1.540016977 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Difference|Land area weighted,days/yr,3.083962378,3.083962378,3.083962378,3.083962378,3.083962378,3.083962378,3.083962378,3.083962378,3.083962378,3.083962378 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Difference|Land area weighted,days/yr,2.972961677,2.972961677,2.972961677,2.972961677,2.972961677,2.972961677,2.972961677,2.972961677,2.972961677,2.972961677 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.849682627,-4.849682627,-4.849682627,-4.849682627,-4.849682627,-4.849682627,-4.849682627,-4.849682627,-4.849682627,-4.849682627 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Difference|Land area weighted,days/yr,0.533842437,0.533842437,0.533842437,0.533842437,0.533842437,0.533842437,0.533842437,0.533842437,0.533842437,0.533842437 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Difference|Land area weighted,days/yr,5.472928265,5.472928265,5.472928265,5.472928265,5.472928265,5.472928265,5.472928265,5.472928265,5.472928265,5.472928265 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Difference|Land area weighted,days/yr,4.579702116,4.579702116,4.579702116,4.579702116,4.579702116,4.579702116,4.579702116,4.579702116,4.579702116,4.579702116 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Difference|Land area weighted,days/yr,-1.03171351,-1.03171351,-1.03171351,-1.03171351,-1.03171351,-1.03171351,-1.03171351,-1.03171351,-1.03171351,-1.03171351 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Difference|Land area weighted,days/yr,-6.94999051,-6.94999051,-6.94999051,-6.94999051,-6.94999051,-6.94999051,-6.94999051,-6.94999051,-6.94999051,-6.94999051 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Difference|Land area weighted,days/yr,-3.242429729,-3.242429729,-3.242429729,-3.242429729,-3.242429729,-3.242429729,-3.242429729,-3.242429729,-3.242429729,-3.242429729 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Difference|Land area weighted,days/yr,-0.131114087,-0.131114087,-0.131114087,-0.131114087,-0.131114087,-0.131114087,-0.131114087,-0.131114087,-0.131114087,-0.131114087 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Difference|Land area weighted,days/yr,-2.640834271,-2.640834271,-2.640834271,-2.640834271,-2.640834271,-2.640834271,-2.640834271,-2.640834271,-2.640834271,-2.640834271 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.800304915,-2.800304915,-2.800304915,-2.800304915,-2.800304915,-2.800304915,-2.800304915,-2.800304915,-2.800304915,-2.800304915 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Difference|Land area weighted,days/yr,-1.552901267,-1.552901267,-1.552901267,-1.552901267,-1.552901267,-1.552901267,-1.552901267,-1.552901267,-1.552901267,-1.552901267 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Difference|Land area weighted,days/yr,1.170642437,1.170642437,1.170642437,1.170642437,1.170642437,1.170642437,1.170642437,1.170642437,1.170642437,1.170642437 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Difference|Land area weighted,days/yr,9.089300779,9.089300779,9.089300779,9.089300779,9.089300779,9.089300779,9.089300779,9.089300779,9.089300779,9.089300779 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Difference|Land area weighted,days/yr,5.209115109,5.209115109,5.209115109,5.209115109,5.209115109,5.209115109,5.209115109,5.209115109,5.209115109,5.209115109 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Difference|Land area weighted,days/yr,5.853529674,5.853529674,5.853529674,5.853529674,5.853529674,5.853529674,5.853529674,5.853529674,5.853529674,5.853529674 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Difference|Land area weighted,days/yr,32.37400676,32.37400676,32.37400676,32.37400676,32.37400676,32.37400676,32.37400676,32.37400676,32.37400676,32.37400676 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.636177097,-2.636177097,-2.636177097,-2.636177097,-2.636177097,-2.636177097,-2.636177097,-2.636177097,-2.636177097,-2.636177097 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Difference|Land area weighted,days/yr,1.14769291,1.14769291,1.14769291,1.14769291,1.14769291,1.14769291,1.14769291,1.14769291,1.14769291,1.14769291 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.355412041,-0.355412041,-0.355412041,-0.355412041,-0.355412041,-0.355412041,-0.355412041,-0.355412041,-0.355412041,-0.355412041 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Difference|Land area weighted,days/yr,1.755032711,1.755032711,1.755032711,1.755032711,1.755032711,1.755032711,1.755032711,1.755032711,1.755032711,1.755032711 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Difference|Land area weighted,days/yr,8.957978234,8.957978234,8.957978234,8.957978234,8.957978234,8.957978234,8.957978234,8.957978234,8.957978234,8.957978234 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Difference|Land area weighted,days/yr,-2.881953839,-2.881953839,-2.881953839,-2.881953839,-2.881953839,-2.881953839,-2.881953839,-2.881953839,-2.881953839,-2.881953839 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Difference|Land area weighted,days/yr,6.297181041,6.297181041,6.297181041,6.297181041,6.297181041,6.297181041,6.297181041,6.297181041,6.297181041,6.297181041 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Difference|Land area weighted,days/yr,-0.366803809,-0.366803809,-0.366803809,-0.366803809,-0.366803809,-0.366803809,-0.366803809,-0.366803809,-0.366803809,-0.366803809 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Difference|Land area weighted,days/yr,-1.261304147,-1.261304147,-1.261304147,-1.261304147,-1.261304147,-1.261304147,-1.261304147,-1.261304147,-1.261304147,-1.261304147 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Difference|Land area weighted,days/yr,6.186175835,6.186175835,6.186175835,6.186175835,6.186175835,6.186175835,6.186175835,6.186175835,6.186175835,6.186175835 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Difference|Land area weighted,days/yr,1.201731574,1.201731574,1.201731574,1.201731574,1.201731574,1.201731574,1.201731574,1.201731574,1.201731574,1.201731574 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Difference|Land area weighted,days/yr,6.82990412,6.82990412,6.82990412,6.82990412,6.82990412,6.82990412,6.82990412,6.82990412,6.82990412,6.82990412 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Difference|Land area weighted,days/yr,9.422918701,9.422918701,9.422918701,9.422918701,9.422918701,9.422918701,9.422918701,9.422918701,9.422918701,9.422918701 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Difference|Land area weighted,days/yr,4.088134234,4.088134234,4.088134234,4.088134234,4.088134234,4.088134234,4.088134234,4.088134234,4.088134234,4.088134234 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Difference|Land area weighted,days/yr,-4.538201586,-4.538201586,-4.538201586,-4.538201586,-4.538201586,-4.538201586,-4.538201586,-4.538201586,-4.538201586,-4.538201586 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Difference|Land area weighted,days/yr,3.057670546,3.057670546,3.057670546,3.057670546,3.057670546,3.057670546,3.057670546,3.057670546,3.057670546,3.057670546 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Difference|Land area weighted,days/yr,2.449537038,2.449537038,2.449537038,2.449537038,2.449537038,2.449537038,2.449537038,2.449537038,2.449537038,2.449537038 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Difference|Land area weighted,days/yr,3.899618999,3.899618999,3.899618999,3.899618999,3.899618999,3.899618999,3.899618999,3.899618999,3.899618999,3.899618999 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Difference|Land area weighted,days/yr,-3.11181065,-3.11181065,-3.11181065,-3.11181065,-3.11181065,-3.11181065,-3.11181065,-3.11181065,-3.11181065,-3.11181065 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Difference|Land area weighted,days/yr,-3.558633625,-3.558633625,-3.558633625,-3.558633625,-3.558633625,-3.558633625,-3.558633625,-3.558633625,-3.558633625,-3.558633625 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Difference|Land area weighted,days/yr,-5.074230354,-5.074230354,-5.074230354,-5.074230354,-5.074230354,-5.074230354,-5.074230354,-5.074230354,-5.074230354,-5.074230354 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Difference|Land area weighted,days/yr,0.237014958,0.237014958,0.237014958,0.237014958,0.237014958,0.237014958,0.237014958,0.237014958,0.237014958,0.237014958 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Difference|Land area weighted,days/yr,-1.075687287,-1.075687287,-1.075687287,-1.075687287,-1.075687287,-1.075687287,-1.075687287,-1.075687287,-1.075687287,-1.075687287 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Difference|Land area weighted,days/yr,-8.576119106,-8.576119106,-8.576119106,-8.576119106,-8.576119106,-8.576119106,-8.576119106,-8.576119106,-8.576119106,-8.576119106 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Difference|Land area weighted,days/yr,8.159882079,8.159882079,8.159882079,8.159882079,8.159882079,8.159882079,8.159882079,8.159882079,8.159882079,8.159882079 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Difference|Land area weighted,days/yr,-3.802928731,-3.802928731,-3.802928731,-3.802928731,-3.802928731,-3.802928731,-3.802928731,-3.802928731,-3.802928731,-3.802928731 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.430126119,-3.430126119,-3.430126119,-3.430126119,-3.430126119,-3.430126119,-3.430126119,-3.430126119,-3.430126119,-3.430126119 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Difference|Land area weighted,days/yr,7.516229938,7.516229938,7.516229938,7.516229938,7.516229938,7.516229938,7.516229938,7.516229938,7.516229938,7.516229938 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Difference|Land area weighted,days/yr,13.56333091,13.56333091,13.56333091,13.56333091,13.56333091,13.56333091,13.56333091,13.56333091,13.56333091,13.56333091 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Difference|Land area weighted,days/yr,7.161880553,7.161880553,7.161880553,7.161880553,7.161880553,7.161880553,7.161880553,7.161880553,7.161880553,7.161880553 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Difference|Land area weighted,days/yr,-0.239371381,-0.239371381,-0.239371381,-0.239371381,-0.239371381,-0.239371381,-0.239371381,-0.239371381,-0.239371381,-0.239371381 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Difference|Land area weighted,days/yr,-4.533990118,-4.533990118,-4.533990118,-4.533990118,-4.533990118,-4.533990118,-4.533990118,-4.533990118,-4.533990118,-4.533990118 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Difference|Land area weighted,days/yr,3.668419475,3.668419475,3.668419475,3.668419475,3.668419475,3.668419475,3.668419475,3.668419475,3.668419475,3.668419475 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.044968679,-3.044968679,-3.044968679,-3.044968679,-3.044968679,-3.044968679,-3.044968679,-3.044968679,-3.044968679,-3.044968679 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.279692735,-0.279692735,-0.279692735,-0.279692735,-0.279692735,-0.279692735,-0.279692735,-0.279692735,-0.279692735,-0.279692735 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Difference|Land area weighted,days/yr,1.635242878,1.635242878,1.635242878,1.635242878,1.635242878,1.635242878,1.635242878,1.635242878,1.635242878,1.635242878 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Difference|Land area weighted,days/yr,-4.878423049,-4.878423049,-4.878423049,-4.878423049,-4.878423049,-4.878423049,-4.878423049,-4.878423049,-4.878423049,-4.878423049 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Difference|Land area weighted,days/yr,0.988805709,0.988805709,0.988805709,0.988805709,0.988805709,0.988805709,0.988805709,0.988805709,0.988805709,0.988805709 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.882558049,-2.882558049,-2.882558049,-2.882558049,-2.882558049,-2.882558049,-2.882558049,-2.882558049,-2.882558049,-2.882558049 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Difference|Land area weighted,days/yr,2.230148909,2.230148909,2.230148909,2.230148909,2.230148909,2.230148909,2.230148909,2.230148909,2.230148909,2.230148909 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.699230067,-1.699230067,-1.699230067,-1.699230067,-1.699230067,-1.699230067,-1.699230067,-1.699230067,-1.699230067,-1.699230067 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Difference|Land area weighted,days/yr,-5.92622276,-5.92622276,-5.92622276,-5.92622276,-5.92622276,-5.92622276,-5.92622276,-5.92622276,-5.92622276,-5.92622276 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Difference|Land area weighted,days/yr,1.640571778,1.640571778,1.640571778,1.640571778,1.640571778,1.640571778,1.640571778,1.640571778,1.640571778,1.640571778 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Difference|Land area weighted,days/yr,8.961211108,8.961211108,8.961211108,8.961211108,8.961211108,8.961211108,8.961211108,8.961211108,8.961211108,8.961211108 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Difference|Land area weighted,days/yr,1.95611504,1.95611504,1.95611504,1.95611504,1.95611504,1.95611504,1.95611504,1.95611504,1.95611504,1.95611504 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Difference|Land area weighted,days/yr,1.68888288,1.68888288,1.68888288,1.68888288,1.68888288,1.68888288,1.68888288,1.68888288,1.68888288,1.68888288 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Difference|Land area weighted,days/yr,12.12121746,12.12121746,12.12121746,12.12121746,12.12121746,12.12121746,12.12121746,12.12121746,12.12121746,12.12121746 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Difference|Land area weighted,days/yr,6.076379155,6.076379155,6.076379155,6.076379155,6.076379155,6.076379155,6.076379155,6.076379155,6.076379155,6.076379155 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Difference|Land area weighted,days/yr,2.401421034,2.401421034,2.401421034,2.401421034,2.401421034,2.401421034,2.401421034,2.401421034,2.401421034,2.401421034 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Difference|Land area weighted,days/yr,-5.204180464,-5.204180464,-5.204180464,-5.204180464,-5.204180464,-5.204180464,-5.204180464,-5.204180464,-5.204180464,-5.204180464 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Difference|Land area weighted,days/yr,-1.893536539,-1.893536539,-1.893536539,-1.893536539,-1.893536539,-1.893536539,-1.893536539,-1.893536539,-1.893536539,-1.893536539 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Difference|Land area weighted,days/yr,-3.444529934,-3.444529934,-3.444529934,-3.444529934,-3.444529934,-3.444529934,-3.444529934,-3.444529934,-3.444529934,-3.444529934 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Difference|Land area weighted,days/yr,4.894596716,4.894596716,4.894596716,4.894596716,4.894596716,4.894596716,4.894596716,4.894596716,4.894596716,4.894596716 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.954261895,-4.954261895,-4.954261895,-4.954261895,-4.954261895,-4.954261895,-4.954261895,-4.954261895,-4.954261895,-4.954261895 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.742296665,-1.742296665,-1.742296665,-1.742296665,-1.742296665,-1.742296665,-1.742296665,-1.742296665,-1.742296665,-1.742296665 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Difference|Land area weighted,days/yr,0.047106967,0.047106967,0.047106967,0.047106967,0.047106967,0.047106967,0.047106967,0.047106967,0.047106967,0.047106967 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Difference|Land area weighted,days/yr,-3.970854344,-3.970854344,-3.970854344,-3.970854344,-3.970854344,-3.970854344,-3.970854344,-3.970854344,-3.970854344,-3.970854344 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Difference|Land area weighted,days/yr,10.42827207,10.42827207,10.42827207,10.42827207,10.42827207,10.42827207,10.42827207,10.42827207,10.42827207,10.42827207 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Difference|Land area weighted,days/yr,-1.971571658,-1.971571658,-1.971571658,-1.971571658,-1.971571658,-1.971571658,-1.971571658,-1.971571658,-1.971571658,-1.971571658 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Difference|Land area weighted,days/yr,2.600466123,2.600466123,2.600466123,2.600466123,2.600466123,2.600466123,2.600466123,2.600466123,2.600466123,2.600466123 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Difference|Land area weighted,days/yr,8.837790468,8.837790468,8.837790468,8.837790468,8.837790468,8.837790468,8.837790468,8.837790468,8.837790468,8.837790468 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Difference|Land area weighted,days/yr,4.016928456,4.016928456,4.016928456,4.016928456,4.016928456,4.016928456,4.016928456,4.016928456,4.016928456,4.016928456 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Difference|Land area weighted,days/yr,4.591347032,4.591347032,4.591347032,4.591347032,4.591347032,4.591347032,4.591347032,4.591347032,4.591347032,4.591347032 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Difference|Land area weighted,days/yr,6.523131884,6.523131884,6.523131884,6.523131884,6.523131884,6.523131884,6.523131884,6.523131884,6.523131884,6.523131884 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.758826249,-5.758826249,-5.758826249,-5.758826249,-5.758826249,-5.758826249,-5.758826249,-5.758826249,-5.758826249,-5.758826249 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.967153399,-0.967153399,-0.967153399,-0.967153399,-0.967153399,-0.967153399,-0.967153399,-0.967153399,-0.967153399,-0.967153399 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Difference|Land area weighted,days/yr,-3.876373285,-3.876373285,-3.876373285,-3.876373285,-3.876373285,-3.876373285,-3.876373285,-3.876373285,-3.876373285,-3.876373285 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Difference|Land area weighted,days/yr,1.640645001,1.640645001,1.640645001,1.640645001,1.640645001,1.640645001,1.640645001,1.640645001,1.640645001,1.640645001 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Difference|Land area weighted,days/yr,0.096063243,0.096063243,0.096063243,0.096063243,0.096063243,0.096063243,0.096063243,0.096063243,0.096063243,0.096063243 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Difference|Land area weighted,days/yr,3.633499421,3.633499421,3.633499421,3.633499421,3.633499421,3.633499421,3.633499421,3.633499421,3.633499421,3.633499421 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Difference|Land area weighted,days/yr,4.484811397,4.484811397,4.484811397,4.484811397,4.484811397,4.484811397,4.484811397,4.484811397,4.484811397,4.484811397 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Difference|Land area weighted,days/yr,6.125766213,6.125766213,6.125766213,6.125766213,6.125766213,6.125766213,6.125766213,6.125766213,6.125766213,6.125766213 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Difference|Land area weighted,days/yr,5.508952151,5.508952151,5.508952151,5.508952151,5.508952151,5.508952151,5.508952151,5.508952151,5.508952151,5.508952151 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Difference|Land area weighted,days/yr,3.551579953,3.551579953,3.551579953,3.551579953,3.551579953,3.551579953,3.551579953,3.551579953,3.551579953,3.551579953 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.019597079,-2.019597079,-2.019597079,-2.019597079,-2.019597079,-2.019597079,-2.019597079,-2.019597079,-2.019597079,-2.019597079 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Difference|Land area weighted,days/yr,2.92575531,2.92575531,2.92575531,2.92575531,2.92575531,2.92575531,2.92575531,2.92575531,2.92575531,2.92575531 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.421459736,-1.421459736,-1.421459736,-1.421459736,-1.421459736,-1.421459736,-1.421459736,-1.421459736,-1.421459736,-1.421459736 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Difference|Land area weighted,days/yr,0.375957562,0.375957562,0.375957562,0.375957562,0.375957562,0.375957562,0.375957562,0.375957562,0.375957562,0.375957562 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Difference|Land area weighted,days/yr,5.013308565,5.013308565,5.013308565,5.013308565,5.013308565,5.013308565,5.013308565,5.013308565,5.013308565,5.013308565 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Difference|Land area weighted,days/yr,9.518426362,9.518426362,9.518426362,9.518426362,9.518426362,9.518426362,9.518426362,9.518426362,9.518426362,9.518426362 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Difference|Land area weighted,days/yr,4.452074012,4.452074012,4.452074012,4.452074012,4.452074012,4.452074012,4.452074012,4.452074012,4.452074012,4.452074012 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Difference|Land area weighted,days/yr,0.121651423,0.121651423,0.121651423,0.121651423,0.121651423,0.121651423,0.121651423,0.121651423,0.121651423,0.121651423 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Difference|Land area weighted,days/yr,0.642376375,0.642376375,0.642376375,0.642376375,0.642376375,0.642376375,0.642376375,0.642376375,0.642376375,0.642376375 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Difference|Land area weighted,days/yr,4.529256069,4.529256069,4.529256069,4.529256069,4.529256069,4.529256069,4.529256069,4.529256069,4.529256069,4.529256069 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Difference|Land area weighted,days/yr,4.203712282,4.203712282,4.203712282,4.203712282,4.203712282,4.203712282,4.203712282,4.203712282,4.203712282,4.203712282 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Difference|Land area weighted,days/yr,-14.70240548,-14.70240548,-14.70240548,-14.70240548,-14.70240548,-14.70240548,-14.70240548,-14.70240548,-14.70240548,-14.70240548 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Difference|Land area weighted,days/yr,1.101102558,1.101102558,1.101102558,1.101102558,1.101102558,1.101102558,1.101102558,1.101102558,1.101102558,1.101102558 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Difference|Land area weighted,days/yr,-2.319013909,-2.319013909,-2.319013909,-2.319013909,-2.319013909,-2.319013909,-2.319013909,-2.319013909,-2.319013909,-2.319013909 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.160450999,-2.160450999,-2.160450999,-2.160450999,-2.160450999,-2.160450999,-2.160450999,-2.160450999,-2.160450999,-2.160450999 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Difference|Land area weighted,days/yr,18.81679701,18.81679701,18.81679701,18.81679701,18.81679701,18.81679701,18.81679701,18.81679701,18.81679701,18.81679701 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Difference|Land area weighted,days/yr,6.434488451,6.434488451,6.434488451,6.434488451,6.434488451,6.434488451,6.434488451,6.434488451,6.434488451,6.434488451 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Difference|Land area weighted,days/yr,-3.980468032,-3.980468032,-3.980468032,-3.980468032,-3.980468032,-3.980468032,-3.980468032,-3.980468032,-3.980468032,-3.980468032 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Difference|Land area weighted,days/yr,-6.108655984,-6.108655984,-6.108655984,-6.108655984,-6.108655984,-6.108655984,-6.108655984,-6.108655984,-6.108655984,-6.108655984 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Difference|Land area weighted,days/yr,3.564465632,3.564465632,3.564465632,3.564465632,3.564465632,3.564465632,3.564465632,3.564465632,3.564465632,3.564465632 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Difference|Land area weighted,days/yr,0.082966519,0.082966519,0.082966519,0.082966519,0.082966519,0.082966519,0.082966519,0.082966519,0.082966519,0.082966519 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Difference|Land area weighted,days/yr,0.088697408,0.088697408,0.088697408,0.088697408,0.088697408,0.088697408,0.088697408,0.088697408,0.088697408,0.088697408 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Difference|Land area weighted,days/yr,-0.231816047,-0.231816047,-0.231816047,-0.231816047,-0.231816047,-0.231816047,-0.231816047,-0.231816047,-0.231816047,-0.231816047 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Difference|Land area weighted,days/yr,7.803945547,7.803945547,7.803945547,7.803945547,7.803945547,7.803945547,7.803945547,7.803945547,7.803945547,7.803945547 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Difference|Land area weighted,days/yr,-4.463893662,-4.463893662,-4.463893662,-4.463893662,-4.463893662,-4.463893662,-4.463893662,-4.463893662,-4.463893662,-4.463893662 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Difference|Land area weighted,days/yr,2.487970721,2.487970721,2.487970721,2.487970721,2.487970721,2.487970721,2.487970721,2.487970721,2.487970721,2.487970721 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Difference|Land area weighted,days/yr,3.009333004,3.009333004,3.009333004,3.009333004,3.009333004,3.009333004,3.009333004,3.009333004,3.009333004,3.009333004 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Difference|Land area weighted,days/yr,5.876222072,5.876222072,5.876222072,5.876222072,5.876222072,5.876222072,5.876222072,5.876222072,5.876222072,5.876222072 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Difference|Land area weighted,days/yr,2.868450451,2.868450451,2.868450451,2.868450451,2.868450451,2.868450451,2.868450451,2.868450451,2.868450451,2.868450451 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Difference|Land area weighted,days/yr,3.476376965,3.476376965,3.476376965,3.476376965,3.476376965,3.476376965,3.476376965,3.476376965,3.476376965,3.476376965 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Difference|Land area weighted,days/yr,4.556848384,4.556848384,4.556848384,4.556848384,4.556848384,4.556848384,4.556848384,4.556848384,4.556848384,4.556848384 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Difference|Land area weighted,days/yr,8.293481976,8.293481976,8.293481976,8.293481976,8.293481976,8.293481976,8.293481976,8.293481976,8.293481976,8.293481976 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Difference|Land area weighted,days/yr,20.52611758,20.52611758,20.52611758,20.52611758,20.52611758,20.52611758,20.52611758,20.52611758,20.52611758,20.52611758 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Difference|Land area weighted,days/yr,-4.135084098,-4.135084098,-4.135084098,-4.135084098,-4.135084098,-4.135084098,-4.135084098,-4.135084098,-4.135084098,-4.135084098 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Difference|Land area weighted,days/yr,0.928932461,0.928932461,0.928932461,0.928932461,0.928932461,0.928932461,0.928932461,0.928932461,0.928932461,0.928932461 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Difference|Land area weighted,days/yr,5.644469368,5.644469368,5.644469368,5.644469368,5.644469368,5.644469368,5.644469368,5.644469368,5.644469368,5.644469368 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Difference|Land area weighted,days/yr,10.67047156,10.67047156,10.67047156,10.67047156,10.67047156,10.67047156,10.67047156,10.67047156,10.67047156,10.67047156 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.397802931,-3.397802931,-3.397802931,-3.397802931,-3.397802931,-3.397802931,-3.397802931,-3.397802931,-3.397802931,-3.397802931 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Difference|Land area weighted,days/yr,5.368527578,5.368527578,5.368527578,5.368527578,5.368527578,5.368527578,5.368527578,5.368527578,5.368527578,5.368527578 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Difference|Land area weighted,days/yr,9.326329392,9.326329392,9.326329392,9.326329392,9.326329392,9.326329392,9.326329392,9.326329392,9.326329392,9.326329392 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Difference|Land area weighted,days/yr,11.43669823,11.43669823,11.43669823,11.43669823,11.43669823,11.43669823,11.43669823,11.43669823,11.43669823,11.43669823 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Difference|Land area weighted,days/yr,4.597185437,4.597185437,4.597185437,4.597185437,4.597185437,4.597185437,4.597185437,4.597185437,4.597185437,4.597185437 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Difference|Land area weighted,days/yr,8.071241617,8.071241617,8.071241617,8.071241617,8.071241617,8.071241617,8.071241617,8.071241617,8.071241617,8.071241617 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Difference|Land area weighted,days/yr,0.205684001,0.205684001,0.205684001,0.205684001,0.205684001,0.205684001,0.205684001,0.205684001,0.205684001,0.205684001 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Difference|Land area weighted,days/yr,-3.28772959,-3.28772959,-3.28772959,-3.28772959,-3.28772959,-3.28772959,-3.28772959,-3.28772959,-3.28772959,-3.28772959 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Difference|Land area weighted,days/yr,3.371722758,3.371722758,3.371722758,3.371722758,3.371722758,3.371722758,3.371722758,3.371722758,3.371722758,3.371722758 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Difference|Land area weighted,days/yr,1.661216363,1.661216363,1.661216363,1.661216363,1.661216363,1.661216363,1.661216363,1.661216363,1.661216363,1.661216363 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Difference|Land area weighted,days/yr,-4.338314655,-4.338314655,-4.338314655,-4.338314655,-4.338314655,-4.338314655,-4.338314655,-4.338314655,-4.338314655,-4.338314655 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Difference|Land area weighted,days/yr,1.610338889,1.610338889,1.610338889,1.610338889,1.610338889,1.610338889,1.610338889,1.610338889,1.610338889,1.610338889 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Difference|Land area weighted,days/yr,2.890092786,2.890092786,2.890092786,2.890092786,2.890092786,2.890092786,2.890092786,2.890092786,2.890092786,2.890092786 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Difference|Land area weighted,days/yr,4.293841067,4.293841067,4.293841067,4.293841067,4.293841067,4.293841067,4.293841067,4.293841067,4.293841067,4.293841067 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.741547604,-1.741547604,-1.741547604,-1.741547604,-1.741547604,-1.741547604,-1.741547604,-1.741547604,-1.741547604,-1.741547604 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Difference|Land area weighted,days/yr,2.859116441,2.859116441,2.859116441,2.859116441,2.859116441,2.859116441,2.859116441,2.859116441,2.859116441,2.859116441 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Difference|Land area weighted,days/yr,11.24815412,11.24815412,11.24815412,11.24815412,11.24815412,11.24815412,11.24815412,11.24815412,11.24815412,11.24815412 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Difference|Land area weighted,days/yr,0.629701419,0.629701419,0.629701419,0.629701419,0.629701419,0.629701419,0.629701419,0.629701419,0.629701419,0.629701419 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Difference|Land area weighted,days/yr,2.917153127,2.917153127,2.917153127,2.917153127,2.917153127,2.917153127,2.917153127,2.917153127,2.917153127,2.917153127 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Difference|Land area weighted,days/yr,-0.420277357,-0.420277357,-0.420277357,-0.420277357,-0.420277357,-0.420277357,-0.420277357,-0.420277357,-0.420277357,-0.420277357 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Difference|Land area weighted,days/yr,4.55323974,4.55323974,4.55323974,4.55323974,4.55323974,4.55323974,4.55323974,4.55323974,4.55323974,4.55323974 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Difference|Land area weighted,days/yr,5.522670215,5.522670215,5.522670215,5.522670215,5.522670215,5.522670215,5.522670215,5.522670215,5.522670215,5.522670215 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Difference|Land area weighted,days/yr,-4.020091026,-4.020091026,-4.020091026,-4.020091026,-4.020091026,-4.020091026,-4.020091026,-4.020091026,-4.020091026,-4.020091026 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Difference|Land area weighted,days/yr,12.39286513,12.39286513,12.39286513,12.39286513,12.39286513,12.39286513,12.39286513,12.39286513,12.39286513,12.39286513 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.015553124,-4.015553124,-4.015553124,-4.015553124,-4.015553124,-4.015553124,-4.015553124,-4.015553124,-4.015553124,-4.015553124 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Difference|Land area weighted,days/yr,4.998314058,4.998314058,4.998314058,4.998314058,4.998314058,4.998314058,4.998314058,4.998314058,4.998314058,4.998314058 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Difference|Land area weighted,days/yr,1.015036992,1.015036992,1.015036992,1.015036992,1.015036992,1.015036992,1.015036992,1.015036992,1.015036992,1.015036992 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Difference|Land area weighted,days/yr,8.815082947,8.815082947,8.815082947,8.815082947,8.815082947,8.815082947,8.815082947,8.815082947,8.815082947,8.815082947 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Difference|Land area weighted,days/yr,5.082058712,5.082058712,5.082058712,5.082058712,5.082058712,5.082058712,5.082058712,5.082058712,5.082058712,5.082058712 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Difference|Land area weighted,days/yr,7.123832855,7.123832855,7.123832855,7.123832855,7.123832855,7.123832855,7.123832855,7.123832855,7.123832855,7.123832855 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Difference|Land area weighted,days/yr,-1.226369152,-1.226369152,-1.226369152,-1.226369152,-1.226369152,-1.226369152,-1.226369152,-1.226369152,-1.226369152,-1.226369152 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Difference|Land area weighted,days/yr,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Difference|Land area weighted,days/yr,4.745257124,4.745257124,4.745257124,4.745257124,4.745257124,4.745257124,4.745257124,4.745257124,4.745257124,4.745257124 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Difference|Land area weighted,days/yr,5.536976109,5.536976109,5.536976109,5.536976109,5.536976109,5.536976109,5.536976109,5.536976109,5.536976109,5.536976109 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Difference|Land area weighted,days/yr,4.472070613,4.472070613,4.472070613,4.472070613,4.472070613,4.472070613,4.472070613,4.472070613,4.472070613,4.472070613 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Difference|Land area weighted,days/yr,1.633462012,1.633462012,1.633462012,1.633462012,1.633462012,1.633462012,1.633462012,1.633462012,1.633462012,1.633462012 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Difference|Land area weighted,days/yr,5.396877716,5.396877716,5.396877716,5.396877716,5.396877716,5.396877716,5.396877716,5.396877716,5.396877716,5.396877716 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.062500925,-5.062500925,-5.062500925,-5.062500925,-5.062500925,-5.062500925,-5.062500925,-5.062500925,-5.062500925,-5.062500925 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Difference|Land area weighted,days/yr,6.111369517,6.111369517,6.111369517,6.111369517,6.111369517,6.111369517,6.111369517,6.111369517,6.111369517,6.111369517 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Difference|Land area weighted,days/yr,3.972300743,3.972300743,3.972300743,3.972300743,3.972300743,3.972300743,3.972300743,3.972300743,3.972300743,3.972300743 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Difference|Land area weighted,days/yr,-4.185122316,-4.185122316,-4.185122316,-4.185122316,-4.185122316,-4.185122316,-4.185122316,-4.185122316,-4.185122316,-4.185122316 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Difference|Land area weighted,days/yr,26.20985931,26.20985931,26.20985931,26.20985931,26.20985931,26.20985931,26.20985931,26.20985931,26.20985931,26.20985931 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Difference|Land area weighted,days/yr,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Difference|Land area weighted,days/yr,10.92550933,10.92550933,10.92550933,10.92550933,10.92550933,10.92550933,10.92550933,10.92550933,10.92550933,10.92550933 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Difference|Population weighted,days/yr,0.575313275,0.580446427,0.586099364,0.593681419,0.600050276,0.606406533,0.613132806,0.620173251,0.627623514,0.636245144 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Difference|Population weighted,days/yr,9.454951961,9.45666315,9.458138105,9.459372478,9.460362509,9.461128346,9.461754061,9.462286748,9.462733501,9.463145466 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Difference|Population weighted,days/yr,-1.718161216,-1.722337734,-1.728088899,-1.734513032,-1.740300773,-1.746464371,-1.751960785,-1.758045533,-1.764102914,-1.765969502 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Difference|Population weighted,days/yr,-4.320078341,-4.333928377,-4.347845477,-4.358916794,-4.368159694,-4.37537161,-4.381367201,-4.387473606,-4.394072764,-4.401583765 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Difference|Population weighted,days/yr,-1.800264273,-1.807703963,-1.807456261,-1.799445932,-1.787809686,-1.771488521,-1.751627628,-1.730601444,-1.709178751,-1.688079931 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Difference|Population weighted,days/yr,-8.277198804,-8.255898847,-8.244723848,-8.240498894,-8.241335921,-8.24576749,-8.252967976,-8.262077649,-8.272430917,-8.283465053 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Difference|Population weighted,days/yr,7.138644701,7.178076024,7.213800091,7.24566738,7.270933617,7.291809604,7.310752678,7.328392741,7.342720453,7.354575445 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Difference|Population weighted,days/yr,-0.319749768,-0.308035157,-0.288185618,-0.265415585,-0.241198879,-0.217173217,-0.199465376,-0.190277752,-0.188202106,-0.192214534 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Difference|Population weighted,days/yr,6.187021491,6.184828362,6.182855297,6.182150431,6.181845707,6.18167868,6.181728356,6.182223242,6.183258391,6.183804311 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Difference|Population weighted,days/yr,7.150609897,7.255765853,7.341400863,7.409864456,7.463585217,7.504728607,7.538909212,7.564071396,7.583900263,7.599754744 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Difference|Population weighted,days/yr,2.02972027,2.10065672,2.143355394,2.173328402,2.19386664,2.216348282,2.232645835,2.248659973,2.263061582,2.275551628 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Difference|Population weighted,days/yr,-3.253912633,-3.252324949,-3.25156335,-3.251476556,-3.251894817,-3.252435469,-3.253067254,-3.253690242,-3.254221889,-3.254715546 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Difference|Population weighted,days/yr,-3.943943346,-3.960804759,-3.969793805,-3.97403645,-3.974301773,-3.971739253,-3.967902863,-3.963017911,-3.957311557,-3.951131942 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Difference|Population weighted,days/yr,-3.545950183,-3.546973897,-3.548538294,-3.549638564,-3.550878618,-3.551787462,-3.552548665,-3.552922348,-3.55320973,-3.553765188 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Difference|Population weighted,days/yr,-10.86457194,-10.88303953,-10.89707289,-10.90728311,-10.91403064,-10.91774699,-10.92009658,-10.92196432,-10.92363779,-10.92512822 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Difference|Population weighted,days/yr,0.532232069,0.489064661,0.450599603,0.415300341,0.385729345,0.362658506,0.342096205,0.319881837,0.296860724,0.278791083 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Difference|Population weighted,days/yr,9.364960163,9.388877925,9.41848812,9.450838622,9.485091494,9.519875939,9.552331742,9.58240771,9.610650565,9.636798011 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Difference|Population weighted,days/yr,4.284812281,4.282570073,4.280797108,4.280187999,4.280708867,4.281826006,4.283328207,4.285228108,4.287048283,4.288680557 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Difference|Population weighted,days/yr,-1.164966462,-1.164184311,-1.162942124,-1.160762541,-1.158338236,-1.155746336,-1.154253985,-1.153742942,-1.154231147,-1.155227581 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Difference|Population weighted,days/yr,0.835103244,0.839075072,0.841598405,0.843097015,0.843945886,0.844145252,0.843586896,0.842289505,0.840468918,0.838663335 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Difference|Population weighted,days/yr,1.963823137,1.985540392,1.996417469,2.001943659,2.002840956,2.001259711,1.996872162,1.992416765,1.986167911,1.97816455 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Difference|Population weighted,days/yr,9.421594836,9.407554037,9.390491414,9.375111206,9.360427991,9.345277351,9.330154863,9.316805996,9.305475708,9.295907061 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Difference|Population weighted,days/yr,1.722820718,1.751823381,1.77028606,1.783113214,1.793633432,1.80202514,1.807905189,1.811874855,1.813955702,1.814271733 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Difference|Population weighted,days/yr,3.552762915,3.576682662,3.599415713,3.620148579,3.639013976,3.657005082,3.673904356,3.689347025,3.703567314,3.716589125 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Difference|Population weighted,days/yr,1.391922566,1.363282765,1.335696812,1.307453452,1.278625165,1.252186797,1.231243189,1.214432608,1.200783648,1.189634637 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Difference|Population weighted,days/yr,-2.876167451,-2.839070969,-2.833433304,-2.832348505,-2.831124568,-2.832518992,-2.836616064,-2.843351546,-2.851633834,-2.861798659 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Difference|Population weighted,days/yr,0.119213323,0.105659904,0.093951498,0.084847746,0.078316741,0.073175268,0.068156962,0.063203961,0.058072133,0.053297006 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Difference|Population weighted,days/yr,5.004791739,4.990878977,4.980610348,4.974033435,4.970525727,4.969083202,4.968674121,4.969038003,4.96981967,4.970245231 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Difference|Population weighted,days/yr,3.189285759,3.165991009,3.155259342,3.148123325,3.145812276,3.140999171,3.136898605,3.128887159,3.123009078,3.118163209 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Difference|Population weighted,days/yr,1.942120184,1.94283089,1.942973398,1.945703499,1.947274719,1.949301763,1.952137384,1.955545889,1.960080178,1.965846772 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Difference|Population weighted,days/yr,-2.99726671,-3.00807299,-3.017249617,-3.025221735,-3.030709326,-3.035549806,-3.039381995,-3.042308331,-3.044712927,-3.046621905 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Difference|Population weighted,days/yr,-3.221127746,-3.25947365,-3.285847617,-3.304368998,-3.319444431,-3.331229364,-3.340619475,-3.348336481,-3.354530887,-3.359222627 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Difference|Population weighted,days/yr,1.500405487,1.501804422,1.509234197,1.525458151,1.549139518,1.580314849,1.609994196,1.637157912,1.661061145,1.681209171 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Difference|Population weighted,days/yr,-2.966732114,-2.981060757,-2.992547912,-3.00227341,-3.011388719,-3.018686723,-3.024031335,-3.028744017,-3.032722662,-3.035357579 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Difference|Population weighted,days/yr,0.112336879,0.082406142,0.078680391,0.081614389,0.087966599,0.096246189,0.106578169,0.11667269,0.124748548,0.131119493 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Difference|Population weighted,days/yr,-1.563213907,-1.558915424,-1.557336649,-1.556453113,-1.555917067,-1.555593439,-1.555416047,-1.555316574,-1.555242218,-1.55518323 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Difference|Population weighted,days/yr,0.634181491,0.621991331,0.612971126,0.603701676,0.594376236,0.58571688,0.578126079,0.571688205,0.566540427,0.56268684 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Difference|Population weighted,days/yr,9.433797264,9.469658712,9.492102605,9.507467207,9.51693003,9.520567142,9.520143587,9.518685586,9.516952497,9.515634196 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Difference|Population weighted,days/yr,5.190821967,5.173740797,5.164948325,5.161493379,5.161641529,5.163898979,5.167698252,5.172553773,5.17821852,5.184321972 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Difference|Population weighted,days/yr,5.342368077,5.345965988,5.350528987,5.355747792,5.361046075,5.366358424,5.371509388,5.376635962,5.381172553,5.385033712 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Difference|Population weighted,days/yr,35.50064292,35.5342946,35.56319024,35.58766386,35.60812586,35.62506699,35.63892888,35.65037394,35.65994484,35.66805478 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Difference|Population weighted,days/yr,-3.566907861,-3.595727255,-3.615930045,-3.630810814,-3.641306644,-3.648691982,-3.653937782,-3.657713604,-3.66000155,-3.661269694 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Difference|Population weighted,days/yr,0.224075349,0.192983536,0.16230931,0.132725931,0.106280696,0.08345595,0.064206722,0.048306324,0.035814403,0.026028166 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Difference|Population weighted,days/yr,-0.446533646,-0.456131801,-0.465216443,-0.473712357,-0.481235124,-0.487616099,-0.493327495,-0.498449822,-0.503040785,-0.506828046 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Difference|Population weighted,days/yr,1.722398617,1.664577839,1.612354764,1.56348906,1.517842204,1.477556577,1.443560585,1.41533439,1.392687111,1.375757769 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Difference|Population weighted,days/yr,9.298393584,9.293920509,9.289397506,9.286329381,9.284666129,9.282915986,9.281802351,9.280993856,9.281156375,9.282712763 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Difference|Population weighted,days/yr,-3.390346113,-3.377663716,-3.365395392,-3.355437427,-3.348722443,-3.343663006,-3.339829793,-3.337082736,-3.335098877,-3.333890415 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Difference|Population weighted,days/yr,5.878769445,5.877711561,5.875642447,5.872186168,5.867811401,5.862928291,5.858009062,5.853350004,5.849110602,5.845580321 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Difference|Population weighted,days/yr,0.511532812,0.516773979,0.523979562,0.529110792,0.533146669,0.532669068,0.534513037,0.537127723,0.538739552,0.540389681 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Difference|Population weighted,days/yr,-1.212265841,-1.257734292,-1.289719934,-1.312845684,-1.328199218,-1.341015338,-1.353429232,-1.364254915,-1.374298462,-1.3826245 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Difference|Population weighted,days/yr,4.789063282,4.628648246,4.520923002,4.444540942,4.393329174,4.374369559,4.397557264,4.463803829,4.549569929,4.637010113 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Difference|Population weighted,days/yr,0.822587907,0.826786629,0.831203514,0.835741266,0.839954301,0.844020756,0.848106445,0.852096934,0.855552397,0.858599891 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Difference|Population weighted,days/yr,1.79786116,1.799050902,1.799973936,1.800403951,1.800712472,1.80073674,1.800615285,1.800335311,1.800100066,1.799806765 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Difference|Population weighted,days/yr,8.65083582,8.652807254,8.655439161,8.658071967,8.659936585,8.662066652,8.665217286,8.668697445,8.671761374,8.67454001 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Difference|Population weighted,days/yr,3.027617113,3.029371738,3.026075361,3.025756814,3.023869459,3.019245675,3.019447146,3.016901557,3.01658344,3.019213916 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Difference|Population weighted,days/yr,-4.729304369,-4.736132035,-4.740228676,-4.739499116,-4.736546375,-4.731117026,-4.725906905,-4.72071458,-4.715784383,-4.710799934 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Difference|Population weighted,days/yr,0.966781954,0.942638424,0.923785402,0.90970038,0.898657626,0.891196629,0.884990359,0.879635261,0.875287983,0.871277382 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Difference|Population weighted,days/yr,2.207645629,2.195799387,2.178123595,2.16064899,2.140828796,2.118912735,2.098753716,2.078617578,2.0595388,2.044328098 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Difference|Population weighted,days/yr,4.193008555,4.194401823,4.194922381,4.195446848,4.195446848,4.195472375,4.195461643,4.195450121,4.195433097,4.195449899 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Difference|Population weighted,days/yr,-0.486459375,-0.451202732,-0.424657105,-0.404290354,-0.387449486,-0.374053594,-0.362220506,-0.351828274,-0.343044255,-0.334579563 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Difference|Population weighted,days/yr,-3.638006701,-3.639740238,-3.638553698,-3.636172976,-3.631996846,-3.626890391,-3.622298346,-3.618284283,-3.615315012,-3.613411127 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Difference|Population weighted,days/yr,-5.361724101,-5.383038174,-5.397122618,-5.406677156,-5.41374233,-5.418437695,-5.421761277,-5.424060065,-5.42492701,-5.424880941 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Difference|Population weighted,days/yr,-0.386183471,-0.387021452,-0.395573575,-0.410034332,-0.417299972,-0.429788016,-0.432976939,-0.443734368,-0.449355392,-0.456700278 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Difference|Population weighted,days/yr,-0.878279901,-0.878771579,-0.879320348,-0.879748063,-0.880089239,-0.880380983,-0.88064775,-0.880854979,-0.881052189,-0.881209363 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Difference|Population weighted,days/yr,-9.828585528,-9.785316121,-9.743489269,-9.705268038,-9.669025187,-9.638058098,-9.610465295,-9.586132675,-9.564110492,-9.544123096 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Difference|Population weighted,days/yr,7.698834723,7.706204086,7.710550942,7.713540662,7.716366018,7.718891292,7.722162276,7.724602604,7.726113071,7.727610864 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Difference|Population weighted,days/yr,-4.673791229,-4.670050842,-4.671384199,-4.675764647,-4.683308461,-4.692092643,-4.701686116,-4.711544263,-4.720776121,-4.729518971 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Difference|Population weighted,days/yr,-0.109734006,-0.148862351,-0.183947747,-0.21379909,-0.238376298,-0.257904548,-0.273629244,-0.286526527,-0.297167067,-0.306209852 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Difference|Population weighted,days/yr,10.50896802,10.63885672,10.7702262,10.88636326,10.98172231,11.06102688,11.12675636,11.18116249,11.22710244,11.26905593 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Difference|Population weighted,days/yr,16.372204,16.37188728,16.37171137,16.37162519,16.37147935,16.37147132,16.37146494,16.37146494,16.37139382,16.37148284 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Difference|Population weighted,days/yr,7.049678389,7.068725447,7.084752798,7.098028518,7.108940568,7.117949054,7.125378858,7.131471639,7.136620393,7.140851765 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Difference|Population weighted,days/yr,-0.320534204,-0.329830193,-0.338735616,-0.34717502,-0.355023285,-0.362385879,-0.369152832,-0.375054503,-0.379989993,-0.384011775 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Difference|Population weighted,days/yr,-4.258158185,-4.259492053,-4.260266328,-4.26084924,-4.261271761,-4.261560534,-4.261733394,-4.26180948,-4.261818407,-4.261809966 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Difference|Population weighted,days/yr,6.171581971,6.187977835,6.218275419,6.259476692,6.311774381,6.371494313,6.424644273,6.469886118,6.508566254,6.540212262 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Difference|Population weighted,days/yr,-3.121421316,-3.118261152,-3.115649395,-3.113400959,-3.111312359,-3.10943497,-3.107907625,-3.106341788,-3.105138101,-3.1042783 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Difference|Population weighted,days/yr,3.574561041,3.565497126,3.561148817,3.557454317,3.553242985,3.559843524,3.563775042,3.56527476,3.565913874,3.569039133 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Difference|Population weighted,days/yr,9.535019623,9.579750239,9.63710807,9.701191723,9.770815749,9.843113922,9.915881028,9.977757386,10.03016677,10.07500117 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Difference|Population weighted,days/yr,-5.610681065,-5.607158245,-5.606069067,-5.60645136,-5.608140643,-5.611704104,-5.616133886,-5.620849757,-5.6252519,-5.630091606 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Difference|Population weighted,days/yr,2.840669904,2.835025551,2.829123433,2.822601165,2.815879093,2.809710703,2.804239378,2.798777991,2.793526657,2.788872246 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Difference|Population weighted,days/yr,-1.097038626,-1.106039499,-1.110858717,-1.117960829,-1.122173081,-1.127296314,-1.13111234,-1.134826932,-1.13852279,-1.142120704 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Difference|Population weighted,days/yr,2.112181827,2.103860409,2.095448935,2.086856204,2.078446694,2.07061767,2.063463528,2.057135405,2.051703921,2.046992716 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Difference|Population weighted,days/yr,-1.883293023,-1.884422763,-1.886024326,-1.888035999,-1.890158786,-1.892312206,-1.894177521,-1.895937432,-1.897453467,-1.899010349 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Difference|Population weighted,days/yr,-1.881404394,-1.91123873,-1.941152353,-1.966562139,-1.987969804,-2.007761446,-2.021705644,-2.03729079,-2.05020688,-2.060964772 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Difference|Population weighted,days/yr,1.020037327,1.011204541,1.001838494,0.99272737,0.983067575,0.972536552,0.962280041,0.952846556,0.94461062,0.937463608 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Difference|Population weighted,days/yr,6.60313778,6.575446916,6.551005644,6.531456131,6.516820001,6.506047241,6.498809597,6.494742596,6.492132606,6.489892551 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Difference|Population weighted,days/yr,2.096080124,2.100525717,2.105576382,2.110689855,2.115924714,2.121871736,2.1276593,2.132293692,2.13533722,2.136662665 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Difference|Population weighted,days/yr,1.318614549,1.31676795,1.315821236,1.314716903,1.314179101,1.31374381,1.313029106,1.3128353,1.312139557,1.311626068 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Difference|Population weighted,days/yr,13.29111542,13.27741993,13.26465434,13.25370224,13.24364637,13.23378471,13.22386972,13.21446567,13.2064076,13.19934969 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Difference|Population weighted,days/yr,5.093659427,5.100324641,5.106702805,5.112769987,5.118464283,5.12376816,5.128861243,5.133900755,5.138273993,5.142097307 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Difference|Population weighted,days/yr,2.163033031,2.154824361,2.145473581,2.136364738,2.127059736,2.117963683,2.110012555,2.103630453,2.09876187,2.094579465 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Difference|Population weighted,days/yr,-4.063749205,-4.048610276,-4.031386191,-4.011497863,-3.989208835,-3.967053604,-3.948458111,-3.93305532,-3.919926494,-3.910619789 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Difference|Population weighted,days/yr,-1.941466714,-1.961909762,-1.99088986,-2.020771785,-2.051391016,-2.080929984,-2.109633283,-2.137179123,-2.162489312,-2.185343803 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Difference|Population weighted,days/yr,-4.518002393,-4.545859969,-4.572516185,-4.59732784,-4.62069066,-4.642027295,-4.660944583,-4.67759663,-4.691901052,-4.703991202 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Difference|Population weighted,days/yr,5.750967707,5.746401989,5.738290019,5.727821416,5.716567652,5.706740584,5.697590407,5.688902153,5.680168028,5.671667037 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Difference|Population weighted,days/yr,-3.522142416,-3.502663023,-3.491257735,-3.485230028,-3.482407849,-3.482219718,-3.483781026,-3.486248625,-3.489350565,-3.493038516 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Difference|Population weighted,days/yr,1.299184143,1.320542374,1.341933666,1.363210586,1.382530532,1.400294303,1.416595331,1.432455877,1.447360912,1.462865216 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Difference|Population weighted,days/yr,-0.804732619,-0.841765533,-0.876498346,-0.909347333,-0.940729251,-0.969869463,-0.996094781,-1.019638459,-1.040988189,-1.060033979 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Difference|Population weighted,days/yr,-5.000192084,-4.994691006,-4.989337222,-4.984985488,-4.98096379,-4.97763473,-4.97492251,-4.972469939,-4.970694953,-4.969159714 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Difference|Population weighted,days/yr,9.783822852,9.774657305,9.767484585,9.759842191,9.751461,9.742811044,9.735734074,9.730100108,9.725222104,9.721333111 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Difference|Population weighted,days/yr,-2.273252459,-2.278402044,-2.279375239,-2.280187848,-2.280983712,-2.281977485,-2.283269768,-2.284899036,-2.286648005,-2.288641546 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Difference|Population weighted,days/yr,-0.430970542,-0.428686177,-0.431504643,-0.438759773,-0.44910226,-0.461319256,-0.474404717,-0.487988254,-0.500279821,-0.51076582 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Difference|Population weighted,days/yr,7.440679207,7.431546514,7.42568309,7.430823185,7.429837444,7.443125397,7.413515153,7.420093335,7.436785779,7.428113189 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Difference|Population weighted,days/yr,2.068026038,2.017049118,1.961145002,1.903872349,1.847130952,1.792645953,1.73969769,1.688572938,1.643147348,1.604262788 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Difference|Population weighted,days/yr,5.67666445,5.739691053,5.78927025,5.830819531,5.864828156,5.891252311,5.908050003,5.915460996,5.916725347,5.913978178 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Difference|Population weighted,days/yr,7.571382909,7.591433475,7.612165231,7.631063995,7.647896836,7.664008434,7.679717462,7.694313198,7.708144643,7.721440895 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Difference|Population weighted,days/yr,-7.066176566,-7.069457399,-7.071910781,-7.073600679,-7.074506566,-7.07440974,-7.073880287,-7.073057045,-7.072072522,-7.071042842 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Difference|Population weighted,days/yr,-1.717707046,-1.71281291,-1.711188262,-1.712329576,-1.715471095,-1.720173334,-1.725519437,-1.731331235,-1.737465974,-1.742650119 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Difference|Population weighted,days/yr,-3.745791351,-3.744385522,-3.743592919,-3.743119066,-3.742322005,-3.741251431,-3.740475636,-3.739898475,-3.738978246,-3.737565001 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Difference|Population weighted,days/yr,1.609868588,1.611143384,1.610401178,1.609280523,1.608828246,1.607408732,1.606629498,1.60525986,1.603956822,1.602947009 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Difference|Population weighted,days/yr,2.682132567,2.667741552,2.661148997,2.658573142,2.659151136,2.664482353,2.669412394,2.671799657,2.673402018,2.674895312 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Difference|Population weighted,days/yr,10.18899069,10.1783499,10.18272314,10.18459942,10.19276764,10.19995689,10.21022698,10.22003914,10.23358786,10.24007586 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Difference|Population weighted,days/yr,0.412136536,0.376236494,0.328905397,0.278674194,0.227766734,0.193306808,0.166386305,0.141082853,0.113402006,0.080389854 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Difference|Population weighted,days/yr,8.183208414,8.189003845,8.191709914,8.190708755,8.186071515,8.180861867,8.175878872,8.171758823,8.168832623,8.166270333 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Difference|Population weighted,days/yr,4.859255653,4.859795178,4.859821433,4.859849124,4.859851304,4.859851932,4.859879351,4.859873945,4.859867175,4.859878561 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Difference|Population weighted,days/yr,4.574873658,4.582956943,4.589799818,4.59757404,4.605223005,4.611579982,4.616945813,4.621913667,4.626391333,4.630201352 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Difference|Population weighted,days/yr,-2.390142432,-2.398810511,-2.409921764,-2.42317794,-2.437516829,-2.452015258,-2.46651905,-2.47960292,-2.490458988,-2.49943339 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Difference|Population weighted,days/yr,4.834965032,4.894543274,4.947727019,4.994455913,5.036199062,5.07555766,5.112261683,5.142816212,5.167317598,5.187192191 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Difference|Population weighted,days/yr,-1.864795577,-1.873102428,-1.880705462,-1.887485681,-1.89335152,-1.898788055,-1.903863788,-1.908539071,-1.912607506,-1.916046557 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Difference|Population weighted,days/yr,0.514616989,0.515222892,0.515475588,0.515475344,0.515549484,0.515563293,0.515760957,0.51606552,0.516420005,0.516708093 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Difference|Population weighted,days/yr,4.953977151,4.930590546,4.908128291,4.890612657,4.877866472,4.868452895,4.860919366,4.854644517,4.848967408,4.84288 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Difference|Population weighted,days/yr,9.3703016,9.366477636,9.377339431,9.402001289,9.434749973,9.478676865,9.520408037,9.555899408,9.582188902,9.591555954 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Difference|Population weighted,days/yr,4.177940459,4.17053884,4.165556199,4.161732603,4.158571111,4.155977781,4.153786245,4.15183,4.149946164,4.147975066 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Difference|Population weighted,days/yr,-0.394463213,-0.406720896,-0.418149544,-0.429120119,-0.439157066,-0.447644287,-0.454575559,-0.460426574,-0.465537571,-0.469908522 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Difference|Population weighted,days/yr,0.935012696,0.981700952,1.025512181,1.066126946,1.102531443,1.133651779,1.158435618,1.180087985,1.198958161,1.212478737 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Difference|Population weighted,days/yr,3.140598324,3.131295123,3.120984378,3.110651251,3.100224125,3.089790041,3.080610258,3.073152375,3.067058846,3.062048502 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Difference|Population weighted,days/yr,3.832682408,3.822900513,3.814406689,3.806708445,3.798797235,3.791352763,3.78453134,3.777759785,3.771338552,3.766105612 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Difference|Population weighted,days/yr,-14.41844414,-14.42954975,-14.43051338,-14.44984426,-14.44495759,-14.44761395,-14.44938262,-14.45111168,-14.4483619,-14.44666648 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Difference|Population weighted,days/yr,1.420245824,1.393804585,1.378737754,1.371215068,1.369072351,1.370522288,1.372141377,1.373476241,1.374128513,1.374645571 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Difference|Population weighted,days/yr,-1.129436637,-0.876337089,-0.653132443,-0.503767309,-0.38127412,-0.278900914,-0.209629456,-0.176949569,-0.144450499,-0.128109669 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Difference|Population weighted,days/yr,-2.083755905,-2.088805889,-2.09276835,-2.095975256,-2.098550721,-2.100174888,-2.100084028,-2.098982568,-2.097435212,-2.095287542 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Difference|Population weighted,days/yr,22.55671654,22.59421517,22.62377867,22.65224733,22.67790315,22.69882937,22.71542283,22.72740632,22.7364958,22.74447289 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Difference|Population weighted,days/yr,6.749409404,6.763076882,6.780483004,6.79722697,6.811773087,6.824509707,6.836340745,6.845586449,6.850827539,6.851060896 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Difference|Population weighted,days/yr,-4.197404345,-4.200400081,-4.203145342,-4.204460263,-4.20561652,-4.206378307,-4.206857234,-4.207474204,-4.207949126,-4.208494527 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Difference|Population weighted,days/yr,-5.940891533,-5.936950956,-5.93215922,-5.927887561,-5.924520616,-5.921018977,-5.917445583,-5.914060085,-5.911060494,-5.908711104 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Difference|Population weighted,days/yr,3.155455855,3.155041476,3.154189537,3.152902066,3.152847586,3.15311627,3.152851226,3.152338152,3.152181814,3.153081033 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Difference|Population weighted,days/yr,-0.618342669,-0.509527275,-0.434571897,-0.383257932,-0.345165765,-0.317199253,-0.295012919,-0.278711161,-0.266422407,-0.260069292 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Difference|Population weighted,days/yr,0.136136703,0.138566775,0.140040591,0.142259763,0.145911281,0.149881919,0.155754067,0.164061005,0.175181339,0.189232474 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Difference|Population weighted,days/yr,0.415451183,0.407646008,0.401968255,0.398525623,0.396082744,0.394769769,0.394622834,0.394674353,0.39509318,0.395723254 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Difference|Population weighted,days/yr,10.12023319,10.11688998,10.11739418,10.12124035,10.12705354,10.13517636,10.14400152,10.15158431,10.15865632,10.16491978 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Difference|Population weighted,days/yr,-5.960205385,-5.949612484,-5.943221197,-5.939349805,-5.937526058,-5.936032196,-5.936066177,-5.936399394,-5.937773402,-5.93971931 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Difference|Population weighted,days/yr,2.135547885,2.155414342,2.16985473,2.180865274,2.187925008,2.19167336,2.194149196,2.195568277,2.196134377,2.195929545 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Difference|Population weighted,days/yr,2.543041508,2.517469133,2.492091483,2.472405202,2.45603287,2.441535034,2.427516115,2.413952908,2.401291731,2.389750327 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Difference|Population weighted,days/yr,0.127246105,0.147894216,0.16050308,0.167632291,0.170141132,0.169275145,0.166259497,0.161544839,0.157382339,0.153441624 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Difference|Population weighted,days/yr,2.802996188,2.888256954,2.907579997,2.916792669,2.922217975,2.925737329,2.928058117,2.929955408,2.931310656,2.932352496 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Difference|Population weighted,days/yr,3.436890768,3.464369827,3.47163697,3.471241068,3.468490067,3.463719507,3.455140215,3.444142312,3.431257996,3.416999675 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Difference|Population weighted,days/yr,5.262254437,5.364216276,5.444584444,5.50396999,5.554703521,5.583688656,5.614418938,5.641240229,5.665036892,5.686430632 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Difference|Population weighted,days/yr,10.70379906,10.69467697,10.68604021,10.67782586,10.67003304,10.66268145,10.65678859,10.65247089,10.64903639,10.64669197 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Difference|Population weighted,days/yr,20.85909181,20.86946006,20.87953255,20.88943477,20.89906394,20.90789408,20.91514568,20.92115089,20.92616577,20.93038602 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Difference|Population weighted,days/yr,-3.966741498,-3.969225942,-3.970141877,-3.970850238,-3.97153852,-3.972021234,-3.972564496,-3.973266748,-3.973898632,-3.974500914 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Difference|Population weighted,days/yr,0.807684671,0.811979198,0.814026072,0.814154295,0.81362231,0.812814925,0.811566582,0.810375021,0.808769292,0.807122465 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Difference|Population weighted,days/yr,3.574758684,3.546841555,3.51631138,3.486712102,3.456797928,3.426500619,3.397869125,3.372103903,3.349120913,3.328630488 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Difference|Population weighted,days/yr,9.023200111,8.988050294,8.961208992,8.934172436,8.909222261,8.887035373,8.867054144,8.849242145,8.834873265,8.823839739 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Difference|Population weighted,days/yr,-4.24818146,-4.236277588,-4.229328213,-4.2261121,-4.225212613,-4.226221736,-4.228248137,-4.231321628,-4.235181481,-4.239130048 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Difference|Population weighted,days/yr,3.658688637,3.626598081,3.605365889,3.590670969,3.581917371,3.572927421,3.564051822,3.555746491,3.548490014,3.543136045 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Difference|Population weighted,days/yr,9.595078932,9.603131702,9.606978569,9.609225952,9.610641089,9.611569164,9.612203095,9.612651119,9.612965193,9.61319547 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Difference|Population weighted,days/yr,14.57163011,14.64431132,14.70431239,14.75188292,14.78842917,14.81637725,14.83768786,14.85454372,14.86798429,14.87937145 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Difference|Population weighted,days/yr,4.213144504,4.185373244,4.156603674,4.126333948,4.090496904,4.056735146,4.027295753,3.99791915,3.973300816,3.954621173 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Difference|Population weighted,days/yr,5.494481282,5.488435618,5.482350864,5.47737031,5.473020411,5.468889066,5.465428044,5.462297258,5.460105224,5.458900888 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Difference|Population weighted,days/yr,0.26638983,0.264782073,0.268097069,0.272027944,0.275598056,0.278547839,0.279081874,0.27724438,0.273941094,0.269671079 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Difference|Population weighted,days/yr,-0.875682941,-0.856629056,-0.85251525,-0.851040109,-0.852108548,-0.853282911,-0.861681626,-0.858270609,-0.86234045,-0.861976393 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Difference|Population weighted,days/yr,3.48317934,3.46145016,3.445930469,3.435421395,3.427946162,3.423689598,3.421324804,3.420505145,3.420993448,3.422062004 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Difference|Population weighted,days/yr,0.770596298,0.811511898,0.833865027,0.846030201,0.850100133,0.848948131,0.846006834,0.841797087,0.83659338,0.830651537 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Difference|Population weighted,days/yr,-4.79788517,-4.792959645,-4.792932368,-4.796099786,-4.801211066,-4.807699255,-4.817246396,-4.827022769,-4.838202384,-4.848913702 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Difference|Population weighted,days/yr,2.814567993,2.810555361,2.808092468,2.806839382,2.806674187,2.807450549,2.808736513,2.810524897,2.812763341,2.815398289 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Difference|Population weighted,days/yr,1.758149571,1.755150457,1.752312632,1.749578361,1.747196637,1.745323507,1.74397455,1.743201379,1.742621248,1.742075303 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Difference|Population weighted,days/yr,3.372727561,3.355436186,3.335311939,3.313203893,3.290825976,3.269112124,3.249118161,3.230245652,3.213831798,3.199768856 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Difference|Population weighted,days/yr,-1.715475021,-1.716662289,-1.717046152,-1.716815716,-1.716176445,-1.714806679,-1.712926005,-1.710923272,-1.708814633,-1.706716608 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Difference|Population weighted,days/yr,4.11278445,4.126657922,4.137723577,4.147923221,4.156453517,4.1652535,4.173194011,4.180357641,4.186943855,4.192763351 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Difference|Population weighted,days/yr,8.215761476,8.264781806,8.294169506,8.314061329,8.327980957,8.335192164,8.334356739,8.325860484,8.314187437,8.302201858 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Difference|Population weighted,days/yr,1.049462969,1.064937283,1.0786166,1.089600011,1.099221192,1.105890678,1.111338494,1.116456297,1.119313842,1.124005701 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Difference|Population weighted,days/yr,3.259034697,3.25921771,3.259610274,3.260107268,3.260627386,3.261134652,3.261618148,3.262069927,3.262471538,3.262817519 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Difference|Population weighted,days/yr,0.608134044,0.587080122,0.570240913,0.558254187,0.549469663,0.543019682,0.537119093,0.531209881,0.525506884,0.520316415 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Difference|Population weighted,days/yr,2.646871344,2.68697032,2.715388578,2.733851052,2.747891111,2.756705114,2.758340817,2.753061168,2.74249131,2.72954721 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Difference|Population weighted,days/yr,4.87097605,4.871820349,4.869660718,4.867668376,4.866813761,4.86532657,4.863973221,4.862891267,4.861390911,4.859887636 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Difference|Population weighted,days/yr,-3.64539659,-3.643105815,-3.641081573,-3.639276282,-3.634966534,-3.630003151,-3.625235771,-3.621022338,-3.618741893,-3.617842525 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Difference|Population weighted,days/yr,9.112073063,9.117017181,9.120382075,9.121919177,9.12364304,9.123829389,9.123652389,9.123597669,9.123430243,9.121545306 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Difference|Population weighted,days/yr,-4.342070336,-4.360977184,-4.377578736,-4.392500053,-4.406082018,-4.418324681,-4.429541402,-4.439837886,-4.449079665,-4.457443752 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Difference|Population weighted,days/yr,6.280890329,6.304219771,6.330769185,6.356696083,6.379781321,6.400228433,6.41829287,6.434198256,6.448165774,6.460436477 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Difference|Population weighted,days/yr,1.23741772,1.229387858,1.221602369,1.214858665,1.209283379,1.204097612,1.199796454,1.196312457,1.193735499,1.191964958 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Difference|Population weighted,days/yr,10.64757786,10.6633487,10.68813602,10.71678629,10.74779893,10.77915705,10.80921942,10.83748348,10.86379561,10.88768137 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Difference|Population weighted,days/yr,2.775850691,2.765876613,2.757874416,2.752083787,2.748328175,2.7450995,2.741521959,2.736740665,2.730176662,2.722613825 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Difference|Population weighted,days/yr,8.186414704,8.200636704,8.216541227,8.23358912,8.250766007,8.26732759,8.282285975,8.295628468,8.307269813,8.317210492 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Difference|Population weighted,days/yr,0.127224591,0.137329595,0.137491001,0.1317796,0.122502833,0.110762081,0.097508215,0.082954681,0.068057849,0.053330187 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Difference|Population weighted,days/yr,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811,1.602339811 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Difference|Population weighted,days/yr,4.764831254,4.759839205,4.756741545,4.754452112,4.752250245,4.750554479,4.749025477,4.747495717,4.746183279,4.745014652 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Difference|Population weighted,days/yr,6.003946992,6.008978718,6.010279318,6.010872782,6.016412493,6.023484055,6.025647214,6.028598473,6.029295547,6.031691634 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Difference|Population weighted,days/yr,5.24161597,5.234336252,5.229002209,5.224864442,5.221663819,5.219045768,5.216816321,5.214897244,5.213169444,5.21160417 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Difference|Population weighted,days/yr,1.407158925,1.422751547,1.434064523,1.442538005,1.448363097,1.452712258,1.456827673,1.460846919,1.464507195,1.467722364 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Difference|Population weighted,days/yr,5.282231198,5.28870912,5.294513603,5.298534425,5.301372183,5.303325275,5.304907128,5.3058402,5.306244276,5.306989607 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Difference|Population weighted,days/yr,-2.957677306,-2.952038565,-2.944148251,-2.932846169,-2.917925837,-2.900225515,-2.880940401,-2.860873994,-2.840715669,-2.820815197 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Difference|Population weighted,days/yr,8.29437156,8.307717424,8.319005381,8.336050801,8.348743099,8.365804464,8.380234241,8.384800381,8.401173712,8.408540933 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Difference|Population weighted,days/yr,3.691016792,3.768675616,3.821297958,3.862050095,3.888946607,3.90934675,3.925775176,3.937708678,3.945457337,3.950312546 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Difference|Population weighted,days/yr,-1.468991123,-1.431507165,-1.391478543,-1.350455856,-1.310668946,-1.273473336,-1.238834573,-1.207898007,-1.179760434,-1.154284287 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Difference|Population weighted,days/yr,29.45855775,29.33048752,29.28375321,29.25536632,29.24653743,29.24590614,29.24516398,29.24483131,29.24456609,29.24434222 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Difference|Population weighted,days/yr,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221,10.7705221 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Difference|Population weighted,days/yr,10.71812759,10.70674697,10.70046521,10.68999627,10.68791256,10.6856575,10.68300256,10.67892826,10.67251924,10.66928152 +Climate Solutions,ssp2_2p5,CAN,cdd|Hazard|Absolute,days/yr,29.70998848,29.70998848,29.70998848,29.70998848,29.70998848,29.70998848,29.70998848,29.70998848,29.70998848,29.70998848 +Climate Solutions,ssp2_2p5,STP,cdd|Hazard|Absolute,days/yr,3.665412113,3.665412113,3.665412113,3.665412113,3.665412113,3.665412113,3.665412113,3.665412113,3.665412113,3.665412113 +Climate Solutions,ssp2_2p5,TKM,cdd|Hazard|Absolute,days/yr,103.1684518,103.1684518,103.1684518,103.1684518,103.1684518,103.1684518,103.1684518,103.1684518,103.1684518,103.1684518 +Climate Solutions,ssp2_2p5,LTU,cdd|Hazard|Absolute,days/yr,15.96161861,15.96161861,15.96161861,15.96161861,15.96161861,15.96161861,15.96161861,15.96161861,15.96161861,15.96161861 +Climate Solutions,ssp2_2p5,KHM,cdd|Hazard|Absolute,days/yr,61.10459746,61.10459746,61.10459746,61.10459746,61.10459746,61.10459746,61.10459746,61.10459746,61.10459746,61.10459746 +Climate Solutions,ssp2_2p5,ETH,cdd|Hazard|Absolute,days/yr,83.13353596,83.13353596,83.13353596,83.13353596,83.13353596,83.13353596,83.13353596,83.13353596,83.13353596,83.13353596 +Climate Solutions,ssp2_2p5,SWZ,cdd|Hazard|Absolute,days/yr,29.00674035,29.00674035,29.00674035,29.00674035,29.00674035,29.00674035,29.00674035,29.00674035,29.00674035,29.00674035 +Climate Solutions,ssp2_2p5,PSE,cdd|Hazard|Absolute,days/yr,38.00920076,38.00920076,38.00920076,38.00920076,38.00920076,38.00920076,38.00920076,38.00920076,38.00920076,38.00920076 +Climate Solutions,ssp2_2p5,ARG,cdd|Hazard|Absolute,days/yr,56.02817288,56.02817288,56.02817288,56.02817288,56.02817288,56.02817288,56.02817288,56.02817288,56.02817288,56.02817288 +Climate Solutions,ssp2_2p5,BOL,cdd|Hazard|Absolute,days/yr,62.33173026,62.33173026,62.33173026,62.33173026,62.33173026,62.33173026,62.33173026,62.33173026,62.33173026,62.33173026 +Climate Solutions,ssp2_2p5,BHS,cdd|Hazard|Absolute,days/yr,3.249746154,3.249746154,3.249746154,3.249746154,3.249746154,3.249746154,3.249746154,3.249746154,3.249746154,3.249746154 +Climate Solutions,ssp2_2p5,BFA,cdd|Hazard|Absolute,days/yr,120.9414534,120.9414534,120.9414534,120.9414534,120.9414534,120.9414534,120.9414534,120.9414534,120.9414534,120.9414534 +Climate Solutions,ssp2_2p5,GHA,cdd|Hazard|Absolute,days/yr,56.55288744,56.55288744,56.55288744,56.55288744,56.55288744,56.55288744,56.55288744,56.55288744,56.55288744,56.55288744 +Climate Solutions,ssp2_2p5,SAU,cdd|Hazard|Absolute,days/yr,198.8536737,198.8536737,198.8536737,198.8536737,198.8536737,198.8536737,198.8536737,198.8536737,198.8536737,198.8536737 +Climate Solutions,ssp2_2p5,CPV,cdd|Hazard|Absolute,days/yr,10.11341215,10.11341215,10.11341215,10.11341215,10.11341215,10.11341215,10.11341215,10.11341215,10.11341215,10.11341215 +Climate Solutions,ssp2_2p5,SVN,cdd|Hazard|Absolute,days/yr,10.23588099,10.23588099,10.23588099,10.23588099,10.23588099,10.23588099,10.23588099,10.23588099,10.23588099,10.23588099 +Climate Solutions,ssp2_2p5,GTM,cdd|Hazard|Absolute,days/yr,29.76233281,29.76233281,29.76233281,29.76233281,29.76233281,29.76233281,29.76233281,29.76233281,29.76233281,29.76233281 +Climate Solutions,ssp2_2p5,BIH,cdd|Hazard|Absolute,days/yr,16.76633841,16.76633841,16.76633841,16.76633841,16.76633841,16.76633841,16.76633841,16.76633841,16.76633841,16.76633841 +Climate Solutions,ssp2_2p5,GIN,cdd|Hazard|Absolute,days/yr,92.99371511,92.99371511,92.99371511,92.99371511,92.99371511,92.99371511,92.99371511,92.99371511,92.99371511,92.99371511 +Climate Solutions,ssp2_2p5,JOR,cdd|Hazard|Absolute,days/yr,132.1695889,132.1695889,132.1695889,132.1695889,132.1695889,132.1695889,132.1695889,132.1695889,132.1695889,132.1695889 +Climate Solutions,ssp2_2p5,COG,cdd|Hazard|Absolute,days/yr,37.41265658,37.41265658,37.41265658,37.41265658,37.41265658,37.41265658,37.41265658,37.41265658,37.41265658,37.41265658 +Climate Solutions,ssp2_2p5,ESP,cdd|Hazard|Absolute,days/yr,43.94302597,43.94302597,43.94302597,43.94302597,43.94302597,43.94302597,43.94302597,43.94302597,43.94302597,43.94302597 +Climate Solutions,ssp2_2p5,LBR,cdd|Hazard|Absolute,days/yr,38.72445867,38.72445867,38.72445867,38.72445867,38.72445867,38.72445867,38.72445867,38.72445867,38.72445867,38.72445867 +Climate Solutions,ssp2_2p5,NLD,cdd|Hazard|Absolute,days/yr,12.57926186,12.57926186,12.57926186,12.57926186,12.57926186,12.57926186,12.57926186,12.57926186,12.57926186,12.57926186 +Climate Solutions,ssp2_2p5,JAM,cdd|Hazard|Absolute,days/yr,11.25979835,11.25979835,11.25979835,11.25979835,11.25979835,11.25979835,11.25979835,11.25979835,11.25979835,11.25979835 +Climate Solutions,ssp2_2p5,OMN,cdd|Hazard|Absolute,days/yr,179.8932781,179.8932781,179.8932781,179.8932781,179.8932781,179.8932781,179.8932781,179.8932781,179.8932781,179.8932781 +Climate Solutions,ssp2_2p5,TZA,cdd|Hazard|Absolute,days/yr,83.46938396,83.46938396,83.46938396,83.46938396,83.46938396,83.46938396,83.46938396,83.46938396,83.46938396,83.46938396 +Climate Solutions,ssp2_2p5,ALB,cdd|Hazard|Absolute,days/yr,20.23897831,20.23897831,20.23897831,20.23897831,20.23897831,20.23897831,20.23897831,20.23897831,20.23897831,20.23897831 +Climate Solutions,ssp2_2p5,GAB,cdd|Hazard|Absolute,days/yr,38.30659793,38.30659793,38.30659793,38.30659793,38.30659793,38.30659793,38.30659793,38.30659793,38.30659793,38.30659793 +Climate Solutions,ssp2_2p5,NZL,cdd|Hazard|Absolute,days/yr,12.0791505,12.0791505,12.0791505,12.0791505,12.0791505,12.0791505,12.0791505,12.0791505,12.0791505,12.0791505 +Climate Solutions,ssp2_2p5,YEM,cdd|Hazard|Absolute,days/yr,151.4968323,151.4968323,151.4968323,151.4968323,151.4968323,151.4968323,151.4968323,151.4968323,151.4968323,151.4968323 +Climate Solutions,ssp2_2p5,PAK,cdd|Hazard|Absolute,days/yr,110.4093256,110.4093256,110.4093256,110.4093256,110.4093256,110.4093256,110.4093256,110.4093256,110.4093256,110.4093256 +Climate Solutions,ssp2_2p5,WSM,cdd|Hazard|Absolute,days/yr,2.691310513,2.691310513,2.691310513,2.691310513,2.691310513,2.691310513,2.691310513,2.691310513,2.691310513,2.691310513 +Climate Solutions,ssp2_2p5,SVK,cdd|Hazard|Absolute,days/yr,13.75898071,13.75898071,13.75898071,13.75898071,13.75898071,13.75898071,13.75898071,13.75898071,13.75898071,13.75898071 +Climate Solutions,ssp2_2p5,ARE,cdd|Hazard|Absolute,days/yr,147.6006489,147.6006489,147.6006489,147.6006489,147.6006489,147.6006489,147.6006489,147.6006489,147.6006489,147.6006489 +Climate Solutions,ssp2_2p5,GUM,cdd|Hazard|Absolute,days/yr,2.370766101,2.370766101,2.370766101,2.370766101,2.370766101,2.370766101,2.370766101,2.370766101,2.370766101,2.370766101 +Climate Solutions,ssp2_2p5,IND,cdd|Hazard|Absolute,days/yr,114.3438388,114.3438388,114.3438388,114.3438388,114.3438388,114.3438388,114.3438388,114.3438388,114.3438388,114.3438388 +Climate Solutions,ssp2_2p5,AZE,cdd|Hazard|Absolute,days/yr,31.60977934,31.60977934,31.60977934,31.60977934,31.60977934,31.60977934,31.60977934,31.60977934,31.60977934,31.60977934 +Climate Solutions,ssp2_2p5,MDG,cdd|Hazard|Absolute,days/yr,56.63383453,56.63383453,56.63383453,56.63383453,56.63383453,56.63383453,56.63383453,56.63383453,56.63383453,56.63383453 +Climate Solutions,ssp2_2p5,LSO,cdd|Hazard|Absolute,days/yr,34.19763317,34.19763317,34.19763317,34.19763317,34.19763317,34.19763317,34.19763317,34.19763317,34.19763317,34.19763317 +Climate Solutions,ssp2_2p5,VCT,cdd|Hazard|Absolute,days/yr,4.13540339,4.13540339,4.13540339,4.13540339,4.13540339,4.13540339,4.13540339,4.13540339,4.13540339,4.13540339 +Climate Solutions,ssp2_2p5,KEN,cdd|Hazard|Absolute,days/yr,61.75111731,61.75111731,61.75111731,61.75111731,61.75111731,61.75111731,61.75111731,61.75111731,61.75111731,61.75111731 +Climate Solutions,ssp2_2p5,KOR,cdd|Hazard|Absolute,days/yr,22.28048345,22.28048345,22.28048345,22.28048345,22.28048345,22.28048345,22.28048345,22.28048345,22.28048345,22.28048345 +Climate Solutions,ssp2_2p5,BLR,cdd|Hazard|Absolute,days/yr,18.89750633,18.89750633,18.89750633,18.89750633,18.89750633,18.89750633,18.89750633,18.89750633,18.89750633,18.89750633 +Climate Solutions,ssp2_2p5,TJK,cdd|Hazard|Absolute,days/yr,51.04167769,51.04167769,51.04167769,51.04167769,51.04167769,51.04167769,51.04167769,51.04167769,51.04167769,51.04167769 +Climate Solutions,ssp2_2p5,TUR,cdd|Hazard|Absolute,days/yr,55.63506097,55.63506097,55.63506097,55.63506097,55.63506097,55.63506097,55.63506097,55.63506097,55.63506097,55.63506097 +Climate Solutions,ssp2_2p5,AFG,cdd|Hazard|Absolute,days/yr,118.8228629,118.8228629,118.8228629,118.8228629,118.8228629,118.8228629,118.8228629,118.8228629,118.8228629,118.8228629 +Climate Solutions,ssp2_2p5,BGD,cdd|Hazard|Absolute,days/yr,65.35414068,65.35414068,65.35414068,65.35414068,65.35414068,65.35414068,65.35414068,65.35414068,65.35414068,65.35414068 +Climate Solutions,ssp2_2p5,MRT,cdd|Hazard|Absolute,days/yr,213.5955223,213.5955223,213.5955223,213.5955223,213.5955223,213.5955223,213.5955223,213.5955223,213.5955223,213.5955223 +Climate Solutions,ssp2_2p5,SLB,cdd|Hazard|Absolute,days/yr,3.969510148,3.969510148,3.969510148,3.969510148,3.969510148,3.969510148,3.969510148,3.969510148,3.969510148,3.969510148 +Climate Solutions,ssp2_2p5,LCA,cdd|Hazard|Absolute,days/yr,1.263655886,1.263655886,1.263655886,1.263655886,1.263655886,1.263655886,1.263655886,1.263655886,1.263655886,1.263655886 +Climate Solutions,ssp2_2p5,CYP,cdd|Hazard|Absolute,days/yr,40.28534113,40.28534113,40.28534113,40.28534113,40.28534113,40.28534113,40.28534113,40.28534113,40.28534113,40.28534113 +Climate Solutions,ssp2_2p5,PYF,cdd|Hazard|Absolute,days/yr,3.074069878,3.074069878,3.074069878,3.074069878,3.074069878,3.074069878,3.074069878,3.074069878,3.074069878,3.074069878 +Climate Solutions,ssp2_2p5,FRA,cdd|Hazard|Absolute,days/yr,21.89965764,21.89965764,21.89965764,21.89965764,21.89965764,21.89965764,21.89965764,21.89965764,21.89965764,21.89965764 +Climate Solutions,ssp2_2p5,NAM,cdd|Hazard|Absolute,days/yr,156.4168425,156.4168425,156.4168425,156.4168425,156.4168425,156.4168425,156.4168425,156.4168425,156.4168425,156.4168425 +Climate Solutions,ssp2_2p5,SOM,cdd|Hazard|Absolute,days/yr,96.34310909,96.34310909,96.34310909,96.34310909,96.34310909,96.34310909,96.34310909,96.34310909,96.34310909,96.34310909 +Climate Solutions,ssp2_2p5,PER,cdd|Hazard|Absolute,days/yr,51.91718152,51.91718152,51.91718152,51.91718152,51.91718152,51.91718152,51.91718152,51.91718152,51.91718152,51.91718152 +Climate Solutions,ssp2_2p5,LAO,cdd|Hazard|Absolute,days/yr,41.94410067,41.94410067,41.94410067,41.94410067,41.94410067,41.94410067,41.94410067,41.94410067,41.94410067,41.94410067 +Climate Solutions,ssp2_2p5,SYC,cdd|Hazard|Absolute,days/yr,1.171630798,1.171630798,1.171630798,1.171630798,1.171630798,1.171630798,1.171630798,1.171630798,1.171630798,1.171630798 +Climate Solutions,ssp2_2p5,NOR,cdd|Hazard|Absolute,days/yr,13.84916363,13.84916363,13.84916363,13.84916363,13.84916363,13.84916363,13.84916363,13.84916363,13.84916363,13.84916363 +Climate Solutions,ssp2_2p5,CIV,cdd|Hazard|Absolute,days/yr,60.95018381,60.95018381,60.95018381,60.95018381,60.95018381,60.95018381,60.95018381,60.95018381,60.95018381,60.95018381 +Climate Solutions,ssp2_2p5,BEN,cdd|Hazard|Absolute,days/yr,83.91809106,83.91809106,83.91809106,83.91809106,83.91809106,83.91809106,83.91809106,83.91809106,83.91809106,83.91809106 +Climate Solutions,ssp2_2p5,ESH,cdd|Hazard|Absolute,days/yr,170.6149411,170.6149411,170.6149411,170.6149411,170.6149411,170.6149411,170.6149411,170.6149411,170.6149411,170.6149411 +Climate Solutions,ssp2_2p5,CUB,cdd|Hazard|Absolute,days/yr,18.58099419,18.58099419,18.58099419,18.58099419,18.58099419,18.58099419,18.58099419,18.58099419,18.58099419,18.58099419 +Climate Solutions,ssp2_2p5,CMR,cdd|Hazard|Absolute,days/yr,70.77264198,70.77264198,70.77264198,70.77264198,70.77264198,70.77264198,70.77264198,70.77264198,70.77264198,70.77264198 +Climate Solutions,ssp2_2p5,MNE,cdd|Hazard|Absolute,days/yr,11.88154297,11.88154297,11.88154297,11.88154297,11.88154297,11.88154297,11.88154297,11.88154297,11.88154297,11.88154297 +Climate Solutions,ssp2_2p5,TGO,cdd|Hazard|Absolute,days/yr,53.15468061,53.15468061,53.15468061,53.15468061,53.15468061,53.15468061,53.15468061,53.15468061,53.15468061,53.15468061 +Climate Solutions,ssp2_2p5,CHN,cdd|Hazard|Absolute,days/yr,87.93205221,87.93205221,87.93205221,87.93205221,87.93205221,87.93205221,87.93205221,87.93205221,87.93205221,87.93205221 +Climate Solutions,ssp2_2p5,ARM,cdd|Hazard|Absolute,days/yr,19.5190902,19.5190902,19.5190902,19.5190902,19.5190902,19.5190902,19.5190902,19.5190902,19.5190902,19.5190902 +Climate Solutions,ssp2_2p5,ATG,cdd|Hazard|Absolute,days/yr,1.230268818,1.230268818,1.230268818,1.230268818,1.230268818,1.230268818,1.230268818,1.230268818,1.230268818,1.230268818 +Climate Solutions,ssp2_2p5,DOM,cdd|Hazard|Absolute,days/yr,16.57525819,16.57525819,16.57525819,16.57525819,16.57525819,16.57525819,16.57525819,16.57525819,16.57525819,16.57525819 +Climate Solutions,ssp2_2p5,UKR,cdd|Hazard|Absolute,days/yr,25.53862052,25.53862052,25.53862052,25.53862052,25.53862052,25.53862052,25.53862052,25.53862052,25.53862052,25.53862052 +Climate Solutions,ssp2_2p5,BHR,cdd|Hazard|Absolute,days/yr,16.19365565,16.19365565,16.19365565,16.19365565,16.19365565,16.19365565,16.19365565,16.19365565,16.19365565,16.19365565 +Climate Solutions,ssp2_2p5,TON,cdd|Hazard|Absolute,days/yr,0.583259396,0.583259396,0.583259396,0.583259396,0.583259396,0.583259396,0.583259396,0.583259396,0.583259396,0.583259396 +Climate Solutions,ssp2_2p5,FIN,cdd|Hazard|Absolute,days/yr,18.34127039,18.34127039,18.34127039,18.34127039,18.34127039,18.34127039,18.34127039,18.34127039,18.34127039,18.34127039 +Climate Solutions,ssp2_2p5,LBY,cdd|Hazard|Absolute,days/yr,260.8436391,260.8436391,260.8436391,260.8436391,260.8436391,260.8436391,260.8436391,260.8436391,260.8436391,260.8436391 +Climate Solutions,ssp2_2p5,IDN,cdd|Hazard|Absolute,days/yr,16.44238028,16.44238028,16.44238028,16.44238028,16.44238028,16.44238028,16.44238028,16.44238028,16.44238028,16.44238028 +Climate Solutions,ssp2_2p5,CAF,cdd|Hazard|Absolute,days/yr,78.81599363,78.81599363,78.81599363,78.81599363,78.81599363,78.81599363,78.81599363,78.81599363,78.81599363,78.81599363 +Climate Solutions,ssp2_2p5,USA,cdd|Hazard|Absolute,days/yr,36.52806273,36.52806273,36.52806273,36.52806273,36.52806273,36.52806273,36.52806273,36.52806273,36.52806273,36.52806273 +Climate Solutions,ssp2_2p5,SWE,cdd|Hazard|Absolute,days/yr,19.00021029,19.00021029,19.00021029,19.00021029,19.00021029,19.00021029,19.00021029,19.00021029,19.00021029,19.00021029 +Climate Solutions,ssp2_2p5,VNM,cdd|Hazard|Absolute,days/yr,33.26989791,33.26989791,33.26989791,33.26989791,33.26989791,33.26989791,33.26989791,33.26989791,33.26989791,33.26989791 +Climate Solutions,ssp2_2p5,MLI,cdd|Hazard|Absolute,days/yr,199.2778845,199.2778845,199.2778845,199.2778845,199.2778845,199.2778845,199.2778845,199.2778845,199.2778845,199.2778845 +Climate Solutions,ssp2_2p5,RUS,cdd|Hazard|Absolute,days/yr,31.18060633,31.18060633,31.18060633,31.18060633,31.18060633,31.18060633,31.18060633,31.18060633,31.18060633,31.18060633 +Climate Solutions,ssp2_2p5,BGR,cdd|Hazard|Absolute,days/yr,25.92136776,25.92136776,25.92136776,25.92136776,25.92136776,25.92136776,25.92136776,25.92136776,25.92136776,25.92136776 +Climate Solutions,ssp2_2p5,MUS,cdd|Hazard|Absolute,days/yr,5.351354742,5.351354742,5.351354742,5.351354742,5.351354742,5.351354742,5.351354742,5.351354742,5.351354742,5.351354742 +Climate Solutions,ssp2_2p5,ROU,cdd|Hazard|Absolute,days/yr,25.37728052,25.37728052,25.37728052,25.37728052,25.37728052,25.37728052,25.37728052,25.37728052,25.37728052,25.37728052 +Climate Solutions,ssp2_2p5,AGO,cdd|Hazard|Absolute,days/yr,123.3685855,123.3685855,123.3685855,123.3685855,123.3685855,123.3685855,123.3685855,123.3685855,123.3685855,123.3685855 +Climate Solutions,ssp2_2p5,PRT,cdd|Hazard|Absolute,days/yr,40.3159529,40.3159529,40.3159529,40.3159529,40.3159529,40.3159529,40.3159529,40.3159529,40.3159529,40.3159529 +Climate Solutions,ssp2_2p5,ZAF,cdd|Hazard|Absolute,days/yr,76.49252917,76.49252917,76.49252917,76.49252917,76.49252917,76.49252917,76.49252917,76.49252917,76.49252917,76.49252917 +Climate Solutions,ssp2_2p5,FJI,cdd|Hazard|Absolute,days/yr,7.586992315,7.586992315,7.586992315,7.586992315,7.586992315,7.586992315,7.586992315,7.586992315,7.586992315,7.586992315 +Climate Solutions,ssp2_2p5,BRN,cdd|Hazard|Absolute,days/yr,4.960103695,4.960103695,4.960103695,4.960103695,4.960103695,4.960103695,4.960103695,4.960103695,4.960103695,4.960103695 +Climate Solutions,ssp2_2p5,MYS,cdd|Hazard|Absolute,days/yr,12.31109567,12.31109567,12.31109567,12.31109567,12.31109567,12.31109567,12.31109567,12.31109567,12.31109567,12.31109567 +Climate Solutions,ssp2_2p5,AUT,cdd|Hazard|Absolute,days/yr,12.87981399,12.87981399,12.87981399,12.87981399,12.87981399,12.87981399,12.87981399,12.87981399,12.87981399,12.87981399 +Climate Solutions,ssp2_2p5,MOZ,cdd|Hazard|Absolute,days/yr,62.65303345,62.65303345,62.65303345,62.65303345,62.65303345,62.65303345,62.65303345,62.65303345,62.65303345,62.65303345 +Climate Solutions,ssp2_2p5,UGA,cdd|Hazard|Absolute,days/yr,28.05743907,28.05743907,28.05743907,28.05743907,28.05743907,28.05743907,28.05743907,28.05743907,28.05743907,28.05743907 +Climate Solutions,ssp2_2p5,KGZ,cdd|Hazard|Absolute,days/yr,32.01125673,32.01125673,32.01125673,32.01125673,32.01125673,32.01125673,32.01125673,32.01125673,32.01125673,32.01125673 +Climate Solutions,ssp2_2p5,HUN,cdd|Hazard|Absolute,days/yr,20.07354173,20.07354173,20.07354173,20.07354173,20.07354173,20.07354173,20.07354173,20.07354173,20.07354173,20.07354173 +Climate Solutions,ssp2_2p5,NER,cdd|Hazard|Absolute,days/yr,237.1994888,237.1994888,237.1994888,237.1994888,237.1994888,237.1994888,237.1994888,237.1994888,237.1994888,237.1994888 +Climate Solutions,ssp2_2p5,BRA,cdd|Hazard|Absolute,days/yr,52.94603919,52.94603919,52.94603919,52.94603919,52.94603919,52.94603919,52.94603919,52.94603919,52.94603919,52.94603919 +Climate Solutions,ssp2_2p5,KWT,cdd|Hazard|Absolute,days/yr,93.64638823,93.64638823,93.64638823,93.64638823,93.64638823,93.64638823,93.64638823,93.64638823,93.64638823,93.64638823 +Climate Solutions,ssp2_2p5,PAN,cdd|Hazard|Absolute,days/yr,25.85515833,25.85515833,25.85515833,25.85515833,25.85515833,25.85515833,25.85515833,25.85515833,25.85515833,25.85515833 +Climate Solutions,ssp2_2p5,GUY,cdd|Hazard|Absolute,days/yr,21.05934151,21.05934151,21.05934151,21.05934151,21.05934151,21.05934151,21.05934151,21.05934151,21.05934151,21.05934151 +Climate Solutions,ssp2_2p5,CRI,cdd|Hazard|Absolute,days/yr,24.54958809,24.54958809,24.54958809,24.54958809,24.54958809,24.54958809,24.54958809,24.54958809,24.54958809,24.54958809 +Climate Solutions,ssp2_2p5,LUX,cdd|Hazard|Absolute,days/yr,4.236191334,4.236191334,4.236191334,4.236191334,4.236191334,4.236191334,4.236191334,4.236191334,4.236191334,4.236191334 +Climate Solutions,ssp2_2p5,IRL,cdd|Hazard|Absolute,days/yr,12.82609347,12.82609347,12.82609347,12.82609347,12.82609347,12.82609347,12.82609347,12.82609347,12.82609347,12.82609347 +Climate Solutions,ssp2_2p5,NGA,cdd|Hazard|Absolute,days/yr,126.1724157,126.1724157,126.1724157,126.1724157,126.1724157,126.1724157,126.1724157,126.1724157,126.1724157,126.1724157 +Climate Solutions,ssp2_2p5,ECU,cdd|Hazard|Absolute,days/yr,20.26472219,20.26472219,20.26472219,20.26472219,20.26472219,20.26472219,20.26472219,20.26472219,20.26472219,20.26472219 +Climate Solutions,ssp2_2p5,CZE,cdd|Hazard|Absolute,days/yr,14.70619847,14.70619847,14.70619847,14.70619847,14.70619847,14.70619847,14.70619847,14.70619847,14.70619847,14.70619847 +Climate Solutions,ssp2_2p5,AUS,cdd|Hazard|Absolute,days/yr,94.88724391,94.88724391,94.88724391,94.88724391,94.88724391,94.88724391,94.88724391,94.88724391,94.88724391,94.88724391 +Climate Solutions,ssp2_2p5,IRN,cdd|Hazard|Absolute,days/yr,136.2551767,136.2551767,136.2551767,136.2551767,136.2551767,136.2551767,136.2551767,136.2551767,136.2551767,136.2551767 +Climate Solutions,ssp2_2p5,DZA,cdd|Hazard|Absolute,days/yr,201.3122056,201.3122056,201.3122056,201.3122056,201.3122056,201.3122056,201.3122056,201.3122056,201.3122056,201.3122056 +Climate Solutions,ssp2_2p5,SLV,cdd|Hazard|Absolute,days/yr,52.88767173,52.88767173,52.88767173,52.88767173,52.88767173,52.88767173,52.88767173,52.88767173,52.88767173,52.88767173 +Climate Solutions,ssp2_2p5,CHL,cdd|Hazard|Absolute,days/yr,88.50932107,88.50932107,88.50932107,88.50932107,88.50932107,88.50932107,88.50932107,88.50932107,88.50932107,88.50932107 +Climate Solutions,ssp2_2p5,PRI,cdd|Hazard|Absolute,days/yr,5.472661188,5.472661188,5.472661188,5.472661188,5.472661188,5.472661188,5.472661188,5.472661188,5.472661188,5.472661188 +Climate Solutions,ssp2_2p5,BEL,cdd|Hazard|Absolute,days/yr,12.97216661,12.97216661,12.97216661,12.97216661,12.97216661,12.97216661,12.97216661,12.97216661,12.97216661,12.97216661 +Climate Solutions,ssp2_2p5,THA,cdd|Hazard|Absolute,days/yr,64.47994862,64.47994862,64.47994862,64.47994862,64.47994862,64.47994862,64.47994862,64.47994862,64.47994862,64.47994862 +Climate Solutions,ssp2_2p5,HTI,cdd|Hazard|Absolute,days/yr,14.07388069,14.07388069,14.07388069,14.07388069,14.07388069,14.07388069,14.07388069,14.07388069,14.07388069,14.07388069 +Climate Solutions,ssp2_2p5,IRQ,cdd|Hazard|Absolute,days/yr,141.2593645,141.2593645,141.2593645,141.2593645,141.2593645,141.2593645,141.2593645,141.2593645,141.2593645,141.2593645 +Climate Solutions,ssp2_2p5,SLE,cdd|Hazard|Absolute,days/yr,55.20444381,55.20444381,55.20444381,55.20444381,55.20444381,55.20444381,55.20444381,55.20444381,55.20444381,55.20444381 +Climate Solutions,ssp2_2p5,GEO,cdd|Hazard|Absolute,days/yr,16.4770751,16.4770751,16.4770751,16.4770751,16.4770751,16.4770751,16.4770751,16.4770751,16.4770751,16.4770751 +Climate Solutions,ssp2_2p5,HKG,cdd|Hazard|Absolute,days/yr,5.057957034,5.057957034,5.057957034,5.057957034,5.057957034,5.057957034,5.057957034,5.057957034,5.057957034,5.057957034 +Climate Solutions,ssp2_2p5,DNK,cdd|Hazard|Absolute,days/yr,11.59900734,11.59900734,11.59900734,11.59900734,11.59900734,11.59900734,11.59900734,11.59900734,11.59900734,11.59900734 +Climate Solutions,ssp2_2p5,POL,cdd|Hazard|Absolute,days/yr,19.51653601,19.51653601,19.51653601,19.51653601,19.51653601,19.51653601,19.51653601,19.51653601,19.51653601,19.51653601 +Climate Solutions,ssp2_2p5,MDA,cdd|Hazard|Absolute,days/yr,19.59420184,19.59420184,19.59420184,19.59420184,19.59420184,19.59420184,19.59420184,19.59420184,19.59420184,19.59420184 +Climate Solutions,ssp2_2p5,MAR,cdd|Hazard|Absolute,days/yr,96.93040621,96.93040621,96.93040621,96.93040621,96.93040621,96.93040621,96.93040621,96.93040621,96.93040621,96.93040621 +Climate Solutions,ssp2_2p5,HRV,cdd|Hazard|Absolute,days/yr,12.98942831,12.98942831,12.98942831,12.98942831,12.98942831,12.98942831,12.98942831,12.98942831,12.98942831,12.98942831 +Climate Solutions,ssp2_2p5,MNG,cdd|Hazard|Absolute,days/yr,86.74417667,86.74417667,86.74417667,86.74417667,86.74417667,86.74417667,86.74417667,86.74417667,86.74417667,86.74417667 +Climate Solutions,ssp2_2p5,GNB,cdd|Hazard|Absolute,days/yr,91.67100958,91.67100958,91.67100958,91.67100958,91.67100958,91.67100958,91.67100958,91.67100958,91.67100958,91.67100958 +Climate Solutions,ssp2_2p5,KIR,cdd|Hazard|Absolute,days/yr,0.619600901,0.619600901,0.619600901,0.619600901,0.619600901,0.619600901,0.619600901,0.619600901,0.619600901,0.619600901 +Climate Solutions,ssp2_2p5,CHE,cdd|Hazard|Absolute,days/yr,10.34769378,10.34769378,10.34769378,10.34769378,10.34769378,10.34769378,10.34769378,10.34769378,10.34769378,10.34769378 +Climate Solutions,ssp2_2p5,GRD,cdd|Hazard|Absolute,days/yr,2.674838816,2.674838816,2.674838816,2.674838816,2.674838816,2.674838816,2.674838816,2.674838816,2.674838816,2.674838816 +Climate Solutions,ssp2_2p5,BLZ,cdd|Hazard|Absolute,days/yr,14.21698874,14.21698874,14.21698874,14.21698874,14.21698874,14.21698874,14.21698874,14.21698874,14.21698874,14.21698874 +Climate Solutions,ssp2_2p5,TCD,cdd|Hazard|Absolute,days/yr,227.0664261,227.0664261,227.0664261,227.0664261,227.0664261,227.0664261,227.0664261,227.0664261,227.0664261,227.0664261 +Climate Solutions,ssp2_2p5,EST,cdd|Hazard|Absolute,days/yr,12.8554285,12.8554285,12.8554285,12.8554285,12.8554285,12.8554285,12.8554285,12.8554285,12.8554285,12.8554285 +Climate Solutions,ssp2_2p5,URY,cdd|Hazard|Absolute,days/yr,20.24788913,20.24788913,20.24788913,20.24788913,20.24788913,20.24788913,20.24788913,20.24788913,20.24788913,20.24788913 +Climate Solutions,ssp2_2p5,GNQ,cdd|Hazard|Absolute,days/yr,12.64410284,12.64410284,12.64410284,12.64410284,12.64410284,12.64410284,12.64410284,12.64410284,12.64410284,12.64410284 +Climate Solutions,ssp2_2p5,LBN,cdd|Hazard|Absolute,days/yr,52.92947852,52.92947852,52.92947852,52.92947852,52.92947852,52.92947852,52.92947852,52.92947852,52.92947852,52.92947852 +Climate Solutions,ssp2_2p5,UZB,cdd|Hazard|Absolute,days/yr,83.91846439,83.91846439,83.91846439,83.91846439,83.91846439,83.91846439,83.91846439,83.91846439,83.91846439,83.91846439 +Climate Solutions,ssp2_2p5,TUN,cdd|Hazard|Absolute,days/yr,79.74664337,79.74664337,79.74664337,79.74664337,79.74664337,79.74664337,79.74664337,79.74664337,79.74664337,79.74664337 +Climate Solutions,ssp2_2p5,DJI,cdd|Hazard|Absolute,days/yr,53.66960077,53.66960077,53.66960077,53.66960077,53.66960077,53.66960077,53.66960077,53.66960077,53.66960077,53.66960077 +Climate Solutions,ssp2_2p5,RWA,cdd|Hazard|Absolute,days/yr,23.44971185,23.44971185,23.44971185,23.44971185,23.44971185,23.44971185,23.44971185,23.44971185,23.44971185,23.44971185 +Climate Solutions,ssp2_2p5,TLS,cdd|Hazard|Absolute,days/yr,23.56498302,23.56498302,23.56498302,23.56498302,23.56498302,23.56498302,23.56498302,23.56498302,23.56498302,23.56498302 +Climate Solutions,ssp2_2p5,COL,cdd|Hazard|Absolute,days/yr,28.47628355,28.47628355,28.47628355,28.47628355,28.47628355,28.47628355,28.47628355,28.47628355,28.47628355,28.47628355 +Climate Solutions,ssp2_2p5,REU,cdd|Hazard|Absolute,days/yr,4.005772841,4.005772841,4.005772841,4.005772841,4.005772841,4.005772841,4.005772841,4.005772841,4.005772841,4.005772841 +Climate Solutions,ssp2_2p5,BDI,cdd|Hazard|Absolute,days/yr,31.44997447,31.44997447,31.44997447,31.44997447,31.44997447,31.44997447,31.44997447,31.44997447,31.44997447,31.44997447 +Climate Solutions,ssp2_2p5,TWN,cdd|Hazard|Absolute,days/yr,15.5418402,15.5418402,15.5418402,15.5418402,15.5418402,15.5418402,15.5418402,15.5418402,15.5418402,15.5418402 +Climate Solutions,ssp2_2p5,NIC,cdd|Hazard|Absolute,days/yr,35.17271048,35.17271048,35.17271048,35.17271048,35.17271048,35.17271048,35.17271048,35.17271048,35.17271048,35.17271048 +Climate Solutions,ssp2_2p5,BRB,cdd|Hazard|Absolute,days/yr,3.449852172,3.449852172,3.449852172,3.449852172,3.449852172,3.449852172,3.449852172,3.449852172,3.449852172,3.449852172 +Climate Solutions,ssp2_2p5,QAT,cdd|Hazard|Absolute,days/yr,89.06995063,89.06995063,89.06995063,89.06995063,89.06995063,89.06995063,89.06995063,89.06995063,89.06995063,89.06995063 +Climate Solutions,ssp2_2p5,COD,cdd|Hazard|Absolute,days/yr,56.02857645,56.02857645,56.02857645,56.02857645,56.02857645,56.02857645,56.02857645,56.02857645,56.02857645,56.02857645 +Climate Solutions,ssp2_2p5,ITA,cdd|Hazard|Absolute,days/yr,26.48829905,26.48829905,26.48829905,26.48829905,26.48829905,26.48829905,26.48829905,26.48829905,26.48829905,26.48829905 +Climate Solutions,ssp2_2p5,BTN,cdd|Hazard|Absolute,days/yr,52.59040344,52.59040344,52.59040344,52.59040344,52.59040344,52.59040344,52.59040344,52.59040344,52.59040344,52.59040344 +Climate Solutions,ssp2_2p5,SDN,cdd|Hazard|Absolute,days/yr,233.8108782,233.8108782,233.8108782,233.8108782,233.8108782,233.8108782,233.8108782,233.8108782,233.8108782,233.8108782 +Climate Solutions,ssp2_2p5,NPL,cdd|Hazard|Absolute,days/yr,63.55548512,63.55548512,63.55548512,63.55548512,63.55548512,63.55548512,63.55548512,63.55548512,63.55548512,63.55548512 +Climate Solutions,ssp2_2p5,MLT,cdd|Hazard|Absolute,days/yr,4.715456884,4.715456884,4.715456884,4.715456884,4.715456884,4.715456884,4.715456884,4.715456884,4.715456884,4.715456884 +Climate Solutions,ssp2_2p5,MDV,cdd|Hazard|Absolute,days/yr,0.487311817,0.487311817,0.487311817,0.487311817,0.487311817,0.487311817,0.487311817,0.487311817,0.487311817,0.487311817 +Climate Solutions,ssp2_2p5,SUR,cdd|Hazard|Absolute,days/yr,20.75379657,20.75379657,20.75379657,20.75379657,20.75379657,20.75379657,20.75379657,20.75379657,20.75379657,20.75379657 +Climate Solutions,ssp2_2p5,VEN,cdd|Hazard|Absolute,days/yr,48.30553062,48.30553062,48.30553062,48.30553062,48.30553062,48.30553062,48.30553062,48.30553062,48.30553062,48.30553062 +Climate Solutions,ssp2_2p5,ISR,cdd|Hazard|Absolute,days/yr,71.52664077,71.52664077,71.52664077,71.52664077,71.52664077,71.52664077,71.52664077,71.52664077,71.52664077,71.52664077 +Climate Solutions,ssp2_2p5,ISL,cdd|Hazard|Absolute,days/yr,13.30696896,13.30696896,13.30696896,13.30696896,13.30696896,13.30696896,13.30696896,13.30696896,13.30696896,13.30696896 +Climate Solutions,ssp2_2p5,ZMB,cdd|Hazard|Absolute,days/yr,141.0147871,141.0147871,141.0147871,141.0147871,141.0147871,141.0147871,141.0147871,141.0147871,141.0147871,141.0147871 +Climate Solutions,ssp2_2p5,SEN,cdd|Hazard|Absolute,days/yr,144.8352473,144.8352473,144.8352473,144.8352473,144.8352473,144.8352473,144.8352473,144.8352473,144.8352473,144.8352473 +Climate Solutions,ssp2_2p5,PNG,cdd|Hazard|Absolute,days/yr,12.52808326,12.52808326,12.52808326,12.52808326,12.52808326,12.52808326,12.52808326,12.52808326,12.52808326,12.52808326 +Climate Solutions,ssp2_2p5,MWI,cdd|Hazard|Absolute,days/yr,66.62336779,66.62336779,66.62336779,66.62336779,66.62336779,66.62336779,66.62336779,66.62336779,66.62336779,66.62336779 +Climate Solutions,ssp2_2p5,TTO,cdd|Hazard|Absolute,days/yr,8.452946027,8.452946027,8.452946027,8.452946027,8.452946027,8.452946027,8.452946027,8.452946027,8.452946027,8.452946027 +Climate Solutions,ssp2_2p5,ZWE,cdd|Hazard|Absolute,days/yr,108.8432016,108.8432016,108.8432016,108.8432016,108.8432016,108.8432016,108.8432016,108.8432016,108.8432016,108.8432016 +Climate Solutions,ssp2_2p5,DEU,cdd|Hazard|Absolute,days/yr,17.82427566,17.82427566,17.82427566,17.82427566,17.82427566,17.82427566,17.82427566,17.82427566,17.82427566,17.82427566 +Climate Solutions,ssp2_2p5,VUT,cdd|Hazard|Absolute,days/yr,3.596931221,3.596931221,3.596931221,3.596931221,3.596931221,3.596931221,3.596931221,3.596931221,3.596931221,3.596931221 +Climate Solutions,ssp2_2p5,MTQ,cdd|Hazard|Absolute,days/yr,2.507271524,2.507271524,2.507271524,2.507271524,2.507271524,2.507271524,2.507271524,2.507271524,2.507271524,2.507271524 +Climate Solutions,ssp2_2p5,KAZ,cdd|Hazard|Absolute,days/yr,48.5321227,48.5321227,48.5321227,48.5321227,48.5321227,48.5321227,48.5321227,48.5321227,48.5321227,48.5321227 +Climate Solutions,ssp2_2p5,PHL,cdd|Hazard|Absolute,days/yr,18.26526701,18.26526701,18.26526701,18.26526701,18.26526701,18.26526701,18.26526701,18.26526701,18.26526701,18.26526701 +Climate Solutions,ssp2_2p5,ERI,cdd|Hazard|Absolute,days/yr,81.25750483,81.25750483,81.25750483,81.25750483,81.25750483,81.25750483,81.25750483,81.25750483,81.25750483,81.25750483 +Climate Solutions,ssp2_2p5,NCL,cdd|Hazard|Absolute,days/yr,9.086918501,9.086918501,9.086918501,9.086918501,9.086918501,9.086918501,9.086918501,9.086918501,9.086918501,9.086918501 +Climate Solutions,ssp2_2p5,MKD,cdd|Hazard|Absolute,days/yr,20.23284052,20.23284052,20.23284052,20.23284052,20.23284052,20.23284052,20.23284052,20.23284052,20.23284052,20.23284052 +Climate Solutions,ssp2_2p5,PRK,cdd|Hazard|Absolute,days/yr,23.65190136,23.65190136,23.65190136,23.65190136,23.65190136,23.65190136,23.65190136,23.65190136,23.65190136,23.65190136 +Climate Solutions,ssp2_2p5,PRY,cdd|Hazard|Absolute,days/yr,38.96893724,38.96893724,38.96893724,38.96893724,38.96893724,38.96893724,38.96893724,38.96893724,38.96893724,38.96893724 +Climate Solutions,ssp2_2p5,LVA,cdd|Hazard|Absolute,days/yr,14.27510487,14.27510487,14.27510487,14.27510487,14.27510487,14.27510487,14.27510487,14.27510487,14.27510487,14.27510487 +Climate Solutions,ssp2_2p5,JPN,cdd|Hazard|Absolute,days/yr,10.31595792,10.31595792,10.31595792,10.31595792,10.31595792,10.31595792,10.31595792,10.31595792,10.31595792,10.31595792 +Climate Solutions,ssp2_2p5,SYR,cdd|Hazard|Absolute,days/yr,110.1564513,110.1564513,110.1564513,110.1564513,110.1564513,110.1564513,110.1564513,110.1564513,110.1564513,110.1564513 +Climate Solutions,ssp2_2p5,HND,cdd|Hazard|Absolute,days/yr,28.26921969,28.26921969,28.26921969,28.26921969,28.26921969,28.26921969,28.26921969,28.26921969,28.26921969,28.26921969 +Climate Solutions,ssp2_2p5,MMR,cdd|Hazard|Absolute,days/yr,80.48225025,80.48225025,80.48225025,80.48225025,80.48225025,80.48225025,80.48225025,80.48225025,80.48225025,80.48225025 +Climate Solutions,ssp2_2p5,MEX,cdd|Hazard|Absolute,days/yr,86.65021439,86.65021439,86.65021439,86.65021439,86.65021439,86.65021439,86.65021439,86.65021439,86.65021439,86.65021439 +Climate Solutions,ssp2_2p5,EGY,cdd|Hazard|Absolute,days/yr,285.7715391,285.7715391,285.7715391,285.7715391,285.7715391,285.7715391,285.7715391,285.7715391,285.7715391,285.7715391 +Climate Solutions,ssp2_2p5,SGP,cdd|Hazard|Absolute,days/yr,2.358171957,2.358171957,2.358171957,2.358171957,2.358171957,2.358171957,2.358171957,2.358171957,2.358171957,2.358171957 +Climate Solutions,ssp2_2p5,SRB,cdd|Hazard|Absolute,days/yr,20.73036653,20.73036653,20.73036653,20.73036653,20.73036653,20.73036653,20.73036653,20.73036653,20.73036653,20.73036653 +Climate Solutions,ssp2_2p5,BWA,cdd|Hazard|Absolute,days/yr,132.1686629,132.1686629,132.1686629,132.1686629,132.1686629,132.1686629,132.1686629,132.1686629,132.1686629,132.1686629 +Climate Solutions,ssp2_2p5,GBR,cdd|Hazard|Absolute,days/yr,14.34232247,14.34232247,14.34232247,14.34232247,14.34232247,14.34232247,14.34232247,14.34232247,14.34232247,14.34232247 +Climate Solutions,ssp2_2p5,GMB,cdd|Hazard|Absolute,days/yr,55.75190872,55.75190872,55.75190872,55.75190872,55.75190872,55.75190872,55.75190872,55.75190872,55.75190872,55.75190872 +Climate Solutions,ssp2_2p5,GRC,cdd|Hazard|Absolute,days/yr,26.91890632,26.91890632,26.91890632,26.91890632,26.91890632,26.91890632,26.91890632,26.91890632,26.91890632,26.91890632 +Climate Solutions,ssp2_2p5,LKA,cdd|Hazard|Absolute,days/yr,31.47360309,31.47360309,31.47360309,31.47360309,31.47360309,31.47360309,31.47360309,31.47360309,31.47360309,31.47360309 +Climate Solutions,ssp2_2p5,GUF,cdd|Hazard|Absolute,days/yr,19.82008265,19.82008265,19.82008265,19.82008265,19.82008265,19.82008265,19.82008265,19.82008265,19.82008265,19.82008265 +Climate Solutions,ssp2_2p5,COM,cdd|Hazard|Absolute,days/yr,2.385591388,2.385591388,2.385591388,2.385591388,2.385591388,2.385591388,2.385591388,2.385591388,2.385591388,2.385591388 +Climate Solutions,ssp2_2p5,FSM,cdd|Hazard|Absolute,days/yr,0.318164361,0.318164361,0.318164361,0.318164361,0.318164361,0.318164361,0.318164361,0.318164361,0.318164361,0.318164361 +Climate Solutions,ssp2_2p5,GLP,cdd|Hazard|Absolute,days/yr,4.423145221,4.423145221,4.423145221,4.423145221,4.423145221,4.423145221,4.423145221,4.423145221,4.423145221,4.423145221 +Climate Solutions,ssp2_2p5,MYT,cdd|Hazard|Absolute,days/yr,4.839112877,4.839112877,4.839112877,4.839112877,4.839112877,4.839112877,4.839112877,4.839112877,4.839112877,4.839112877 +Climate Solutions,ssp2_2p5,VIR,cdd|Hazard|Absolute,days/yr,0.968494626,0.968494626,0.968494626,0.968494626,0.968494626,0.968494626,0.968494626,0.968494626,0.968494626,0.968494626 +Climate Solutions,ssp2_2p5,CAN,cdd|Hazard|Absolute|Land area weighted,days/yr,30.90720835,30.90720835,30.90720835,30.90720835,30.90720835,30.90720835,30.90720835,30.90720835,30.90720835,30.90720835 +Climate Solutions,ssp2_2p5,STP,cdd|Hazard|Absolute|Land area weighted,days/yr,33.3232244,33.3232244,33.3232244,33.3232244,33.3232244,33.3232244,33.3232244,33.3232244,33.3232244,33.3232244 +Climate Solutions,ssp2_2p5,TKM,cdd|Hazard|Absolute|Land area weighted,days/yr,132.3822626,132.3822626,132.3822626,132.3822626,132.3822626,132.3822626,132.3822626,132.3822626,132.3822626,132.3822626 +Climate Solutions,ssp2_2p5,LTU,cdd|Hazard|Absolute|Land area weighted,days/yr,23.08407922,23.08407922,23.08407922,23.08407922,23.08407922,23.08407922,23.08407922,23.08407922,23.08407922,23.08407922 +Climate Solutions,ssp2_2p5,KHM,cdd|Hazard|Absolute|Land area weighted,days/yr,88.24212001,88.24212001,88.24212001,88.24212001,88.24212001,88.24212001,88.24212001,88.24212001,88.24212001,88.24212001 +Climate Solutions,ssp2_2p5,ETH,cdd|Hazard|Absolute|Land area weighted,days/yr,96.41006056,96.41006056,96.41006056,96.41006056,96.41006056,96.41006056,96.41006056,96.41006056,96.41006056,96.41006056 +Climate Solutions,ssp2_2p5,SWZ,cdd|Hazard|Absolute|Land area weighted,days/yr,64.57678483,64.57678483,64.57678483,64.57678483,64.57678483,64.57678483,64.57678483,64.57678483,64.57678483,64.57678483 +Climate Solutions,ssp2_2p5,PSE,cdd|Hazard|Absolute|Land area weighted,days/yr,169.1981219,169.1981219,169.1981219,169.1981219,169.1981219,169.1981219,169.1981219,169.1981219,169.1981219,169.1981219 +Climate Solutions,ssp2_2p5,ARG,cdd|Hazard|Absolute|Land area weighted,days/yr,64.54141348,64.54141348,64.54141348,64.54141348,64.54141348,64.54141348,64.54141348,64.54141348,64.54141348,64.54141348 +Climate Solutions,ssp2_2p5,BOL,cdd|Hazard|Absolute|Land area weighted,days/yr,73.08124091,73.08124091,73.08124091,73.08124091,73.08124091,73.08124091,73.08124091,73.08124091,73.08124091,73.08124091 +Climate Solutions,ssp2_2p5,BHS,cdd|Hazard|Absolute|Land area weighted,days/yr,24.1360534,24.1360534,24.1360534,24.1360534,24.1360534,24.1360534,24.1360534,24.1360534,24.1360534,24.1360534 +Climate Solutions,ssp2_2p5,BFA,cdd|Hazard|Absolute|Land area weighted,days/yr,162.9795326,162.9795326,162.9795326,162.9795326,162.9795326,162.9795326,162.9795326,162.9795326,162.9795326,162.9795326 +Climate Solutions,ssp2_2p5,GHA,cdd|Hazard|Absolute|Land area weighted,days/yr,75.85121815,75.85121815,75.85121815,75.85121815,75.85121815,75.85121815,75.85121815,75.85121815,75.85121815,75.85121815 +Climate Solutions,ssp2_2p5,SAU,cdd|Hazard|Absolute|Land area weighted,days/yr,222.3812736,222.3812736,222.3812736,222.3812736,222.3812736,222.3812736,222.3812736,222.3812736,222.3812736,222.3812736 +Climate Solutions,ssp2_2p5,CPV,cdd|Hazard|Absolute|Land area weighted,days/yr,107.6200152,107.6200152,107.6200152,107.6200152,107.6200152,107.6200152,107.6200152,107.6200152,107.6200152,107.6200152 +Climate Solutions,ssp2_2p5,SVN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.77553359,25.77553359,25.77553359,25.77553359,25.77553359,25.77553359,25.77553359,25.77553359,25.77553359,25.77553359 +Climate Solutions,ssp2_2p5,GTM,cdd|Hazard|Absolute|Land area weighted,days/yr,45.42003438,45.42003438,45.42003438,45.42003438,45.42003438,45.42003438,45.42003438,45.42003438,45.42003438,45.42003438 +Climate Solutions,ssp2_2p5,BIH,cdd|Hazard|Absolute|Land area weighted,days/yr,27.57483964,27.57483964,27.57483964,27.57483964,27.57483964,27.57483964,27.57483964,27.57483964,27.57483964,27.57483964 +Climate Solutions,ssp2_2p5,GIN,cdd|Hazard|Absolute|Land area weighted,days/yr,128.3078252,128.3078252,128.3078252,128.3078252,128.3078252,128.3078252,128.3078252,128.3078252,128.3078252,128.3078252 +Climate Solutions,ssp2_2p5,JOR,cdd|Hazard|Absolute|Land area weighted,days/yr,207.7288657,207.7288657,207.7288657,207.7288657,207.7288657,207.7288657,207.7288657,207.7288657,207.7288657,207.7288657 +Climate Solutions,ssp2_2p5,COG,cdd|Hazard|Absolute|Land area weighted,days/yr,52.73973446,52.73973446,52.73973446,52.73973446,52.73973446,52.73973446,52.73973446,52.73973446,52.73973446,52.73973446 +Climate Solutions,ssp2_2p5,ESP,cdd|Hazard|Absolute|Land area weighted,days/yr,58.15639933,58.15639933,58.15639933,58.15639933,58.15639933,58.15639933,58.15639933,58.15639933,58.15639933,58.15639933 +Climate Solutions,ssp2_2p5,LBR,cdd|Hazard|Absolute|Land area weighted,days/yr,61.82318038,61.82318038,61.82318038,61.82318038,61.82318038,61.82318038,61.82318038,61.82318038,61.82318038,61.82318038 +Climate Solutions,ssp2_2p5,NLD,cdd|Hazard|Absolute|Land area weighted,days/yr,22.63989297,22.63989297,22.63989297,22.63989297,22.63989297,22.63989297,22.63989297,22.63989297,22.63989297,22.63989297 +Climate Solutions,ssp2_2p5,JAM,cdd|Hazard|Absolute|Land area weighted,days/yr,29.86696582,29.86696582,29.86696582,29.86696582,29.86696582,29.86696582,29.86696582,29.86696582,29.86696582,29.86696582 +Climate Solutions,ssp2_2p5,OMN,cdd|Hazard|Absolute|Land area weighted,days/yr,239.8908419,239.8908419,239.8908419,239.8908419,239.8908419,239.8908419,239.8908419,239.8908419,239.8908419,239.8908419 +Climate Solutions,ssp2_2p5,TZA,cdd|Hazard|Absolute|Land area weighted,days/yr,98.93721468,98.93721468,98.93721468,98.93721468,98.93721468,98.93721468,98.93721468,98.93721468,98.93721468,98.93721468 +Climate Solutions,ssp2_2p5,ALB,cdd|Hazard|Absolute|Land area weighted,days/yr,41.03618483,41.03618483,41.03618483,41.03618483,41.03618483,41.03618483,41.03618483,41.03618483,41.03618483,41.03618483 +Climate Solutions,ssp2_2p5,GAB,cdd|Hazard|Absolute|Land area weighted,days/yr,49.87612912,49.87612912,49.87612912,49.87612912,49.87612912,49.87612912,49.87612912,49.87612912,49.87612912,49.87612912 +Climate Solutions,ssp2_2p5,NZL,cdd|Hazard|Absolute|Land area weighted,days/yr,17.40137663,17.40137663,17.40137663,17.40137663,17.40137663,17.40137663,17.40137663,17.40137663,17.40137663,17.40137663 +Climate Solutions,ssp2_2p5,YEM,cdd|Hazard|Absolute|Land area weighted,days/yr,188.1980568,188.1980568,188.1980568,188.1980568,188.1980568,188.1980568,188.1980568,188.1980568,188.1980568,188.1980568 +Climate Solutions,ssp2_2p5,PAK,cdd|Hazard|Absolute|Land area weighted,days/yr,138.0854484,138.0854484,138.0854484,138.0854484,138.0854484,138.0854484,138.0854484,138.0854484,138.0854484,138.0854484 +Climate Solutions,ssp2_2p5,WSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.25116815,10.25116815,10.25116815,10.25116815,10.25116815,10.25116815,10.25116815,10.25116815,10.25116815,10.25116815 +Climate Solutions,ssp2_2p5,SVK,cdd|Hazard|Absolute|Land area weighted,days/yr,24.39505202,24.39505202,24.39505202,24.39505202,24.39505202,24.39505202,24.39505202,24.39505202,24.39505202,24.39505202 +Climate Solutions,ssp2_2p5,ARE,cdd|Hazard|Absolute|Land area weighted,days/yr,235.578712,235.578712,235.578712,235.578712,235.578712,235.578712,235.578712,235.578712,235.578712,235.578712 +Climate Solutions,ssp2_2p5,GUM,cdd|Hazard|Absolute|Land area weighted,days/yr,27.89034283,27.89034283,27.89034283,27.89034283,27.89034283,27.89034283,27.89034283,27.89034283,27.89034283,27.89034283 +Climate Solutions,ssp2_2p5,IND,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6828375,131.6828375,131.6828375,131.6828375,131.6828375,131.6828375,131.6828375,131.6828375,131.6828375,131.6828375 +Climate Solutions,ssp2_2p5,AZE,cdd|Hazard|Absolute|Land area weighted,days/yr,55.39186271,55.39186271,55.39186271,55.39186271,55.39186271,55.39186271,55.39186271,55.39186271,55.39186271,55.39186271 +Climate Solutions,ssp2_2p5,MDG,cdd|Hazard|Absolute|Land area weighted,days/yr,70.08235863,70.08235863,70.08235863,70.08235863,70.08235863,70.08235863,70.08235863,70.08235863,70.08235863,70.08235863 +Climate Solutions,ssp2_2p5,LSO,cdd|Hazard|Absolute|Land area weighted,days/yr,63.28775156,63.28775156,63.28775156,63.28775156,63.28775156,63.28775156,63.28775156,63.28775156,63.28775156,63.28775156 +Climate Solutions,ssp2_2p5,VCT,cdd|Hazard|Absolute|Land area weighted,days/yr,41.34584826,41.34584826,41.34584826,41.34584826,41.34584826,41.34584826,41.34584826,41.34584826,41.34584826,41.34584826 +Climate Solutions,ssp2_2p5,KEN,cdd|Hazard|Absolute|Land area weighted,days/yr,74.82507526,74.82507526,74.82507526,74.82507526,74.82507526,74.82507526,74.82507526,74.82507526,74.82507526,74.82507526 +Climate Solutions,ssp2_2p5,KOR,cdd|Hazard|Absolute|Land area weighted,days/yr,35.10223085,35.10223085,35.10223085,35.10223085,35.10223085,35.10223085,35.10223085,35.10223085,35.10223085,35.10223085 +Climate Solutions,ssp2_2p5,BLR,cdd|Hazard|Absolute|Land area weighted,days/yr,24.57543713,24.57543713,24.57543713,24.57543713,24.57543713,24.57543713,24.57543713,24.57543713,24.57543713,24.57543713 +Climate Solutions,ssp2_2p5,TJK,cdd|Hazard|Absolute|Land area weighted,days/yr,84.20207608,84.20207608,84.20207608,84.20207608,84.20207608,84.20207608,84.20207608,84.20207608,84.20207608,84.20207608 +Climate Solutions,ssp2_2p5,TUR,cdd|Hazard|Absolute|Land area weighted,days/yr,67.59720285,67.59720285,67.59720285,67.59720285,67.59720285,67.59720285,67.59720285,67.59720285,67.59720285,67.59720285 +Climate Solutions,ssp2_2p5,AFG,cdd|Hazard|Absolute|Land area weighted,days/yr,146.5519004,146.5519004,146.5519004,146.5519004,146.5519004,146.5519004,146.5519004,146.5519004,146.5519004,146.5519004 +Climate Solutions,ssp2_2p5,BGD,cdd|Hazard|Absolute|Land area weighted,days/yr,108.1760521,108.1760521,108.1760521,108.1760521,108.1760521,108.1760521,108.1760521,108.1760521,108.1760521,108.1760521 +Climate Solutions,ssp2_2p5,MRT,cdd|Hazard|Absolute|Land area weighted,days/yr,247.3316925,247.3316925,247.3316925,247.3316925,247.3316925,247.3316925,247.3316925,247.3316925,247.3316925,247.3316925 +Climate Solutions,ssp2_2p5,SLB,cdd|Hazard|Absolute|Land area weighted,days/yr,16.57434303,16.57434303,16.57434303,16.57434303,16.57434303,16.57434303,16.57434303,16.57434303,16.57434303,16.57434303 +Climate Solutions,ssp2_2p5,LCA,cdd|Hazard|Absolute|Land area weighted,days/yr,9.703664218,9.703664218,9.703664218,9.703664218,9.703664218,9.703664218,9.703664218,9.703664218,9.703664218,9.703664218 +Climate Solutions,ssp2_2p5,CYP,cdd|Hazard|Absolute|Land area weighted,days/yr,106.0266934,106.0266934,106.0266934,106.0266934,106.0266934,106.0266934,106.0266934,106.0266934,106.0266934,106.0266934 +Climate Solutions,ssp2_2p5,PYF,cdd|Hazard|Absolute|Land area weighted,days/yr,31.03310084,31.03310084,31.03310084,31.03310084,31.03310084,31.03310084,31.03310084,31.03310084,31.03310084,31.03310084 +Climate Solutions,ssp2_2p5,FRA,cdd|Hazard|Absolute|Land area weighted,days/yr,27.44874692,27.44874692,27.44874692,27.44874692,27.44874692,27.44874692,27.44874692,27.44874692,27.44874692,27.44874692 +Climate Solutions,ssp2_2p5,NAM,cdd|Hazard|Absolute|Land area weighted,days/yr,183.3751311,183.3751311,183.3751311,183.3751311,183.3751311,183.3751311,183.3751311,183.3751311,183.3751311,183.3751311 +Climate Solutions,ssp2_2p5,SOM,cdd|Hazard|Absolute|Land area weighted,days/yr,121.5270913,121.5270913,121.5270913,121.5270913,121.5270913,121.5270913,121.5270913,121.5270913,121.5270913,121.5270913 +Climate Solutions,ssp2_2p5,PER,cdd|Hazard|Absolute|Land area weighted,days/yr,60.79155035,60.79155035,60.79155035,60.79155035,60.79155035,60.79155035,60.79155035,60.79155035,60.79155035,60.79155035 +Climate Solutions,ssp2_2p5,LAO,cdd|Hazard|Absolute|Land area weighted,days/yr,64.05778269,64.05778269,64.05778269,64.05778269,64.05778269,64.05778269,64.05778269,64.05778269,64.05778269,64.05778269 +Climate Solutions,ssp2_2p5,SYC,cdd|Hazard|Absolute|Land area weighted,days/yr,20.64607198,20.64607198,20.64607198,20.64607198,20.64607198,20.64607198,20.64607198,20.64607198,20.64607198,20.64607198 +Climate Solutions,ssp2_2p5,NOR,cdd|Hazard|Absolute|Land area weighted,days/yr,20.71110299,20.71110299,20.71110299,20.71110299,20.71110299,20.71110299,20.71110299,20.71110299,20.71110299,20.71110299 +Climate Solutions,ssp2_2p5,CIV,cdd|Hazard|Absolute|Land area weighted,days/yr,77.5619187,77.5619187,77.5619187,77.5619187,77.5619187,77.5619187,77.5619187,77.5619187,77.5619187,77.5619187 +Climate Solutions,ssp2_2p5,BEN,cdd|Hazard|Absolute|Land area weighted,days/yr,126.3164489,126.3164489,126.3164489,126.3164489,126.3164489,126.3164489,126.3164489,126.3164489,126.3164489,126.3164489 +Climate Solutions,ssp2_2p5,ESH,cdd|Hazard|Absolute|Land area weighted,days/yr,225.6900708,225.6900708,225.6900708,225.6900708,225.6900708,225.6900708,225.6900708,225.6900708,225.6900708,225.6900708 +Climate Solutions,ssp2_2p5,CUB,cdd|Hazard|Absolute|Land area weighted,days/yr,34.65263798,34.65263798,34.65263798,34.65263798,34.65263798,34.65263798,34.65263798,34.65263798,34.65263798,34.65263798 +Climate Solutions,ssp2_2p5,CMR,cdd|Hazard|Absolute|Land area weighted,days/yr,93.29201226,93.29201226,93.29201226,93.29201226,93.29201226,93.29201226,93.29201226,93.29201226,93.29201226,93.29201226 +Climate Solutions,ssp2_2p5,MNE,cdd|Hazard|Absolute|Land area weighted,days/yr,31.35391684,31.35391684,31.35391684,31.35391684,31.35391684,31.35391684,31.35391684,31.35391684,31.35391684,31.35391684 +Climate Solutions,ssp2_2p5,TGO,cdd|Hazard|Absolute|Land area weighted,days/yr,96.40021131,96.40021131,96.40021131,96.40021131,96.40021131,96.40021131,96.40021131,96.40021131,96.40021131,96.40021131 +Climate Solutions,ssp2_2p5,CHN,cdd|Hazard|Absolute|Land area weighted,days/yr,93.92655123,93.92655123,93.92655123,93.92655123,93.92655123,93.92655123,93.92655123,93.92655123,93.92655123,93.92655123 +Climate Solutions,ssp2_2p5,ARM,cdd|Hazard|Absolute|Land area weighted,days/yr,40.8579165,40.8579165,40.8579165,40.8579165,40.8579165,40.8579165,40.8579165,40.8579165,40.8579165,40.8579165 +Climate Solutions,ssp2_2p5,ATG,cdd|Hazard|Absolute|Land area weighted,days/yr,30.7554462,30.7554462,30.7554462,30.7554462,30.7554462,30.7554462,30.7554462,30.7554462,30.7554462,30.7554462 +Climate Solutions,ssp2_2p5,DOM,cdd|Hazard|Absolute|Land area weighted,days/yr,29.87096116,29.87096116,29.87096116,29.87096116,29.87096116,29.87096116,29.87096116,29.87096116,29.87096116,29.87096116 +Climate Solutions,ssp2_2p5,UKR,cdd|Hazard|Absolute|Land area weighted,days/yr,31.9869321,31.9869321,31.9869321,31.9869321,31.9869321,31.9869321,31.9869321,31.9869321,31.9869321,31.9869321 +Climate Solutions,ssp2_2p5,BHR,cdd|Hazard|Absolute|Land area weighted,days/yr,208.9644491,208.9644491,208.9644491,208.9644491,208.9644491,208.9644491,208.9644491,208.9644491,208.9644491,208.9644491 +Climate Solutions,ssp2_2p5,TON,cdd|Hazard|Absolute|Land area weighted,days/yr,14.57053531,14.57053531,14.57053531,14.57053531,14.57053531,14.57053531,14.57053531,14.57053531,14.57053531,14.57053531 +Climate Solutions,ssp2_2p5,FIN,cdd|Hazard|Absolute|Land area weighted,days/yr,23.09581517,23.09581517,23.09581517,23.09581517,23.09581517,23.09581517,23.09581517,23.09581517,23.09581517,23.09581517 +Climate Solutions,ssp2_2p5,LBY,cdd|Hazard|Absolute|Land area weighted,days/yr,290.5275216,290.5275216,290.5275216,290.5275216,290.5275216,290.5275216,290.5275216,290.5275216,290.5275216,290.5275216 +Climate Solutions,ssp2_2p5,IDN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.50501255,25.50501255,25.50501255,25.50501255,25.50501255,25.50501255,25.50501255,25.50501255,25.50501255,25.50501255 +Climate Solutions,ssp2_2p5,CAF,cdd|Hazard|Absolute|Land area weighted,days/yr,99.82445032,99.82445032,99.82445032,99.82445032,99.82445032,99.82445032,99.82445032,99.82445032,99.82445032,99.82445032 +Climate Solutions,ssp2_2p5,USA,cdd|Hazard|Absolute|Land area weighted,days/yr,41.00630975,41.00630975,41.00630975,41.00630975,41.00630975,41.00630975,41.00630975,41.00630975,41.00630975,41.00630975 +Climate Solutions,ssp2_2p5,SWE,cdd|Hazard|Absolute|Land area weighted,days/yr,23.54188893,23.54188893,23.54188893,23.54188893,23.54188893,23.54188893,23.54188893,23.54188893,23.54188893,23.54188893 +Climate Solutions,ssp2_2p5,VNM,cdd|Hazard|Absolute|Land area weighted,days/yr,52.6965298,52.6965298,52.6965298,52.6965298,52.6965298,52.6965298,52.6965298,52.6965298,52.6965298,52.6965298 +Climate Solutions,ssp2_2p5,MLI,cdd|Hazard|Absolute|Land area weighted,days/yr,232.1943029,232.1943029,232.1943029,232.1943029,232.1943029,232.1943029,232.1943029,232.1943029,232.1943029,232.1943029 +Climate Solutions,ssp2_2p5,RUS,cdd|Hazard|Absolute|Land area weighted,days/yr,33.95760527,33.95760527,33.95760527,33.95760527,33.95760527,33.95760527,33.95760527,33.95760527,33.95760527,33.95760527 +Climate Solutions,ssp2_2p5,BGR,cdd|Hazard|Absolute|Land area weighted,days/yr,41.1257444,41.1257444,41.1257444,41.1257444,41.1257444,41.1257444,41.1257444,41.1257444,41.1257444,41.1257444 +Climate Solutions,ssp2_2p5,MUS,cdd|Hazard|Absolute|Land area weighted,days/yr,36.12941677,36.12941677,36.12941677,36.12941677,36.12941677,36.12941677,36.12941677,36.12941677,36.12941677,36.12941677 +Climate Solutions,ssp2_2p5,ROU,cdd|Hazard|Absolute|Land area weighted,days/yr,32.52969207,32.52969207,32.52969207,32.52969207,32.52969207,32.52969207,32.52969207,32.52969207,32.52969207,32.52969207 +Climate Solutions,ssp2_2p5,AGO,cdd|Hazard|Absolute|Land area weighted,days/yr,143.6747347,143.6747347,143.6747347,143.6747347,143.6747347,143.6747347,143.6747347,143.6747347,143.6747347,143.6747347 +Climate Solutions,ssp2_2p5,PRT,cdd|Hazard|Absolute|Land area weighted,days/yr,70.11648036,70.11648036,70.11648036,70.11648036,70.11648036,70.11648036,70.11648036,70.11648036,70.11648036,70.11648036 +Climate Solutions,ssp2_2p5,ZAF,cdd|Hazard|Absolute|Land area weighted,days/yr,90.39556326,90.39556326,90.39556326,90.39556326,90.39556326,90.39556326,90.39556326,90.39556326,90.39556326,90.39556326 +Climate Solutions,ssp2_2p5,FJI,cdd|Hazard|Absolute|Land area weighted,days/yr,22.59793985,22.59793985,22.59793985,22.59793985,22.59793985,22.59793985,22.59793985,22.59793985,22.59793985,22.59793985 +Climate Solutions,ssp2_2p5,BRN,cdd|Hazard|Absolute|Land area weighted,days/yr,18.76756945,18.76756945,18.76756945,18.76756945,18.76756945,18.76756945,18.76756945,18.76756945,18.76756945,18.76756945 +Climate Solutions,ssp2_2p5,MYS,cdd|Hazard|Absolute|Land area weighted,days/yr,18.57814716,18.57814716,18.57814716,18.57814716,18.57814716,18.57814716,18.57814716,18.57814716,18.57814716,18.57814716 +Climate Solutions,ssp2_2p5,AUT,cdd|Hazard|Absolute|Land area weighted,days/yr,21.7129988,21.7129988,21.7129988,21.7129988,21.7129988,21.7129988,21.7129988,21.7129988,21.7129988,21.7129988 +Climate Solutions,ssp2_2p5,MOZ,cdd|Hazard|Absolute|Land area weighted,days/yr,80.23718249,80.23718249,80.23718249,80.23718249,80.23718249,80.23718249,80.23718249,80.23718249,80.23718249,80.23718249 +Climate Solutions,ssp2_2p5,UGA,cdd|Hazard|Absolute|Land area weighted,days/yr,35.35421389,35.35421389,35.35421389,35.35421389,35.35421389,35.35421389,35.35421389,35.35421389,35.35421389,35.35421389 +Climate Solutions,ssp2_2p5,KGZ,cdd|Hazard|Absolute|Land area weighted,days/yr,45.7269394,45.7269394,45.7269394,45.7269394,45.7269394,45.7269394,45.7269394,45.7269394,45.7269394,45.7269394 +Climate Solutions,ssp2_2p5,HUN,cdd|Hazard|Absolute|Land area weighted,days/yr,30.31554529,30.31554529,30.31554529,30.31554529,30.31554529,30.31554529,30.31554529,30.31554529,30.31554529,30.31554529 +Climate Solutions,ssp2_2p5,NER,cdd|Hazard|Absolute|Land area weighted,days/yr,273.9474185,273.9474185,273.9474185,273.9474185,273.9474185,273.9474185,273.9474185,273.9474185,273.9474185,273.9474185 +Climate Solutions,ssp2_2p5,BRA,cdd|Hazard|Absolute|Land area weighted,days/yr,56.64670708,56.64670708,56.64670708,56.64670708,56.64670708,56.64670708,56.64670708,56.64670708,56.64670708,56.64670708 +Climate Solutions,ssp2_2p5,KWT,cdd|Hazard|Absolute|Land area weighted,days/yr,197.3318652,197.3318652,197.3318652,197.3318652,197.3318652,197.3318652,197.3318652,197.3318652,197.3318652,197.3318652 +Climate Solutions,ssp2_2p5,PAN,cdd|Hazard|Absolute|Land area weighted,days/yr,46.5021143,46.5021143,46.5021143,46.5021143,46.5021143,46.5021143,46.5021143,46.5021143,46.5021143,46.5021143 +Climate Solutions,ssp2_2p5,GUY,cdd|Hazard|Absolute|Land area weighted,days/yr,29.93977413,29.93977413,29.93977413,29.93977413,29.93977413,29.93977413,29.93977413,29.93977413,29.93977413,29.93977413 +Climate Solutions,ssp2_2p5,CRI,cdd|Hazard|Absolute|Land area weighted,days/yr,44.67352659,44.67352659,44.67352659,44.67352659,44.67352659,44.67352659,44.67352659,44.67352659,44.67352659,44.67352659 +Climate Solutions,ssp2_2p5,LUX,cdd|Hazard|Absolute|Land area weighted,days/yr,22.48723732,22.48723732,22.48723732,22.48723732,22.48723732,22.48723732,22.48723732,22.48723732,22.48723732,22.48723732 +Climate Solutions,ssp2_2p5,IRL,cdd|Hazard|Absolute|Land area weighted,days/yr,20.33718301,20.33718301,20.33718301,20.33718301,20.33718301,20.33718301,20.33718301,20.33718301,20.33718301,20.33718301 +Climate Solutions,ssp2_2p5,NGA,cdd|Hazard|Absolute|Land area weighted,days/yr,147.937765,147.937765,147.937765,147.937765,147.937765,147.937765,147.937765,147.937765,147.937765,147.937765 +Climate Solutions,ssp2_2p5,ECU,cdd|Hazard|Absolute|Land area weighted,days/yr,27.65970866,27.65970866,27.65970866,27.65970866,27.65970866,27.65970866,27.65970866,27.65970866,27.65970866,27.65970866 +Climate Solutions,ssp2_2p5,CZE,cdd|Hazard|Absolute|Land area weighted,days/yr,22.42188043,22.42188043,22.42188043,22.42188043,22.42188043,22.42188043,22.42188043,22.42188043,22.42188043,22.42188043 +Climate Solutions,ssp2_2p5,AUS,cdd|Hazard|Absolute|Land area weighted,days/yr,104.463308,104.463308,104.463308,104.463308,104.463308,104.463308,104.463308,104.463308,104.463308,104.463308 +Climate Solutions,ssp2_2p5,IRN,cdd|Hazard|Absolute|Land area weighted,days/yr,154.4159251,154.4159251,154.4159251,154.4159251,154.4159251,154.4159251,154.4159251,154.4159251,154.4159251,154.4159251 +Climate Solutions,ssp2_2p5,DZA,cdd|Hazard|Absolute|Land area weighted,days/yr,224.3705368,224.3705368,224.3705368,224.3705368,224.3705368,224.3705368,224.3705368,224.3705368,224.3705368,224.3705368 +Climate Solutions,ssp2_2p5,SLV,cdd|Hazard|Absolute|Land area weighted,days/yr,99.47616868,99.47616868,99.47616868,99.47616868,99.47616868,99.47616868,99.47616868,99.47616868,99.47616868,99.47616868 +Climate Solutions,ssp2_2p5,CHL,cdd|Hazard|Absolute|Land area weighted,days/yr,152.2874548,152.2874548,152.2874548,152.2874548,152.2874548,152.2874548,152.2874548,152.2874548,152.2874548,152.2874548 +Climate Solutions,ssp2_2p5,PRI,cdd|Hazard|Absolute|Land area weighted,days/yr,18.36776698,18.36776698,18.36776698,18.36776698,18.36776698,18.36776698,18.36776698,18.36776698,18.36776698,18.36776698 +Climate Solutions,ssp2_2p5,BEL,cdd|Hazard|Absolute|Land area weighted,days/yr,22.61150159,22.61150159,22.61150159,22.61150159,22.61150159,22.61150159,22.61150159,22.61150159,22.61150159,22.61150159 +Climate Solutions,ssp2_2p5,THA,cdd|Hazard|Absolute|Land area weighted,days/yr,87.66255349,87.66255349,87.66255349,87.66255349,87.66255349,87.66255349,87.66255349,87.66255349,87.66255349,87.66255349 +Climate Solutions,ssp2_2p5,HTI,cdd|Hazard|Absolute|Land area weighted,days/yr,30.22323542,30.22323542,30.22323542,30.22323542,30.22323542,30.22323542,30.22323542,30.22323542,30.22323542,30.22323542 +Climate Solutions,ssp2_2p5,IRQ,cdd|Hazard|Absolute|Land area weighted,days/yr,174.2517042,174.2517042,174.2517042,174.2517042,174.2517042,174.2517042,174.2517042,174.2517042,174.2517042,174.2517042 +Climate Solutions,ssp2_2p5,SLE,cdd|Hazard|Absolute|Land area weighted,days/yr,89.4720308,89.4720308,89.4720308,89.4720308,89.4720308,89.4720308,89.4720308,89.4720308,89.4720308,89.4720308 +Climate Solutions,ssp2_2p5,GEO,cdd|Hazard|Absolute|Land area weighted,days/yr,27.58711593,27.58711593,27.58711593,27.58711593,27.58711593,27.58711593,27.58711593,27.58711593,27.58711593,27.58711593 +Climate Solutions,ssp2_2p5,HKG,cdd|Hazard|Absolute|Land area weighted,days/yr,50.58014592,50.58014592,50.58014592,50.58014592,50.58014592,50.58014592,50.58014592,50.58014592,50.58014592,50.58014592 +Climate Solutions,ssp2_2p5,DNK,cdd|Hazard|Absolute|Land area weighted,days/yr,24.75922072,24.75922072,24.75922072,24.75922072,24.75922072,24.75922072,24.75922072,24.75922072,24.75922072,24.75922072 +Climate Solutions,ssp2_2p5,POL,cdd|Hazard|Absolute|Land area weighted,days/yr,23.79190563,23.79190563,23.79190563,23.79190563,23.79190563,23.79190563,23.79190563,23.79190563,23.79190563,23.79190563 +Climate Solutions,ssp2_2p5,MDA,cdd|Hazard|Absolute|Land area weighted,days/yr,34.65047104,34.65047104,34.65047104,34.65047104,34.65047104,34.65047104,34.65047104,34.65047104,34.65047104,34.65047104 +Climate Solutions,ssp2_2p5,MAR,cdd|Hazard|Absolute|Land area weighted,days/yr,118.9080848,118.9080848,118.9080848,118.9080848,118.9080848,118.9080848,118.9080848,118.9080848,118.9080848,118.9080848 +Climate Solutions,ssp2_2p5,HRV,cdd|Hazard|Absolute|Land area weighted,days/yr,29.16003948,29.16003948,29.16003948,29.16003948,29.16003948,29.16003948,29.16003948,29.16003948,29.16003948,29.16003948 +Climate Solutions,ssp2_2p5,MNG,cdd|Hazard|Absolute|Land area weighted,days/yr,98.71834435,98.71834435,98.71834435,98.71834435,98.71834435,98.71834435,98.71834435,98.71834435,98.71834435,98.71834435 +Climate Solutions,ssp2_2p5,GNB,cdd|Hazard|Absolute|Land area weighted,days/yr,197.2354389,197.2354389,197.2354389,197.2354389,197.2354389,197.2354389,197.2354389,197.2354389,197.2354389,197.2354389 +Climate Solutions,ssp2_2p5,KIR,cdd|Hazard|Absolute|Land area weighted,days/yr,28.76946097,28.76946097,28.76946097,28.76946097,28.76946097,28.76946097,28.76946097,28.76946097,28.76946097,28.76946097 +Climate Solutions,ssp2_2p5,CHE,cdd|Hazard|Absolute|Land area weighted,days/yr,19.92164226,19.92164226,19.92164226,19.92164226,19.92164226,19.92164226,19.92164226,19.92164226,19.92164226,19.92164226 +Climate Solutions,ssp2_2p5,GRD,cdd|Hazard|Absolute|Land area weighted,days/yr,24.32090183,24.32090183,24.32090183,24.32090183,24.32090183,24.32090183,24.32090183,24.32090183,24.32090183,24.32090183 +Climate Solutions,ssp2_2p5,BLZ,cdd|Hazard|Absolute|Land area weighted,days/yr,32.24831448,32.24831448,32.24831448,32.24831448,32.24831448,32.24831448,32.24831448,32.24831448,32.24831448,32.24831448 +Climate Solutions,ssp2_2p5,TCD,cdd|Hazard|Absolute|Land area weighted,days/yr,253.1391107,253.1391107,253.1391107,253.1391107,253.1391107,253.1391107,253.1391107,253.1391107,253.1391107,253.1391107 +Climate Solutions,ssp2_2p5,EST,cdd|Hazard|Absolute|Land area weighted,days/yr,22.83676626,22.83676626,22.83676626,22.83676626,22.83676626,22.83676626,22.83676626,22.83676626,22.83676626,22.83676626 +Climate Solutions,ssp2_2p5,URY,cdd|Hazard|Absolute|Land area weighted,days/yr,26.34603149,26.34603149,26.34603149,26.34603149,26.34603149,26.34603149,26.34603149,26.34603149,26.34603149,26.34603149 +Climate Solutions,ssp2_2p5,GNQ,cdd|Hazard|Absolute|Land area weighted,days/yr,27.72074121,27.72074121,27.72074121,27.72074121,27.72074121,27.72074121,27.72074121,27.72074121,27.72074121,27.72074121 +Climate Solutions,ssp2_2p5,LBN,cdd|Hazard|Absolute|Land area weighted,days/yr,131.4123747,131.4123747,131.4123747,131.4123747,131.4123747,131.4123747,131.4123747,131.4123747,131.4123747,131.4123747 +Climate Solutions,ssp2_2p5,UZB,cdd|Hazard|Absolute|Land area weighted,days/yr,112.5377447,112.5377447,112.5377447,112.5377447,112.5377447,112.5377447,112.5377447,112.5377447,112.5377447,112.5377447 +Climate Solutions,ssp2_2p5,TUN,cdd|Hazard|Absolute|Land area weighted,days/yr,120.0109233,120.0109233,120.0109233,120.0109233,120.0109233,120.0109233,120.0109233,120.0109233,120.0109233,120.0109233 +Climate Solutions,ssp2_2p5,DJI,cdd|Hazard|Absolute|Land area weighted,days/yr,124.8069258,124.8069258,124.8069258,124.8069258,124.8069258,124.8069258,124.8069258,124.8069258,124.8069258,124.8069258 +Climate Solutions,ssp2_2p5,RWA,cdd|Hazard|Absolute|Land area weighted,days/yr,45.99146577,45.99146577,45.99146577,45.99146577,45.99146577,45.99146577,45.99146577,45.99146577,45.99146577,45.99146577 +Climate Solutions,ssp2_2p5,TLS,cdd|Hazard|Absolute|Land area weighted,days/yr,62.90238673,62.90238673,62.90238673,62.90238673,62.90238673,62.90238673,62.90238673,62.90238673,62.90238673,62.90238673 +Climate Solutions,ssp2_2p5,COL,cdd|Hazard|Absolute|Land area weighted,days/yr,33.89458973,33.89458973,33.89458973,33.89458973,33.89458973,33.89458973,33.89458973,33.89458973,33.89458973,33.89458973 +Climate Solutions,ssp2_2p5,REU,cdd|Hazard|Absolute|Land area weighted,days/yr,18.4194556,18.4194556,18.4194556,18.4194556,18.4194556,18.4194556,18.4194556,18.4194556,18.4194556,18.4194556 +Climate Solutions,ssp2_2p5,BDI,cdd|Hazard|Absolute|Land area weighted,days/yr,64.42561567,64.42561567,64.42561567,64.42561567,64.42561567,64.42561567,64.42561567,64.42561567,64.42561567,64.42561567 +Climate Solutions,ssp2_2p5,TWN,cdd|Hazard|Absolute|Land area weighted,days/yr,26.80724232,26.80724232,26.80724232,26.80724232,26.80724232,26.80724232,26.80724232,26.80724232,26.80724232,26.80724232 +Climate Solutions,ssp2_2p5,NIC,cdd|Hazard|Absolute|Land area weighted,days/yr,53.32279964,53.32279964,53.32279964,53.32279964,53.32279964,53.32279964,53.32279964,53.32279964,53.32279964,53.32279964 +Climate Solutions,ssp2_2p5,BRB,cdd|Hazard|Absolute|Land area weighted,days/yr,53.07464847,53.07464847,53.07464847,53.07464847,53.07464847,53.07464847,53.07464847,53.07464847,53.07464847,53.07464847 +Climate Solutions,ssp2_2p5,QAT,cdd|Hazard|Absolute|Land area weighted,days/yr,228.3993961,228.3993961,228.3993961,228.3993961,228.3993961,228.3993961,228.3993961,228.3993961,228.3993961,228.3993961 +Climate Solutions,ssp2_2p5,COD,cdd|Hazard|Absolute|Land area weighted,days/yr,62.47147643,62.47147643,62.47147643,62.47147643,62.47147643,62.47147643,62.47147643,62.47147643,62.47147643,62.47147643 +Climate Solutions,ssp2_2p5,ITA,cdd|Hazard|Absolute|Land area weighted,days/yr,42.98677497,42.98677497,42.98677497,42.98677497,42.98677497,42.98677497,42.98677497,42.98677497,42.98677497,42.98677497 +Climate Solutions,ssp2_2p5,BTN,cdd|Hazard|Absolute|Land area weighted,days/yr,101.9320378,101.9320378,101.9320378,101.9320378,101.9320378,101.9320378,101.9320378,101.9320378,101.9320378,101.9320378 +Climate Solutions,ssp2_2p5,SDN,cdd|Hazard|Absolute|Land area weighted,days/yr,259.2410882,259.2410882,259.2410882,259.2410882,259.2410882,259.2410882,259.2410882,259.2410882,259.2410882,259.2410882 +Climate Solutions,ssp2_2p5,NPL,cdd|Hazard|Absolute|Land area weighted,days/yr,95.99426204,95.99426204,95.99426204,95.99426204,95.99426204,95.99426204,95.99426204,95.99426204,95.99426204,95.99426204 +Climate Solutions,ssp2_2p5,MLT,cdd|Hazard|Absolute|Land area weighted,days/yr,85.73558162,85.73558162,85.73558162,85.73558162,85.73558162,85.73558162,85.73558162,85.73558162,85.73558162,85.73558162 +Climate Solutions,ssp2_2p5,MDV,cdd|Hazard|Absolute|Land area weighted,days/yr,24.36195483,24.36195483,24.36195483,24.36195483,24.36195483,24.36195483,24.36195483,24.36195483,24.36195483,24.36195483 +Climate Solutions,ssp2_2p5,SUR,cdd|Hazard|Absolute|Land area weighted,days/yr,29.16329647,29.16329647,29.16329647,29.16329647,29.16329647,29.16329647,29.16329647,29.16329647,29.16329647,29.16329647 +Climate Solutions,ssp2_2p5,VEN,cdd|Hazard|Absolute|Land area weighted,days/yr,59.30525746,59.30525746,59.30525746,59.30525746,59.30525746,59.30525746,59.30525746,59.30525746,59.30525746,59.30525746 +Climate Solutions,ssp2_2p5,ISR,cdd|Hazard|Absolute|Land area weighted,days/yr,183.4031599,183.4031599,183.4031599,183.4031599,183.4031599,183.4031599,183.4031599,183.4031599,183.4031599,183.4031599 +Climate Solutions,ssp2_2p5,ISL,cdd|Hazard|Absolute|Land area weighted,days/yr,19.36806689,19.36806689,19.36806689,19.36806689,19.36806689,19.36806689,19.36806689,19.36806689,19.36806689,19.36806689 +Climate Solutions,ssp2_2p5,ZMB,cdd|Hazard|Absolute|Land area weighted,days/yr,171.4647334,171.4647334,171.4647334,171.4647334,171.4647334,171.4647334,171.4647334,171.4647334,171.4647334,171.4647334 +Climate Solutions,ssp2_2p5,SEN,cdd|Hazard|Absolute|Land area weighted,days/yr,215.6932309,215.6932309,215.6932309,215.6932309,215.6932309,215.6932309,215.6932309,215.6932309,215.6932309,215.6932309 +Climate Solutions,ssp2_2p5,PNG,cdd|Hazard|Absolute|Land area weighted,days/yr,18.77115817,18.77115817,18.77115817,18.77115817,18.77115817,18.77115817,18.77115817,18.77115817,18.77115817,18.77115817 +Climate Solutions,ssp2_2p5,MWI,cdd|Hazard|Absolute|Land area weighted,days/yr,114.4116656,114.4116656,114.4116656,114.4116656,114.4116656,114.4116656,114.4116656,114.4116656,114.4116656,114.4116656 +Climate Solutions,ssp2_2p5,TTO,cdd|Hazard|Absolute|Land area weighted,days/yr,26.75039446,26.75039446,26.75039446,26.75039446,26.75039446,26.75039446,26.75039446,26.75039446,26.75039446,26.75039446 +Climate Solutions,ssp2_2p5,ZWE,cdd|Hazard|Absolute|Land area weighted,days/yr,136.5542756,136.5542756,136.5542756,136.5542756,136.5542756,136.5542756,136.5542756,136.5542756,136.5542756,136.5542756 +Climate Solutions,ssp2_2p5,DEU,cdd|Hazard|Absolute|Land area weighted,days/yr,22.24812094,22.24812094,22.24812094,22.24812094,22.24812094,22.24812094,22.24812094,22.24812094,22.24812094,22.24812094 +Climate Solutions,ssp2_2p5,VUT,cdd|Hazard|Absolute|Land area weighted,days/yr,18.31524545,18.31524545,18.31524545,18.31524545,18.31524545,18.31524545,18.31524545,18.31524545,18.31524545,18.31524545 +Climate Solutions,ssp2_2p5,MTQ,cdd|Hazard|Absolute|Land area weighted,days/yr,24.47164896,24.47164896,24.47164896,24.47164896,24.47164896,24.47164896,24.47164896,24.47164896,24.47164896,24.47164896 +Climate Solutions,ssp2_2p5,KAZ,cdd|Hazard|Absolute|Land area weighted,days/yr,55.3161757,55.3161757,55.3161757,55.3161757,55.3161757,55.3161757,55.3161757,55.3161757,55.3161757,55.3161757 +Climate Solutions,ssp2_2p5,PHL,cdd|Hazard|Absolute|Land area weighted,days/yr,35.64269658,35.64269658,35.64269658,35.64269658,35.64269658,35.64269658,35.64269658,35.64269658,35.64269658,35.64269658 +Climate Solutions,ssp2_2p5,ERI,cdd|Hazard|Absolute|Land area weighted,days/yr,144.1254519,144.1254519,144.1254519,144.1254519,144.1254519,144.1254519,144.1254519,144.1254519,144.1254519,144.1254519 +Climate Solutions,ssp2_2p5,NCL,cdd|Hazard|Absolute|Land area weighted,days/yr,27.28665628,27.28665628,27.28665628,27.28665628,27.28665628,27.28665628,27.28665628,27.28665628,27.28665628,27.28665628 +Climate Solutions,ssp2_2p5,MKD,cdd|Hazard|Absolute|Land area weighted,days/yr,38.74283008,38.74283008,38.74283008,38.74283008,38.74283008,38.74283008,38.74283008,38.74283008,38.74283008,38.74283008 +Climate Solutions,ssp2_2p5,PRK,cdd|Hazard|Absolute|Land area weighted,days/yr,35.80831992,35.80831992,35.80831992,35.80831992,35.80831992,35.80831992,35.80831992,35.80831992,35.80831992,35.80831992 +Climate Solutions,ssp2_2p5,PRY,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1785929,49.1785929,49.1785929,49.1785929,49.1785929,49.1785929,49.1785929,49.1785929,49.1785929,49.1785929 +Climate Solutions,ssp2_2p5,LVA,cdd|Hazard|Absolute|Land area weighted,days/yr,22.73539718,22.73539718,22.73539718,22.73539718,22.73539718,22.73539718,22.73539718,22.73539718,22.73539718,22.73539718 +Climate Solutions,ssp2_2p5,JPN,cdd|Hazard|Absolute|Land area weighted,days/yr,17.0212784,17.0212784,17.0212784,17.0212784,17.0212784,17.0212784,17.0212784,17.0212784,17.0212784,17.0212784 +Climate Solutions,ssp2_2p5,SYR,cdd|Hazard|Absolute|Land area weighted,days/yr,151.327124,151.327124,151.327124,151.327124,151.327124,151.327124,151.327124,151.327124,151.327124,151.327124 +Climate Solutions,ssp2_2p5,HND,cdd|Hazard|Absolute|Land area weighted,days/yr,42.72037766,42.72037766,42.72037766,42.72037766,42.72037766,42.72037766,42.72037766,42.72037766,42.72037766,42.72037766 +Climate Solutions,ssp2_2p5,MMR,cdd|Hazard|Absolute|Land area weighted,days/yr,107.4781331,107.4781331,107.4781331,107.4781331,107.4781331,107.4781331,107.4781331,107.4781331,107.4781331,107.4781331 +Climate Solutions,ssp2_2p5,MEX,cdd|Hazard|Absolute|Land area weighted,days/yr,103.6464372,103.6464372,103.6464372,103.6464372,103.6464372,103.6464372,103.6464372,103.6464372,103.6464372,103.6464372 +Climate Solutions,ssp2_2p5,EGY,cdd|Hazard|Absolute|Land area weighted,days/yr,314.8997384,314.8997384,314.8997384,314.8997384,314.8997384,314.8997384,314.8997384,314.8997384,314.8997384,314.8997384 +Climate Solutions,ssp2_2p5,SGP,cdd|Hazard|Absolute|Land area weighted,days/yr,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495 +Climate Solutions,ssp2_2p5,SRB,cdd|Hazard|Absolute|Land area weighted,days/yr,31.95278942,31.95278942,31.95278942,31.95278942,31.95278942,31.95278942,31.95278942,31.95278942,31.95278942,31.95278942 +Climate Solutions,ssp2_2p5,BWA,cdd|Hazard|Absolute|Land area weighted,days/yr,161.4192279,161.4192279,161.4192279,161.4192279,161.4192279,161.4192279,161.4192279,161.4192279,161.4192279,161.4192279 +Climate Solutions,ssp2_2p5,GBR,cdd|Hazard|Absolute|Land area weighted,days/yr,22.5176692,22.5176692,22.5176692,22.5176692,22.5176692,22.5176692,22.5176692,22.5176692,22.5176692,22.5176692 +Climate Solutions,ssp2_2p5,GMB,cdd|Hazard|Absolute|Land area weighted,days/yr,213.2589333,213.2589333,213.2589333,213.2589333,213.2589333,213.2589333,213.2589333,213.2589333,213.2589333,213.2589333 +Climate Solutions,ssp2_2p5,GRC,cdd|Hazard|Absolute|Land area weighted,days/yr,62.62199271,62.62199271,62.62199271,62.62199271,62.62199271,62.62199271,62.62199271,62.62199271,62.62199271,62.62199271 +Climate Solutions,ssp2_2p5,LKA,cdd|Hazard|Absolute|Land area weighted,days/yr,48.24568419,48.24568419,48.24568419,48.24568419,48.24568419,48.24568419,48.24568419,48.24568419,48.24568419,48.24568419 +Climate Solutions,ssp2_2p5,GUF,cdd|Hazard|Absolute|Land area weighted,days/yr,28.54383701,28.54383701,28.54383701,28.54383701,28.54383701,28.54383701,28.54383701,28.54383701,28.54383701,28.54383701 +Climate Solutions,ssp2_2p5,COM,cdd|Hazard|Absolute|Land area weighted,days/yr,22.94001355,22.94001355,22.94001355,22.94001355,22.94001355,22.94001355,22.94001355,22.94001355,22.94001355,22.94001355 +Climate Solutions,ssp2_2p5,FSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.11995356,10.11995356,10.11995356,10.11995356,10.11995356,10.11995356,10.11995356,10.11995356,10.11995356,10.11995356 +Climate Solutions,ssp2_2p5,GLP,cdd|Hazard|Absolute|Land area weighted,days/yr,19.22798156,19.22798156,19.22798156,19.22798156,19.22798156,19.22798156,19.22798156,19.22798156,19.22798156,19.22798156 +Climate Solutions,ssp2_2p5,MYT,cdd|Hazard|Absolute|Land area weighted,days/yr,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548 +Climate Solutions,ssp2_2p5,VIR,cdd|Hazard|Absolute|Land area weighted,days/yr,24.21442483,24.21442483,24.21442483,24.21442483,24.21442483,24.21442483,24.21442483,24.21442483,24.21442483,24.21442483 +Climate Solutions,ssp2_2p5,CAN,cdd|Hazard|Absolute|Population weighted,days/yr,22.1922891,22.19853434,22.20655739,22.21029633,22.21646886,22.21884891,22.22162244,22.22446074,22.22431632,22.22172034 +Climate Solutions,ssp2_2p5,STP,cdd|Hazard|Absolute|Population weighted,days/yr,36.13924215,36.140735,36.14232805,36.14398979,36.14555887,36.14698176,36.14823767,36.14930484,36.15020816,36.15099457 +Climate Solutions,ssp2_2p5,TKM,cdd|Hazard|Absolute|Population weighted,days/yr,135.3334005,135.6209529,135.9987673,136.4163238,136.8325545,137.2867448,137.745402,138.2174974,138.6680129,139.0206814 +Climate Solutions,ssp2_2p5,LTU,cdd|Hazard|Absolute|Population weighted,days/yr,23.03824391,23.03526417,23.03266562,23.03063803,23.02884089,23.02725174,23.02580428,23.02434104,23.02282489,23.02131371 +Climate Solutions,ssp2_2p5,KHM,cdd|Hazard|Absolute|Population weighted,days/yr,88.26113125,88.26040934,88.26716918,88.27957774,88.30094994,88.32796134,88.35816269,88.39231701,88.42825403,88.46255887 +Climate Solutions,ssp2_2p5,ETH,cdd|Hazard|Absolute|Population weighted,days/yr,80.13100022,80.17011036,80.19284834,80.21269532,80.22264832,80.22761042,80.23259547,80.2369229,80.2400065,80.24212261 +Climate Solutions,ssp2_2p5,SWZ,cdd|Hazard|Absolute|Population weighted,days/yr,63.30113057,63.21687089,63.12697987,63.0402636,62.96932083,62.90792586,62.84985578,62.79358346,62.74507717,62.70146246 +Climate Solutions,ssp2_2p5,PSE,cdd|Hazard|Absolute|Population weighted,days/yr,168.6930398,168.7091792,168.7500321,168.8003705,168.8550437,168.909723,168.9489622,168.9673202,168.9684843,168.954735 +Climate Solutions,ssp2_2p5,ARG,cdd|Hazard|Absolute|Population weighted,days/yr,47.81162961,47.67939202,47.56018342,47.46214036,47.37916357,47.31146128,47.25760556,47.21334601,47.17862691,47.15223943 +Climate Solutions,ssp2_2p5,BOL,cdd|Hazard|Absolute|Population weighted,days/yr,68.25062434,68.18365459,68.10748051,68.03593013,67.97858172,67.9251733,67.87228534,67.82517499,67.78991666,67.75997842 +Climate Solutions,ssp2_2p5,BHS,cdd|Hazard|Absolute|Population weighted,days/yr,21.95238963,21.91519098,21.88941514,21.87467765,21.86462339,21.85398747,21.8453048,21.84033491,21.83530146,21.82873776 +Climate Solutions,ssp2_2p5,BFA,cdd|Hazard|Absolute|Population weighted,days/yr,162.9456621,162.853712,162.8171991,162.8113202,162.8253341,162.8474897,162.8679032,162.8875917,162.9059657,162.9232566 +Climate Solutions,ssp2_2p5,GHA,cdd|Hazard|Absolute|Population weighted,days/yr,58.49662196,58.67501249,58.79289223,58.86805323,58.90498702,58.91545401,58.9086595,58.89025175,58.86384669,58.831712 +Climate Solutions,ssp2_2p5,SAU,cdd|Hazard|Absolute|Population weighted,days/yr,204.4100505,204.6276409,204.7085744,204.7540895,204.7766473,204.788234,204.7679351,204.7293888,204.6865417,204.6422327 +Climate Solutions,ssp2_2p5,CPV,cdd|Hazard|Absolute|Population weighted,days/yr,100.4486545,100.4882205,100.5235756,100.5535822,100.5791585,100.5969903,100.6105306,100.6229389,100.632997,100.6414554 +Climate Solutions,ssp2_2p5,SVN,cdd|Hazard|Absolute|Population weighted,days/yr,26.1419445,26.13783158,26.13496667,26.13129787,26.12758333,26.12424609,26.1204366,26.11571272,26.11065893,26.10639089 +Climate Solutions,ssp2_2p5,GTM,cdd|Hazard|Absolute|Population weighted,days/yr,57.29557056,57.31222428,57.35113334,57.40121152,57.4649531,57.53294287,57.60218171,57.67241904,57.74131356,57.80869378 +Climate Solutions,ssp2_2p5,BIH,cdd|Hazard|Absolute|Population weighted,days/yr,27.55148532,27.55373888,27.55839179,27.5663896,27.57772038,27.59108112,27.60461848,27.61756531,27.62842979,27.63595968 +Climate Solutions,ssp2_2p5,GIN,cdd|Hazard|Absolute|Population weighted,days/yr,123.5580628,123.4830515,123.4225017,123.3625239,123.3013966,123.2414493,123.2030277,123.1839381,123.184888,123.2029968 +Climate Solutions,ssp2_2p5,JOR,cdd|Hazard|Absolute|Population weighted,days/yr,183.875006,183.9521283,184.0155117,184.0601954,184.0867416,184.0989431,184.0830098,184.0435619,183.9906382,183.9204781 +Climate Solutions,ssp2_2p5,COG,cdd|Hazard|Absolute|Population weighted,days/yr,82.37978654,82.23005505,82.16789369,82.13899341,82.15054693,82.19119833,82.24063578,82.29824696,82.37093505,82.44496429 +Climate Solutions,ssp2_2p5,ESP,cdd|Hazard|Absolute|Population weighted,days/yr,59.4644502,59.3958704,59.30828522,59.22911191,59.15396594,59.07609987,58.99840146,58.92978136,58.87102876,58.82103905 +Climate Solutions,ssp2_2p5,LBR,cdd|Hazard|Absolute|Population weighted,days/yr,62.68125886,62.47132808,62.33395967,62.23649836,62.15979275,62.10044583,62.05796969,62.02851759,62.01169305,62.00722085 +Climate Solutions,ssp2_2p5,NLD,cdd|Hazard|Absolute|Population weighted,days/yr,23.11517695,23.12294439,23.13028961,23.13701951,23.14309293,23.14868001,23.15375161,23.15824418,23.16220302,23.16562935 +Climate Solutions,ssp2_2p5,JAM,cdd|Hazard|Absolute|Population weighted,days/yr,29.25091534,29.25651704,29.26233005,29.2687528,29.27559322,29.28198416,29.28708518,29.29116417,29.2944634,29.29717268 +Climate Solutions,ssp2_2p5,OMN,cdd|Hazard|Absolute|Population weighted,days/yr,184.2863267,184.7394608,184.9469334,185.1182224,185.1954141,185.2639039,185.2861542,185.2675432,185.2297704,185.1616709 +Climate Solutions,ssp2_2p5,TZA,cdd|Hazard|Absolute|Population weighted,days/yr,86.77889021,87.09076228,87.31775648,87.47560251,87.5781774,87.63862155,87.680929,87.70986339,87.73291069,87.74601308 +Climate Solutions,ssp2_2p5,ALB,cdd|Hazard|Absolute|Population weighted,days/yr,41.86320658,41.94587637,42.00177003,42.03671621,42.05598039,42.06272727,42.06548228,42.06578849,42.06460533,42.06686318 +Climate Solutions,ssp2_2p5,GAB,cdd|Hazard|Absolute|Population weighted,days/yr,46.48119907,46.39943343,46.35352503,46.33800061,46.31279815,46.28916406,46.25894454,46.23349949,46.20482522,46.19671883 +Climate Solutions,ssp2_2p5,NZL,cdd|Hazard|Absolute|Population weighted,days/yr,19.22317796,19.23345985,19.24127096,19.24853624,19.25423909,19.25923538,19.263616,19.26789071,19.27160416,19.27512326 +Climate Solutions,ssp2_2p5,YEM,cdd|Hazard|Absolute|Population weighted,days/yr,140.645947,140.9519864,141.1781332,141.354596,141.4777109,141.5697977,141.6366895,141.6830699,141.7149114,141.7345568 +Climate Solutions,ssp2_2p5,PAK,cdd|Hazard|Absolute|Population weighted,days/yr,118.8114343,119.0974308,119.3158125,119.4924467,119.657873,119.805121,119.9385962,120.0608607,120.1709604,120.2672277 +Climate Solutions,ssp2_2p5,WSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.42525858,10.4257173,10.4241591,10.41948788,10.41230525,10.40241252,10.39309726,10.38463817,10.37742556,10.37135854 +Climate Solutions,ssp2_2p5,SVK,cdd|Hazard|Absolute|Population weighted,days/yr,24.76330165,24.76573904,24.77154005,24.78009642,24.78687242,24.79241718,24.79845667,24.80438008,24.80865544,24.81111021 +Climate Solutions,ssp2_2p5,ARE,cdd|Hazard|Absolute|Population weighted,days/yr,210.4229709,210.795545,210.8730248,210.8817317,210.8532868,210.8013657,210.7215209,210.6362936,210.5658919,210.5062441 +Climate Solutions,ssp2_2p5,GUM,cdd|Hazard|Absolute|Population weighted,days/yr,27.84098007,27.86155531,27.86911231,27.87334147,27.87590732,27.8774564,27.87830552,27.87878166,27.87913757,27.87941992 +Climate Solutions,ssp2_2p5,IND,cdd|Hazard|Absolute|Population weighted,days/yr,131.4111415,131.4643639,131.511697,131.5714127,131.6383708,131.7086954,131.7780275,131.8431607,131.9021327,131.9531928 +Climate Solutions,ssp2_2p5,AZE,cdd|Hazard|Absolute|Population weighted,days/yr,59.11969384,59.26281165,59.38987065,59.49399315,59.58340433,59.65828246,59.71886786,59.7638895,59.79870818,59.82748567 +Climate Solutions,ssp2_2p5,MDG,cdd|Hazard|Absolute|Population weighted,days/yr,53.03645078,53.06846603,53.09841106,53.12578317,53.14940023,53.17082914,53.19147617,53.21126032,53.22929074,53.24524293 +Climate Solutions,ssp2_2p5,LSO,cdd|Hazard|Absolute|Population weighted,days/yr,63.7757111,63.79172754,63.80945381,63.82746037,63.84520151,63.86134136,63.87675598,63.89196926,63.90581606,63.91887858 +Climate Solutions,ssp2_2p5,VCT,cdd|Hazard|Absolute|Population weighted,days/yr,45.33897228,45.38194989,45.41885341,45.45010943,45.47624209,45.49787813,45.51558157,45.53019842,45.54242171,45.55277917 +Climate Solutions,ssp2_2p5,KEN,cdd|Hazard|Absolute|Population weighted,days/yr,42.48535131,42.47097449,42.4502374,42.42476622,42.39697708,42.3687581,42.34282342,42.31845308,42.29658329,42.27653829 +Climate Solutions,ssp2_2p5,KOR,cdd|Hazard|Absolute|Population weighted,days/yr,35.86188091,35.85862402,35.85577946,35.85362265,35.85139548,35.84928437,35.84741373,35.84584906,35.84485034,35.84420809 +Climate Solutions,ssp2_2p5,BLR,cdd|Hazard|Absolute|Population weighted,days/yr,24.46339779,24.45738638,24.45196364,24.44751269,24.4436686,24.44055601,24.43785481,24.43539319,24.43320807,24.43117358 +Climate Solutions,ssp2_2p5,TJK,cdd|Hazard|Absolute|Population weighted,days/yr,98.99681481,99.7145226,100.4464129,101.1983105,101.9324391,102.6478424,103.3073637,103.8999073,104.4130566,104.8140675 +Climate Solutions,ssp2_2p5,TUR,cdd|Hazard|Absolute|Population weighted,days/yr,66.70416076,66.81327909,66.90983124,66.98592487,67.04234933,67.09030962,67.12631048,67.15252352,67.16838838,67.17257674 +Climate Solutions,ssp2_2p5,AFG,cdd|Hazard|Absolute|Population weighted,days/yr,114.6233087,115.5202514,116.2355869,116.7793249,117.1697835,117.4528817,117.6578354,117.8259249,117.970887,118.0971112 +Climate Solutions,ssp2_2p5,BGD,cdd|Hazard|Absolute|Population weighted,days/yr,109.1512775,109.1623753,109.1694204,109.1762145,109.1826218,109.1877136,109.1907319,109.1915734,109.1900688,109.1868279 +Climate Solutions,ssp2_2p5,MRT,cdd|Hazard|Absolute|Population weighted,days/yr,236.9376426,236.8188708,236.6773349,236.5689077,236.4927437,236.4926595,236.4612988,236.4330005,236.4210534,236.4137244 +Climate Solutions,ssp2_2p5,SLB,cdd|Hazard|Absolute|Population weighted,days/yr,18.8715598,18.80543846,18.76570017,18.74305927,18.73496715,18.73472961,18.73966542,18.74908279,18.76196554,18.77718906 +Climate Solutions,ssp2_2p5,LCA,cdd|Hazard|Absolute|Population weighted,days/yr,7.058650463,6.821733282,6.662289762,6.54917549,6.473355106,6.445493138,6.480373061,6.579435078,6.707595593,6.838270631 +Climate Solutions,ssp2_2p5,CYP,cdd|Hazard|Absolute|Population weighted,days/yr,108.1333409,108.1294701,108.1308554,108.1369133,108.1439672,108.1532745,108.1674233,108.185625,108.2019347,108.2161923 +Climate Solutions,ssp2_2p5,PYF,cdd|Hazard|Absolute|Population weighted,days/yr,17.71829135,17.73052718,17.74278397,17.75439821,17.76527476,17.77486661,17.78326335,17.79043511,17.79685538,17.80225038 +Climate Solutions,ssp2_2p5,FRA,cdd|Hazard|Absolute|Population weighted,days/yr,27.28828116,27.29063647,27.29283177,27.2951033,27.29737752,27.29994444,27.30324848,27.30711983,27.31136434,27.3162051 +Climate Solutions,ssp2_2p5,NAM,cdd|Hazard|Absolute|Population weighted,days/yr,183.4059261,183.363007,183.2898595,183.2567561,183.1853436,183.1266055,183.0796624,183.0262436,182.9630046,182.908737 +Climate Solutions,ssp2_2p5,SOM,cdd|Hazard|Absolute|Population weighted,days/yr,111.5548383,111.6012539,111.6407131,111.6572711,111.6730673,111.6821657,111.6874583,111.6853238,111.6807498,111.6749466 +Climate Solutions,ssp2_2p5,PER,cdd|Hazard|Absolute|Population weighted,days/yr,125.7228169,127.2613083,128.7562247,130.1726847,131.4953736,132.6903348,133.7135189,134.5984696,135.3586221,136.0098189 +Climate Solutions,ssp2_2p5,LAO,cdd|Hazard|Absolute|Population weighted,days/yr,71.72447897,71.70875257,71.7401691,71.78439991,71.83830932,71.91324977,71.98786294,72.06210996,72.12990375,72.17680926 +Climate Solutions,ssp2_2p5,SYC,cdd|Hazard|Absolute|Population weighted,days/yr,18.86104839,18.86934907,18.87251198,18.87567328,18.87567328,18.87576516,18.87571508,18.87568665,18.87560085,18.87566263 +Climate Solutions,ssp2_2p5,NOR,cdd|Hazard|Absolute|Population weighted,days/yr,22.75495044,22.79291755,22.82250021,22.84549313,22.86483815,22.88077664,22.89444709,22.90601831,22.91578461,22.9240302 +Climate Solutions,ssp2_2p5,CIV,cdd|Hazard|Absolute|Population weighted,days/yr,66.58837698,66.70597594,66.79428631,66.85951103,66.90407758,66.93330512,66.95468015,66.96929166,66.98143794,66.98980522 +Climate Solutions,ssp2_2p5,BEN,cdd|Hazard|Absolute|Population weighted,days/yr,102.0178307,102.1732609,102.299883,102.4177238,102.5294656,102.6225704,102.7033441,102.7740545,102.8335691,102.884041 +Climate Solutions,ssp2_2p5,ESH,cdd|Hazard|Absolute|Population weighted,days/yr,218.7707503,219.1242997,219.2906985,219.7218434,219.8128662,220.2787745,220.3273596,220.6333526,220.88511,221.0785964 +Climate Solutions,ssp2_2p5,CUB,cdd|Hazard|Absolute|Population weighted,days/yr,34.36542122,34.36755563,34.36954084,34.37119441,34.3725403,34.37368044,34.3746167,34.37545888,34.37614299,34.37667847 +Climate Solutions,ssp2_2p5,CMR,cdd|Hazard|Absolute|Population weighted,days/yr,99.84227759,100.2819913,100.7548747,101.2154631,101.6730519,102.0735747,102.4433538,102.7829322,103.1056385,103.4075451 +Climate Solutions,ssp2_2p5,MNE,cdd|Hazard|Absolute|Population weighted,days/yr,30.77219394,30.80227436,30.82512582,30.8439429,30.86076639,30.87561088,30.88977331,30.90099613,30.90917338,30.91581235 +Climate Solutions,ssp2_2p5,TGO,cdd|Hazard|Absolute|Population weighted,days/yr,87.80397478,87.9429376,88.03116299,88.07625102,88.09393072,88.09300663,88.07670162,88.05011948,88.01576927,87.97633988 +Climate Solutions,ssp2_2p5,CHN,cdd|Hazard|Absolute|Population weighted,days/yr,52.50334088,52.56019569,52.61485462,52.66341921,52.7069119,52.74140373,52.76883235,52.79108144,52.80933674,52.82400788 +Climate Solutions,ssp2_2p5,ARM,cdd|Hazard|Absolute|Population weighted,days/yr,40.85220888,40.9528674,41.04348779,41.12487241,41.19879237,41.2618836,41.31130738,41.3491497,41.37779202,41.39526534 +Climate Solutions,ssp2_2p5,ATG,cdd|Hazard|Absolute|Population weighted,days/yr,30.02544845,30.02553077,30.02557648,30.02559888,30.02563678,30.02563887,30.02564053,30.02564053,30.02565901,30.02563588 +Climate Solutions,ssp2_2p5,DOM,cdd|Hazard|Absolute|Population weighted,days/yr,27.38662801,27.36457217,27.34319505,27.32296963,27.30367146,27.28434714,27.2651185,27.24716469,27.2319289,27.22041204 +Climate Solutions,ssp2_2p5,UKR,cdd|Hazard|Absolute|Population weighted,days/yr,31.92956329,31.95852896,31.98504221,32.00845146,32.02887187,32.04716529,32.06485041,32.08053752,32.09424304,32.10629465 +Climate Solutions,ssp2_2p5,BHR,cdd|Hazard|Absolute|Population weighted,days/yr,202.950145,202.9727934,202.9895841,203.0027414,203.0126416,203.0200381,203.02509,203.0281231,203.0297448,203.0307859 +Climate Solutions,ssp2_2p5,TON,cdd|Hazard|Absolute|Population weighted,days/yr,19.97869839,20.01769128,20.0767087,20.15094199,20.23889725,20.33569938,20.42148361,20.49546415,20.55898138,20.61132779 +Climate Solutions,ssp2_2p5,FIN,cdd|Hazard|Absolute|Population weighted,days/yr,23.62120859,23.62749109,23.63331658,23.6382751,23.64240455,23.64619238,23.64953752,23.65242802,23.6549464,23.65716279 +Climate Solutions,ssp2_2p5,LBY,cdd|Hazard|Absolute|Population weighted,days/yr,174.3185237,174.5561884,174.6639772,174.8394453,174.9940309,174.780077,174.7023337,174.6751924,174.7309146,174.6564776 +Climate Solutions,ssp2_2p5,IDN,cdd|Hazard|Absolute|Population weighted,days/yr,32.67152975,32.69543692,32.72093867,32.74583082,32.76992987,32.79265672,32.81418423,32.83298728,32.84968093,32.86482848 +Climate Solutions,ssp2_2p5,CAF,cdd|Hazard|Absolute|Population weighted,days/yr,89.79473359,89.91487206,90.03776806,90.16430844,90.26329643,90.34144642,90.40787741,90.49664678,90.57528941,90.64101215 +Climate Solutions,ssp2_2p5,USA,cdd|Hazard|Absolute|Population weighted,days/yr,40.45963608,40.61674942,40.76508402,40.91000924,41.04518646,41.16110888,41.26346137,41.35708234,41.44216774,41.51676871 +Climate Solutions,ssp2_2p5,SWE,cdd|Hazard|Absolute|Population weighted,days/yr,24.52156672,24.52268963,24.52439457,24.52505827,24.52610336,24.52637439,24.52704597,24.52778175,24.52853069,24.52965133 +Climate Solutions,ssp2_2p5,VNM,cdd|Hazard|Absolute|Population weighted,days/yr,58.78812563,58.83862132,58.94015552,59.07682245,59.2410566,59.42344964,59.61253292,59.79944816,59.96439795,60.10968026 +Climate Solutions,ssp2_2p5,MLI,cdd|Hazard|Absolute|Population weighted,days/yr,185.1445685,185.1756496,185.1922558,185.210387,185.2136093,185.2678489,185.2636875,185.2960506,185.3159786,185.3067109 +Climate Solutions,ssp2_2p5,RUS,cdd|Hazard|Absolute|Population weighted,days/yr,29.12678305,29.081449,29.03957111,28.99785374,28.95783489,28.92113112,28.88507927,28.85517826,28.82805579,28.80430142 +Climate Solutions,ssp2_2p5,BGR,cdd|Hazard|Absolute|Population weighted,days/yr,41.11307477,41.13610124,41.15193574,41.16489133,41.17513509,41.18233242,41.18979454,41.19830111,41.20710445,41.21598357 +Climate Solutions,ssp2_2p5,MUS,cdd|Hazard|Absolute|Population weighted,days/yr,28.83912196,28.75560276,28.68162,28.62178858,28.57627075,28.54214828,28.51847254,28.50416299,28.49437781,28.48599054 +Climate Solutions,ssp2_2p5,ROU,cdd|Hazard|Absolute|Population weighted,days/yr,33.52940073,33.58463484,33.63332336,33.67606527,33.71016313,33.73870714,33.76316692,33.78372541,33.80039416,33.81346791 +Climate Solutions,ssp2_2p5,AGO,cdd|Hazard|Absolute|Population weighted,days/yr,135.3394742,135.1993701,135.0850661,135.0074854,134.9613965,134.9356957,134.9124636,134.8994855,134.8846428,134.871236 +Climate Solutions,ssp2_2p5,PRT,cdd|Hazard|Absolute|Population weighted,days/yr,64.92489518,64.97950465,65.03092771,65.07468996,65.11370679,65.15125868,65.18768614,65.2209526,65.24960605,65.27485648 +Climate Solutions,ssp2_2p5,ZAF,cdd|Hazard|Absolute|Population weighted,days/yr,75.9860917,76.06428716,76.13918263,76.2124325,76.28285958,76.35076758,76.41301315,76.46920202,76.5149972,76.55048587 +Climate Solutions,ssp2_2p5,FJI,cdd|Hazard|Absolute|Population weighted,days/yr,21.4031549,21.42229039,21.44286295,21.4625415,21.48198271,21.50092418,21.51706871,21.529919,21.54010475,21.54840743 +Climate Solutions,ssp2_2p5,BRN,cdd|Hazard|Absolute|Population weighted,days/yr,19.87763987,19.88916951,19.90293525,19.91809325,19.93394119,19.94957383,19.96389293,19.97678295,19.98807187,19.99688443 +Climate Solutions,ssp2_2p5,MYS,cdd|Hazard|Absolute|Population weighted,days/yr,20.55117927,20.54071746,20.53516953,20.52967233,20.52483978,20.52087962,20.5183555,20.51731431,20.51732495,20.51816678 +Climate Solutions,ssp2_2p5,AUT,cdd|Hazard|Absolute|Population weighted,days/yr,22.79273393,22.83257201,22.86875253,22.90231238,22.93477071,22.96483383,22.99127787,23.01468351,23.03603274,23.05687081 +Climate Solutions,ssp2_2p5,MOZ,cdd|Hazard|Absolute|Population weighted,days/yr,68.39627145,68.5672348,68.73610306,68.9033146,69.05840667,69.18729276,69.29844224,69.39909324,69.49401868,69.58196461 +Climate Solutions,ssp2_2p5,UGA,cdd|Hazard|Absolute|Population weighted,days/yr,30.51158539,30.63290573,30.71226756,30.7621214,30.79199637,30.80822224,30.81589193,30.81808636,30.81639557,30.81237235 +Climate Solutions,ssp2_2p5,KGZ,cdd|Hazard|Absolute|Population weighted,days/yr,54.07605981,54.16796305,54.26532535,54.29097053,54.34024774,54.36228586,54.3576266,54.3639363,54.37707492,54.39906789 +Climate Solutions,ssp2_2p5,HUN,cdd|Hazard|Absolute|Population weighted,days/yr,30.31129722,30.30655982,30.30322895,30.30095293,30.29848823,30.29629889,30.29472263,30.29337654,30.29227582,30.29147235 +Climate Solutions,ssp2_2p5,NER,cdd|Hazard|Absolute|Population weighted,days/yr,218.6510555,218.607639,218.6133052,218.6051009,218.6178717,218.6337168,218.6469553,218.6662819,218.6736307,218.6847893 +Climate Solutions,ssp2_2p5,BRA,cdd|Hazard|Absolute|Population weighted,days/yr,45.1639181,45.07651118,45.00553376,44.93455383,44.8585004,44.77996908,44.71764284,44.66592485,44.62377694,44.58672547 +Climate Solutions,ssp2_2p5,KWT,cdd|Hazard|Absolute|Population weighted,days/yr,200.3714305,200.4866423,200.5005264,200.5050032,200.5005038,200.4854868,200.452811,200.4038888,200.3489009,200.2845501 +Climate Solutions,ssp2_2p5,PAN,cdd|Hazard|Absolute|Population weighted,days/yr,44.52629274,44.62249808,44.70201633,44.76564255,44.81545166,44.85280416,44.88145841,44.9030116,44.92043481,44.93549027 +Climate Solutions,ssp2_2p5,GUY,cdd|Hazard|Absolute|Population weighted,days/yr,24.1190795,24.10806702,24.11438028,24.13173038,24.15121171,24.1620212,24.1347318,24.14935103,24.1650933,24.16872353 +Climate Solutions,ssp2_2p5,CRI,cdd|Hazard|Absolute|Population weighted,days/yr,40.63937395,40.66784161,40.68247608,40.68719846,40.68458509,40.67656834,40.66455263,40.6495275,40.63565643,40.62526844 +Climate Solutions,ssp2_2p5,LUX,cdd|Hazard|Absolute|Population weighted,days/yr,22.89602636,22.90741575,22.91652232,22.92405542,22.93013741,22.93503878,22.9387926,22.94145358,22.94331854,22.94467439 +Climate Solutions,ssp2_2p5,IRL,cdd|Hazard|Absolute|Population weighted,days/yr,21.15448698,21.16392047,21.17258006,21.18024752,21.18687845,21.19284891,21.19833558,21.2032645,21.20780645,21.21202239 +Climate Solutions,ssp2_2p5,NGA,cdd|Hazard|Absolute|Population weighted,days/yr,127.2785214,127.6278437,127.919489,128.1657725,128.363004,128.4988513,128.5978479,128.6674993,128.7125899,128.7400181 +Climate Solutions,ssp2_2p5,ECU,cdd|Hazard|Absolute|Population weighted,days/yr,41.78262461,41.85743192,41.88620533,41.87769993,41.8394046,41.77756898,41.70524671,41.62759832,41.54723599,41.47758272 +Climate Solutions,ssp2_2p5,CZE,cdd|Hazard|Absolute|Population weighted,days/yr,22.69776693,22.7180235,22.73650889,22.75434246,22.77143795,22.78652037,22.79910677,22.80978242,22.81899267,22.82649418 +Climate Solutions,ssp2_2p5,AUS,cdd|Hazard|Absolute|Population weighted,days/yr,39.51730191,39.50097928,39.44420858,39.40913311,39.39999562,39.36497388,39.31543845,39.28282492,39.25629343,39.23754286 +Climate Solutions,ssp2_2p5,IRN,cdd|Hazard|Absolute|Population weighted,days/yr,125.9686842,126.1502554,126.262137,126.3379225,126.3848402,126.386909,126.3944093,126.4268812,126.4615254,126.4912084 +Climate Solutions,ssp2_2p5,DZA,cdd|Hazard|Absolute|Population weighted,days/yr,88.84510138,88.9961338,88.96305224,89.01465937,88.98584681,89.01869046,89.02403199,89.01304143,88.92421748,88.91768184 +Climate Solutions,ssp2_2p5,SLV,cdd|Hazard|Absolute|Population weighted,days/yr,96.34227076,96.24568367,96.14139532,96.03930668,95.94167713,95.86048784,95.79591497,95.74372592,95.70005433,95.66216724 +Climate Solutions,ssp2_2p5,CHL,cdd|Hazard|Absolute|Population weighted,days/yr,140.3140383,140.4290358,140.510778,140.5690445,140.6281372,140.652026,140.6844368,140.7025316,140.7267524,140.7325455 +Climate Solutions,ssp2_2p5,PRI,cdd|Hazard|Absolute|Population weighted,days/yr,16.82076899,16.81833461,16.81815381,16.81807731,16.81802414,16.81799148,16.81797793,16.81796304,16.81794565,16.81793575 +Climate Solutions,ssp2_2p5,BEL,cdd|Hazard|Absolute|Population weighted,days/yr,23.04378386,23.04591991,23.0476418,23.04966925,23.05175769,23.05356951,23.05515137,23.05668415,23.05815852,23.05944476 +Climate Solutions,ssp2_2p5,THA,cdd|Hazard|Absolute|Population weighted,days/yr,87.56605858,87.54786841,87.50838501,87.44704084,87.36699085,87.27793357,87.18170185,87.08920099,87.00866727,86.93791439 +Climate Solutions,ssp2_2p5,HTI,cdd|Hazard|Absolute|Population weighted,days/yr,30.89135017,30.92940487,30.96730275,31.00405216,31.04030825,31.07853647,31.1173263,31.15044659,31.1770105,31.198411 +Climate Solutions,ssp2_2p5,IRQ,cdd|Hazard|Absolute|Population weighted,days/yr,171.3373179,171.4912944,171.6244806,171.7413937,171.840418,171.9293297,172.0096381,172.0813239,172.1429095,172.1953227 +Climate Solutions,ssp2_2p5,SLE,cdd|Hazard|Absolute|Population weighted,days/yr,89.12093284,89.07000525,89.02927065,88.99528444,88.96597475,88.94042719,88.92172135,88.90907869,88.90189518,88.89998665 +Climate Solutions,ssp2_2p5,GEO,cdd|Hazard|Absolute|Population weighted,days/yr,29.00514198,29.17222385,29.31873371,29.4459118,29.55389054,29.64501614,29.71882465,29.77437848,29.81790133,29.84795453 +Climate Solutions,ssp2_2p5,HKG,cdd|Hazard|Absolute|Population weighted,days/yr,50.70488126,50.7032893,50.70746027,50.7166628,50.72883963,50.74519852,50.76068621,50.77383066,50.78347211,50.78666264 +Climate Solutions,ssp2_2p5,DNK,cdd|Hazard|Absolute|Population weighted,days/yr,25.09930606,25.10676933,25.11187752,25.11578632,25.1189733,25.12163799,25.12392248,25.12593499,25.12784249,25.12977398 +Climate Solutions,ssp2_2p5,POL,cdd|Hazard|Absolute|Population weighted,days/yr,23.64486491,23.6446161,23.64428176,23.64364441,23.64237992,23.64087665,23.63949924,23.63804818,23.63675814,23.63602379 +Climate Solutions,ssp2_2p5,MDA,cdd|Hazard|Absolute|Population weighted,days/yr,34.62207982,34.6350542,34.64613429,34.65268503,34.65605497,34.65779196,34.65966821,34.66045592,34.66080941,34.6631819 +Climate Solutions,ssp2_2p5,MAR,cdd|Hazard|Absolute|Population weighted,days/yr,109.9856149,110.0696156,110.1479525,110.2185527,110.2819232,110.3402242,110.3908089,110.4318984,110.4655643,110.4935991 +Climate Solutions,ssp2_2p5,HRV,cdd|Hazard|Absolute|Population weighted,days/yr,28.91197313,28.89947338,28.89070465,28.88362127,28.87728044,28.87216558,28.86718326,28.86147175,28.8559221,28.85065093 +Climate Solutions,ssp2_2p5,MNG,cdd|Hazard|Absolute|Population weighted,days/yr,85.6008385,85.75732682,85.72265258,85.61309644,85.64024665,85.62961435,85.6110046,85.59904255,85.61497242,85.4786236 +Climate Solutions,ssp2_2p5,GNB,cdd|Hazard|Absolute|Population weighted,days/yr,199.9894553,200.0522551,200.1160663,200.1837291,200.2455182,200.3064639,200.3659073,200.4235174,200.4817186,200.5335396 +Climate Solutions,ssp2_2p5,KIR,cdd|Hazard|Absolute|Population weighted,days/yr,28.70220231,28.97438454,29.20884672,29.36147215,29.48565261,29.5877164,29.65624887,29.68811725,29.71983298,29.73550352 +Climate Solutions,ssp2_2p5,CHE,cdd|Hazard|Absolute|Population weighted,days/yr,20.43440993,20.43018691,20.42327698,20.41792241,20.41212046,20.4053308,20.39959764,20.3958061,20.39428089,20.39409565 +Climate Solutions,ssp2_2p5,GRD,cdd|Hazard|Absolute|Population weighted,days/yr,29.15478592,29.20325328,29.24146441,29.27826044,29.31142085,29.33846821,29.35991542,29.3754042,29.38715244,29.39746291 +Climate Solutions,ssp2_2p5,BLZ,cdd|Hazard|Absolute|Population weighted,days/yr,33.01665834,32.95428944,32.90058052,32.85216675,32.8085338,32.77053303,32.73462993,32.70577957,32.68657209,32.67562678 +Climate Solutions,ssp2_2p5,TCD,cdd|Hazard|Absolute|Population weighted,days/yr,190.390211,190.3313719,190.0988949,190.0691613,189.9721705,189.9205128,189.932021,189.8761806,189.8439284,189.7851868 +Climate Solutions,ssp2_2p5,EST,cdd|Hazard|Absolute|Population weighted,days/yr,22.63065215,22.62771596,22.62490785,22.62232243,22.62016729,22.61815474,22.61627095,22.61466132,22.61321504,22.61184084 +Climate Solutions,ssp2_2p5,URY,cdd|Hazard|Absolute|Population weighted,days/yr,25.55853183,25.55751803,25.55509803,25.55345908,25.55330493,25.55415257,25.55640954,25.5570591,25.55751283,25.55987746 +Climate Solutions,ssp2_2p5,GNQ,cdd|Hazard|Absolute|Population weighted,days/yr,28.42160618,28.35891847,28.31508836,28.28418542,28.26014161,28.24170026,28.22680453,28.21584901,28.20773017,28.20423434 +Climate Solutions,ssp2_2p5,LBN,cdd|Hazard|Absolute|Population weighted,days/yr,136.3767034,136.4187344,136.4493433,136.4921821,136.5533598,136.6192602,136.700686,136.8030835,136.9292654,137.0802672 +Climate Solutions,ssp2_2p5,UZB,cdd|Hazard|Absolute|Population weighted,days/yr,108.2904548,108.4236463,108.5281166,108.6003261,108.6555957,108.6897883,108.7049534,108.7070225,108.701404,108.6857098 +Climate Solutions,ssp2_2p5,TUN,cdd|Hazard|Absolute|Population weighted,days/yr,86.49014506,86.50702878,86.50344693,86.47829337,86.44012469,86.38541525,86.32914959,86.28007798,86.23420259,86.19834737 +Climate Solutions,ssp2_2p5,DJI,cdd|Hazard|Absolute|Population weighted,days/yr,115.6044468,115.715219,115.821416,115.9137793,116.0001447,116.0858408,116.1567417,116.2141094,116.2526182,116.2733069 +Climate Solutions,ssp2_2p5,RWA,cdd|Hazard|Absolute|Population weighted,days/yr,45.48176296,45.56305758,45.58978321,45.59762604,45.59807271,45.58846153,45.57693396,45.56572336,45.55439115,45.54354203 +Climate Solutions,ssp2_2p5,TLS,cdd|Hazard|Absolute|Population weighted,days/yr,59.91241178,59.9135044,59.9053073,59.89491007,59.88267869,59.87092311,59.85786599,59.84477049,59.83320199,59.8235118 +Climate Solutions,ssp2_2p5,COL,cdd|Hazard|Absolute|Population weighted,days/yr,34.30463056,34.45790407,34.57649222,34.66317262,34.72551194,34.76546471,34.78746066,34.79371707,34.79788052,34.80039703 +Climate Solutions,ssp2_2p5,REU,cdd|Hazard|Absolute|Population weighted,days/yr,17.66601893,17.77727819,17.80166135,17.81297605,17.81955938,17.82384015,17.82664781,17.82894424,17.83063269,17.8319377 +Climate Solutions,ssp2_2p5,BDI,cdd|Hazard|Absolute|Population weighted,days/yr,62.29182431,62.33584612,62.34685433,62.34081519,62.33061462,62.32004978,62.29975395,62.27308757,62.24369349,62.21069576 +Climate Solutions,ssp2_2p5,TWN,cdd|Hazard|Absolute|Population weighted,days/yr,29.72090242,30.10184699,30.39102973,30.59393306,30.76728833,30.86633536,30.97132897,31.06299732,31.14430028,31.21741833 +Climate Solutions,ssp2_2p5,NIC,cdd|Hazard|Absolute|Population weighted,days/yr,81.87629749,81.98208475,82.10397966,82.22928072,82.36078805,82.49886331,82.62575627,82.73812728,82.83712041,82.9280752 +Climate Solutions,ssp2_2p5,BRB,cdd|Hazard|Absolute|Population weighted,days/yr,53.12447937,53.12603102,53.1275384,53.12902031,53.13046135,53.13178282,53.13286805,53.13376675,53.13451725,53.13514882 +Climate Solutions,ssp2_2p5,QAT,cdd|Hazard|Absolute|Population weighted,days/yr,228.9759391,228.9610908,228.9507893,228.9417059,228.9325217,228.9249073,228.9170319,228.9080423,228.8999784,228.8926559 +Climate Solutions,ssp2_2p5,COD,cdd|Hazard|Absolute|Population weighted,days/yr,63.27362396,63.28596614,63.30800025,63.32012748,63.32332405,63.33234284,63.34516387,63.36011472,63.37788031,63.39779247 +Climate Solutions,ssp2_2p5,ITA,cdd|Hazard|Absolute|Population weighted,days/yr,40.52232318,40.51103348,40.49737726,40.48424822,40.47039901,40.45575481,40.44192486,40.4295286,40.41876221,40.40914846 +Climate Solutions,ssp2_2p5,BTN,cdd|Hazard|Absolute|Population weighted,days/yr,95.88493836,95.90432389,95.92247931,95.93811141,95.95637566,95.97676878,95.99591964,96.01314508,96.0310374,96.05030015 +Climate Solutions,ssp2_2p5,SDN,cdd|Hazard|Absolute|Population weighted,days/yr,228.0971807,228.0205235,227.9848809,227.9626294,227.9670217,227.9671508,227.9863034,228.0031721,228.0134259,228.0489949 +Climate Solutions,ssp2_2p5,NPL,cdd|Hazard|Absolute|Population weighted,days/yr,108.8801657,109.1720029,109.3812011,109.5354255,109.643945,109.7579206,109.8730468,109.984556,110.0879051,110.1774425 +Climate Solutions,ssp2_2p5,MLT,cdd|Hazard|Absolute|Population weighted,days/yr,85.97667659,85.98390073,85.98735175,85.98936787,85.99063739,85.99146997,85.99203867,85.99244059,85.99272234,85.99292892 +Climate Solutions,ssp2_2p5,MDV,cdd|Hazard|Absolute|Population weighted,days/yr,31.05414048,31.20568802,31.33044782,31.42920402,31.50493613,31.56285176,31.60711695,31.64232843,31.6704547,31.69429489 +Climate Solutions,ssp2_2p5,SUR,cdd|Hazard|Absolute|Population weighted,days/yr,25.30086613,25.27263865,25.24785244,25.22513383,25.20434852,25.18580611,25.16956814,25.15923172,25.1513855,25.14807585 +Climate Solutions,ssp2_2p5,VEN,cdd|Hazard|Absolute|Population weighted,days/yr,68.22985013,68.42860037,68.57426075,68.67758683,68.74649562,68.78625161,68.80002876,68.804187,68.80608925,68.80522005 +Climate Solutions,ssp2_2p5,ISR,cdd|Hazard|Absolute|Population weighted,days/yr,167.5396235,167.5655094,167.5387803,167.4897218,167.4276676,167.3603155,167.2975281,167.2428182,167.1972968,167.1606536 +Climate Solutions,ssp2_2p5,ISL,cdd|Hazard|Absolute|Population weighted,days/yr,19.04495083,19.03838053,19.03845743,19.03873154,19.03962494,19.04180832,19.04272847,19.04151704,19.04438106,19.04443441 +Climate Solutions,ssp2_2p5,ZMB,cdd|Hazard|Absolute|Population weighted,days/yr,172.119048,171.8617193,171.6830446,171.569473,171.4944661,171.4583573,171.4436431,171.4463267,171.4642139,171.4885998 +Climate Solutions,ssp2_2p5,SEN,cdd|Hazard|Absolute|Population weighted,days/yr,219.314688,219.2671813,219.2506321,219.249915,219.2608841,219.2813902,219.3041931,219.3285839,219.3541567,219.3785314 +Climate Solutions,ssp2_2p5,PNG,cdd|Hazard|Absolute|Population weighted,days/yr,15.12307688,15.13782112,15.15625673,15.1760753,15.20006209,15.2355248,15.27186472,15.31584954,15.35464295,15.39495762 +Climate Solutions,ssp2_2p5,MWI,cdd|Hazard|Absolute|Population weighted,days/yr,108.2953283,108.6094049,108.8602246,109.0529306,109.1915863,109.2844064,109.3450992,109.3859437,109.4143383,109.4330293 +Climate Solutions,ssp2_2p5,TTO,cdd|Hazard|Absolute|Population weighted,days/yr,28.20721001,28.20865662,28.20990048,28.21096292,28.21171889,28.21202989,28.21190763,28.21133623,28.21066276,28.21004095 +Climate Solutions,ssp2_2p5,ZWE,cdd|Hazard|Absolute|Population weighted,days/yr,130.915515,130.9826443,131.0955439,131.2509188,131.4224754,131.6062456,131.7816903,131.9515957,132.1168742,132.2726811 +Climate Solutions,ssp2_2p5,DEU,cdd|Hazard|Absolute|Population weighted,days/yr,22.15663522,22.15995477,22.16292416,22.16560273,22.16787963,22.16994424,22.17189926,22.1736503,22.17511817,22.17642545 +Climate Solutions,ssp2_2p5,VUT,cdd|Hazard|Absolute|Population weighted,days/yr,20.48809167,20.49244091,20.49643533,20.50010564,20.50313818,20.50634271,20.50936608,20.51227966,20.51485714,20.51713342 +Climate Solutions,ssp2_2p5,MTQ,cdd|Hazard|Absolute|Population weighted,days/yr,20.43536312,20.47224148,20.49495348,20.51054618,20.52134485,20.52595372,20.52257759,20.51139094,20.49710796,20.48275426 +Climate Solutions,ssp2_2p5,KAZ,cdd|Hazard|Absolute|Population weighted,days/yr,49.87354347,49.87173294,49.87519081,49.83017534,49.79675082,49.73998332,49.67788603,49.64083176,49.60122723,49.59944996 +Climate Solutions,ssp2_2p5,PHL,cdd|Hazard|Absolute|Population weighted,days/yr,41.34917239,41.3450812,41.35695783,41.38170956,41.41386732,41.44914894,41.48607169,41.52400672,41.56171078,41.5985872 +Climate Solutions,ssp2_2p5,ERI,cdd|Hazard|Absolute|Population weighted,days/yr,116.4653788,116.4444239,116.4572102,116.4362535,116.4156469,116.3984313,116.3772146,116.3609118,116.3498111,116.3420615 +Climate Solutions,ssp2_2p5,NCL,cdd|Hazard|Absolute|Population weighted,days/yr,27.98594388,27.98952526,27.99469874,28.00074129,28.00875026,28.01701933,28.02721536,28.0389484,28.05094663,28.06420652 +Climate Solutions,ssp2_2p5,MKD,cdd|Hazard|Absolute|Population weighted,days/yr,37.55797581,37.54062401,37.5243936,37.51292268,37.50461992,37.49555545,37.48345157,37.47339006,37.46539691,37.45871778 +Climate Solutions,ssp2_2p5,PRK,cdd|Hazard|Absolute|Population weighted,days/yr,36.18047463,36.18957781,36.19591799,36.19998799,36.20212981,36.20312803,36.20336002,36.20298218,36.20235605,36.2021912 +Climate Solutions,ssp2_2p5,PRY,cdd|Hazard|Absolute|Population weighted,days/yr,35.35499847,35.36414009,35.37421341,35.38513819,35.40360212,35.42003196,35.43789444,35.45735559,35.47930086,35.49291275 +Climate Solutions,ssp2_2p5,LVA,cdd|Hazard|Absolute|Population weighted,days/yr,22.90901271,22.91629831,22.92264729,22.92795023,22.93261831,22.93674192,22.94045601,22.94396342,22.94724126,22.95037976 +Climate Solutions,ssp2_2p5,JPN,cdd|Hazard|Absolute|Population weighted,days/yr,19.25655703,19.34064603,19.4314512,19.51847176,19.59594635,19.66459307,19.72520894,19.77858848,19.82549512,19.86666467 +Climate Solutions,ssp2_2p5,SYR,cdd|Hazard|Absolute|Population weighted,days/yr,137.7138677,137.944232,138.1448525,138.3172205,138.4674736,138.6021356,138.7160931,138.8110515,138.8892139,138.955773 +Climate Solutions,ssp2_2p5,HND,cdd|Hazard|Absolute|Population weighted,days/yr,48.53321678,48.26492915,48.02100258,47.81124122,47.62715704,47.46477882,47.33150467,47.22357902,47.13668654,47.06802947 +Climate Solutions,ssp2_2p5,MMR,cdd|Hazard|Absolute|Population weighted,days/yr,130.4538,130.5880808,130.7264379,130.8659654,131.0025842,131.137532,131.2750223,131.4147569,131.5633496,131.7131967 +Climate Solutions,ssp2_2p5,MEX,cdd|Hazard|Absolute|Population weighted,days/yr,96.99477545,97.04196229,97.07313575,97.09081473,97.09595599,97.09019885,97.0789978,97.06740795,97.05532911,97.04588467 +Climate Solutions,ssp2_2p5,EGY,cdd|Hazard|Absolute|Population weighted,days/yr,267.604844,267.1799064,267.1724493,267.4156523,267.8021572,268.2952624,268.8437255,269.4392458,270.0423358,270.6317244 +Climate Solutions,ssp2_2p5,SGP,cdd|Hazard|Absolute|Population weighted,days/yr,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495,18.13978495 +Climate Solutions,ssp2_2p5,SRB,cdd|Hazard|Absolute|Population weighted,days/yr,32.19205487,32.19709023,32.20176388,32.20672148,32.21214539,32.21704425,32.22095376,32.22425739,32.22672258,32.22836601 +Climate Solutions,ssp2_2p5,BWA,cdd|Hazard|Absolute|Population weighted,days/yr,148.6397109,148.6028547,148.6133624,148.6417205,148.6362268,148.6128269,148.6793614,148.6924228,148.6909305,148.6722783 +Climate Solutions,ssp2_2p5,GBR,cdd|Hazard|Absolute|Population weighted,days/yr,25.26068363,25.26391642,25.26605671,25.26745936,25.2684373,25.26922482,25.26993989,25.27057456,25.27114874,25.27174816 +Climate Solutions,ssp2_2p5,GMB,cdd|Hazard|Absolute|Population weighted,days/yr,215.0318647,214.9352509,214.8716203,214.8267712,214.7987482,214.7810232,214.7660463,214.7531262,214.7427136,214.7349046 +Climate Solutions,ssp2_2p5,GRC,cdd|Hazard|Absolute|Population weighted,days/yr,64.80817122,65.11701856,65.38838384,65.61646465,65.81581487,65.99650131,66.16218295,66.30971528,66.44163273,66.5582577 +Climate Solutions,ssp2_2p5,LKA,cdd|Hazard|Absolute|Population weighted,days/yr,42.85545081,42.85063631,42.84616924,42.84062933,42.83401909,42.82664107,42.8188396,42.81097165,42.80318871,42.79564928 +Climate Solutions,ssp2_2p5,GUF,cdd|Hazard|Absolute|Population weighted,days/yr,31.38716096,31.39912385,31.41081044,31.43239186,31.44696064,31.46628751,31.48742743,31.49603488,31.51131086,31.52163378 +Climate Solutions,ssp2_2p5,COM,cdd|Hazard|Absolute|Population weighted,days/yr,19.73525717,19.70721262,19.68474804,19.66547078,19.64989898,19.63613485,19.62410531,19.61395799,19.60565354,19.59891314 +Climate Solutions,ssp2_2p5,FSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.40608102,10.40625686,10.40534968,10.40294246,10.39947644,10.3954951,10.39145386,10.38766683,10.38449023,10.3819665 +Climate Solutions,ssp2_2p5,GLP,cdd|Hazard|Absolute|Population weighted,days/yr,20.87034204,20.83919173,20.82733581,20.82011743,20.8178824,20.817751,20.81757434,20.81750388,20.81744147,20.81739314 +Climate Solutions,ssp2_2p5,MYT,cdd|Hazard|Absolute|Population weighted,days/yr,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548,43.99193548 +Climate Solutions,ssp2_2p5,VIR,cdd|Hazard|Absolute|Population weighted,days/yr,23.91562515,23.89922774,23.89017686,23.875093,23.87209075,23.86884161,23.86501633,23.859146,23.84991175,23.84524678 +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Absolute,days/yr,28.70458407,28.70458407,28.70458407,28.70458407,28.70458407,28.70458407,28.70458407,28.70458407,28.70458407,28.70458407 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Absolute,days/yr,3.755985588,3.755985588,3.755985588,3.755985588,3.755985588,3.755985588,3.755985588,3.755985588,3.755985588,3.755985588 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Absolute,days/yr,102.6657755,102.6657755,102.6657755,102.6657755,102.6657755,102.6657755,102.6657755,102.6657755,102.6657755,102.6657755 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Absolute,days/yr,15.89051794,15.89051794,15.89051794,15.89051794,15.89051794,15.89051794,15.89051794,15.89051794,15.89051794,15.89051794 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Absolute,days/yr,63.93935528,63.93935528,63.93935528,63.93935528,63.93935528,63.93935528,63.93935528,63.93935528,63.93935528,63.93935528 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Absolute,days/yr,76.26633207,76.26633207,76.26633207,76.26633207,76.26633207,76.26633207,76.26633207,76.26633207,76.26633207,76.26633207 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Absolute,days/yr,28.63811949,28.63811949,28.63811949,28.63811949,28.63811949,28.63811949,28.63811949,28.63811949,28.63811949,28.63811949 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Absolute,days/yr,37.58893707,37.58893707,37.58893707,37.58893707,37.58893707,37.58893707,37.58893707,37.58893707,37.58893707,37.58893707 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Absolute,days/yr,54.9804191,54.9804191,54.9804191,54.9804191,54.9804191,54.9804191,54.9804191,54.9804191,54.9804191,54.9804191 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Absolute,days/yr,60.88384751,60.88384751,60.88384751,60.88384751,60.88384751,60.88384751,60.88384751,60.88384751,60.88384751,60.88384751 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Absolute,days/yr,3.333081857,3.333081857,3.333081857,3.333081857,3.333081857,3.333081857,3.333081857,3.333081857,3.333081857,3.333081857 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Absolute,days/yr,116.4837134,116.4837134,116.4837134,116.4837134,116.4837134,116.4837134,116.4837134,116.4837134,116.4837134,116.4837134 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Absolute,days/yr,53.05423306,53.05423306,53.05423306,53.05423306,53.05423306,53.05423306,53.05423306,53.05423306,53.05423306,53.05423306 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Absolute,days/yr,189.6345986,189.6345986,189.6345986,189.6345986,189.6345986,189.6345986,189.6345986,189.6345986,189.6345986,189.6345986 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Absolute,days/yr,9.36188527,9.36188527,9.36188527,9.36188527,9.36188527,9.36188527,9.36188527,9.36188527,9.36188527,9.36188527 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Absolute,days/yr,10.08942,10.08942,10.08942,10.08942,10.08942,10.08942,10.08942,10.08942,10.08942,10.08942 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Absolute,days/yr,28.95663128,28.95663128,28.95663128,28.95663128,28.95663128,28.95663128,28.95663128,28.95663128,28.95663128,28.95663128 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Absolute,days/yr,17.18550791,17.18550791,17.18550791,17.18550791,17.18550791,17.18550791,17.18550791,17.18550791,17.18550791,17.18550791 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Absolute,days/yr,91.19963375,91.19963375,91.19963375,91.19963375,91.19963375,91.19963375,91.19963375,91.19963375,91.19963375,91.19963375 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Absolute,days/yr,130.4444128,130.4444128,130.4444128,130.4444128,130.4444128,130.4444128,130.4444128,130.4444128,130.4444128,130.4444128 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Absolute,days/yr,37.46579709,37.46579709,37.46579709,37.46579709,37.46579709,37.46579709,37.46579709,37.46579709,37.46579709,37.46579709 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Absolute,days/yr,46.57190035,46.57190035,46.57190035,46.57190035,46.57190035,46.57190035,46.57190035,46.57190035,46.57190035,46.57190035 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Absolute,days/yr,36.82316243,36.82316243,36.82316243,36.82316243,36.82316243,36.82316243,36.82316243,36.82316243,36.82316243,36.82316243 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Absolute,days/yr,13.1608714,13.1608714,13.1608714,13.1608714,13.1608714,13.1608714,13.1608714,13.1608714,13.1608714,13.1608714 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Absolute,days/yr,12.0327419,12.0327419,12.0327419,12.0327419,12.0327419,12.0327419,12.0327419,12.0327419,12.0327419,12.0327419 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Absolute,days/yr,166.9650595,166.9650595,166.9650595,166.9650595,166.9650595,166.9650595,166.9650595,166.9650595,166.9650595,166.9650595 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Absolute,days/yr,83.64461478,83.64461478,83.64461478,83.64461478,83.64461478,83.64461478,83.64461478,83.64461478,83.64461478,83.64461478 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Absolute,days/yr,20.16133642,20.16133642,20.16133642,20.16133642,20.16133642,20.16133642,20.16133642,20.16133642,20.16133642,20.16133642 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Absolute,days/yr,39.50239223,39.50239223,39.50239223,39.50239223,39.50239223,39.50239223,39.50239223,39.50239223,39.50239223,39.50239223 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Absolute,days/yr,12.10994239,12.10994239,12.10994239,12.10994239,12.10994239,12.10994239,12.10994239,12.10994239,12.10994239,12.10994239 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Absolute,days/yr,138.6911147,138.6911147,138.6911147,138.6911147,138.6911147,138.6911147,138.6911147,138.6911147,138.6911147,138.6911147 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Absolute,days/yr,104.954175,104.954175,104.954175,104.954175,104.954175,104.954175,104.954175,104.954175,104.954175,104.954175 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Absolute,days/yr,2.851021536,2.851021536,2.851021536,2.851021536,2.851021536,2.851021536,2.851021536,2.851021536,2.851021536,2.851021536 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Absolute,days/yr,14.20230378,14.20230378,14.20230378,14.20230378,14.20230378,14.20230378,14.20230378,14.20230378,14.20230378,14.20230378 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Absolute,days/yr,142.1930395,142.1930395,142.1930395,142.1930395,142.1930395,142.1930395,142.1930395,142.1930395,142.1930395,142.1930395 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Absolute,days/yr,2.498682766,2.498682766,2.498682766,2.498682766,2.498682766,2.498682766,2.498682766,2.498682766,2.498682766,2.498682766 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Absolute,days/yr,105.5581481,105.5581481,105.5581481,105.5581481,105.5581481,105.5581481,105.5581481,105.5581481,105.5581481,105.5581481 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Absolute,days/yr,31.93310456,31.93310456,31.93310456,31.93310456,31.93310456,31.93310456,31.93310456,31.93310456,31.93310456,31.93310456 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Absolute,days/yr,56.47922244,56.47922244,56.47922244,56.47922244,56.47922244,56.47922244,56.47922244,56.47922244,56.47922244,56.47922244 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Absolute,days/yr,35.04105995,35.04105995,35.04105995,35.04105995,35.04105995,35.04105995,35.04105995,35.04105995,35.04105995,35.04105995 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Absolute,days/yr,5.285806662,5.285806662,5.285806662,5.285806662,5.285806662,5.285806662,5.285806662,5.285806662,5.285806662,5.285806662 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Absolute,days/yr,58.74824317,58.74824317,58.74824317,58.74824317,58.74824317,58.74824317,58.74824317,58.74824317,58.74824317,58.74824317 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Absolute,days/yr,22.75272874,22.75272874,22.75272874,22.75272874,22.75272874,22.75272874,22.75272874,22.75272874,22.75272874,22.75272874 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Absolute,days/yr,18.66958503,18.66958503,18.66958503,18.66958503,18.66958503,18.66958503,18.66958503,18.66958503,18.66958503,18.66958503 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Absolute,days/yr,52.39029422,52.39029422,52.39029422,52.39029422,52.39029422,52.39029422,52.39029422,52.39029422,52.39029422,52.39029422 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Absolute,days/yr,55.57873587,55.57873587,55.57873587,55.57873587,55.57873587,55.57873587,55.57873587,55.57873587,55.57873587,55.57873587 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Absolute,days/yr,116.6261786,116.6261786,116.6261786,116.6261786,116.6261786,116.6261786,116.6261786,116.6261786,116.6261786,116.6261786 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Absolute,days/yr,63.06033402,63.06033402,63.06033402,63.06033402,63.06033402,63.06033402,63.06033402,63.06033402,63.06033402,63.06033402 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Absolute,days/yr,210.7290138,210.7290138,210.7290138,210.7290138,210.7290138,210.7290138,210.7290138,210.7290138,210.7290138,210.7290138 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Absolute,days/yr,3.903372156,3.903372156,3.903372156,3.903372156,3.903372156,3.903372156,3.903372156,3.903372156,3.903372156,3.903372156 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Absolute,days/yr,1.715725768,1.715725768,1.715725768,1.715725768,1.715725768,1.715725768,1.715725768,1.715725768,1.715725768,1.715725768 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Absolute,days/yr,40.3347094,40.3347094,40.3347094,40.3347094,40.3347094,40.3347094,40.3347094,40.3347094,40.3347094,40.3347094 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Absolute,days/yr,3.569279545,3.569279545,3.569279545,3.569279545,3.569279545,3.569279545,3.569279545,3.569279545,3.569279545,3.569279545 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Absolute,days/yr,23.15712354,23.15712354,23.15712354,23.15712354,23.15712354,23.15712354,23.15712354,23.15712354,23.15712354,23.15712354 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Absolute,days/yr,156.3802056,156.3802056,156.3802056,156.3802056,156.3802056,156.3802056,156.3802056,156.3802056,156.3802056,156.3802056 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Absolute,days/yr,88.65716996,88.65716996,88.65716996,88.65716996,88.65716996,88.65716996,88.65716996,88.65716996,88.65716996,88.65716996 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Absolute,days/yr,50.12772134,50.12772134,50.12772134,50.12772134,50.12772134,50.12772134,50.12772134,50.12772134,50.12772134,50.12772134 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Absolute,days/yr,42.79834062,42.79834062,42.79834062,42.79834062,42.79834062,42.79834062,42.79834062,42.79834062,42.79834062,42.79834062 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Absolute,days/yr,1.232580618,1.232580618,1.232580618,1.232580618,1.232580618,1.232580618,1.232580618,1.232580618,1.232580618,1.232580618 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Absolute,days/yr,13.58326582,13.58326582,13.58326582,13.58326582,13.58326582,13.58326582,13.58326582,13.58326582,13.58326582,13.58326582 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Absolute,days/yr,56.87955598,56.87955598,56.87955598,56.87955598,56.87955598,56.87955598,56.87955598,56.87955598,56.87955598,56.87955598 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Absolute,days/yr,80.58315142,80.58315142,80.58315142,80.58315142,80.58315142,80.58315142,80.58315142,80.58315142,80.58315142,80.58315142 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Absolute,days/yr,166.0043876,166.0043876,166.0043876,166.0043876,166.0043876,166.0043876,166.0043876,166.0043876,166.0043876,166.0043876 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Absolute,days/yr,17.79379065,17.79379065,17.79379065,17.79379065,17.79379065,17.79379065,17.79379065,17.79379065,17.79379065,17.79379065 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Absolute,days/yr,67.79375978,67.79375978,67.79375978,67.79375978,67.79375978,67.79375978,67.79375978,67.79375978,67.79375978,67.79375978 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Absolute,days/yr,12.06869869,12.06869869,12.06869869,12.06869869,12.06869869,12.06869869,12.06869869,12.06869869,12.06869869,12.06869869 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Absolute,days/yr,51.02646903,51.02646903,51.02646903,51.02646903,51.02646903,51.02646903,51.02646903,51.02646903,51.02646903,51.02646903 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Absolute,days/yr,84.51514309,84.51514309,84.51514309,84.51514309,84.51514309,84.51514309,84.51514309,84.51514309,84.51514309,84.51514309 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Absolute,days/yr,19.19452238,19.19452238,19.19452238,19.19452238,19.19452238,19.19452238,19.19452238,19.19452238,19.19452238,19.19452238 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Absolute,days/yr,1.812903226,1.812903226,1.812903226,1.812903226,1.812903226,1.812903226,1.812903226,1.812903226,1.812903226,1.812903226 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Absolute,days/yr,17.82926536,17.82926536,17.82926536,17.82926536,17.82926536,17.82926536,17.82926536,17.82926536,17.82926536,17.82926536 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Absolute,days/yr,25.51394444,25.51394444,25.51394444,25.51394444,25.51394444,25.51394444,25.51394444,25.51394444,25.51394444,25.51394444 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Absolute,days/yr,15.80798361,15.80798361,15.80798361,15.80798361,15.80798361,15.80798361,15.80798361,15.80798361,15.80798361,15.80798361 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Absolute,days/yr,0.625833319,0.625833319,0.625833319,0.625833319,0.625833319,0.625833319,0.625833319,0.625833319,0.625833319,0.625833319 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Absolute,days/yr,17.67208132,17.67208132,17.67208132,17.67208132,17.67208132,17.67208132,17.67208132,17.67208132,17.67208132,17.67208132 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Absolute,days/yr,258.308855,258.308855,258.308855,258.308855,258.308855,258.308855,258.308855,258.308855,258.308855,258.308855 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Absolute,days/yr,15.75091223,15.75091223,15.75091223,15.75091223,15.75091223,15.75091223,15.75091223,15.75091223,15.75091223,15.75091223 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Absolute,days/yr,73.78530278,73.78530278,73.78530278,73.78530278,73.78530278,73.78530278,73.78530278,73.78530278,73.78530278,73.78530278 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Absolute,days/yr,35.59893532,35.59893532,35.59893532,35.59893532,35.59893532,35.59893532,35.59893532,35.59893532,35.59893532,35.59893532 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Absolute,days/yr,18.4534522,18.4534522,18.4534522,18.4534522,18.4534522,18.4534522,18.4534522,18.4534522,18.4534522,18.4534522 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Absolute,days/yr,34.90408267,34.90408267,34.90408267,34.90408267,34.90408267,34.90408267,34.90408267,34.90408267,34.90408267,34.90408267 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Absolute,days/yr,193.4011256,193.4011256,193.4011256,193.4011256,193.4011256,193.4011256,193.4011256,193.4011256,193.4011256,193.4011256 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Absolute,days/yr,29.93154367,29.93154367,29.93154367,29.93154367,29.93154367,29.93154367,29.93154367,29.93154367,29.93154367,29.93154367 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Absolute,days/yr,26.97142141,26.97142141,26.97142141,26.97142141,26.97142141,26.97142141,26.97142141,26.97142141,26.97142141,26.97142141 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Absolute,days/yr,5.801150437,5.801150437,5.801150437,5.801150437,5.801150437,5.801150437,5.801150437,5.801150437,5.801150437,5.801150437 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Absolute,days/yr,25.81744957,25.81744957,25.81744957,25.81744957,25.81744957,25.81744957,25.81744957,25.81744957,25.81744957,25.81744957 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Absolute,days/yr,124.4547887,124.4547887,124.4547887,124.4547887,124.4547887,124.4547887,124.4547887,124.4547887,124.4547887,124.4547887 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Absolute,days/yr,41.98841219,41.98841219,41.98841219,41.98841219,41.98841219,41.98841219,41.98841219,41.98841219,41.98841219,41.98841219 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Absolute,days/yr,78.08131577,78.08131577,78.08131577,78.08131577,78.08131577,78.08131577,78.08131577,78.08131577,78.08131577,78.08131577 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Absolute,days/yr,7.821255436,7.821255436,7.821255436,7.821255436,7.821255436,7.821255436,7.821255436,7.821255436,7.821255436,7.821255436 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Absolute,days/yr,4.670138259,4.670138259,4.670138259,4.670138259,4.670138259,4.670138259,4.670138259,4.670138259,4.670138259,4.670138259 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Absolute,days/yr,12.10820024,12.10820024,12.10820024,12.10820024,12.10820024,12.10820024,12.10820024,12.10820024,12.10820024,12.10820024 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Absolute,days/yr,12.84489302,12.84489302,12.84489302,12.84489302,12.84489302,12.84489302,12.84489302,12.84489302,12.84489302,12.84489302 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Absolute,days/yr,64.16543139,64.16543139,64.16543139,64.16543139,64.16543139,64.16543139,64.16543139,64.16543139,64.16543139,64.16543139 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Absolute,days/yr,25.24404681,25.24404681,25.24404681,25.24404681,25.24404681,25.24404681,25.24404681,25.24404681,25.24404681,25.24404681 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Absolute,days/yr,31.99384298,31.99384298,31.99384298,31.99384298,31.99384298,31.99384298,31.99384298,31.99384298,31.99384298,31.99384298 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Absolute,days/yr,20.42806342,20.42806342,20.42806342,20.42806342,20.42806342,20.42806342,20.42806342,20.42806342,20.42806342,20.42806342 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Absolute,days/yr,227.3241554,227.3241554,227.3241554,227.3241554,227.3241554,227.3241554,227.3241554,227.3241554,227.3241554,227.3241554 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Absolute,days/yr,54.01385437,54.01385437,54.01385437,54.01385437,54.01385437,54.01385437,54.01385437,54.01385437,54.01385437,54.01385437 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Absolute,days/yr,90.82610491,90.82610491,90.82610491,90.82610491,90.82610491,90.82610491,90.82610491,90.82610491,90.82610491,90.82610491 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Absolute,days/yr,28.45008319,28.45008319,28.45008319,28.45008319,28.45008319,28.45008319,28.45008319,28.45008319,28.45008319,28.45008319 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Absolute,days/yr,21.80520206,21.80520206,21.80520206,21.80520206,21.80520206,21.80520206,21.80520206,21.80520206,21.80520206,21.80520206 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Absolute,days/yr,24.79520984,24.79520984,24.79520984,24.79520984,24.79520984,24.79520984,24.79520984,24.79520984,24.79520984,24.79520984 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Absolute,days/yr,4.415378803,4.415378803,4.415378803,4.415378803,4.415378803,4.415378803,4.415378803,4.415378803,4.415378803,4.415378803 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Absolute,days/yr,13.19621194,13.19621194,13.19621194,13.19621194,13.19621194,13.19621194,13.19621194,13.19621194,13.19621194,13.19621194 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Absolute,days/yr,120.90024,120.90024,120.90024,120.90024,120.90024,120.90024,120.90024,120.90024,120.90024,120.90024 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Absolute,days/yr,19.2279477,19.2279477,19.2279477,19.2279477,19.2279477,19.2279477,19.2279477,19.2279477,19.2279477,19.2279477 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Absolute,days/yr,15.03449832,15.03449832,15.03449832,15.03449832,15.03449832,15.03449832,15.03449832,15.03449832,15.03449832,15.03449832 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Absolute,days/yr,94.39147466,94.39147466,94.39147466,94.39147466,94.39147466,94.39147466,94.39147466,94.39147466,94.39147466,94.39147466 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Absolute,days/yr,133.565255,133.565255,133.565255,133.565255,133.565255,133.565255,133.565255,133.565255,133.565255,133.565255 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Absolute,days/yr,198.3704599,198.3704599,198.3704599,198.3704599,198.3704599,198.3704599,198.3704599,198.3704599,198.3704599,198.3704599 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Absolute,days/yr,51.98890423,51.98890423,51.98890423,51.98890423,51.98890423,51.98890423,51.98890423,51.98890423,51.98890423,51.98890423 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Absolute,days/yr,87.87344611,87.87344611,87.87344611,87.87344611,87.87344611,87.87344611,87.87344611,87.87344611,87.87344611,87.87344611 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Absolute,days/yr,6.519779445,6.519779445,6.519779445,6.519779445,6.519779445,6.519779445,6.519779445,6.519779445,6.519779445,6.519779445 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Absolute,days/yr,13.39865896,13.39865896,13.39865896,13.39865896,13.39865896,13.39865896,13.39865896,13.39865896,13.39865896,13.39865896 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Absolute,days/yr,64.91935123,64.91935123,64.91935123,64.91935123,64.91935123,64.91935123,64.91935123,64.91935123,64.91935123,64.91935123 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Absolute,days/yr,14.35975364,14.35975364,14.35975364,14.35975364,14.35975364,14.35975364,14.35975364,14.35975364,14.35975364,14.35975364 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Absolute,days/yr,137.2707147,137.2707147,137.2707147,137.2707147,137.2707147,137.2707147,137.2707147,137.2707147,137.2707147,137.2707147 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Absolute,days/yr,54.20636344,54.20636344,54.20636344,54.20636344,54.20636344,54.20636344,54.20636344,54.20636344,54.20636344,54.20636344 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Absolute,days/yr,16.4347659,16.4347659,16.4347659,16.4347659,16.4347659,16.4347659,16.4347659,16.4347659,16.4347659,16.4347659 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Absolute,days/yr,5.666164925,5.666164925,5.666164925,5.666164925,5.666164925,5.666164925,5.666164925,5.666164925,5.666164925,5.666164925 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Absolute,days/yr,11.70584624,11.70584624,11.70584624,11.70584624,11.70584624,11.70584624,11.70584624,11.70584624,11.70584624,11.70584624 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Absolute,days/yr,19.52270431,19.52270431,19.52270431,19.52270431,19.52270431,19.52270431,19.52270431,19.52270431,19.52270431,19.52270431 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Absolute,days/yr,20.1439249,20.1439249,20.1439249,20.1439249,20.1439249,20.1439249,20.1439249,20.1439249,20.1439249,20.1439249 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Absolute,days/yr,95.98782822,95.98782822,95.98782822,95.98782822,95.98782822,95.98782822,95.98782822,95.98782822,95.98782822,95.98782822 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Absolute,days/yr,13.20556358,13.20556358,13.20556358,13.20556358,13.20556358,13.20556358,13.20556358,13.20556358,13.20556358,13.20556358 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Absolute,days/yr,82.22747415,82.22747415,82.22747415,82.22747415,82.22747415,82.22747415,82.22747415,82.22747415,82.22747415,82.22747415 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Absolute,days/yr,91.54913041,91.54913041,91.54913041,91.54913041,91.54913041,91.54913041,91.54913041,91.54913041,91.54913041,91.54913041 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Absolute,days/yr,0.663854415,0.663854415,0.663854415,0.663854415,0.663854415,0.663854415,0.663854415,0.663854415,0.663854415,0.663854415 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Absolute,days/yr,10.13117264,10.13117264,10.13117264,10.13117264,10.13117264,10.13117264,10.13117264,10.13117264,10.13117264,10.13117264 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Absolute,days/yr,3.300967873,3.300967873,3.300967873,3.300967873,3.300967873,3.300967873,3.300967873,3.300967873,3.300967873,3.300967873 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Absolute,days/yr,14.33820669,14.33820669,14.33820669,14.33820669,14.33820669,14.33820669,14.33820669,14.33820669,14.33820669,14.33820669 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Absolute,days/yr,217.8808544,217.8808544,217.8808544,217.8808544,217.8808544,217.8808544,217.8808544,217.8808544,217.8808544,217.8808544 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Absolute,days/yr,13.09159893,13.09159893,13.09159893,13.09159893,13.09159893,13.09159893,13.09159893,13.09159893,13.09159893,13.09159893 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Absolute,days/yr,19.85782196,19.85782196,19.85782196,19.85782196,19.85782196,19.85782196,19.85782196,19.85782196,19.85782196,19.85782196 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Absolute,days/yr,12.71153658,12.71153658,12.71153658,12.71153658,12.71153658,12.71153658,12.71153658,12.71153658,12.71153658,12.71153658 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Absolute,days/yr,51.99283875,51.99283875,51.99283875,51.99283875,51.99283875,51.99283875,51.99283875,51.99283875,51.99283875,51.99283875 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Absolute,days/yr,81.66237632,81.66237632,81.66237632,81.66237632,81.66237632,81.66237632,81.66237632,81.66237632,81.66237632,81.66237632 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Absolute,days/yr,81.46185693,81.46185693,81.46185693,81.46185693,81.46185693,81.46185693,81.46185693,81.46185693,81.46185693,81.46185693 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Absolute,days/yr,49.24407267,49.24407267,49.24407267,49.24407267,49.24407267,49.24407267,49.24407267,49.24407267,49.24407267,49.24407267 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Absolute,days/yr,21.7845319,21.7845319,21.7845319,21.7845319,21.7845319,21.7845319,21.7845319,21.7845319,21.7845319,21.7845319 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Absolute,days/yr,24.25840732,24.25840732,24.25840732,24.25840732,24.25840732,24.25840732,24.25840732,24.25840732,24.25840732,24.25840732 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Absolute,days/yr,28.3984587,28.3984587,28.3984587,28.3984587,28.3984587,28.3984587,28.3984587,28.3984587,28.3984587,28.3984587 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Absolute,days/yr,4.505712355,4.505712355,4.505712355,4.505712355,4.505712355,4.505712355,4.505712355,4.505712355,4.505712355,4.505712355 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Absolute,days/yr,30.90376913,30.90376913,30.90376913,30.90376913,30.90376913,30.90376913,30.90376913,30.90376913,30.90376913,30.90376913 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Absolute,days/yr,16.80919358,16.80919358,16.80919358,16.80919358,16.80919358,16.80919358,16.80919358,16.80919358,16.80919358,16.80919358 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Absolute,days/yr,35.72449129,35.72449129,35.72449129,35.72449129,35.72449129,35.72449129,35.72449129,35.72449129,35.72449129,35.72449129 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Absolute,days/yr,4.589462392,4.589462392,4.589462392,4.589462392,4.589462392,4.589462392,4.589462392,4.589462392,4.589462392,4.589462392 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Absolute,days/yr,87.1707131,87.1707131,87.1707131,87.1707131,87.1707131,87.1707131,87.1707131,87.1707131,87.1707131,87.1707131 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Absolute,days/yr,55.20342813,55.20342813,55.20342813,55.20342813,55.20342813,55.20342813,55.20342813,55.20342813,55.20342813,55.20342813 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Absolute,days/yr,26.81232803,26.81232803,26.81232803,26.81232803,26.81232803,26.81232803,26.81232803,26.81232803,26.81232803,26.81232803 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Absolute,days/yr,48.41161246,48.41161246,48.41161246,48.41161246,48.41161246,48.41161246,48.41161246,48.41161246,48.41161246,48.41161246 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Absolute,days/yr,225.3952347,225.3952347,225.3952347,225.3952347,225.3952347,225.3952347,225.3952347,225.3952347,225.3952347,225.3952347 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Absolute,days/yr,59.63419715,59.63419715,59.63419715,59.63419715,59.63419715,59.63419715,59.63419715,59.63419715,59.63419715,59.63419715 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Absolute,days/yr,4.767930001,4.767930001,4.767930001,4.767930001,4.767930001,4.767930001,4.767930001,4.767930001,4.767930001,4.767930001 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Absolute,days/yr,0.496801064,0.496801064,0.496801064,0.496801064,0.496801064,0.496801064,0.496801064,0.496801064,0.496801064,0.496801064 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Absolute,days/yr,20.48735023,20.48735023,20.48735023,20.48735023,20.48735023,20.48735023,20.48735023,20.48735023,20.48735023,20.48735023 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Absolute,days/yr,49.12637365,49.12637365,49.12637365,49.12637365,49.12637365,49.12637365,49.12637365,49.12637365,49.12637365,49.12637365 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Absolute,days/yr,70.4300537,70.4300537,70.4300537,70.4300537,70.4300537,70.4300537,70.4300537,70.4300537,70.4300537,70.4300537 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Absolute,days/yr,13.39159639,13.39159639,13.39159639,13.39159639,13.39159639,13.39159639,13.39159639,13.39159639,13.39159639,13.39159639 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Absolute,days/yr,141.3636681,141.3636681,141.3636681,141.3636681,141.3636681,141.3636681,141.3636681,141.3636681,141.3636681,141.3636681 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Absolute,days/yr,144.5922993,144.5922993,144.5922993,144.5922993,144.5922993,144.5922993,144.5922993,144.5922993,144.5922993,144.5922993 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Absolute,days/yr,11.71608768,11.71608768,11.71608768,11.71608768,11.71608768,11.71608768,11.71608768,11.71608768,11.71608768,11.71608768 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Absolute,days/yr,68.12784717,68.12784717,68.12784717,68.12784717,68.12784717,68.12784717,68.12784717,68.12784717,68.12784717,68.12784717 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Absolute,days/yr,9.246333111,9.246333111,9.246333111,9.246333111,9.246333111,9.246333111,9.246333111,9.246333111,9.246333111,9.246333111 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Absolute,days/yr,111.4816519,111.4816519,111.4816519,111.4816519,111.4816519,111.4816519,111.4816519,111.4816519,111.4816519,111.4816519 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Absolute,days/yr,18.26853832,18.26853832,18.26853832,18.26853832,18.26853832,18.26853832,18.26853832,18.26853832,18.26853832,18.26853832 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Absolute,days/yr,3.720766817,3.720766817,3.720766817,3.720766817,3.720766817,3.720766817,3.720766817,3.720766817,3.720766817,3.720766817 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Absolute,days/yr,3.131841419,3.131841419,3.131841419,3.131841419,3.131841419,3.131841419,3.131841419,3.131841419,3.131841419,3.131841419 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Absolute,days/yr,47.13903655,47.13903655,47.13903655,47.13903655,47.13903655,47.13903655,47.13903655,47.13903655,47.13903655,47.13903655 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Absolute,days/yr,17.77303625,17.77303625,17.77303625,17.77303625,17.77303625,17.77303625,17.77303625,17.77303625,17.77303625,17.77303625 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Absolute,days/yr,79.08199387,79.08199387,79.08199387,79.08199387,79.08199387,79.08199387,79.08199387,79.08199387,79.08199387,79.08199387 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Absolute,days/yr,9.391887371,9.391887371,9.391887371,9.391887371,9.391887371,9.391887371,9.391887371,9.391887371,9.391887371,9.391887371 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Absolute,days/yr,20.72197646,20.72197646,20.72197646,20.72197646,20.72197646,20.72197646,20.72197646,20.72197646,20.72197646,20.72197646 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Absolute,days/yr,23.53048248,23.53048248,23.53048248,23.53048248,23.53048248,23.53048248,23.53048248,23.53048248,23.53048248,23.53048248 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Absolute,days/yr,39.43180159,39.43180159,39.43180159,39.43180159,39.43180159,39.43180159,39.43180159,39.43180159,39.43180159,39.43180159 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Absolute,days/yr,14.42217079,14.42217079,14.42217079,14.42217079,14.42217079,14.42217079,14.42217079,14.42217079,14.42217079,14.42217079 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Absolute,days/yr,10.73660103,10.73660103,10.73660103,10.73660103,10.73660103,10.73660103,10.73660103,10.73660103,10.73660103,10.73660103 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Absolute,days/yr,108.8796314,108.8796314,108.8796314,108.8796314,108.8796314,108.8796314,108.8796314,108.8796314,108.8796314,108.8796314 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Absolute,days/yr,28.53573934,28.53573934,28.53573934,28.53573934,28.53573934,28.53573934,28.53573934,28.53573934,28.53573934,28.53573934 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Absolute,days/yr,78.96712274,78.96712274,78.96712274,78.96712274,78.96712274,78.96712274,78.96712274,78.96712274,78.96712274,78.96712274 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Absolute,days/yr,84.51190658,84.51190658,84.51190658,84.51190658,84.51190658,84.51190658,84.51190658,84.51190658,84.51190658,84.51190658 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Absolute,days/yr,285.0038264,285.0038264,285.0038264,285.0038264,285.0038264,285.0038264,285.0038264,285.0038264,285.0038264,285.0038264 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Absolute,days/yr,2.574139691,2.574139691,2.574139691,2.574139691,2.574139691,2.574139691,2.574139691,2.574139691,2.574139691,2.574139691 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Absolute,days/yr,21.19020342,21.19020342,21.19020342,21.19020342,21.19020342,21.19020342,21.19020342,21.19020342,21.19020342,21.19020342 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Absolute,days/yr,133.730711,133.730711,133.730711,133.730711,133.730711,133.730711,133.730711,133.730711,133.730711,133.730711 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Absolute,days/yr,14.73618902,14.73618902,14.73618902,14.73618902,14.73618902,14.73618902,14.73618902,14.73618902,14.73618902,14.73618902 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Absolute,days/yr,55.64798014,55.64798014,55.64798014,55.64798014,55.64798014,55.64798014,55.64798014,55.64798014,55.64798014,55.64798014 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Absolute,days/yr,27.13403622,27.13403622,27.13403622,27.13403622,27.13403622,27.13403622,27.13403622,27.13403622,27.13403622,27.13403622 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Absolute,days/yr,31.98462542,31.98462542,31.98462542,31.98462542,31.98462542,31.98462542,31.98462542,31.98462542,31.98462542,31.98462542 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Absolute,days/yr,19.91409423,19.91409423,19.91409423,19.91409423,19.91409423,19.91409423,19.91409423,19.91409423,19.91409423,19.91409423 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Absolute,days/yr,2.870591387,2.870591387,2.870591387,2.870591387,2.870591387,2.870591387,2.870591387,2.870591387,2.870591387,2.870591387 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Absolute,days/yr,0.295506911,0.295506911,0.295506911,0.295506911,0.295506911,0.295506911,0.295506911,0.295506911,0.295506911,0.295506911 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Absolute,days/yr,6.790833419,6.790833419,6.790833419,6.790833419,6.790833419,6.790833419,6.790833419,6.790833419,6.790833419,6.790833419 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Absolute,days/yr,5.057634381,5.057634381,5.057634381,5.057634381,5.057634381,5.057634381,5.057634381,5.057634381,5.057634381,5.057634381 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Absolute,days/yr,1.292311831,1.292311831,1.292311831,1.292311831,1.292311831,1.292311831,1.292311831,1.292311831,1.292311831,1.292311831 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Absolute|Land area weighted,days/yr,30.12630545,30.12630545,30.12630545,30.12630545,30.12630545,30.12630545,30.12630545,30.12630545,30.12630545,30.12630545 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Absolute|Land area weighted,days/yr,34.14667116,34.14667116,34.14667116,34.14667116,34.14667116,34.14667116,34.14667116,34.14667116,34.14667116,34.14667116 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Absolute|Land area weighted,days/yr,131.7310077,131.7310077,131.7310077,131.7310077,131.7310077,131.7310077,131.7310077,131.7310077,131.7310077,131.7310077 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Absolute|Land area weighted,days/yr,22.97752179,22.97752179,22.97752179,22.97752179,22.97752179,22.97752179,22.97752179,22.97752179,22.97752179,22.97752179 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Absolute|Land area weighted,days/yr,92.33910039,92.33910039,92.33910039,92.33910039,92.33910039,92.33910039,92.33910039,92.33910039,92.33910039,92.33910039 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Absolute|Land area weighted,days/yr,88.43819167,88.43819167,88.43819167,88.43819167,88.43819167,88.43819167,88.43819167,88.43819167,88.43819167,88.43819167 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Absolute|Land area weighted,days/yr,63.75649463,63.75649463,63.75649463,63.75649463,63.75649463,63.75649463,63.75649463,63.75649463,63.75649463,63.75649463 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Absolute|Land area weighted,days/yr,167.3303564,167.3303564,167.3303564,167.3303564,167.3303564,167.3303564,167.3303564,167.3303564,167.3303564,167.3303564 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Absolute|Land area weighted,days/yr,63.28768612,63.28768612,63.28768612,63.28768612,63.28768612,63.28768612,63.28768612,63.28768612,63.28768612,63.28768612 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Absolute|Land area weighted,days/yr,71.37514677,71.37514677,71.37514677,71.37514677,71.37514677,71.37514677,71.37514677,71.37514677,71.37514677,71.37514677 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Absolute|Land area weighted,days/yr,24.76395012,24.76395012,24.76395012,24.76395012,24.76395012,24.76395012,24.76395012,24.76395012,24.76395012,24.76395012 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Absolute|Land area weighted,days/yr,156.9702577,156.9702577,156.9702577,156.9702577,156.9702577,156.9702577,156.9702577,156.9702577,156.9702577,156.9702577 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Absolute|Land area weighted,days/yr,71.15081605,71.15081605,71.15081605,71.15081605,71.15081605,71.15081605,71.15081605,71.15081605,71.15081605,71.15081605 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Absolute|Land area weighted,days/yr,211.9795223,211.9795223,211.9795223,211.9795223,211.9795223,211.9795223,211.9795223,211.9795223,211.9795223,211.9795223 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Absolute|Land area weighted,days/yr,99.62730858,99.62730858,99.62730858,99.62730858,99.62730858,99.62730858,99.62730858,99.62730858,99.62730858,99.62730858 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.40675984,25.40675984,25.40675984,25.40675984,25.40675984,25.40675984,25.40675984,25.40675984,25.40675984,25.40675984 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Absolute|Land area weighted,days/yr,44.18865862,44.18865862,44.18865862,44.18865862,44.18865862,44.18865862,44.18865862,44.18865862,44.18865862,44.18865862 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Absolute|Land area weighted,days/yr,28.2623861,28.2623861,28.2623861,28.2623861,28.2623861,28.2623861,28.2623861,28.2623861,28.2623861,28.2623861 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Absolute|Land area weighted,days/yr,125.8302286,125.8302286,125.8302286,125.8302286,125.8302286,125.8302286,125.8302286,125.8302286,125.8302286,125.8302286 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Absolute|Land area weighted,days/yr,205.0128234,205.0128234,205.0128234,205.0128234,205.0128234,205.0128234,205.0128234,205.0128234,205.0128234,205.0128234 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Absolute|Land area weighted,days/yr,52.81324495,52.81324495,52.81324495,52.81324495,52.81324495,52.81324495,52.81324495,52.81324495,52.81324495,52.81324495 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Absolute|Land area weighted,days/yr,61.5943017,61.5943017,61.5943017,61.5943017,61.5943017,61.5943017,61.5943017,61.5943017,61.5943017,61.5943017 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Absolute|Land area weighted,days/yr,58.78778134,58.78778134,58.78778134,58.78778134,58.78778134,58.78778134,58.78778134,58.78778134,58.78778134,58.78778134 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Absolute|Land area weighted,days/yr,23.68679933,23.68679933,23.68679933,23.68679933,23.68679933,23.68679933,23.68679933,23.68679933,23.68679933,23.68679933 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Absolute|Land area weighted,days/yr,31.91754559,31.91754559,31.91754559,31.91754559,31.91754559,31.91754559,31.91754559,31.91754559,31.91754559,31.91754559 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Absolute|Land area weighted,days/yr,222.6429297,222.6429297,222.6429297,222.6429297,222.6429297,222.6429297,222.6429297,222.6429297,222.6429297,222.6429297 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Absolute|Land area weighted,days/yr,99.13628688,99.13628688,99.13628688,99.13628688,99.13628688,99.13628688,99.13628688,99.13628688,99.13628688,99.13628688 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Absolute|Land area weighted,days/yr,40.87179019,40.87179019,40.87179019,40.87179019,40.87179019,40.87179019,40.87179019,40.87179019,40.87179019,40.87179019 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Absolute|Land area weighted,days/yr,51.43309534,51.43309534,51.43309534,51.43309534,51.43309534,51.43309534,51.43309534,51.43309534,51.43309534,51.43309534 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Absolute|Land area weighted,days/yr,17.45858497,17.45858497,17.45858497,17.45858497,17.45858497,17.45858497,17.45858497,17.45858497,17.45858497,17.45858497 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Absolute|Land area weighted,days/yr,172.2915773,172.2915773,172.2915773,172.2915773,172.2915773,172.2915773,172.2915773,172.2915773,172.2915773,172.2915773 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Absolute|Land area weighted,days/yr,131.195588,131.195588,131.195588,131.195588,131.195588,131.195588,131.195588,131.195588,131.195588,131.195588 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.85940317,10.85940317,10.85940317,10.85940317,10.85940317,10.85940317,10.85940317,10.85940317,10.85940317,10.85940317 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Absolute|Land area weighted,days/yr,25.1814267,25.1814267,25.1814267,25.1814267,25.1814267,25.1814267,25.1814267,25.1814267,25.1814267,25.1814267 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Absolute|Land area weighted,days/yr,226.934113,226.934113,226.934113,226.934113,226.934113,226.934113,226.934113,226.934113,226.934113,226.934113 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Absolute|Land area weighted,days/yr,29.395149,29.395149,29.395149,29.395149,29.395149,29.395149,29.395149,29.395149,29.395149,29.395149 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Absolute|Land area weighted,days/yr,121.5604135,121.5604135,121.5604135,121.5604135,121.5604135,121.5604135,121.5604135,121.5604135,121.5604135,121.5604135 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Absolute|Land area weighted,days/yr,55.95719648,55.95719648,55.95719648,55.95719648,55.95719648,55.95719648,55.95719648,55.95719648,55.95719648,55.95719648 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Absolute|Land area weighted,days/yr,69.89571832,69.89571832,69.89571832,69.89571832,69.89571832,69.89571832,69.89571832,69.89571832,69.89571832,69.89571832 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Absolute|Land area weighted,days/yr,64.84758831,64.84758831,64.84758831,64.84758831,64.84758831,64.84758831,64.84758831,64.84758831,64.84758831,64.84758831 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Absolute|Land area weighted,days/yr,52.84760386,52.84760386,52.84760386,52.84760386,52.84760386,52.84760386,52.84760386,52.84760386,52.84760386,52.84760386 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Absolute|Land area weighted,days/yr,71.18747434,71.18747434,71.18747434,71.18747434,71.18747434,71.18747434,71.18747434,71.18747434,71.18747434,71.18747434 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Absolute|Land area weighted,days/yr,35.84809445,35.84809445,35.84809445,35.84809445,35.84809445,35.84809445,35.84809445,35.84809445,35.84809445,35.84809445 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Absolute|Land area weighted,days/yr,24.27849307,24.27849307,24.27849307,24.27849307,24.27849307,24.27849307,24.27849307,24.27849307,24.27849307,24.27849307 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Absolute|Land area weighted,days/yr,86.43676985,86.43676985,86.43676985,86.43676985,86.43676985,86.43676985,86.43676985,86.43676985,86.43676985,86.43676985 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Absolute|Land area weighted,days/yr,67.51805598,67.51805598,67.51805598,67.51805598,67.51805598,67.51805598,67.51805598,67.51805598,67.51805598,67.51805598 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Absolute|Land area weighted,days/yr,143.7973093,143.7973093,143.7973093,143.7973093,143.7973093,143.7973093,143.7973093,143.7973093,143.7973093,143.7973093 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Absolute|Land area weighted,days/yr,104.3773184,104.3773184,104.3773184,104.3773184,104.3773184,104.3773184,104.3773184,104.3773184,104.3773184,104.3773184 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Absolute|Land area weighted,days/yr,244.0484036,244.0484036,244.0484036,244.0484036,244.0484036,244.0484036,244.0484036,244.0484036,244.0484036,244.0484036 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Absolute|Land area weighted,days/yr,16.29677528,16.29677528,16.29677528,16.29677528,16.29677528,16.29677528,16.29677528,16.29677528,16.29677528,16.29677528 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Absolute|Land area weighted,days/yr,13.17512697,13.17512697,13.17512697,13.17512697,13.17512697,13.17512697,13.17512697,13.17512697,13.17512697,13.17512697 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Absolute|Land area weighted,days/yr,106.1561461,106.1561461,106.1561461,106.1561461,106.1561461,106.1561461,106.1561461,106.1561461,106.1561461,106.1561461 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Absolute|Land area weighted,days/yr,36.09122315,36.09122315,36.09122315,36.09122315,36.09122315,36.09122315,36.09122315,36.09122315,36.09122315,36.09122315 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Absolute|Land area weighted,days/yr,29.03109316,29.03109316,29.03109316,29.03109316,29.03109316,29.03109316,29.03109316,29.03109316,29.03109316,29.03109316 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Absolute|Land area weighted,days/yr,183.3246382,183.3246382,183.3246382,183.3246382,183.3246382,183.3246382,183.3246382,183.3246382,183.3246382,183.3246382 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Absolute|Land area weighted,days/yr,111.8382605,111.8382605,111.8382605,111.8382605,111.8382605,111.8382605,111.8382605,111.8382605,111.8382605,111.8382605 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Absolute|Land area weighted,days/yr,58.69442526,58.69442526,58.69442526,58.69442526,58.69442526,58.69442526,58.69442526,58.69442526,58.69442526,58.69442526 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Absolute|Land area weighted,days/yr,65.36831098,65.36831098,65.36831098,65.36831098,65.36831098,65.36831098,65.36831098,65.36831098,65.36831098,65.36831098 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Absolute|Land area weighted,days/yr,21.71244874,21.71244874,21.71244874,21.71244874,21.71244874,21.71244874,21.71244874,21.71244874,21.71244874,21.71244874 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Absolute|Land area weighted,days/yr,20.29883158,20.29883158,20.29883158,20.29883158,20.29883158,20.29883158,20.29883158,20.29883158,20.29883158,20.29883158 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Absolute|Land area weighted,days/yr,72.37286022,72.37286022,72.37286022,72.37286022,72.37286022,72.37286022,72.37286022,72.37286022,72.37286022,72.37286022 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Absolute|Land area weighted,days/yr,121.2968427,121.2968427,121.2968427,121.2968427,121.2968427,121.2968427,121.2968427,121.2968427,121.2968427,121.2968427 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Absolute|Land area weighted,days/yr,219.6087573,219.6087573,219.6087573,219.6087573,219.6087573,219.6087573,219.6087573,219.6087573,219.6087573,219.6087573 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Absolute|Land area weighted,days/yr,33.18739747,33.18739747,33.18739747,33.18739747,33.18739747,33.18739747,33.18739747,33.18739747,33.18739747,33.18739747 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Absolute|Land area weighted,days/yr,89.36259886,89.36259886,89.36259886,89.36259886,89.36259886,89.36259886,89.36259886,89.36259886,89.36259886,89.36259886 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Absolute|Land area weighted,days/yr,31.84902867,31.84902867,31.84902867,31.84902867,31.84902867,31.84902867,31.84902867,31.84902867,31.84902867,31.84902867 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Absolute|Land area weighted,days/yr,92.5413025,92.5413025,92.5413025,92.5413025,92.5413025,92.5413025,92.5413025,92.5413025,92.5413025,92.5413025 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Absolute|Land area weighted,days/yr,90.40150592,90.40150592,90.40150592,90.40150592,90.40150592,90.40150592,90.40150592,90.40150592,90.40150592,90.40150592 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Absolute|Land area weighted,days/yr,40.17759473,40.17759473,40.17759473,40.17759473,40.17759473,40.17759473,40.17759473,40.17759473,40.17759473,40.17759473 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Absolute|Land area weighted,days/yr,45.32037289,45.32037289,45.32037289,45.32037289,45.32037289,45.32037289,45.32037289,45.32037289,45.32037289,45.32037289 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Absolute|Land area weighted,days/yr,32.13406493,32.13406493,32.13406493,32.13406493,32.13406493,32.13406493,32.13406493,32.13406493,32.13406493,32.13406493 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Absolute|Land area weighted,days/yr,31.95780972,31.95780972,31.95780972,31.95780972,31.95780972,31.95780972,31.95780972,31.95780972,31.95780972,31.95780972 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Absolute|Land area weighted,days/yr,203.9918503,203.9918503,203.9918503,203.9918503,203.9918503,203.9918503,203.9918503,203.9918503,203.9918503,203.9918503 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Absolute|Land area weighted,days/yr,15.63854474,15.63854474,15.63854474,15.63854474,15.63854474,15.63854474,15.63854474,15.63854474,15.63854474,15.63854474 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Absolute|Land area weighted,days/yr,22.26508445,22.26508445,22.26508445,22.26508445,22.26508445,22.26508445,22.26508445,22.26508445,22.26508445,22.26508445 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Absolute|Land area weighted,days/yr,287.6550671,287.6550671,287.6550671,287.6550671,287.6550671,287.6550671,287.6550671,287.6550671,287.6550671,287.6550671 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Absolute|Land area weighted,days/yr,24.42898245,24.42898245,24.42898245,24.42898245,24.42898245,24.42898245,24.42898245,24.42898245,24.42898245,24.42898245 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Absolute|Land area weighted,days/yr,93.45541026,93.45541026,93.45541026,93.45541026,93.45541026,93.45541026,93.45541026,93.45541026,93.45541026,93.45541026 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Absolute|Land area weighted,days/yr,40.11497829,40.11497829,40.11497829,40.11497829,40.11497829,40.11497829,40.11497829,40.11497829,40.11497829,40.11497829 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Absolute|Land area weighted,days/yr,22.83243932,22.83243932,22.83243932,22.83243932,22.83243932,22.83243932,22.83243932,22.83243932,22.83243932,22.83243932 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Absolute|Land area weighted,days/yr,55.26609285,55.26609285,55.26609285,55.26609285,55.26609285,55.26609285,55.26609285,55.26609285,55.26609285,55.26609285 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Absolute|Land area weighted,days/yr,225.3614943,225.3614943,225.3614943,225.3614943,225.3614943,225.3614943,225.3614943,225.3614943,225.3614943,225.3614943 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Absolute|Land area weighted,days/yr,32.62207299,32.62207299,32.62207299,32.62207299,32.62207299,32.62207299,32.62207299,32.62207299,32.62207299,32.62207299 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Absolute|Land area weighted,days/yr,42.79036243,42.79036243,42.79036243,42.79036243,42.79036243,42.79036243,42.79036243,42.79036243,42.79036243,42.79036243 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Absolute|Land area weighted,days/yr,39.16651683,39.16651683,39.16651683,39.16651683,39.16651683,39.16651683,39.16651683,39.16651683,39.16651683,39.16651683 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Absolute|Land area weighted,days/yr,33.09338543,33.09338543,33.09338543,33.09338543,33.09338543,33.09338543,33.09338543,33.09338543,33.09338543,33.09338543 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Absolute|Land area weighted,days/yr,144.9412124,144.9412124,144.9412124,144.9412124,144.9412124,144.9412124,144.9412124,144.9412124,144.9412124,144.9412124 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Absolute|Land area weighted,days/yr,72.96952583,72.96952583,72.96952583,72.96952583,72.96952583,72.96952583,72.96952583,72.96952583,72.96952583,72.96952583 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Absolute|Land area weighted,days/yr,92.28203744,92.28203744,92.28203744,92.28203744,92.28203744,92.28203744,92.28203744,92.28203744,92.28203744,92.28203744 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Absolute|Land area weighted,days/yr,23.29779394,23.29779394,23.29779394,23.29779394,23.29779394,23.29779394,23.29779394,23.29779394,23.29779394,23.29779394 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Absolute|Land area weighted,days/yr,17.67036669,17.67036669,17.67036669,17.67036669,17.67036669,17.67036669,17.67036669,17.67036669,17.67036669,17.67036669 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Absolute|Land area weighted,days/yr,18.27242888,18.27242888,18.27242888,18.27242888,18.27242888,18.27242888,18.27242888,18.27242888,18.27242888,18.27242888 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Absolute|Land area weighted,days/yr,21.64761761,21.64761761,21.64761761,21.64761761,21.64761761,21.64761761,21.64761761,21.64761761,21.64761761,21.64761761 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Absolute|Land area weighted,days/yr,82.17425491,82.17425491,82.17425491,82.17425491,82.17425491,82.17425491,82.17425491,82.17425491,82.17425491,82.17425491 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Absolute|Land area weighted,days/yr,31.81000117,31.81000117,31.81000117,31.81000117,31.81000117,31.81000117,31.81000117,31.81000117,31.81000117,31.81000117 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Absolute|Land area weighted,days/yr,45.7119356,45.7119356,45.7119356,45.7119356,45.7119356,45.7119356,45.7119356,45.7119356,45.7119356,45.7119356 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Absolute|Land area weighted,days/yr,30.84911083,30.84911083,30.84911083,30.84911083,30.84911083,30.84911083,30.84911083,30.84911083,30.84911083,30.84911083 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Absolute|Land area weighted,days/yr,262.5360976,262.5360976,262.5360976,262.5360976,262.5360976,262.5360976,262.5360976,262.5360976,262.5360976,262.5360976 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Absolute|Land area weighted,days/yr,57.78858739,57.78858739,57.78858739,57.78858739,57.78858739,57.78858739,57.78858739,57.78858739,57.78858739,57.78858739 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Absolute|Land area weighted,days/yr,191.389348,191.389348,191.389348,191.389348,191.389348,191.389348,191.389348,191.389348,191.389348,191.389348 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Absolute|Land area weighted,days/yr,51.17062907,51.17062907,51.17062907,51.17062907,51.17062907,51.17062907,51.17062907,51.17062907,51.17062907,51.17062907 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Absolute|Land area weighted,days/yr,30.99789965,30.99789965,30.99789965,30.99789965,30.99789965,30.99789965,30.99789965,30.99789965,30.99789965,30.99789965 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Absolute|Land area weighted,days/yr,45.12104568,45.12104568,45.12104568,45.12104568,45.12104568,45.12104568,45.12104568,45.12104568,45.12104568,45.12104568 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Absolute|Land area weighted,days/yr,23.4387014,23.4387014,23.4387014,23.4387014,23.4387014,23.4387014,23.4387014,23.4387014,23.4387014,23.4387014 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Absolute|Land area weighted,days/yr,20.92509372,20.92509372,20.92509372,20.92509372,20.92509372,20.92509372,20.92509372,20.92509372,20.92509372,20.92509372 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Absolute|Land area weighted,days/yr,141.7460496,141.7460496,141.7460496,141.7460496,141.7460496,141.7460496,141.7460496,141.7460496,141.7460496,141.7460496 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Absolute|Land area weighted,days/yr,26.24459359,26.24459359,26.24459359,26.24459359,26.24459359,26.24459359,26.24459359,26.24459359,26.24459359,26.24459359 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Absolute|Land area weighted,days/yr,22.92317534,22.92317534,22.92317534,22.92317534,22.92317534,22.92317534,22.92317534,22.92317534,22.92317534,22.92317534 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Absolute|Land area weighted,days/yr,103.9318621,103.9318621,103.9318621,103.9318621,103.9318621,103.9318621,103.9318621,103.9318621,103.9318621,103.9318621 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Absolute|Land area weighted,days/yr,151.3377583,151.3377583,151.3377583,151.3377583,151.3377583,151.3377583,151.3377583,151.3377583,151.3377583,151.3377583 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Absolute|Land area weighted,days/yr,220.9698534,220.9698534,220.9698534,220.9698534,220.9698534,220.9698534,220.9698534,220.9698534,220.9698534,220.9698534 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Absolute|Land area weighted,days/yr,97.78540811,97.78540811,97.78540811,97.78540811,97.78540811,97.78540811,97.78540811,97.78540811,97.78540811,97.78540811 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Absolute|Land area weighted,days/yr,151.2793675,151.2793675,151.2793675,151.2793675,151.2793675,151.2793675,151.2793675,151.2793675,151.2793675,151.2793675 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Absolute|Land area weighted,days/yr,21.88181364,21.88181364,21.88181364,21.88181364,21.88181364,21.88181364,21.88181364,21.88181364,21.88181364,21.88181364 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Absolute|Land area weighted,days/yr,23.35458255,23.35458255,23.35458255,23.35458255,23.35458255,23.35458255,23.35458255,23.35458255,23.35458255,23.35458255 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Absolute|Land area weighted,days/yr,88.27111995,88.27111995,88.27111995,88.27111995,88.27111995,88.27111995,88.27111995,88.27111995,88.27111995,88.27111995 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Absolute|Land area weighted,days/yr,30.83921766,30.83921766,30.83921766,30.83921766,30.83921766,30.83921766,30.83921766,30.83921766,30.83921766,30.83921766 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Absolute|Land area weighted,days/yr,169.3245684,169.3245684,169.3245684,169.3245684,169.3245684,169.3245684,169.3245684,169.3245684,169.3245684,169.3245684 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Absolute|Land area weighted,days/yr,87.85171619,87.85171619,87.85171619,87.85171619,87.85171619,87.85171619,87.85171619,87.85171619,87.85171619,87.85171619 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Absolute|Land area weighted,days/yr,27.5125111,27.5125111,27.5125111,27.5125111,27.5125111,27.5125111,27.5125111,27.5125111,27.5125111,27.5125111 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Absolute|Land area weighted,days/yr,56.66195199,56.66195199,56.66195199,56.66195199,56.66195199,56.66195199,56.66195199,56.66195199,56.66195199,56.66195199 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Absolute|Land area weighted,days/yr,24.98674619,24.98674619,24.98674619,24.98674619,24.98674619,24.98674619,24.98674619,24.98674619,24.98674619,24.98674619 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Absolute|Land area weighted,days/yr,23.80426074,23.80426074,23.80426074,23.80426074,23.80426074,23.80426074,23.80426074,23.80426074,23.80426074,23.80426074 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Absolute|Land area weighted,days/yr,35.61809897,35.61809897,35.61809897,35.61809897,35.61809897,35.61809897,35.61809897,35.61809897,35.61809897,35.61809897 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Absolute|Land area weighted,days/yr,117.7460298,117.7460298,117.7460298,117.7460298,117.7460298,117.7460298,117.7460298,117.7460298,117.7460298,117.7460298 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Absolute|Land area weighted,days/yr,29.65034351,29.65034351,29.65034351,29.65034351,29.65034351,29.65034351,29.65034351,29.65034351,29.65034351,29.65034351 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Absolute|Land area weighted,days/yr,93.62474858,93.62474858,93.62474858,93.62474858,93.62474858,93.62474858,93.62474858,93.62474858,93.62474858,93.62474858 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Absolute|Land area weighted,days/yr,196.9716176,196.9716176,196.9716176,196.9716176,196.9716176,196.9716176,196.9716176,196.9716176,196.9716176,196.9716176 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Absolute|Land area weighted,days/yr,30.82286337,30.82286337,30.82286337,30.82286337,30.82286337,30.82286337,30.82286337,30.82286337,30.82286337,30.82286337 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Absolute|Land area weighted,days/yr,19.50468545,19.50468545,19.50468545,19.50468545,19.50468545,19.50468545,19.50468545,19.50468545,19.50468545,19.50468545 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Absolute|Land area weighted,days/yr,30.01396387,30.01396387,30.01396387,30.01396387,30.01396387,30.01396387,30.01396387,30.01396387,30.01396387,30.01396387 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Absolute|Land area weighted,days/yr,32.52321433,32.52321433,32.52321433,32.52321433,32.52321433,32.52321433,32.52321433,32.52321433,32.52321433,32.52321433 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Absolute|Land area weighted,days/yr,242.8853628,242.8853628,242.8853628,242.8853628,242.8853628,242.8853628,242.8853628,242.8853628,242.8853628,242.8853628 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Absolute|Land area weighted,days/yr,23.25383012,23.25383012,23.25383012,23.25383012,23.25383012,23.25383012,23.25383012,23.25383012,23.25383012,23.25383012 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Absolute|Land area weighted,days/yr,25.83753431,25.83753431,25.83753431,25.83753431,25.83753431,25.83753431,25.83753431,25.83753431,25.83753431,25.83753431 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Absolute|Land area weighted,days/yr,27.86876205,27.86876205,27.86876205,27.86876205,27.86876205,27.86876205,27.86876205,27.86876205,27.86876205,27.86876205 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Absolute|Land area weighted,days/yr,129.0814495,129.0814495,129.0814495,129.0814495,129.0814495,129.0814495,129.0814495,129.0814495,129.0814495,129.0814495 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Absolute|Land area weighted,days/yr,109.5276032,109.5276032,109.5276032,109.5276032,109.5276032,109.5276032,109.5276032,109.5276032,109.5276032,109.5276032 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Absolute|Land area weighted,days/yr,122.5863502,122.5863502,122.5863502,122.5863502,122.5863502,122.5863502,122.5863502,122.5863502,122.5863502,122.5863502 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Absolute|Land area weighted,days/yr,114.5091517,114.5091517,114.5091517,114.5091517,114.5091517,114.5091517,114.5091517,114.5091517,114.5091517,114.5091517 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Absolute|Land area weighted,days/yr,42.72522063,42.72522063,42.72522063,42.72522063,42.72522063,42.72522063,42.72522063,42.72522063,42.72522063,42.72522063 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Absolute|Land area weighted,days/yr,64.75354141,64.75354141,64.75354141,64.75354141,64.75354141,64.75354141,64.75354141,64.75354141,64.75354141,64.75354141 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Absolute|Land area weighted,days/yr,33.80033331,33.80033331,33.80033331,33.80033331,33.80033331,33.80033331,33.80033331,33.80033331,33.80033331,33.80033331 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Absolute|Land area weighted,days/yr,20.7184965,20.7184965,20.7184965,20.7184965,20.7184965,20.7184965,20.7184965,20.7184965,20.7184965,20.7184965 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Absolute|Land area weighted,days/yr,63.30653725,63.30653725,63.30653725,63.30653725,63.30653725,63.30653725,63.30653725,63.30653725,63.30653725,63.30653725 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Absolute|Land area weighted,days/yr,28.99309813,28.99309813,28.99309813,28.99309813,28.99309813,28.99309813,28.99309813,28.99309813,28.99309813,28.99309813 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Absolute|Land area weighted,days/yr,54.15612902,54.15612902,54.15612902,54.15612902,54.15612902,54.15612902,54.15612902,54.15612902,54.15612902,54.15612902 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Absolute|Land area weighted,days/yr,70.60711328,70.60711328,70.60711328,70.60711328,70.60711328,70.60711328,70.60711328,70.60711328,70.60711328,70.60711328 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Absolute|Land area weighted,days/yr,223.5278971,223.5278971,223.5278971,223.5278971,223.5278971,223.5278971,223.5278971,223.5278971,223.5278971,223.5278971 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Absolute|Land area weighted,days/yr,61.54675779,61.54675779,61.54675779,61.54675779,61.54675779,61.54675779,61.54675779,61.54675779,61.54675779,61.54675779 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Absolute|Land area weighted,days/yr,43.51037219,43.51037219,43.51037219,43.51037219,43.51037219,43.51037219,43.51037219,43.51037219,43.51037219,43.51037219 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Absolute|Land area weighted,days/yr,93.82980792,93.82980792,93.82980792,93.82980792,93.82980792,93.82980792,93.82980792,93.82980792,93.82980792,93.82980792 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Absolute|Land area weighted,days/yr,249.862131,249.862131,249.862131,249.862131,249.862131,249.862131,249.862131,249.862131,249.862131,249.862131 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Absolute|Land area weighted,days/yr,90.0693514,90.0693514,90.0693514,90.0693514,90.0693514,90.0693514,90.0693514,90.0693514,90.0693514,90.0693514 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Absolute|Land area weighted,days/yr,86.68963832,86.68963832,86.68963832,86.68963832,86.68963832,86.68963832,86.68963832,86.68963832,86.68963832,86.68963832 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Absolute|Land area weighted,days/yr,24.83634638,24.83634638,24.83634638,24.83634638,24.83634638,24.83634638,24.83634638,24.83634638,24.83634638,24.83634638 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Absolute|Land area weighted,days/yr,28.78772765,28.78772765,28.78772765,28.78772765,28.78772765,28.78772765,28.78772765,28.78772765,28.78772765,28.78772765 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Absolute|Land area weighted,days/yr,60.31299635,60.31299635,60.31299635,60.31299635,60.31299635,60.31299635,60.31299635,60.31299635,60.31299635,60.31299635 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Absolute|Land area weighted,days/yr,180.583786,180.583786,180.583786,180.583786,180.583786,180.583786,180.583786,180.583786,180.583786,180.583786 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Absolute|Land area weighted,days/yr,19.49897142,19.49897142,19.49897142,19.49897142,19.49897142,19.49897142,19.49897142,19.49897142,19.49897142,19.49897142 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Absolute|Land area weighted,days/yr,171.884043,171.884043,171.884043,171.884043,171.884043,171.884043,171.884043,171.884043,171.884043,171.884043 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Absolute|Land area weighted,days/yr,215.3259879,215.3259879,215.3259879,215.3259879,215.3259879,215.3259879,215.3259879,215.3259879,215.3259879,215.3259879 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Absolute|Land area weighted,days/yr,17.55204217,17.55204217,17.55204217,17.55204217,17.55204217,17.55204217,17.55204217,17.55204217,17.55204217,17.55204217 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Absolute|Land area weighted,days/yr,116.9882622,116.9882622,116.9882622,116.9882622,116.9882622,116.9882622,116.9882622,116.9882622,116.9882622,116.9882622 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Absolute|Land area weighted,days/yr,29.26000989,29.26000989,29.26000989,29.26000989,29.26000989,29.26000989,29.26000989,29.26000989,29.26000989,29.26000989 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Absolute|Land area weighted,days/yr,139.8608976,139.8608976,139.8608976,139.8608976,139.8608976,139.8608976,139.8608976,139.8608976,139.8608976,139.8608976 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Absolute|Land area weighted,days/yr,22.80035832,22.80035832,22.80035832,22.80035832,22.80035832,22.80035832,22.80035832,22.80035832,22.80035832,22.80035832 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Absolute|Land area weighted,days/yr,18.94769854,18.94769854,18.94769854,18.94769854,18.94769854,18.94769854,18.94769854,18.94769854,18.94769854,18.94769854 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Absolute|Land area weighted,days/yr,30.56983846,30.56983846,30.56983846,30.56983846,30.56983846,30.56983846,30.56983846,30.56983846,30.56983846,30.56983846 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Absolute|Land area weighted,days/yr,53.73579859,53.73579859,53.73579859,53.73579859,53.73579859,53.73579859,53.73579859,53.73579859,53.73579859,53.73579859 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Absolute|Land area weighted,days/yr,34.65467634,34.65467634,34.65467634,34.65467634,34.65467634,34.65467634,34.65467634,34.65467634,34.65467634,34.65467634 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Absolute|Land area weighted,days/yr,140.2520396,140.2520396,140.2520396,140.2520396,140.2520396,140.2520396,140.2520396,140.2520396,140.2520396,140.2520396 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Absolute|Land area weighted,days/yr,28.20206871,28.20206871,28.20206871,28.20206871,28.20206871,28.20206871,28.20206871,28.20206871,28.20206871,28.20206871 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Absolute|Land area weighted,days/yr,39.6781357,39.6781357,39.6781357,39.6781357,39.6781357,39.6781357,39.6781357,39.6781357,39.6781357,39.6781357 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Absolute|Land area weighted,days/yr,35.64955692,35.64955692,35.64955692,35.64955692,35.64955692,35.64955692,35.64955692,35.64955692,35.64955692,35.64955692 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Absolute|Land area weighted,days/yr,49.77133117,49.77133117,49.77133117,49.77133117,49.77133117,49.77133117,49.77133117,49.77133117,49.77133117,49.77133117 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Absolute|Land area weighted,days/yr,22.96892277,22.96892277,22.96892277,22.96892277,22.96892277,22.96892277,22.96892277,22.96892277,22.96892277,22.96892277 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Absolute|Land area weighted,days/yr,17.74230115,17.74230115,17.74230115,17.74230115,17.74230115,17.74230115,17.74230115,17.74230115,17.74230115,17.74230115 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Absolute|Land area weighted,days/yr,149.5740845,149.5740845,149.5740845,149.5740845,149.5740845,149.5740845,149.5740845,149.5740845,149.5740845,149.5740845 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Absolute|Land area weighted,days/yr,43.11960767,43.11960767,43.11960767,43.11960767,43.11960767,43.11960767,43.11960767,43.11960767,43.11960767,43.11960767 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Absolute|Land area weighted,days/yr,105.4740159,105.4740159,105.4740159,105.4740159,105.4740159,105.4740159,105.4740159,105.4740159,105.4740159,105.4740159 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Absolute|Land area weighted,days/yr,101.0892652,101.0892652,101.0892652,101.0892652,101.0892652,101.0892652,101.0892652,101.0892652,101.0892652,101.0892652 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Absolute|Land area weighted,days/yr,314.0385807,314.0385807,314.0385807,314.0385807,314.0385807,314.0385807,314.0385807,314.0385807,314.0385807,314.0385807 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Absolute|Land area weighted,days/yr,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Absolute|Land area weighted,days/yr,32.66509951,32.66509951,32.66509951,32.66509951,32.66509951,32.66509951,32.66509951,32.66509951,32.66509951,32.66509951 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Absolute|Land area weighted,days/yr,163.3147294,163.3147294,163.3147294,163.3147294,163.3147294,163.3147294,163.3147294,163.3147294,163.3147294,163.3147294 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Absolute|Land area weighted,days/yr,23.13468765,23.13468765,23.13468765,23.13468765,23.13468765,23.13468765,23.13468765,23.13468765,23.13468765,23.13468765 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Absolute|Land area weighted,days/yr,212.8596665,212.8596665,212.8596665,212.8596665,212.8596665,212.8596665,212.8596665,212.8596665,212.8596665,212.8596665 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Absolute|Land area weighted,days/yr,63.12354219,63.12354219,63.12354219,63.12354219,63.12354219,63.12354219,63.12354219,63.12354219,63.12354219,63.12354219 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Absolute|Land area weighted,days/yr,49.03044098,49.03044098,49.03044098,49.03044098,49.03044098,49.03044098,49.03044098,49.03044098,49.03044098,49.03044098 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Absolute|Land area weighted,days/yr,28.67938413,28.67938413,28.67938413,28.67938413,28.67938413,28.67938413,28.67938413,28.67938413,28.67938413,28.67938413 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Absolute|Land area weighted,days/yr,27.60388807,27.60388807,27.60388807,27.60388807,27.60388807,27.60388807,27.60388807,27.60388807,27.60388807,27.60388807 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Absolute|Land area weighted,days/yr,9.399494398,9.399494398,9.399494398,9.399494398,9.399494398,9.399494398,9.399494398,9.399494398,9.399494398,9.399494398 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Absolute|Land area weighted,days/yr,29.52062689,29.52062689,29.52062689,29.52062689,29.52062689,29.52062689,29.52062689,29.52062689,29.52062689,29.52062689 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Absolute|Land area weighted,days/yr,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Absolute|Land area weighted,days/yr,32.31200523,32.31200523,32.31200523,32.31200523,32.31200523,32.31200523,32.31200523,32.31200523,32.31200523,32.31200523 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Absolute|Population weighted,days/yr,22.7807923,22.78576786,22.79283692,22.79635969,22.80238651,22.80478009,22.80776516,22.81109106,22.81169036,22.81023112 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Absolute|Population weighted,days/yr,37.07678866,37.07834511,37.0800052,37.08173615,37.08337016,37.08485162,37.08615912,37.08727011,37.08821053,37.08902929 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Absolute|Population weighted,days/yr,134.6508592,134.9335141,135.3062241,135.7187233,136.1301017,136.5798156,137.0341295,137.5008064,137.9462025,138.2959171 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Absolute|Population weighted,days/yr,22.80656154,22.79947204,22.79299857,22.78742132,22.78246841,22.77801447,22.77402972,22.77030206,22.76682731,22.76367403 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Absolute|Population weighted,days/yr,91.77268305,91.77190536,91.77820066,91.78970769,91.81042695,91.83646499,91.86559598,91.89885749,91.93400873,91.96767287 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Absolute|Population weighted,days/yr,72.74370872,72.78580328,72.80944197,72.8289087,72.83774811,72.84093841,72.84345588,72.84483881,72.84464813,72.84332238 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Absolute|Population weighted,days/yr,62.518039,62.45259789,62.38346024,62.31593148,62.25895155,62.20836016,62.15932596,62.11029544,62.06698245,62.02736391 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Absolute|Population weighted,days/yr,167.1245058,167.1239705,167.1459399,167.1804511,167.2232532,167.2698432,167.3151923,167.3559024,167.3911346,167.4205525 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Absolute|Population weighted,days/yr,46.47017067,46.33820337,46.21916821,46.12156692,46.03887791,45.97163537,45.91829845,45.87431548,45.84019807,45.8138819 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Absolute|Population weighted,days/yr,66.31922985,66.2550393,66.18244508,66.11432729,66.06039115,66.01068974,65.96093649,65.916661,65.88409891,65.85657201 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Absolute|Population weighted,days/yr,21.87601918,21.84265092,21.81795272,21.80449319,21.79559649,21.78607857,21.77850936,21.77553469,21.77185894,21.76617209 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Absolute|Population weighted,days/yr,157.4791935,157.3887547,157.3536052,157.3485974,157.363062,157.3857188,157.4068532,157.4273936,157.4468042,157.4651784 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Absolute|Population weighted,days/yr,53.86107763,54.03104139,54.14354425,54.21517341,54.2502331,54.26011666,54.25327131,54.23523352,54.20967089,54.17870801 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Absolute|Population weighted,days/yr,194.5903242,194.8030846,194.8782135,194.9205269,194.9404647,194.9507741,194.9309097,194.8937736,194.8530364,194.8108511 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Absolute|Population weighted,days/yr,94.002443,94.05253377,94.0964274,94.13312259,94.16352115,94.18467334,94.20064186,94.21499741,94.22681587,94.23678859 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Absolute|Population weighted,days/yr,25.85897611,25.84710817,25.83739535,25.82725124,25.81732553,25.80820208,25.79857961,25.78785956,25.77699572,25.7673742 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Absolute|Population weighted,days/yr,55.8403505,55.83779686,55.86310141,55.90379487,55.96003339,56.02208748,56.086606,56.15313541,56.21924675,56.28457916 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Absolute|Population weighted,days/yr,28.23782036,28.24069267,28.24544852,28.25298186,28.26329192,28.27528367,28.28742,28.29907611,28.3089331,28.31589343 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Absolute|Population weighted,days/yr,121.5246105,121.4380502,121.3670502,121.2974581,121.2272779,121.158961,121.1135588,121.0892395,121.0864297,121.1024463 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Absolute|Population weighted,days/yr,179.5059248,179.5726435,179.6292435,179.6697171,179.6930227,179.7034752,179.6874882,179.6499455,179.6003004,179.533998 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Absolute|Population weighted,days/yr,84.48431055,84.33796543,84.27815656,84.25071822,84.26292532,84.30474903,84.35469605,84.41266629,84.4858391,84.55981588 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Absolute|Population weighted,days/yr,62.68876857,62.61609255,62.52292169,62.43875602,62.35879858,62.27570364,62.19258394,62.1191271,62.05624261,62.00271788 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Absolute|Population weighted,days/yr,59.69611066,59.49657171,59.36556102,59.27256273,59.19965961,59.14357276,59.10302893,59.07446231,59.05766461,59.05265529 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Absolute|Population weighted,days/yr,24.0437968,24.04608332,24.04825352,24.05004957,24.05152319,24.05288197,24.05417277,24.05532695,24.05629365,24.05706786 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Absolute|Population weighted,days/yr,31.32271041,31.33365867,31.34478311,31.3568184,31.36948885,31.38127176,31.39065453,31.39816301,31.40424423,31.4092344 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Absolute|Population weighted,days/yr,172.722222,173.379471,173.59591,173.7657501,173.8402907,173.8989718,173.9006663,173.8476714,173.7682117,173.6494629 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Absolute|Population weighted,days/yr,86.24151173,86.54910917,86.77336297,86.92948797,87.03104296,87.09105606,87.13318578,87.16212875,87.18521964,87.19851093 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Absolute|Population weighted,days/yr,41.48969864,41.56183854,41.61064665,41.64126796,41.65821084,41.66421697,41.66678996,41.66728823,41.66654562,41.66870696 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Absolute|Population weighted,days/yr,48.11428422,48.0289712,47.97870343,47.96177642,47.93503134,47.90824002,47.87494517,47.84500951,47.8119852,47.80284656 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Absolute|Population weighted,days/yr,19.19929437,19.20894571,19.21625106,19.22294988,19.22810984,19.23258655,19.23638422,19.24007525,19.24308128,19.24584168 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Absolute|Population weighted,days/yr,132.504673,132.7554297,132.9387035,133.0805688,133.1776812,133.2498399,133.3009236,133.3347752,133.3566287,133.3685009 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Absolute|Population weighted,days/yr,112.4390228,112.7063203,112.9071171,113.0651005,113.2106064,113.3372772,113.4500194,113.5520885,113.6428656,113.7211224 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.96901507,10.96934681,10.96719493,10.96125413,10.95222344,10.93990781,10.92828525,10.91771462,10.90864096,10.90099691 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Absolute|Population weighted,days/yr,25.58641468,25.59148769,25.5994095,25.60960255,25.61776585,25.62432784,25.63104478,25.6375177,25.64224509,25.64498816 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Absolute|Population weighted,days/yr,205.3202495,205.6440499,205.7170085,205.7313712,205.7138618,205.6757737,205.6129385,205.5445331,205.4879234,205.4397877 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Absolute|Population weighted,days/yr,29.34116608,29.36366708,29.37193139,29.37655638,29.37936239,29.38105646,29.38198505,29.38250575,29.38289498,29.38320376 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Absolute|Population weighted,days/yr,121.5047649,121.5502174,121.5896206,121.6384047,121.69256,121.7490209,121.8044459,121.8563837,121.9033358,121.9439704 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Absolute|Population weighted,days/yr,60.24380709,60.39578766,60.53365486,60.64801003,60.74757468,60.83316709,60.90454235,60.95857199,61.0008809,61.03532866 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Absolute|Population weighted,days/yr,53.65416255,53.66781019,53.68740557,53.70958252,53.73159154,53.75354049,53.77614073,53.7988601,53.82069653,53.84094925 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Absolute|Population weighted,days/yr,65.7757878,65.79609128,65.81795502,65.83952616,65.86062197,65.87930555,65.89713688,65.91489083,65.93121823,65.94703827 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Absolute|Population weighted,days/yr,57.9515513,58.0064846,58.05365409,58.09360503,58.12700738,58.15466223,58.17729048,58.1959735,58.21159712,58.22483585 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Absolute|Population weighted,days/yr,39.31455828,39.32874862,39.32486067,39.30896633,39.28509495,39.25670979,39.22861306,39.20068096,39.17432887,39.14897134 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Absolute|Population weighted,days/yr,37.25807583,37.27018105,37.28318305,37.29727201,37.30933073,37.31938321,37.32768893,37.3345143,37.34030328,37.34511105 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Absolute|Population weighted,days/yr,24.00802528,23.99329121,23.9796836,23.96813538,23.95820167,23.94987049,23.9426676,23.93634926,23.93087017,23.92600067 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Absolute|Population weighted,days/yr,98.53545337,99.23529166,99.94553336,100.6737896,101.3826244,102.0742877,102.7143127,103.2911266,103.7919382,104.1827675 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Absolute|Population weighted,days/yr,66.83801948,66.94618414,67.04208504,67.11834505,67.17568168,67.22458551,67.26174456,67.28924595,67.30659101,67.31261104 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Absolute|Population weighted,days/yr,112.3625416,113.2177454,113.9004513,114.4200454,114.7932627,115.0641393,115.2606389,115.4220416,115.5615434,115.6832826 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Absolute|Population weighted,days/yr,105.4371616,105.4479738,105.4539828,105.4577472,105.4596181,105.4593846,105.4571732,105.4533781,105.4481814,105.4425856 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Absolute|Population weighted,days/yr,238.4753364,238.297283,238.1380047,238.0157746,237.9348604,237.9181129,237.8885453,237.8636052,237.8551469,237.852367 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Absolute|Population weighted,days/yr,18.35267744,18.29259361,18.25567227,18.23403028,18.22535624,18.22340997,18.22576616,18.23198211,18.24119051,18.25256919 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Absolute|Population weighted,days/yr,9.534655278,9.21457784,8.999128437,8.846274734,8.743819254,8.706193542,8.753389725,8.887364365,9.060682485,9.237402599 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Absolute|Population weighted,days/yr,109.453846,109.463414,109.4797686,109.5019442,109.5241932,109.5486406,109.5791394,109.6144457,109.645757,109.6731331 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Absolute|Population weighted,days/yr,18.18901254,18.20196456,18.21455475,18.22593358,18.23647524,18.24548345,18.25318679,18.2595564,18.26525524,18.26993736 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Absolute|Population weighted,days/yr,28.84632262,28.8497426,28.85292864,28.85610588,28.85914579,28.86247856,28.86668133,28.87148724,28.87663492,28.88239739 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Absolute|Population weighted,days/yr,182.8304511,182.8104785,182.7491848,182.7177692,182.6437673,182.5757414,182.5190245,182.4521662,182.377293,182.3110592 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Absolute|Population weighted,days/yr,101.368007,101.416997,101.4579852,101.4756303,101.4949145,101.5068186,101.5138101,101.5121824,101.5067941,101.4987871 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Absolute|Population weighted,days/yr,120.4542472,121.9169623,123.3407875,124.6918056,125.955153,127.0979954,128.0765716,128.9227278,129.6494362,130.2717905 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Absolute|Population weighted,days/yr,73.11589493,73.11539506,73.15848768,73.21285755,73.27646845,73.35857636,73.43868701,73.51763262,73.58987777,73.64135355 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Absolute|Population weighted,days/yr,18.61282522,18.62149804,18.62481376,18.62812334,18.62812334,18.62820858,18.62815873,18.62813621,18.62804936,18.62810705 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Absolute|Population weighted,days/yr,21.81060504,21.84065066,21.8639632,21.88217927,21.89747031,21.91014196,21.92097813,21.93015786,21.93795262,21.94450298 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Absolute|Population weighted,days/yr,60.6519687,60.77791613,60.87378935,60.94554276,60.99606357,61.03046203,61.05619997,61.07444166,61.08945816,61.09985357 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Absolute|Population weighted,days/yr,97.74797279,97.9165289,98.04548353,98.1574682,98.25921014,98.34175407,98.41145932,98.47084883,98.5185107,98.55675891 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Absolute|Population weighted,days/yr,213.0220134,213.3780422,213.5595751,213.968568,214.0900038,214.544074,214.5941878,214.8958686,215.1569906,215.3648112 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Absolute|Population weighted,days/yr,33.07527251,33.07911553,33.08279393,33.08586729,33.08839398,33.09050213,33.09225332,33.09378597,33.09505133,33.0961149 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Absolute|Population weighted,days/yr,95.32070875,95.75844279,96.22664114,96.68149152,97.13251089,97.52699402,97.89087356,98.22461378,98.54134679,98.83740452 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Absolute|Population weighted,days/yr,31.37303682,31.40670118,31.43050852,31.44885612,31.46475546,31.47830379,31.49180356,31.50244241,31.51005159,31.51672776 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Absolute|Population weighted,days/yr,83.94871501,84.09278827,84.183895,84.23029357,84.24869132,84.24774648,84.23098605,84.2035247,84.16751021,84.12596943 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Absolute|Population weighted,days/yr,52.6809162,52.73914349,52.7956456,52.84710038,52.89436564,52.93189795,52.96182553,52.98610362,53.00612671,53.02220163 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Absolute|Population weighted,days/yr,39.83487629,39.92265555,40.00035394,40.07030613,40.13457605,40.18942779,40.23197223,40.26410046,40.28801942,40.30152533 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Absolute|Population weighted,days/yr,44.05556396,44.05570658,44.05578579,44.05582459,44.05589026,44.05589388,44.05589675,44.05589675,44.05592878,44.05588869 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Absolute|Population weighted,days/yr,29.42033854,29.39652119,29.37420825,29.35367343,29.33460487,29.31611051,29.29818136,29.28168404,29.26768542,29.25696917 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Absolute|Population weighted,days/yr,32.06139306,32.09373215,32.12302611,32.14857092,32.17068259,32.19033804,32.20931274,32.22618311,32.24105552,32.25428506 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Absolute|Population weighted,days/yr,197.5251846,197.5543126,197.5738677,197.5890032,197.6002891,197.608508,197.6139417,197.6170013,197.6184082,197.6191974 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Absolute|Population weighted,days/yr,20.83031563,20.86819356,20.92314097,20.99089632,21.06967886,21.15543868,21.23132856,21.29706927,21.35354442,21.40019279 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Absolute|Population weighted,days/yr,22.96064741,22.96837905,22.97541057,22.98162555,22.98685288,22.99159465,22.99582464,22.99947231,23.00265642,23.00545396 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Absolute|Population weighted,days/yr,174.8333951,175.060943,175.1600691,175.329814,175.4778076,175.2626894,175.1845432,175.1538962,175.2075489,175.130396 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Absolute|Population weighted,days/yr,32.88512418,32.91328839,32.94330114,32.97273613,33.00135903,33.02847185,33.05416064,33.0764855,33.09616801,33.11387959 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Absolute|Population weighted,days/yr,84.98759789,85.10160767,85.21704425,85.33511581,85.42810129,85.50113819,85.56349312,85.6462947,85.71920763,85.7802188 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Absolute|Population weighted,days/yr,39.89157805,40.04407773,40.18812376,40.32893816,40.46038612,40.57316102,40.67277773,40.76387004,40.84666699,40.91923956 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Absolute|Population weighted,days/yr,23.62462332,23.62634161,23.62828386,23.62945324,23.63071838,23.63133727,23.6322982,23.63323971,23.63425601,23.63567151 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Absolute|Population weighted,days/yr,61.47064848,61.52285511,61.62602986,61.76424706,61.92994272,62.1136379,62.30384611,62.49173746,62.65759523,62.8037022 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Absolute|Population weighted,days/yr,181.1713849,181.2091733,181.2309869,181.2518724,181.2568124,181.3091996,181.3059983,181.3370216,181.3560997,181.3472007 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Absolute|Population weighted,days/yr,28.71640637,28.67652301,28.63967931,28.60298344,28.56806348,28.53607863,28.50494781,28.47897577,28.45530718,28.43457522 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Absolute|Population weighted,days/yr,42.73264049,42.75325757,42.76843688,42.78183207,42.79392739,42.80427242,42.81526619,42.8269778,42.83824678,42.84889116 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Absolute|Population weighted,days/yr,31.69798665,31.61125023,31.53441183,31.47225626,31.42495482,31.38948201,31.36485372,31.34994796,31.33974373,31.33099752 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Absolute|Population weighted,days/yr,34.06079112,34.11187128,34.15728664,34.19754577,34.23017872,34.2581623,34.28265277,34.30342182,34.32020307,34.33319821 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Absolute|Population weighted,days/yr,136.6086665,136.4666323,136.3499992,136.2710098,136.2237168,136.1972192,136.1732702,136.1598143,136.1444526,136.1305641 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Absolute|Population weighted,days/yr,67.68793409,67.72326164,67.75617696,67.78404952,67.80863512,67.83214519,67.85483662,67.87544658,67.89322799,67.90897365 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Absolute|Population weighted,days/yr,78.07311035,78.17401149,78.27257151,78.37009135,78.46376767,78.55372107,78.63757877,78.71550942,78.77991756,78.83112147 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Absolute|Population weighted,days/yr,21.77161363,21.79149133,21.81283871,21.83328873,21.85352715,21.87323091,21.89003603,21.9034017,21.91397372,21.92258964 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Absolute|Population weighted,days/yr,18.92341417,18.93686628,18.95300469,18.97064375,18.98887075,19.00679185,19.02344265,19.03861079,19.05194001,19.06251452 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Absolute|Population weighted,days/yr,21.24210335,21.23148892,21.22706399,21.22518738,21.22536946,21.22702224,21.23018957,21.23455637,21.23969255,21.24481474 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Absolute|Population weighted,days/yr,23.1617817,23.214642,23.26321762,23.30823185,23.35154908,23.39142629,23.42645085,23.45735538,23.48513452,23.51169104 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Absolute|Population weighted,days/yr,69.85891907,70.03031453,70.20098719,70.37102463,70.52940213,70.66129682,70.77519331,70.87849941,70.97610756,71.06674354 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Absolute|Population weighted,days/yr,28.06622292,28.15403972,28.21166864,28.2471365,28.26835958,28.27985464,28.28506394,28.28628267,28.2846996,28.28158213 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Absolute|Population weighted,days/yr,55.37853626,55.47256943,55.57023517,55.59263331,55.63923522,55.65677352,55.64514713,55.6440722,55.64859073,55.66236599 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Absolute|Population weighted,days/yr,30.82524899,30.82005196,30.81622571,30.81332648,30.8102923,30.80758318,30.80549454,30.80367155,30.80215627,30.80095189 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Absolute|Population weighted,days/yr,209.5113406,209.4831548,209.4987526,209.4985799,209.5165715,209.5361209,209.5520682,209.5732997,209.5822431,209.5944272 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Absolute|Population weighted,days/yr,46.60367423,46.51396981,46.44085794,46.36736851,46.28822742,46.20626867,46.14130892,46.08724625,46.04314218,46.00444729 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Absolute|Population weighted,days/yr,194.4079997,194.52488,194.5415504,194.5478875,194.5442254,194.5288081,194.4940767,194.4415901,194.3824439,194.3132775 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Absolute|Population weighted,days/yr,49.93873287,50.05353665,50.15067463,50.23047996,50.29466266,50.34446307,50.38457364,50.41688043,50.44381958,50.46724284 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Absolute|Population weighted,days/yr,25.43997399,25.43282385,25.44228843,25.46182518,25.48350596,25.49981911,25.47840082,25.49452372,25.50950406,25.51190847 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Absolute|Population weighted,days/yr,39.91793195,39.93701714,39.93951666,39.93058977,39.91359414,39.8912354,39.86469503,39.83515561,39.80826568,39.78672018 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Absolute|Population weighted,days/yr,23.91280645,23.92755134,23.93930849,23.94908432,23.95701167,23.96332148,23.96789236,23.97077366,23.9724684,23.97340564 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Absolute|Population weighted,days/yr,21.42959358,21.43622645,21.44084313,21.44461833,21.44757624,21.44965057,21.45109351,21.45210882,21.45291039,21.45347805 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Absolute|Population weighted,days/yr,120.9225135,121.2689499,121.5577142,121.8010585,121.995454,122.1288223,122.2256023,122.2932733,122.3366209,122.362542 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Absolute|Population weighted,days/yr,38.68303562,38.74663564,38.76687772,38.75225764,38.70999206,38.64600006,38.57286807,38.49551819,38.41636155,38.34797356 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Absolute|Population weighted,days/yr,23.33939215,23.36501566,23.38860005,23.4113615,23.43299949,23.45220537,23.46855169,23.48252451,23.49459847,23.50451803 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Absolute|Population weighted,days/yr,39.60516034,39.5877115,39.53058167,39.4957722,39.48676629,39.45276049,39.40437104,39.37286923,39.34757755,39.33021779 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Absolute|Population weighted,days/yr,124.0326185,124.2035223,124.3095554,124.3819663,124.4275744,124.4308515,124.438917,124.4701292,124.5032476,124.5320778 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Absolute|Population weighted,days/yr,90.42338367,90.57216232,90.54530829,90.59884481,90.57753813,90.61501461,90.62517435,90.62012266,90.53931367,90.53713294 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Absolute|Population weighted,days/yr,93.86914868,93.76650104,93.65437985,93.54408083,93.43865758,93.35349692,93.28721408,93.23382254,93.1880652,93.1462761 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Absolute|Population weighted,days/yr,137.7681064,137.8717748,137.9419684,137.9886778,138.0371044,138.0511094,138.0759344,138.0879341,138.1074901,138.109891 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Absolute|Population weighted,days/yr,19.81471282,19.81264467,19.81248544,19.81242569,19.8123761,19.81234557,19.81234145,19.81232963,19.81231115,19.81230576 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Absolute|Population weighted,days/yr,23.82042808,23.82259174,23.82455636,23.8265274,23.82835058,23.83009741,23.83200224,23.83407246,23.83614141,23.83813514 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Absolute|Population weighted,days/yr,87.76395264,87.72904226,87.66128174,87.56062349,87.43254904,87.29191385,87.1417512,86.99807317,86.87278,86.76296242 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Absolute|Population weighted,days/yr,31.04600721,31.07169128,31.09848582,31.12541088,31.15282076,31.18263553,31.21352656,31.24006039,31.26134264,31.27843946 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Absolute|Population weighted,days/yr,164.972551,165.1186628,165.243491,165.3514311,165.4415305,165.5217731,165.5935225,165.6569353,165.7107358,165.7559812 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Absolute|Population weighted,days/yr,87.01538297,86.95912011,86.91442867,86.87734676,86.84575528,86.81818207,86.79772203,86.78361184,86.77515984,86.77211389 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Absolute|Population weighted,days/yr,28.60121662,28.74628031,28.87254776,28.98283021,29.07720348,29.1573444,29.22209238,29.27027079,29.30749409,29.33213041 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Absolute|Population weighted,days/yr,56.83597448,56.83474615,56.83781799,56.84447437,56.85326199,56.86507965,56.87624302,56.88570455,56.89260001,56.89476591 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Absolute|Population weighted,days/yr,25.15072567,25.15511484,25.1581976,25.16057386,25.16243628,25.16402224,25.16541665,25.16662239,25.16778213,25.16899376 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Absolute|Population weighted,days/yr,23.7129727,23.71240808,23.71176678,23.71079658,23.70927228,23.70759777,23.70607852,23.70452157,23.70313988,23.70228655 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Absolute|Population weighted,days/yr,35.49091056,35.48904998,35.48632869,35.48050829,35.47322431,35.46601159,35.46062453,35.45516263,35.45009842,35.44820733 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Absolute|Population weighted,days/yr,108.2671578,108.3302582,108.3889875,108.4416539,108.4886214,108.5316929,108.5692,108.5997908,108.6249442,108.6459026 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Absolute|Population weighted,days/yr,29.34161406,29.32650487,29.31563064,29.30664818,29.29843703,29.29164833,29.2851527,29.2779094,29.270946,29.26444906 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Absolute|Population weighted,days/yr,81.11044296,81.25736077,81.21687418,81.10497125,81.12671198,81.11873088,81.10025296,81.08824786,81.10636446,80.97245256 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Absolute|Population weighted,days/yr,199.6953991,199.7788451,199.8550485,199.9306781,199.9972494,200.0605653,200.1207595,200.1779046,200.2346245,200.2843127 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Absolute|Population weighted,days/yr,29.93144858,30.22269055,30.47364499,30.63711884,30.77011703,30.87943152,30.95288044,30.98701911,31.02099677,31.03781619 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Absolute|Population weighted,days/yr,20.00445213,19.99663863,19.98647064,19.97830775,19.96998584,19.96096784,19.95365268,19.94879451,19.94659169,19.94615554 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Absolute|Population weighted,days/yr,35.97936859,36.03918124,36.08633687,36.13174615,36.17266878,36.20604741,36.23251501,36.25162943,36.26612771,36.27885166 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Absolute|Population weighted,days/yr,33.29300493,33.22937986,33.17280347,33.12162502,33.07557237,33.03539004,32.99740638,32.96712183,32.9471928,32.93662178 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Absolute|Population weighted,days/yr,181.897727,181.8469445,181.6221517,181.5947434,181.500916,181.4505141,181.4615344,181.4068523,181.375318,181.317605 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Absolute|Population weighted,days/yr,23.09865199,23.09753027,23.09640139,23.09532462,23.09448631,23.09364371,23.09283998,23.09216354,23.0915733,23.09098844 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Absolute|Population weighted,days/yr,24.93619427,24.93421861,24.93099212,24.9284957,24.92775832,24.92807921,24.9299794,24.93010977,24.93022269,24.93235387 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Absolute|Population weighted,days/yr,28.61203233,28.55087765,28.50698746,28.4758224,28.44999071,28.42909891,28.41182019,28.39907705,28.38949375,28.38542397 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Absolute|Population weighted,days/yr,133.5097021,133.5791526,133.6373815,133.7058517,133.7893548,133.8770941,133.9802185,134.1026801,134.2440694,134.4044127 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Absolute|Population weighted,days/yr,107.5134941,107.651328,107.7684394,107.8581076,107.9334442,107.9896328,108.0267666,108.0503298,108.0644188,108.0663363 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Absolute|Population weighted,days/yr,87.53451646,87.55082164,87.54294245,87.50900719,87.45988966,87.39221168,87.32180592,87.26081286,87.20392122,87.15815856 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Absolute|Population weighted,days/yr,105.4559765,105.5634938,105.6641382,105.7558361,105.8401524,105.9224873,105.9918843,106.0493567,106.0879934,106.1105272 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Absolute|Population weighted,days/yr,42.17009368,42.25999186,42.29278067,42.30310668,42.30465481,42.29515527,42.28218158,42.26866406,42.25450608,42.24053064 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Absolute|Population weighted,days/yr,62.85550754,62.87054803,62.87807889,62.88059025,62.87981479,62.87831601,62.87550323,62.87244213,62.87005826,62.86852541 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Absolute|Population weighted,days/yr,33.99051616,34.14327664,34.26100085,34.34669328,34.40792438,34.4467365,34.46768623,34.47300348,34.47636071,34.47824825 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Absolute|Population weighted,days/yr,19.82763053,19.95258223,19.9797347,19.99223449,19.99947313,20.00417336,20.00724634,20.00976547,20.0116267,20.0130719 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Absolute|Population weighted,days/yr,60.80970441,60.85298579,60.86136248,60.85082721,60.83642614,60.82258442,60.79756729,60.76522139,60.72975843,60.69027793 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Absolute|Population weighted,days/yr,32.28998806,32.71420268,33.03709581,33.2645886,33.4589532,33.57000149,33.68772058,33.79049804,33.88165302,33.96363299 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Absolute|Population weighted,days/yr,82.26882429,82.35585814,82.46065458,82.57059616,82.68786509,82.81211456,82.92785164,83.03230923,83.12563328,83.21295844 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Absolute|Population weighted,days/yr,70.03516888,70.01735951,70.00005815,69.98304929,69.9665094,69.95134203,69.93888607,69.92857102,69.91995704,69.91270799 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Absolute|Population weighted,days/yr,223.8791354,223.858352,223.8469399,223.8374899,223.8292404,223.8231302,223.8177967,223.8120283,223.8067879,223.8019026 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Absolute|Population weighted,days/yr,62.7474622,62.75710648,62.77722679,62.78749421,62.78908912,62.79700009,62.80887655,62.8229987,62.83999412,62.85918637 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Absolute|Population weighted,days/yr,41.16365713,41.1567505,41.1471848,41.13788429,41.12752007,41.11597527,41.10490597,41.09500871,41.08650832,41.07892829 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Absolute|Population weighted,days/yr,87.72944814,87.73947511,87.74937306,87.75770803,87.76914922,87.78341416,87.79729874,87.81018563,87.82452053,87.84064797 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Absolute|Population weighted,days/yr,216.8847249,216.8305159,216.8085022,216.7922161,216.7982,216.7958424,216.8110867,216.8217686,216.824735,216.8527319 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Absolute|Population weighted,days/yr,102.2715988,102.5321571,102.7198357,102.8601624,102.9605362,103.0678148,103.1777299,103.2854141,103.3864002,103.4748305 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Absolute|Population weighted,days/yr,87.05404744,87.06496654,87.07018267,87.07323,87.07514884,87.07640726,87.07726683,87.07787433,87.07830019,87.07861244 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Absolute|Population weighted,days/yr,31.32951263,31.55947953,31.75699988,31.91705412,32.04305048,32.13938438,32.21054682,32.26244026,32.30273458,32.33663168 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Absolute|Population weighted,days/yr,27.7292359,27.71206485,27.69704227,27.68482859,27.6725294,27.66353305,27.65647668,27.65201821,27.64842772,27.64676446 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Absolute|Population weighted,days/yr,69.73387814,69.94605079,70.10185109,70.21261054,70.28691852,70.33037582,70.34666692,70.35240307,70.3552696,70.35473033 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Absolute|Population weighted,days/yr,166.5554786,166.590093,166.5749187,166.5422848,166.5006092,166.454774,166.418329,166.3938996,166.3798059,166.3746392 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Absolute|Population weighted,days/yr,19.27985892,19.27338348,19.27372295,19.27364264,19.27481438,19.27731046,19.27736194,19.27615162,19.27919637,19.27925821 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Absolute|Population weighted,days/yr,173.0693499,172.8008543,172.6179831,172.5072406,172.4385072,172.4099766,172.4037748,172.4152736,172.4418882,172.4749713 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Absolute|Population weighted,days/yr,216.4214978,216.3351295,216.2919135,216.2724095,216.2710451,216.2825009,216.2967578,216.31304,216.3309904,216.3487961 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Absolute|Population weighted,days/yr,14.28469448,14.28938528,14.30022263,14.31450465,14.33453124,14.36560673,14.39800961,14.43768607,14.47312793,14.51022995 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Absolute|Population weighted,days/yr,110.7990021,111.1178043,111.3723331,111.5677218,111.7081254,111.8019339,111.8630293,111.9038358,111.9318031,111.9498433 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Absolute|Population weighted,days/yr,30.28486484,30.28450484,30.28420813,30.28394382,30.28376134,30.28365183,30.28358919,30.28357808,30.283572,30.2835575 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Absolute|Population weighted,days/yr,134.5080381,134.5708088,134.6792517,134.8301384,134.9973237,135.1766258,135.3481609,135.5152975,135.6790449,135.8348047 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Absolute|Population weighted,days/yr,22.87438812,22.88047511,22.88601345,22.89108425,22.89553853,22.89968185,22.90356536,22.90706292,22.91006293,22.91272084 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Absolute|Population weighted,days/yr,21.10693998,21.10927829,21.11166754,21.11400812,21.11597654,21.11816373,21.12027879,21.12239403,21.12429698,21.12601142 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Absolute|Population weighted,days/yr,24.76130586,24.80558559,24.8334117,24.85270298,24.86597896,24.87087504,24.86460041,24.84726431,24.82563083,24.80404812 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Absolute|Population weighted,days/yr,48.58065824,48.58270157,48.59045096,48.55107044,48.52253744,48.47095991,48.414178,48.38175217,48.34798407,48.35023354 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Absolute|Population weighted,days/yr,40.95488748,40.94244165,40.95404708,40.98521984,41.0278915,41.07579012,41.12673064,41.17979976,41.2331387,41.28581921 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Absolute|Population weighted,days/yr,114.620016,114.5695114,114.5581757,114.5212216,114.4888984,114.4628634,114.4337041,114.4097912,114.3909365,114.375945 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Absolute|Population weighted,days/yr,28.88872888,28.89331618,28.89898195,28.90524235,28.91304653,28.92103535,28.93059544,28.94140825,28.95242936,28.96451741 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Absolute|Population weighted,days/yr,38.62914644,38.61266306,38.59799833,38.5878918,38.58070048,38.57275151,38.56135408,38.55170529,38.54404263,38.53760066 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Absolute|Population weighted,days/yr,36.9839116,36.99828335,37.00985227,37.01895431,37.02425482,37.02729993,37.02902636,37.03000048,37.03134472,37.03316167 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Absolute|Population weighted,days/yr,34.73238457,34.74118663,34.75034739,34.75961493,34.77674753,34.79110777,34.80685287,34.82414309,34.8443905,34.85555574 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Absolute|Population weighted,days/yr,23.35857277,23.37382244,23.38768172,23.40001487,23.41104221,23.42091269,23.42975145,23.43766286,23.44474239,23.45120399 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Absolute|Population weighted,days/yr,20.11826324,20.20215421,20.29293116,20.37998805,20.45749581,20.52617008,20.58681294,20.64021458,20.68713951,20.72832661 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Absolute|Population weighted,days/yr,136.4244995,136.6459867,136.8399752,137.0059808,137.1497769,137.2789309,137.3878265,137.4782204,137.5518918,137.6136364 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Absolute|Population weighted,days/yr,48.72767155,48.46929844,48.2431663,48.05432362,47.89284649,47.75350305,47.64181338,47.55395095,47.48573452,47.43429084 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Absolute|Population weighted,days/yr,128.7356925,128.8635407,128.9930062,129.1211831,129.244552,129.3656898,129.490145,129.6189147,129.7586117,129.9012677 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Absolute|Population weighted,days/yr,95.53517779,95.5876318,95.62682134,95.65475899,95.67143429,95.67765204,95.67775106,95.67642387,95.67339488,95.67173251 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Absolute|Population weighted,days/yr,269.6693074,269.2579087,269.2545028,269.4957771,269.8772197,270.3624936,270.9012567,271.4850607,272.0752259,272.651295 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Absolute|Population weighted,days/yr,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527,19.80107527 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Absolute|Population weighted,days/yr,32.94921227,32.95688143,32.9636516,32.97049676,32.97777673,32.98430942,32.98961375,32.99408283,32.99741163,32.99967512 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Absolute|Population weighted,days/yr,151.0926996,151.0565764,151.0647648,151.0910049,151.0838195,151.0607825,151.1222918,151.1337847,151.1310764,151.1122702 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Absolute|Population weighted,days/yr,25.88936847,25.8909575,25.89180013,25.89215369,25.89225718,25.89232176,25.8924499,25.89260212,25.89279444,25.89310947 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Absolute|Population weighted,days/yr,213.3697792,213.3300361,213.3037565,213.2850698,213.2735696,213.2665768,213.2604841,213.2551249,213.2507502,213.2474793 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Absolute|Population weighted,days/yr,66.27715805,66.63988166,66.96001033,67.2292815,67.46525532,67.67976801,67.87595704,68.04979949,68.20460807,68.34104152 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Absolute|Population weighted,days/yr,43.98867615,43.98314187,43.97939058,43.97548729,43.97156059,43.96770307,43.96393601,43.96041719,43.95712168,43.95414418 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Absolute|Population weighted,days/yr,31.40757141,31.41649083,31.42745196,31.44906358,31.46448533,31.48565472,31.50762323,31.5184293,31.53476708,31.54670004 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Absolute|Population weighted,days/yr,24.02592963,23.9996399,23.9778952,23.95892291,23.94316882,23.92899819,23.91651254,23.90584101,23.89696148,23.88964887 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Absolute|Population weighted,days/yr,9.656428708,9.658248825,9.659124417,9.658567947,9.656929157,9.654664405,9.652225767,9.649885,9.647995403,9.646632853 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Absolute|Population weighted,days/yr,32.24148295,32.1767607,32.15252384,32.13778065,32.13320791,32.13291692,32.13254675,32.13239186,32.13226049,32.1321551 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Absolute|Population weighted,days/yr,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462,45.97849462 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Absolute|Population weighted,days/yr,31.70119365,31.66767376,31.64917179,31.61833709,31.61219984,31.60555791,31.5977382,31.58573795,31.56686115,31.55732493 +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Risk score,risk score,0.629023529,0.629023529,0.629023529,0.629023529,0.629023529,0.629023529,0.629023529,0.629023529,0.629023529,0.629023529 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Risk score,risk score,0.087930007,0.087930007,0.087930007,0.087930007,0.087930007,0.087930007,0.087930007,0.087930007,0.087930007,0.087930007 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Risk score,risk score,1.740427265,1.740427265,1.740427265,1.740427265,1.740427265,1.740427265,1.740427265,1.740427265,1.740427265,1.740427265 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Risk score,risk score,0.278864801,0.278864801,0.278864801,0.278864801,0.278864801,0.278864801,0.278864801,0.278864801,0.278864801,0.278864801 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Risk score,risk score,1.206130218,1.206130218,1.206130218,1.206130218,1.206130218,1.206130218,1.206130218,1.206130218,1.206130218,1.206130218 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Risk score,risk score,1.593838138,1.593838138,1.593838138,1.593838138,1.593838138,1.593838138,1.593838138,1.593838138,1.593838138,1.593838138 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Risk score,risk score,0.677586991,0.677586991,0.677586991,0.677586991,0.677586991,0.677586991,0.677586991,0.677586991,0.677586991,0.677586991 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Risk score,risk score,0.553900773,0.553900773,0.553900773,0.553900773,0.553900773,0.553900773,0.553900773,0.553900773,0.553900773,0.553900773 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Risk score,risk score,1.19829462,1.19829462,1.19829462,1.19829462,1.19829462,1.19829462,1.19829462,1.19829462,1.19829462,1.19829462 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Risk score,risk score,1.3523895,1.3523895,1.3523895,1.3523895,1.3523895,1.3523895,1.3523895,1.3523895,1.3523895,1.3523895 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Risk score,risk score,0.084599709,0.084599709,0.084599709,0.084599709,0.084599709,0.084599709,0.084599709,0.084599709,0.084599709,0.084599709 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Risk score,risk score,1.824694704,1.824694704,1.824694704,1.824694704,1.824694704,1.824694704,1.824694704,1.824694704,1.824694704,1.824694704 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Risk score,risk score,1.104147969,1.104147969,1.104147969,1.104147969,1.104147969,1.104147969,1.104147969,1.104147969,1.104147969,1.104147969 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Risk score,risk score,2.51819126,2.51819126,2.51819126,2.51819126,2.51819126,2.51819126,2.51819126,2.51819126,2.51819126,2.51819126 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Risk score,risk score,0.190393737,0.190393737,0.190393737,0.190393737,0.190393737,0.190393737,0.190393737,0.190393737,0.190393737,0.190393737 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Risk score,risk score,0.200215942,0.200215942,0.200215942,0.200215942,0.200215942,0.200215942,0.200215942,0.200215942,0.200215942,0.200215942 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Risk score,risk score,0.640389893,0.640389893,0.640389893,0.640389893,0.640389893,0.640389893,0.640389893,0.640389893,0.640389893,0.640389893 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Risk score,risk score,0.310507006,0.310507006,0.310507006,0.310507006,0.310507006,0.310507006,0.310507006,0.310507006,0.310507006,0.310507006 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Risk score,risk score,1.579233021,1.579233021,1.579233021,1.579233021,1.579233021,1.579233021,1.579233021,1.579233021,1.579233021,1.579233021 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Risk score,risk score,1.730736911,1.730736911,1.730736911,1.730736911,1.730736911,1.730736911,1.730736911,1.730736911,1.730736911,1.730736911 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Risk score,risk score,0.795918575,0.795918575,0.795918575,0.795918575,0.795918575,0.795918575,0.795918575,0.795918575,0.795918575,0.795918575 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Risk score,risk score,1.007260614,1.007260614,1.007260614,1.007260614,1.007260614,1.007260614,1.007260614,1.007260614,1.007260614,1.007260614 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Risk score,risk score,0.883180337,0.883180337,0.883180337,0.883180337,0.883180337,0.883180337,0.883180337,0.883180337,0.883180337,0.883180337 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Risk score,risk score,0.2822179,0.2822179,0.2822179,0.2822179,0.2822179,0.2822179,0.2822179,0.2822179,0.2822179,0.2822179 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Risk score,risk score,0.328853692,0.328853692,0.328853692,0.328853692,0.328853692,0.328853692,0.328853692,0.328853692,0.328853692,0.328853692 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Risk score,risk score,2.153441085,2.153441085,2.153441085,2.153441085,2.153441085,2.153441085,2.153441085,2.153441085,2.153441085,2.153441085 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Risk score,risk score,1.509027526,1.509027526,1.509027526,1.509027526,1.509027526,1.509027526,1.509027526,1.509027526,1.509027526,1.509027526 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Risk score,risk score,0.423222619,0.423222619,0.423222619,0.423222619,0.423222619,0.423222619,0.423222619,0.423222619,0.423222619,0.423222619 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Risk score,risk score,0.86776288,0.86776288,0.86776288,0.86776288,0.86776288,0.86776288,0.86776288,0.86776288,0.86776288,0.86776288 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Risk score,risk score,0.250974351,0.250974351,0.250974351,0.250974351,0.250974351,0.250974351,0.250974351,0.250974351,0.250974351,0.250974351 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Risk score,risk score,2.136482349,2.136482349,2.136482349,2.136482349,2.136482349,2.136482349,2.136482349,2.136482349,2.136482349,2.136482349 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Risk score,risk score,1.74190635,1.74190635,1.74190635,1.74190635,1.74190635,1.74190635,1.74190635,1.74190635,1.74190635,1.74190635 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Risk score,risk score,0.054132252,0.054132252,0.054132252,0.054132252,0.054132252,0.054132252,0.054132252,0.054132252,0.054132252,0.054132252 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Risk score,risk score,0.253231729,0.253231729,0.253231729,0.253231729,0.253231729,0.253231729,0.253231729,0.253231729,0.253231729,0.253231729 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Risk score,risk score,1.822312979,1.822312979,1.822312979,1.822312979,1.822312979,1.822312979,1.822312979,1.822312979,1.822312979,1.822312979 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Risk score,risk score,0.047636264,0.047636264,0.047636264,0.047636264,0.047636264,0.047636264,0.047636264,0.047636264,0.047636264,0.047636264 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Risk score,risk score,1.977322498,1.977322498,1.977322498,1.977322498,1.977322498,1.977322498,1.977322498,1.977322498,1.977322498,1.977322498 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Risk score,risk score,0.705391053,0.705391053,0.705391053,0.705391053,0.705391053,0.705391053,0.705391053,0.705391053,0.705391053,0.705391053 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Risk score,risk score,1.145276685,1.145276685,1.145276685,1.145276685,1.145276685,1.145276685,1.145276685,1.145276685,1.145276685,1.145276685 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Risk score,risk score,0.728481436,0.728481436,0.728481436,0.728481436,0.728481436,0.728481436,0.728481436,0.728481436,0.728481436,0.728481436 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Risk score,risk score,0.091507148,0.091507148,0.091507148,0.091507148,0.091507148,0.091507148,0.091507148,0.091507148,0.091507148,0.091507148 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Risk score,risk score,1.221903859,1.221903859,1.221903859,1.221903859,1.221903859,1.221903859,1.221903859,1.221903859,1.221903859,1.221903859 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Risk score,risk score,0.517007751,0.517007751,0.517007751,0.517007751,0.517007751,0.517007751,0.517007751,0.517007751,0.517007751,0.517007751 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Risk score,risk score,0.33135175,0.33135175,0.33135175,0.33135175,0.33135175,0.33135175,0.33135175,0.33135175,0.33135175,0.33135175 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Risk score,risk score,1.017254655,1.017254655,1.017254655,1.017254655,1.017254655,1.017254655,1.017254655,1.017254655,1.017254655,1.017254655 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Risk score,risk score,1.140373037,1.140373037,1.140373037,1.140373037,1.140373037,1.140373037,1.140373037,1.140373037,1.140373037,1.140373037 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Risk score,risk score,1.821327146,1.821327146,1.821327146,1.821327146,1.821327146,1.821327146,1.821327146,1.821327146,1.821327146,1.821327146 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Risk score,risk score,1.351851193,1.351851193,1.351851193,1.351851193,1.351851193,1.351851193,1.351851193,1.351851193,1.351851193,1.351851193 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Risk score,risk score,2.577676355,2.577676355,2.577676355,2.577676355,2.577676355,2.577676355,2.577676355,2.577676355,2.577676355,2.577676355 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Risk score,risk score,0.065626806,0.065626806,0.065626806,0.065626806,0.065626806,0.065626806,0.065626806,0.065626806,0.065626806,0.065626806 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Risk score,risk score,0.026001855,0.026001855,0.026001855,0.026001855,0.026001855,0.026001855,0.026001855,0.026001855,0.026001855,0.026001855 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Risk score,risk score,0.776563012,0.776563012,0.776563012,0.776563012,0.776563012,0.776563012,0.776563012,0.776563012,0.776563012,0.776563012 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Risk score,risk score,0.066943029,0.066943029,0.066943029,0.066943029,0.066943029,0.066943029,0.066943029,0.066943029,0.066943029,0.066943029 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Risk score,risk score,0.630333621,0.630333621,0.630333621,0.630333621,0.630333621,0.630333621,0.630333621,0.630333621,0.630333621,0.630333621 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Risk score,risk score,2.283977038,2.283977038,2.283977038,2.283977038,2.283977038,2.283977038,2.283977038,2.283977038,2.283977038,2.283977038 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Risk score,risk score,1.740968004,1.740968004,1.740968004,1.740968004,1.740968004,1.740968004,1.740968004,1.740968004,1.740968004,1.740968004 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Risk score,risk score,0.976585524,0.976585524,0.976585524,0.976585524,0.976585524,0.976585524,0.976585524,0.976585524,0.976585524,0.976585524 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Risk score,risk score,0.907535904,0.907535904,0.907535904,0.907535904,0.907535904,0.907535904,0.907535904,0.907535904,0.907535904,0.907535904 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Risk score,risk score,0.02432814,0.02432814,0.02432814,0.02432814,0.02432814,0.02432814,0.02432814,0.02432814,0.02432814,0.02432814 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Risk score,risk score,0.267446623,0.267446623,0.267446623,0.267446623,0.267446623,0.267446623,0.267446623,0.267446623,0.267446623,0.267446623 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Risk score,risk score,1.262005136,1.262005136,1.262005136,1.262005136,1.262005136,1.262005136,1.262005136,1.262005136,1.262005136,1.262005136 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Risk score,risk score,1.446027534,1.446027534,1.446027534,1.446027534,1.446027534,1.446027534,1.446027534,1.446027534,1.446027534,1.446027534 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Risk score,risk score,2.200838367,2.200838367,2.200838367,2.200838367,2.200838367,2.200838367,2.200838367,2.200838367,2.200838367,2.200838367 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Risk score,risk score,0.451399938,0.451399938,0.451399938,0.451399938,0.451399938,0.451399938,0.451399938,0.451399938,0.451399938,0.451399938 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Risk score,risk score,1.226920077,1.226920077,1.226920077,1.226920077,1.226920077,1.226920077,1.226920077,1.226920077,1.226920077,1.226920077 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Risk score,risk score,0.244174091,0.244174091,0.244174091,0.244174091,0.244174091,0.244174091,0.244174091,0.244174091,0.244174091,0.244174091 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Risk score,risk score,1.028516981,1.028516981,1.028516981,1.028516981,1.028516981,1.028516981,1.028516981,1.028516981,1.028516981,1.028516981 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Risk score,risk score,1.612633448,1.612633448,1.612633448,1.612633448,1.612633448,1.612633448,1.612633448,1.612633448,1.612633448,1.612633448 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Risk score,risk score,0.440876305,0.440876305,0.440876305,0.440876305,0.440876305,0.440876305,0.440876305,0.440876305,0.440876305,0.440876305 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Risk score,risk score,0.019781924,0.019781924,0.019781924,0.019781924,0.019781924,0.019781924,0.019781924,0.019781924,0.019781924,0.019781924 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Risk score,risk score,0.37337423,0.37337423,0.37337423,0.37337423,0.37337423,0.37337423,0.37337423,0.37337423,0.37337423,0.37337423 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Risk score,risk score,0.468443564,0.468443564,0.468443564,0.468443564,0.468443564,0.468443564,0.468443564,0.468443564,0.468443564,0.468443564 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Risk score,risk score,0.216324641,0.216324641,0.216324641,0.216324641,0.216324641,0.216324641,0.216324641,0.216324641,0.216324641,0.216324641 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Risk score,risk score,0.011482186,0.011482186,0.011482186,0.011482186,0.011482186,0.011482186,0.011482186,0.011482186,0.011482186,0.011482186 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Risk score,risk score,0.343512928,0.343512928,0.343512928,0.343512928,0.343512928,0.343512928,0.343512928,0.343512928,0.343512928,0.343512928 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Risk score,risk score,2.615622804,2.615622804,2.615622804,2.615622804,2.615622804,2.615622804,2.615622804,2.615622804,2.615622804,2.615622804 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Risk score,risk score,0.362622355,0.362622355,0.362622355,0.362622355,0.362622355,0.362622355,0.362622355,0.362622355,0.362622355,0.362622355 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Risk score,risk score,1.440837431,1.440837431,1.440837431,1.440837431,1.440837431,1.440837431,1.440837431,1.440837431,1.440837431,1.440837431 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Risk score,risk score,0.807218102,0.807218102,0.807218102,0.807218102,0.807218102,0.807218102,0.807218102,0.807218102,0.807218102,0.807218102 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Risk score,risk score,0.360742929,0.360742929,0.360742929,0.360742929,0.360742929,0.360742929,0.360742929,0.360742929,0.360742929,0.360742929 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Risk score,risk score,0.720061493,0.720061493,0.720061493,0.720061493,0.720061493,0.720061493,0.720061493,0.720061493,0.720061493,0.720061493 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Risk score,risk score,2.459624867,2.459624867,2.459624867,2.459624867,2.459624867,2.459624867,2.459624867,2.459624867,2.459624867,2.459624867 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Risk score,risk score,0.647196378,0.647196378,0.647196378,0.647196378,0.647196378,0.647196378,0.647196378,0.647196378,0.647196378,0.647196378 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Risk score,risk score,0.491971253,0.491971253,0.491971253,0.491971253,0.491971253,0.491971253,0.491971253,0.491971253,0.491971253,0.491971253 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Risk score,risk score,0.12639153,0.12639153,0.12639153,0.12639153,0.12639153,0.12639153,0.12639153,0.12639153,0.12639153,0.12639153 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Risk score,risk score,0.473921873,0.473921873,0.473921873,0.473921873,0.473921873,0.473921873,0.473921873,0.473921873,0.473921873,0.473921873 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Risk score,risk score,2.055602062,2.055602062,2.055602062,2.055602062,2.055602062,2.055602062,2.055602062,2.055602062,2.055602062,2.055602062 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Risk score,risk score,0.901563284,0.901563284,0.901563284,0.901563284,0.901563284,0.901563284,0.901563284,0.901563284,0.901563284,0.901563284 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Risk score,risk score,1.541466439,1.541466439,1.541466439,1.541466439,1.541466439,1.541466439,1.541466439,1.541466439,1.541466439,1.541466439 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Risk score,risk score,0.142695412,0.142695412,0.142695412,0.142695412,0.142695412,0.142695412,0.142695412,0.142695412,0.142695412,0.142695412 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Risk score,risk score,0.077763007,0.077763007,0.077763007,0.077763007,0.077763007,0.077763007,0.077763007,0.077763007,0.077763007,0.077763007 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Risk score,risk score,0.221823553,0.221823553,0.221823553,0.221823553,0.221823553,0.221823553,0.221823553,0.221823553,0.221823553,0.221823553 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Risk score,risk score,0.234610895,0.234610895,0.234610895,0.234610895,0.234610895,0.234610895,0.234610895,0.234610895,0.234610895,0.234610895 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Risk score,risk score,1.250283138,1.250283138,1.250283138,1.250283138,1.250283138,1.250283138,1.250283138,1.250283138,1.250283138,1.250283138 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Risk score,risk score,0.576564271,0.576564271,0.576564271,0.576564271,0.576564271,0.576564271,0.576564271,0.576564271,0.576564271,0.576564271 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Risk score,risk score,0.693198742,0.693198742,0.693198742,0.693198742,0.693198742,0.693198742,0.693198742,0.693198742,0.693198742,0.693198742 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Risk score,risk score,0.406064461,0.406064461,0.406064461,0.406064461,0.406064461,0.406064461,0.406064461,0.406064461,0.406064461,0.406064461 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Risk score,risk score,2.561084351,2.561084351,2.561084351,2.561084351,2.561084351,2.561084351,2.561084351,2.561084351,2.561084351,2.561084351 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Risk score,risk score,1.214321121,1.214321121,1.214321121,1.214321121,1.214321121,1.214321121,1.214321121,1.214321121,1.214321121,1.214321121 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Risk score,risk score,1.277702169,1.277702169,1.277702169,1.277702169,1.277702169,1.277702169,1.277702169,1.277702169,1.277702169,1.277702169 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Risk score,risk score,0.534273227,0.534273227,0.534273227,0.534273227,0.534273227,0.534273227,0.534273227,0.534273227,0.534273227,0.534273227 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Risk score,risk score,0.435208698,0.435208698,0.435208698,0.435208698,0.435208698,0.435208698,0.435208698,0.435208698,0.435208698,0.435208698 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Risk score,risk score,0.513757654,0.513757654,0.513757654,0.513757654,0.513757654,0.513757654,0.513757654,0.513757654,0.513757654,0.513757654 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Risk score,risk score,0.098344227,0.098344227,0.098344227,0.098344227,0.098344227,0.098344227,0.098344227,0.098344227,0.098344227,0.098344227 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Risk score,risk score,0.316637033,0.316637033,0.316637033,0.316637033,0.316637033,0.316637033,0.316637033,0.316637033,0.316637033,0.316637033 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Risk score,risk score,1.959572975,1.959572975,1.959572975,1.959572975,1.959572975,1.959572975,1.959572975,1.959572975,1.959572975,1.959572975 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Risk score,risk score,0.431220864,0.431220864,0.431220864,0.431220864,0.431220864,0.431220864,0.431220864,0.431220864,0.431220864,0.431220864 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Risk score,risk score,0.264816658,0.264816658,0.264816658,0.264816658,0.264816658,0.264816658,0.264816658,0.264816658,0.264816658,0.264816658 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Risk score,risk score,1.793278186,1.793278186,1.793278186,1.793278186,1.793278186,1.793278186,1.793278186,1.793278186,1.793278186,1.793278186 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Risk score,risk score,2.11213901,2.11213901,2.11213901,2.11213901,2.11213901,2.11213901,2.11213901,2.11213901,2.11213901,2.11213901 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Risk score,risk score,2.500376603,2.500376603,2.500376603,2.500376603,2.500376603,2.500376603,2.500376603,2.500376603,2.500376603,2.500376603 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Risk score,risk score,1.036802372,1.036802372,1.036802372,1.036802372,1.036802372,1.036802372,1.036802372,1.036802372,1.036802372,1.036802372 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Risk score,risk score,1.215045876,1.215045876,1.215045876,1.215045876,1.215045876,1.215045876,1.215045876,1.215045876,1.215045876,1.215045876 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Risk score,risk score,0.135265885,0.135265885,0.135265885,0.135265885,0.135265885,0.135265885,0.135265885,0.135265885,0.135265885,0.135265885 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Risk score,risk score,0.279830032,0.279830032,0.279830032,0.279830032,0.279830032,0.279830032,0.279830032,0.279830032,0.279830032,0.279830032 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Risk score,risk score,1.301748863,1.301748863,1.301748863,1.301748863,1.301748863,1.301748863,1.301748863,1.301748863,1.301748863,1.301748863 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Risk score,risk score,0.315980406,0.315980406,0.315980406,0.315980406,0.315980406,0.315980406,0.315980406,0.315980406,0.315980406,0.315980406 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Risk score,risk score,2.05290136,2.05290136,2.05290136,2.05290136,2.05290136,2.05290136,2.05290136,2.05290136,2.05290136,2.05290136 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Risk score,risk score,1.158780603,1.158780603,1.158780603,1.158780603,1.158780603,1.158780603,1.158780603,1.158780603,1.158780603,1.158780603 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Risk score,risk score,0.345541858,0.345541858,0.345541858,0.345541858,0.345541858,0.345541858,0.345541858,0.345541858,0.345541858,0.345541858 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Risk score,risk score,0.116272692,0.116272692,0.116272692,0.116272692,0.116272692,0.116272692,0.116272692,0.116272692,0.116272692,0.116272692 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Risk score,risk score,0.273894404,0.273894404,0.273894404,0.273894404,0.273894404,0.273894404,0.273894404,0.273894404,0.273894404,0.273894404 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Risk score,risk score,0.373850147,0.373850147,0.373850147,0.373850147,0.373850147,0.373850147,0.373850147,0.373850147,0.373850147,0.373850147 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Risk score,risk score,0.35503431,0.35503431,0.35503431,0.35503431,0.35503431,0.35503431,0.35503431,0.35503431,0.35503431,0.35503431 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Risk score,risk score,1.780323285,1.780323285,1.780323285,1.780323285,1.780323285,1.780323285,1.780323285,1.780323285,1.780323285,1.780323285 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Risk score,risk score,0.255300385,0.255300385,0.255300385,0.255300385,0.255300385,0.255300385,0.255300385,0.255300385,0.255300385,0.255300385 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Risk score,risk score,1.76693249,1.76693249,1.76693249,1.76693249,1.76693249,1.76693249,1.76693249,1.76693249,1.76693249,1.76693249 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Risk score,risk score,1.259486083,1.259486083,1.259486083,1.259486083,1.259486083,1.259486083,1.259486083,1.259486083,1.259486083,1.259486083 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Risk score,risk score,0.013454055,0.013454055,0.013454055,0.013454055,0.013454055,0.013454055,0.013454055,0.013454055,0.013454055,0.013454055 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Risk score,risk score,0.192633087,0.192633087,0.192633087,0.192633087,0.192633087,0.192633087,0.192633087,0.192633087,0.192633087,0.192633087 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Risk score,risk score,0.050689353,0.050689353,0.050689353,0.050689353,0.050689353,0.050689353,0.050689353,0.050689353,0.050689353,0.050689353 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Risk score,risk score,0.346122339,0.346122339,0.346122339,0.346122339,0.346122339,0.346122339,0.346122339,0.346122339,0.346122339,0.346122339 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Risk score,risk score,2.551499416,2.551499416,2.551499416,2.551499416,2.551499416,2.551499416,2.551499416,2.551499416,2.551499416,2.551499416 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Risk score,risk score,0.233065212,0.233065212,0.233065212,0.233065212,0.233065212,0.233065212,0.233065212,0.233065212,0.233065212,0.233065212 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Risk score,risk score,0.412048007,0.412048007,0.412048007,0.412048007,0.412048007,0.412048007,0.412048007,0.412048007,0.412048007,0.412048007 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Risk score,risk score,0.264280242,0.264280242,0.264280242,0.264280242,0.264280242,0.264280242,0.264280242,0.264280242,0.264280242,0.264280242 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Risk score,risk score,0.89190507,0.89190507,0.89190507,0.89190507,0.89190507,0.89190507,0.89190507,0.89190507,0.89190507,0.89190507 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Risk score,risk score,1.5451922,1.5451922,1.5451922,1.5451922,1.5451922,1.5451922,1.5451922,1.5451922,1.5451922,1.5451922 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Risk score,risk score,1.423690351,1.423690351,1.423690351,1.423690351,1.423690351,1.423690351,1.423690351,1.423690351,1.423690351,1.423690351 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Risk score,risk score,0.954536951,0.954536951,0.954536951,0.954536951,0.954536951,0.954536951,0.954536951,0.954536951,0.954536951,0.954536951 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Risk score,risk score,0.514494934,0.514494934,0.514494934,0.514494934,0.514494934,0.514494934,0.514494934,0.514494934,0.514494934,0.514494934 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Risk score,risk score,0.497944931,0.497944931,0.497944931,0.497944931,0.497944931,0.497944931,0.497944931,0.497944931,0.497944931,0.497944931 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Risk score,risk score,0.639583582,0.639583582,0.639583582,0.639583582,0.639583582,0.639583582,0.639583582,0.639583582,0.639583582,0.639583582 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Risk score,risk score,0.097850438,0.097850438,0.097850438,0.097850438,0.097850438,0.097850438,0.097850438,0.097850438,0.097850438,0.097850438 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Risk score,risk score,0.719548278,0.719548278,0.719548278,0.719548278,0.719548278,0.719548278,0.719548278,0.719548278,0.719548278,0.719548278 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Risk score,risk score,0.332108639,0.332108639,0.332108639,0.332108639,0.332108639,0.332108639,0.332108639,0.332108639,0.332108639,0.332108639 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Risk score,risk score,0.731928458,0.731928458,0.731928458,0.731928458,0.731928458,0.731928458,0.731928458,0.731928458,0.731928458,0.731928458 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Risk score,risk score,0.058233081,0.058233081,0.058233081,0.058233081,0.058233081,0.058233081,0.058233081,0.058233081,0.058233081,0.058233081 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Risk score,risk score,1.154161601,1.154161601,1.154161601,1.154161601,1.154161601,1.154161601,1.154161601,1.154161601,1.154161601,1.154161601 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Risk score,risk score,1.144350011,1.144350011,1.144350011,1.144350011,1.144350011,1.144350011,1.144350011,1.144350011,1.144350011,1.144350011 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Risk score,risk score,0.569348221,0.569348221,0.569348221,0.569348221,0.569348221,0.569348221,0.569348221,0.569348221,0.569348221,0.569348221 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Risk score,risk score,1.134804514,1.134804514,1.134804514,1.134804514,1.134804514,1.134804514,1.134804514,1.134804514,1.134804514,1.134804514 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Risk score,risk score,2.573510639,2.573510639,2.573510639,2.573510639,2.573510639,2.573510639,2.573510639,2.573510639,2.573510639,2.573510639 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Risk score,risk score,1.32581713,1.32581713,1.32581713,1.32581713,1.32581713,1.32581713,1.32581713,1.32581713,1.32581713,1.32581713 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Risk score,risk score,0.097959737,0.097959737,0.097959737,0.097959737,0.097959737,0.097959737,0.097959737,0.097959737,0.097959737,0.097959737 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Risk score,risk score,0.013260034,0.013260034,0.013260034,0.013260034,0.013260034,0.013260034,0.013260034,0.013260034,0.013260034,0.013260034 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Risk score,risk score,0.420432098,0.420432098,0.420432098,0.420432098,0.420432098,0.420432098,0.420432098,0.420432098,0.420432098,0.420432098 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Risk score,risk score,0.983993365,0.983993365,0.983993365,0.983993365,0.983993365,0.983993365,0.983993365,0.983993365,0.983993365,0.983993365 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Risk score,risk score,0.994068237,0.994068237,0.994068237,0.994068237,0.994068237,0.994068237,0.994068237,0.994068237,0.994068237,0.994068237 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Risk score,risk score,0.260499563,0.260499563,0.260499563,0.260499563,0.260499563,0.260499563,0.260499563,0.260499563,0.260499563,0.260499563 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Risk score,risk score,2.174439208,2.174439208,2.174439208,2.174439208,2.174439208,2.174439208,2.174439208,2.174439208,2.174439208,2.174439208 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Risk score,risk score,1.90370685,1.90370685,1.90370685,1.90370685,1.90370685,1.90370685,1.90370685,1.90370685,1.90370685,1.90370685 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Risk score,risk score,0.219694689,0.219694689,0.219694689,0.219694689,0.219694689,0.219694689,0.219694689,0.219694689,0.219694689,0.219694689 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Risk score,risk score,1.152230531,1.152230531,1.152230531,1.152230531,1.152230531,1.152230531,1.152230531,1.152230531,1.152230531,1.152230531 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Risk score,risk score,0.160281021,0.160281021,0.160281021,0.160281021,0.160281021,0.160281021,0.160281021,0.160281021,0.160281021,0.160281021 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Risk score,risk score,1.871534512,1.871534512,1.871534512,1.871534512,1.871534512,1.871534512,1.871534512,1.871534512,1.871534512,1.871534512 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Risk score,risk score,0.338998411,0.338998411,0.338998411,0.338998411,0.338998411,0.338998411,0.338998411,0.338998411,0.338998411,0.338998411 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Risk score,risk score,0.071272549,0.071272549,0.071272549,0.071272549,0.071272549,0.071272549,0.071272549,0.071272549,0.071272549,0.071272549 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Risk score,risk score,0.047152142,0.047152142,0.047152142,0.047152142,0.047152142,0.047152142,0.047152142,0.047152142,0.047152142,0.047152142 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Risk score,risk score,1.015201213,1.015201213,1.015201213,1.015201213,1.015201213,1.015201213,1.015201213,1.015201213,1.015201213,1.015201213 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Risk score,risk score,0.36351008,0.36351008,0.36351008,0.36351008,0.36351008,0.36351008,0.36351008,0.36351008,0.36351008,0.36351008 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Risk score,risk score,1.321105467,1.321105467,1.321105467,1.321105467,1.321105467,1.321105467,1.321105467,1.321105467,1.321105467,1.321105467 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Risk score,risk score,0.205048742,0.205048742,0.205048742,0.205048742,0.205048742,0.205048742,0.205048742,0.205048742,0.205048742,0.205048742 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Risk score,risk score,0.397752844,0.397752844,0.397752844,0.397752844,0.397752844,0.397752844,0.397752844,0.397752844,0.397752844,0.397752844 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Risk score,risk score,0.498804864,0.498804864,0.498804864,0.498804864,0.498804864,0.498804864,0.498804864,0.498804864,0.498804864,0.498804864 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Risk score,risk score,0.971388762,0.971388762,0.971388762,0.971388762,0.971388762,0.971388762,0.971388762,0.971388762,0.971388762,0.971388762 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Risk score,risk score,0.252259489,0.252259489,0.252259489,0.252259489,0.252259489,0.252259489,0.252259489,0.252259489,0.252259489,0.252259489 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Risk score,risk score,0.2495349,0.2495349,0.2495349,0.2495349,0.2495349,0.2495349,0.2495349,0.2495349,0.2495349,0.2495349 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Risk score,risk score,1.710931838,1.710931838,1.710931838,1.710931838,1.710931838,1.710931838,1.710931838,1.710931838,1.710931838,1.710931838 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Risk score,risk score,0.649982291,0.649982291,0.649982291,0.649982291,0.649982291,0.649982291,0.649982291,0.649982291,0.649982291,0.649982291 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Risk score,risk score,1.585636124,1.585636124,1.585636124,1.585636124,1.585636124,1.585636124,1.585636124,1.585636124,1.585636124,1.585636124 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Risk score,risk score,1.634836098,1.634836098,1.634836098,1.634836098,1.634836098,1.634836098,1.634836098,1.634836098,1.634836098,1.634836098 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Risk score,risk score,2.626213525,2.626213525,2.626213525,2.626213525,2.626213525,2.626213525,2.626213525,2.626213525,2.626213525,2.626213525 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Risk score,risk score,0.042761886,0.042761886,0.042761886,0.042761886,0.042761886,0.042761886,0.042761886,0.042761886,0.042761886,0.042761886 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Risk score,risk score,0.393490987,0.393490987,0.393490987,0.393490987,0.393490987,0.393490987,0.393490987,0.393490987,0.393490987,0.393490987 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Risk score,risk score,2.11624527,2.11624527,2.11624527,2.11624527,2.11624527,2.11624527,2.11624527,2.11624527,2.11624527,2.11624527 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Risk score,risk score,0.323226026,0.323226026,0.323226026,0.323226026,0.323226026,0.323226026,0.323226026,0.323226026,0.323226026,0.323226026 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Risk score,risk score,0.742897812,0.742897812,0.742897812,0.742897812,0.742897812,0.742897812,0.742897812,0.742897812,0.742897812,0.742897812 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Risk score,risk score,0.535022684,0.535022684,0.535022684,0.535022684,0.535022684,0.535022684,0.535022684,0.535022684,0.535022684,0.535022684 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Risk score,risk score,0.654581558,0.654581558,0.654581558,0.654581558,0.654581558,0.654581558,0.654581558,0.654581558,0.654581558,0.654581558 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Risk score,risk score,0.452348303,0.452348303,0.452348303,0.452348303,0.452348303,0.452348303,0.452348303,0.452348303,0.452348303,0.452348303 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Risk score,risk score,0.050888769,0.050888769,0.050888769,0.050888769,0.050888769,0.050888769,0.050888769,0.050888769,0.050888769,0.050888769 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Risk score,risk score,0.004892257,0.004892257,0.004892257,0.004892257,0.004892257,0.004892257,0.004892257,0.004892257,0.004892257,0.004892257 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Risk score,risk score,0.090683947,0.090683947,0.090683947,0.090683947,0.090683947,0.090683947,0.090683947,0.090683947,0.090683947,0.090683947 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Risk score,risk score,0.113854979,0.113854979,0.113854979,0.113854979,0.113854979,0.113854979,0.113854979,0.113854979,0.113854979,0.113854979 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Risk score,risk score,0.017980268,0.017980268,0.017980268,0.017980268,0.017980268,0.017980268,0.017980268,0.017980268,0.017980268,0.017980268 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Risk score|Land area weighted,risk score,0.644294213,0.644294213,0.644294213,0.644294213,0.644294213,0.644294213,0.644294213,0.644294213,0.644294213,0.644294213 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Risk score|Land area weighted,risk score,0.799394068,0.799394068,0.799394068,0.799394068,0.799394068,0.799394068,0.799394068,0.799394068,0.799394068,0.799394068 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Risk score|Land area weighted,risk score,2.229367897,2.229367897,2.229367897,2.229367897,2.229367897,2.229367897,2.229367897,2.229367897,2.229367897,2.229367897 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Risk score|Land area weighted,risk score,0.40327623,0.40327623,0.40327623,0.40327623,0.40327623,0.40327623,0.40327623,0.40327623,0.40327623,0.40327623 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Risk score|Land area weighted,risk score,1.741755259,1.741755259,1.741755259,1.741755259,1.741755259,1.741755259,1.741755259,1.741755259,1.741755259,1.741755259 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Risk score|Land area weighted,risk score,1.848867868,1.848867868,1.848867868,1.848867868,1.848867868,1.848867868,1.848867868,1.848867868,1.848867868,1.848867868 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.508343072,1.508343072,1.508343072,1.508343072,1.508343072,1.508343072,1.508343072,1.508343072,1.508343072,1.508343072 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Risk score|Land area weighted,risk score,2.465510259,2.465510259,2.465510259,2.465510259,2.465510259,2.465510259,2.465510259,2.465510259,2.465510259,2.465510259 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Risk score|Land area weighted,risk score,1.373307398,1.373307398,1.373307398,1.373307398,1.373307398,1.373307398,1.373307398,1.373307398,1.373307398,1.373307398 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Risk score|Land area weighted,risk score,1.589751113,1.589751113,1.589751113,1.589751113,1.589751113,1.589751113,1.589751113,1.589751113,1.589751113,1.589751113 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Risk score|Land area weighted,risk score,0.630186294,0.630186294,0.630186294,0.630186294,0.630186294,0.630186294,0.630186294,0.630186294,0.630186294,0.630186294 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Risk score|Land area weighted,risk score,2.459878826,2.459878826,2.459878826,2.459878826,2.459878826,2.459878826,2.459878826,2.459878826,2.459878826,2.459878826 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Risk score|Land area weighted,risk score,1.481325759,1.481325759,1.481325759,1.481325759,1.481325759,1.481325759,1.481325759,1.481325759,1.481325759,1.481325759 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Risk score|Land area weighted,risk score,2.814330081,2.814330081,2.814330081,2.814330081,2.814330081,2.814330081,2.814330081,2.814330081,2.814330081,2.814330081 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Risk score|Land area weighted,risk score,2.025937253,2.025937253,2.025937253,2.025937253,2.025937253,2.025937253,2.025937253,2.025937253,2.025937253,2.025937253 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Risk score|Land area weighted,risk score,0.504154081,0.504154081,0.504154081,0.504154081,0.504154081,0.504154081,0.504154081,0.504154081,0.504154081,0.504154081 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Risk score|Land area weighted,risk score,0.977032132,0.977032132,0.977032132,0.977032132,0.977032132,0.977032132,0.977032132,0.977032132,0.977032132,0.977032132 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Risk score|Land area weighted,risk score,0.510959156,0.510959156,0.510959156,0.510959156,0.510959156,0.510959156,0.510959156,0.510959156,0.510959156,0.510959156 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Risk score|Land area weighted,risk score,2.179859523,2.179859523,2.179859523,2.179859523,2.179859523,2.179859523,2.179859523,2.179859523,2.179859523,2.179859523 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Risk score|Land area weighted,risk score,2.719182863,2.719182863,2.719182863,2.719182863,2.719182863,2.719182863,2.719182863,2.719182863,2.719182863,2.719182863 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Risk score|Land area weighted,risk score,1.122054085,1.122054085,1.122054085,1.122054085,1.122054085,1.122054085,1.122054085,1.122054085,1.122054085,1.122054085 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Risk score|Land area weighted,risk score,1.330370368,1.330370368,1.330370368,1.330370368,1.330370368,1.330370368,1.330370368,1.330370368,1.330370368,1.330370368 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Risk score|Land area weighted,risk score,1.410087335,1.410087335,1.410087335,1.410087335,1.410087335,1.410087335,1.410087335,1.410087335,1.410087335,1.410087335 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Risk score|Land area weighted,risk score,0.507578008,0.507578008,0.507578008,0.507578008,0.507578008,0.507578008,0.507578008,0.507578008,0.507578008,0.507578008 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Risk score|Land area weighted,risk score,0.872453349,0.872453349,0.872453349,0.872453349,0.872453349,0.872453349,0.872453349,0.872453349,0.872453349,0.872453349 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Risk score|Land area weighted,risk score,2.869150884,2.869150884,2.869150884,2.869150884,2.869150884,2.869150884,2.869150884,2.869150884,2.869150884,2.869150884 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Risk score|Land area weighted,risk score,1.788807175,1.788807175,1.788807175,1.788807175,1.788807175,1.788807175,1.788807175,1.788807175,1.788807175,1.788807175 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Risk score|Land area weighted,risk score,0.858600819,0.858600819,0.858600819,0.858600819,0.858600819,0.858600819,0.858600819,0.858600819,0.858600819,0.858600819 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Risk score|Land area weighted,risk score,1.129869722,1.129869722,1.129869722,1.129869722,1.129869722,1.129869722,1.129869722,1.129869722,1.129869722,1.129869722 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Risk score|Land area weighted,risk score,0.364131682,0.364131682,0.364131682,0.364131682,0.364131682,0.364131682,0.364131682,0.364131682,0.364131682,0.364131682 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Risk score|Land area weighted,risk score,2.655751722,2.655751722,2.655751722,2.655751722,2.655751722,2.655751722,2.655751722,2.655751722,2.655751722,2.655751722 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Risk score|Land area weighted,risk score,2.168774867,2.168774867,2.168774867,2.168774867,2.168774867,2.168774867,2.168774867,2.168774867,2.168774867,2.168774867 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.206192713,0.206192713,0.206192713,0.206192713,0.206192713,0.206192713,0.206192713,0.206192713,0.206192713,0.206192713 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Risk score|Land area weighted,risk score,0.449104204,0.449104204,0.449104204,0.449104204,0.449104204,0.449104204,0.449104204,0.449104204,0.449104204,0.449104204 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Risk score|Land area weighted,risk score,2.907443375,2.907443375,2.907443375,2.907443375,2.907443375,2.907443375,2.907443375,2.907443375,2.907443375,2.907443375 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Risk score|Land area weighted,risk score,0.560405258,0.560405258,0.560405258,0.560405258,0.560405258,0.560405258,0.560405258,0.560405258,0.560405258,0.560405258 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Risk score|Land area weighted,risk score,2.276446064,2.276446064,2.276446064,2.276446064,2.276446064,2.276446064,2.276446064,2.276446064,2.276446064,2.276446064 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Risk score|Land area weighted,risk score,1.236190847,1.236190847,1.236190847,1.236190847,1.236190847,1.236190847,1.236190847,1.236190847,1.236190847,1.236190847 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Risk score|Land area weighted,risk score,1.416787498,1.416787498,1.416787498,1.416787498,1.416787498,1.416787498,1.416787498,1.416787498,1.416787498,1.416787498 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Risk score|Land area weighted,risk score,1.348217363,1.348217363,1.348217363,1.348217363,1.348217363,1.348217363,1.348217363,1.348217363,1.348217363,1.348217363 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Risk score|Land area weighted,risk score,0.914890353,0.914890353,0.914890353,0.914890353,0.914890353,0.914890353,0.914890353,0.914890353,0.914890353,0.914890353 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.48059131,1.48059131,1.48059131,1.48059131,1.48059131,1.48059131,1.48059131,1.48059131,1.48059131,1.48059131 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.814646247,0.814646247,0.814646247,0.814646247,0.814646247,0.814646247,0.814646247,0.814646247,0.814646247,0.814646247 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Risk score|Land area weighted,risk score,0.431130388,0.431130388,0.431130388,0.431130388,0.431130388,0.431130388,0.431130388,0.431130388,0.431130388,0.431130388 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Risk score|Land area weighted,risk score,1.677468965,1.677468965,1.677468965,1.677468965,1.677468965,1.677468965,1.677468965,1.677468965,1.677468965,1.677468965 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Risk score|Land area weighted,risk score,1.384898165,1.384898165,1.384898165,1.384898165,1.384898165,1.384898165,1.384898165,1.384898165,1.384898165,1.384898165 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Risk score|Land area weighted,risk score,2.242187452,2.242187452,2.242187452,2.242187452,2.242187452,2.242187452,2.242187452,2.242187452,2.242187452,2.242187452 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Risk score|Land area weighted,risk score,2.237953547,2.237953547,2.237953547,2.237953547,2.237953547,2.237953547,2.237953547,2.237953547,2.237953547,2.237953547 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Risk score|Land area weighted,risk score,2.985705439,2.985705439,2.985705439,2.985705439,2.985705439,2.985705439,2.985705439,2.985705439,2.985705439,2.985705439 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Risk score|Land area weighted,risk score,0.27397608,0.27397608,0.27397608,0.27397608,0.27397608,0.27397608,0.27397608,0.27397608,0.27397608,0.27397608 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Risk score|Land area weighted,risk score,0.199669287,0.199669287,0.199669287,0.199669287,0.199669287,0.199669287,0.199669287,0.199669287,0.199669287,0.199669287 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Risk score|Land area weighted,risk score,2.043734417,2.043734417,2.043734417,2.043734417,2.043734417,2.043734417,2.043734417,2.043734417,2.043734417,2.043734417 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Risk score|Land area weighted,risk score,0.676886888,0.676886888,0.676886888,0.676886888,0.676886888,0.676886888,0.676886888,0.676886888,0.676886888,0.676886888 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Risk score|Land area weighted,risk score,0.789581317,0.789581317,0.789581317,0.789581317,0.789581317,0.789581317,0.789581317,0.789581317,0.789581317,0.789581317 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Risk score|Land area weighted,risk score,2.676978769,2.676978769,2.676978769,2.676978769,2.676978769,2.676978769,2.676978769,2.676978769,2.676978769,2.676978769 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Risk score|Land area weighted,risk score,2.196828485,2.196828485,2.196828485,2.196828485,2.196828485,2.196828485,2.196828485,2.196828485,2.196828485,2.196828485 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Risk score|Land area weighted,risk score,1.145161718,1.145161718,1.145161718,1.145161718,1.145161718,1.145161718,1.145161718,1.145161718,1.145161718,1.145161718 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Risk score|Land area weighted,risk score,1.385169456,1.385169456,1.385169456,1.385169456,1.385169456,1.385169456,1.385169456,1.385169456,1.385169456,1.385169456 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Risk score|Land area weighted,risk score,0.428518995,0.428518995,0.428518995,0.428518995,0.428518995,0.428518995,0.428518995,0.428518995,0.428518995,0.428518995 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.402534726,0.402534726,0.402534726,0.402534726,0.402534726,0.402534726,0.402534726,0.402534726,0.402534726,0.402534726 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Risk score|Land area weighted,risk score,1.606182941,1.606182941,1.606182941,1.606182941,1.606182941,1.606182941,1.606182941,1.606182941,1.606182941,1.606182941 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.177668553,2.177668553,2.177668553,2.177668553,2.177668553,2.177668553,2.177668553,2.177668553,2.177668553,2.177668553 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Risk score|Land area weighted,risk score,2.909647508,2.909647508,2.909647508,2.909647508,2.909647508,2.909647508,2.909647508,2.909647508,2.909647508,2.909647508 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Risk score|Land area weighted,risk score,0.842225758,0.842225758,0.842225758,0.842225758,0.842225758,0.842225758,0.842225758,0.842225758,0.842225758,0.842225758 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Risk score|Land area weighted,risk score,1.618451765,1.618451765,1.618451765,1.618451765,1.618451765,1.618451765,1.618451765,1.618451765,1.618451765,1.618451765 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Risk score|Land area weighted,risk score,0.644355934,0.644355934,0.644355934,0.644355934,0.644355934,0.644355934,0.644355934,0.644355934,0.644355934,0.644355934 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Risk score|Land area weighted,risk score,1.865920521,1.865920521,1.865920521,1.865920521,1.865920521,1.865920521,1.865920521,1.865920521,1.865920521,1.865920521 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Risk score|Land area weighted,risk score,1.726307699,1.726307699,1.726307699,1.726307699,1.726307699,1.726307699,1.726307699,1.726307699,1.726307699,1.726307699 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Risk score|Land area weighted,risk score,0.923299361,0.923299361,0.923299361,0.923299361,0.923299361,0.923299361,0.923299361,0.923299361,0.923299361,0.923299361 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Risk score|Land area weighted,risk score,0.494534318,0.494534318,0.494534318,0.494534318,0.494534318,0.494534318,0.494534318,0.494534318,0.494534318,0.494534318 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Risk score|Land area weighted,risk score,0.672738075,0.672738075,0.672738075,0.672738075,0.672738075,0.672738075,0.672738075,0.672738075,0.672738075,0.672738075 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Risk score|Land area weighted,risk score,0.587088692,0.587088692,0.587088692,0.587088692,0.587088692,0.587088692,0.587088692,0.587088692,0.587088692,0.587088692 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Risk score|Land area weighted,risk score,2.79145864,2.79145864,2.79145864,2.79145864,2.79145864,2.79145864,2.79145864,2.79145864,2.79145864,2.79145864 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Risk score|Land area weighted,risk score,0.286887567,0.286887567,0.286887567,0.286887567,0.286887567,0.286887567,0.286887567,0.286887567,0.286887567,0.286887567 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Risk score|Land area weighted,risk score,0.430495893,0.430495893,0.430495893,0.430495893,0.430495893,0.430495893,0.430495893,0.430495893,0.430495893,0.430495893 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Risk score|Land area weighted,risk score,2.900051715,2.900051715,2.900051715,2.900051715,2.900051715,2.900051715,2.900051715,2.900051715,2.900051715,2.900051715 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Risk score|Land area weighted,risk score,0.562405155,0.562405155,0.562405155,0.562405155,0.562405155,0.562405155,0.562405155,0.562405155,0.562405155,0.562405155 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Risk score|Land area weighted,risk score,1.825497155,1.825497155,1.825497155,1.825497155,1.825497155,1.825497155,1.825497155,1.825497155,1.825497155,1.825497155 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Risk score|Land area weighted,risk score,0.906713203,0.906713203,0.906713203,0.906713203,0.906713203,0.906713203,0.906713203,0.906713203,0.906713203,0.906713203 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Risk score|Land area weighted,risk score,0.448864554,0.448864554,0.448864554,0.448864554,0.448864554,0.448864554,0.448864554,0.448864554,0.448864554,0.448864554 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Risk score|Land area weighted,risk score,1.13713234,1.13713234,1.13713234,1.13713234,1.13713234,1.13713234,1.13713234,1.13713234,1.13713234,1.13713234 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Risk score|Land area weighted,risk score,2.870536981,2.870536981,2.870536981,2.870536981,2.870536981,2.870536981,2.870536981,2.870536981,2.870536981,2.870536981 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Risk score|Land area weighted,risk score,0.702998382,0.702998382,0.702998382,0.702998382,0.702998382,0.702998382,0.702998382,0.702998382,0.702998382,0.702998382 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Risk score|Land area weighted,risk score,0.780797044,0.780797044,0.780797044,0.780797044,0.780797044,0.780797044,0.780797044,0.780797044,0.780797044,0.780797044 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Risk score|Land area weighted,risk score,0.853258766,0.853258766,0.853258766,0.853258766,0.853258766,0.853258766,0.853258766,0.853258766,0.853258766,0.853258766 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Risk score|Land area weighted,risk score,0.607643719,0.607643719,0.607643719,0.607643719,0.607643719,0.607643719,0.607643719,0.607643719,0.607643719,0.607643719 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Risk score|Land area weighted,risk score,2.396854544,2.396854544,2.396854544,2.396854544,2.396854544,2.396854544,2.396854544,2.396854544,2.396854544,2.396854544 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Risk score|Land area weighted,risk score,1.56728997,1.56728997,1.56728997,1.56728997,1.56728997,1.56728997,1.56728997,1.56728997,1.56728997,1.56728997 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Risk score|Land area weighted,risk score,1.819765576,1.819765576,1.819765576,1.819765576,1.819765576,1.819765576,1.819765576,1.819765576,1.819765576,1.819765576 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Risk score|Land area weighted,risk score,0.425018349,0.425018349,0.425018349,0.425018349,0.425018349,0.425018349,0.425018349,0.425018349,0.425018349,0.425018349 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Risk score|Land area weighted,risk score,0.294230358,0.294230358,0.294230358,0.294230358,0.294230358,0.294230358,0.294230358,0.294230358,0.294230358,0.294230358 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Risk score|Land area weighted,risk score,0.334715428,0.334715428,0.334715428,0.334715428,0.334715428,0.334715428,0.334715428,0.334715428,0.334715428,0.334715428 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.3955567,0.3955567,0.3955567,0.3955567,0.3955567,0.3955567,0.3955567,0.3955567,0.3955567,0.3955567 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.599133973,1.599133973,1.599133973,1.599133973,1.599133973,1.599133973,1.599133973,1.599133973,1.599133973,1.599133973 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Risk score|Land area weighted,risk score,0.726500883,0.726500883,0.726500883,0.726500883,0.726500883,0.726500883,0.726500883,0.726500883,0.726500883,0.726500883 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Risk score|Land area weighted,risk score,0.990303064,0.990303064,0.990303064,0.990303064,0.990303064,0.990303064,0.990303064,0.990303064,0.990303064,0.990303064 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Risk score|Land area weighted,risk score,0.612969945,0.612969945,0.612969945,0.612969945,0.612969945,0.612969945,0.612969945,0.612969945,0.612969945,0.612969945 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Risk score|Land area weighted,risk score,2.963093024,2.963093024,2.963093024,2.963093024,2.963093024,2.963093024,2.963093024,2.963093024,2.963093024,2.963093024 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Risk score|Land area weighted,risk score,1.298613855,1.298613855,1.298613855,1.298613855,1.298613855,1.298613855,1.298613855,1.298613855,1.298613855,1.298613855 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Risk score|Land area weighted,risk score,2.692220812,2.692220812,2.692220812,2.692220812,2.692220812,2.692220812,2.692220812,2.692220812,2.692220812,2.692220812 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Risk score|Land area weighted,risk score,0.960935558,0.960935558,0.960935558,0.960935558,0.960935558,0.960935558,0.960935558,0.960935558,0.960935558,0.960935558 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Risk score|Land area weighted,risk score,0.618847998,0.618847998,0.618847998,0.618847998,0.618847998,0.618847998,0.618847998,0.618847998,0.618847998,0.618847998 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Risk score|Land area weighted,risk score,0.934810494,0.934810494,0.934810494,0.934810494,0.934810494,0.934810494,0.934810494,0.934810494,0.934810494,0.934810494 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Risk score|Land area weighted,risk score,0.522188696,0.522188696,0.522188696,0.522188696,0.522188696,0.522188696,0.522188696,0.522188696,0.522188696,0.522188696 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Risk score|Land area weighted,risk score,0.503372668,0.503372668,0.503372668,0.503372668,0.503372668,0.503372668,0.503372668,0.503372668,0.503372668,0.503372668 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Risk score|Land area weighted,risk score,2.299721696,2.299721696,2.299721696,2.299721696,2.299721696,2.299721696,2.299721696,2.299721696,2.299721696,2.299721696 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Risk score|Land area weighted,risk score,0.588592546,0.588592546,0.588592546,0.588592546,0.588592546,0.588592546,0.588592546,0.588592546,0.588592546,0.588592546 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Risk score|Land area weighted,risk score,0.403804218,0.403804218,0.403804218,0.403804218,0.403804218,0.403804218,0.403804218,0.403804218,0.403804218,0.403804218 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Risk score|Land area weighted,risk score,1.965012075,1.965012075,1.965012075,1.965012075,1.965012075,1.965012075,1.965012075,1.965012075,1.965012075,1.965012075 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Risk score|Land area weighted,risk score,2.38589623,2.38589623,2.38589623,2.38589623,2.38589623,2.38589623,2.38589623,2.38589623,2.38589623,2.38589623 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Risk score|Land area weighted,risk score,2.770910521,2.770910521,2.770910521,2.770910521,2.770910521,2.770910521,2.770910521,2.770910521,2.770910521,2.770910521 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Risk score|Land area weighted,risk score,1.949990889,1.949990889,1.949990889,1.949990889,1.949990889,1.949990889,1.949990889,1.949990889,1.949990889,1.949990889 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Risk score|Land area weighted,risk score,2.020846301,2.020846301,2.020846301,2.020846301,2.020846301,2.020846301,2.020846301,2.020846301,2.020846301,2.020846301 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Risk score|Land area weighted,risk score,0.453956778,0.453956778,0.453956778,0.453956778,0.453956778,0.453956778,0.453956778,0.453956778,0.453956778,0.453956778 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Risk score|Land area weighted,risk score,0.48747457,0.48747457,0.48747457,0.48747457,0.48747457,0.48747457,0.48747457,0.48747457,0.48747457,0.48747457 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Risk score|Land area weighted,risk score,1.769750987,1.769750987,1.769750987,1.769750987,1.769750987,1.769750987,1.769750987,1.769750987,1.769750987,1.769750987 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Risk score|Land area weighted,risk score,0.678302892,0.678302892,0.678302892,0.678302892,0.678302892,0.678302892,0.678302892,0.678302892,0.678302892,0.678302892 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Risk score|Land area weighted,risk score,2.529288154,2.529288154,2.529288154,2.529288154,2.529288154,2.529288154,2.529288154,2.529288154,2.529288154,2.529288154 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Risk score|Land area weighted,risk score,1.878225294,1.878225294,1.878225294,1.878225294,1.878225294,1.878225294,1.878225294,1.878225294,1.878225294,1.878225294 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Risk score|Land area weighted,risk score,0.578652305,0.578652305,0.578652305,0.578652305,0.578652305,0.578652305,0.578652305,0.578652305,0.578652305,0.578652305 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Risk score|Land area weighted,risk score,1.162712145,1.162712145,1.162712145,1.162712145,1.162712145,1.162712145,1.162712145,1.162712145,1.162712145,1.162712145 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Risk score|Land area weighted,risk score,0.584822735,0.584822735,0.584822735,0.584822735,0.584822735,0.584822735,0.584822735,0.584822735,0.584822735,0.584822735 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Risk score|Land area weighted,risk score,0.455171029,0.455171029,0.455171029,0.455171029,0.455171029,0.455171029,0.455171029,0.455171029,0.455171029,0.455171029 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Risk score|Land area weighted,risk score,0.627893904,0.627893904,0.627893904,0.627893904,0.627893904,0.627893904,0.627893904,0.627893904,0.627893904,0.627893904 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Risk score|Land area weighted,risk score,2.178176266,2.178176266,2.178176266,2.178176266,2.178176266,2.178176266,2.178176266,2.178176266,2.178176266,2.178176266 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Risk score|Land area weighted,risk score,0.573358809,0.573358809,0.573358809,0.573358809,0.573358809,0.573358809,0.573358809,0.573358809,0.573358809,0.573358809 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Risk score|Land area weighted,risk score,2.004433167,2.004433167,2.004433167,2.004433167,2.004433167,2.004433167,2.004433167,2.004433167,2.004433167,2.004433167 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Risk score|Land area weighted,risk score,2.709901495,2.709901495,2.709901495,2.709901495,2.709901495,2.709901495,2.709901495,2.709901495,2.709901495,2.709901495 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.624685727,0.624685727,0.624685727,0.624685727,0.624685727,0.624685727,0.624685727,0.624685727,0.624685727,0.624685727 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Risk score|Land area weighted,risk score,0.370948631,0.370948631,0.370948631,0.370948631,0.370948631,0.370948631,0.370948631,0.370948631,0.370948631,0.370948631 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Risk score|Land area weighted,risk score,0.460891615,0.460891615,0.460891615,0.460891615,0.460891615,0.460891615,0.460891615,0.460891615,0.460891615,0.460891615 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Risk score|Land area weighted,risk score,0.785050912,0.785050912,0.785050912,0.785050912,0.785050912,0.785050912,0.785050912,0.785050912,0.785050912,0.785050912 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Risk score|Land area weighted,risk score,2.853360041,2.853360041,2.853360041,2.853360041,2.853360041,2.853360041,2.853360041,2.853360041,2.853360041,2.853360041 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Risk score|Land area weighted,risk score,0.41401791,0.41401791,0.41401791,0.41401791,0.41401791,0.41401791,0.41401791,0.41401791,0.41401791,0.41401791 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Risk score|Land area weighted,risk score,0.53645852,0.53645852,0.53645852,0.53645852,0.53645852,0.53645852,0.53645852,0.53645852,0.53645852,0.53645852 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.579408242,0.579408242,0.579408242,0.579408242,0.579408242,0.579408242,0.579408242,0.579408242,0.579408242,0.579408242 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Risk score|Land area weighted,risk score,2.213692501,2.213692501,2.213692501,2.213692501,2.213692501,2.213692501,2.213692501,2.213692501,2.213692501,2.213692501 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Risk score|Land area weighted,risk score,2.068603358,2.068603358,2.068603358,2.068603358,2.068603358,2.068603358,2.068603358,2.068603358,2.068603358,2.068603358 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Risk score|Land area weighted,risk score,2.135841155,2.135841155,2.135841155,2.135841155,2.135841155,2.135841155,2.135841155,2.135841155,2.135841155,2.135841155 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Risk score|Land area weighted,risk score,2.219776813,2.219776813,2.219776813,2.219776813,2.219776813,2.219776813,2.219776813,2.219776813,2.219776813,2.219776813 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Risk score|Land area weighted,risk score,1.009070595,1.009070595,1.009070595,1.009070595,1.009070595,1.009070595,1.009070595,1.009070595,1.009070595,1.009070595 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Risk score|Land area weighted,risk score,1.329180151,1.329180151,1.329180151,1.329180151,1.329180151,1.329180151,1.329180151,1.329180151,1.329180151,1.329180151 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Risk score|Land area weighted,risk score,0.761600805,0.761600805,0.761600805,0.761600805,0.761600805,0.761600805,0.761600805,0.761600805,0.761600805,0.761600805 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Risk score|Land area weighted,risk score,0.449937858,0.449937858,0.449937858,0.449937858,0.449937858,0.449937858,0.449937858,0.449937858,0.449937858,0.449937858 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Risk score|Land area weighted,risk score,1.474011217,1.474011217,1.474011217,1.474011217,1.474011217,1.474011217,1.474011217,1.474011217,1.474011217,1.474011217 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Risk score|Land area weighted,risk score,0.572918337,0.572918337,0.572918337,0.572918337,0.572918337,0.572918337,0.572918337,0.572918337,0.572918337,0.572918337 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Risk score|Land area weighted,risk score,1.109751815,1.109751815,1.109751815,1.109751815,1.109751815,1.109751815,1.109751815,1.109751815,1.109751815,1.109751815 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Risk score|Land area weighted,risk score,0.895893554,0.895893554,0.895893554,0.895893554,0.895893554,0.895893554,0.895893554,0.895893554,0.895893554,0.895893554 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Risk score|Land area weighted,risk score,2.959430309,2.959430309,2.959430309,2.959430309,2.959430309,2.959430309,2.959430309,2.959430309,2.959430309,2.959430309 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Risk score|Land area weighted,risk score,1.276874393,1.276874393,1.276874393,1.276874393,1.276874393,1.276874393,1.276874393,1.276874393,1.276874393,1.276874393 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Risk score|Land area weighted,risk score,0.924963438,0.924963438,0.924963438,0.924963438,0.924963438,0.924963438,0.924963438,0.924963438,0.924963438,0.924963438 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Risk score|Land area weighted,risk score,2.199774387,2.199774387,2.199774387,2.199774387,2.199774387,2.199774387,2.199774387,2.199774387,2.199774387,2.199774387 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Risk score|Land area weighted,risk score,2.861224697,2.861224697,2.861224697,2.861224697,2.861224697,2.861224697,2.861224697,2.861224697,2.861224697,2.861224697 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Risk score|Land area weighted,risk score,2.001499506,2.001499506,2.001499506,2.001499506,2.001499506,2.001499506,2.001499506,2.001499506,2.001499506,2.001499506 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Risk score|Land area weighted,risk score,1.781086159,1.781086159,1.781086159,1.781086159,1.781086159,1.781086159,1.781086159,1.781086159,1.781086159,1.781086159 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Risk score|Land area weighted,risk score,0.662902784,0.662902784,0.662902784,0.662902784,0.662902784,0.662902784,0.662902784,0.662902784,0.662902784,0.662902784 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Risk score|Land area weighted,risk score,0.590798523,0.590798523,0.590798523,0.590798523,0.590798523,0.590798523,0.590798523,0.590798523,0.590798523,0.590798523 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.20830809,1.20830809,1.20830809,1.20830809,1.20830809,1.20830809,1.20830809,1.20830809,1.20830809,1.20830809 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Risk score|Land area weighted,risk score,2.547342097,2.547342097,2.547342097,2.547342097,2.547342097,2.547342097,2.547342097,2.547342097,2.547342097,2.547342097 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Risk score|Land area weighted,risk score,0.378780928,0.378780928,0.378780928,0.378780928,0.378780928,0.378780928,0.378780928,0.378780928,0.378780928,0.378780928 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Risk score|Land area weighted,risk score,2.644467049,2.644467049,2.644467049,2.644467049,2.644467049,2.644467049,2.644467049,2.644467049,2.644467049,2.644467049 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.835336429,2.835336429,2.835336429,2.835336429,2.835336429,2.835336429,2.835336429,2.835336429,2.835336429,2.835336429 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Risk score|Land area weighted,risk score,0.329095732,0.329095732,0.329095732,0.329095732,0.329095732,0.329095732,0.329095732,0.329095732,0.329095732,0.329095732 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Risk score|Land area weighted,risk score,1.978432509,1.978432509,1.978432509,1.978432509,1.978432509,1.978432509,1.978432509,1.978432509,1.978432509,1.978432509 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Risk score|Land area weighted,risk score,0.507214014,0.507214014,0.507214014,0.507214014,0.507214014,0.507214014,0.507214014,0.507214014,0.507214014,0.507214014 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Risk score|Land area weighted,risk score,2.346610817,2.346610817,2.346610817,2.346610817,2.346610817,2.346610817,2.346610817,2.346610817,2.346610817,2.346610817 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Risk score|Land area weighted,risk score,0.423129161,0.423129161,0.423129161,0.423129161,0.423129161,0.423129161,0.423129161,0.423129161,0.423129161,0.423129161 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.362650856,0.362650856,0.362650856,0.362650856,0.362650856,0.362650856,0.362650856,0.362650856,0.362650856,0.362650856 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.460251689,0.460251689,0.460251689,0.460251689,0.460251689,0.460251689,0.460251689,0.460251689,0.460251689,0.460251689 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.15658981,1.15658981,1.15658981,1.15658981,1.15658981,1.15658981,1.15658981,1.15658981,1.15658981,1.15658981 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Risk score|Land area weighted,risk score,0.70929016,0.70929016,0.70929016,0.70929016,0.70929016,0.70929016,0.70929016,0.70929016,0.70929016,0.70929016 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Risk score|Land area weighted,risk score,2.343071215,2.343071215,2.343071215,2.343071215,2.343071215,2.343071215,2.343071215,2.343071215,2.343071215,2.343071215 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Risk score|Land area weighted,risk score,0.615667964,0.615667964,0.615667964,0.615667964,0.615667964,0.615667964,0.615667964,0.615667964,0.615667964,0.615667964 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Risk score|Land area weighted,risk score,0.761731433,0.761731433,0.761731433,0.761731433,0.761731433,0.761731433,0.761731433,0.761731433,0.761731433,0.761731433 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Risk score|Land area weighted,risk score,0.75507999,0.75507999,0.75507999,0.75507999,0.75507999,0.75507999,0.75507999,0.75507999,0.75507999,0.75507999 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Risk score|Land area weighted,risk score,1.225630001,1.225630001,1.225630001,1.225630001,1.225630001,1.225630001,1.225630001,1.225630001,1.225630001,1.225630001 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Risk score|Land area weighted,risk score,0.401725099,0.401725099,0.401725099,0.401725099,0.401725099,0.401725099,0.401725099,0.401725099,0.401725099,0.401725099 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Risk score|Land area weighted,risk score,0.415282387,0.415282387,0.415282387,0.415282387,0.415282387,0.415282387,0.415282387,0.415282387,0.415282387,0.415282387 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Risk score|Land area weighted,risk score,2.348853543,2.348853543,2.348853543,2.348853543,2.348853543,2.348853543,2.348853543,2.348853543,2.348853543,2.348853543 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Risk score|Land area weighted,risk score,0.982150515,0.982150515,0.982150515,0.982150515,0.982150515,0.982150515,0.982150515,0.982150515,0.982150515,0.982150515 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Risk score|Land area weighted,risk score,2.11243288,2.11243288,2.11243288,2.11243288,2.11243288,2.11243288,2.11243288,2.11243288,2.11243288,2.11243288 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Risk score|Land area weighted,risk score,1.956244704,1.956244704,1.956244704,1.956244704,1.956244704,1.956244704,1.956244704,1.956244704,1.956244704,1.956244704 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Risk score|Land area weighted,risk score,2.886967685,2.886967685,2.886967685,2.886967685,2.886967685,2.886967685,2.886967685,2.886967685,2.886967685,2.886967685 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Risk score|Land area weighted,risk score,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Risk score|Land area weighted,risk score,0.6062687,0.6062687,0.6062687,0.6062687,0.6062687,0.6062687,0.6062687,0.6062687,0.6062687,0.6062687 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Risk score|Land area weighted,risk score,2.582993605,2.582993605,2.582993605,2.582993605,2.582993605,2.582993605,2.582993605,2.582993605,2.582993605,2.582993605 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Risk score|Land area weighted,risk score,0.508872971,0.508872971,0.508872971,0.508872971,0.508872971,0.508872971,0.508872971,0.508872971,0.508872971,0.508872971 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Risk score|Land area weighted,risk score,2.841708619,2.841708619,2.841708619,2.841708619,2.841708619,2.841708619,2.841708619,2.841708619,2.841708619,2.841708619 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Risk score|Land area weighted,risk score,1.244036862,1.244036862,1.244036862,1.244036862,1.244036862,1.244036862,1.244036862,1.244036862,1.244036862,1.244036862 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Risk score|Land area weighted,risk score,1.003436338,1.003436338,1.003436338,1.003436338,1.003436338,1.003436338,1.003436338,1.003436338,1.003436338,1.003436338 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Risk score|Land area weighted,risk score,0.651474854,0.651474854,0.651474854,0.651474854,0.651474854,0.651474854,0.651474854,0.651474854,0.651474854,0.651474854 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Risk score|Land area weighted,risk score,0.489420317,0.489420317,0.489420317,0.489420317,0.489420317,0.489420317,0.489420317,0.489420317,0.489420317,0.489420317 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.155550258,0.155550258,0.155550258,0.155550258,0.155550258,0.155550258,0.155550258,0.155550258,0.155550258,0.155550258 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Risk score|Land area weighted,risk score,0.39421479,0.39421479,0.39421479,0.39421479,0.39421479,0.39421479,0.39421479,0.39421479,0.39421479,0.39421479 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Risk score|Land area weighted,risk score,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.449516041,0.449516041,0.449516041,0.449516041,0.449516041,0.449516041,0.449516041,0.449516041,0.449516041,0.449516041 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Land area,km2,11203.59713,11203.59713,11203.59713,11203.59713,11203.59713,11203.59713,11203.59713,11203.59713,11203.59713,11203.59713 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Land area,km2,9572.403149,9572.403149,9572.403149,9572.403149,9572.403149,9572.403149,9572.403149,9572.403149,9572.403149,9572.403149 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Land area,km2,660347.6537,660347.6537,660347.6537,660347.6537,660347.6537,660347.6537,660347.6537,660347.6537,660347.6537,660347.6537 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Land area,km2,4838.141452,4838.141452,4838.141452,4838.141452,4838.141452,4838.141452,4838.141452,4838.141452,4838.141452,4838.141452 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Land area,km2,174975.1089,174975.1089,174975.1089,174975.1089,174975.1089,174975.1089,174975.1089,174975.1089,174975.1089,174975.1089 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Land area,km2,54532.07788,54532.07788,54532.07788,54532.07788,54532.07788,54532.07788,54532.07788,54532.07788,54532.07788,54532.07788 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Land area,km2,2704.174336,2704.174336,2704.174336,2704.174336,2704.174336,2704.174336,2704.174336,2704.174336,2704.174336,2704.174336 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Land area,km2,44903.22397,44903.22397,44903.22397,44903.22397,44903.22397,44903.22397,44903.22397,44903.22397,44903.22397,44903.22397 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Land area,km2,5316.582656,5316.582656,5316.582656,5316.582656,5316.582656,5316.582656,5316.582656,5316.582656,5316.582656,5316.582656 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Land area,km2,614036.1262,614036.1262,614036.1262,614036.1262,614036.1262,614036.1262,614036.1262,614036.1262,614036.1262,614036.1262 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Land area,km2,37687.10035,37687.10035,37687.10035,37687.10035,37687.10035,37687.10035,37687.10035,37687.10035,37687.10035,37687.10035 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Land area,km2,44035.32474,44035.32474,44035.32474,44035.32474,44035.32474,44035.32474,44035.32474,44035.32474,44035.32474,44035.32474 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Land area,km2,91861.42489,91861.42489,91861.42489,91861.42489,91861.42489,91861.42489,91861.42489,91861.42489,91861.42489,91861.42489 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Land area,km2,267376.9211,267376.9211,267376.9211,267376.9211,267376.9211,267376.9211,267376.9211,267376.9211,267376.9211,267376.9211 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Land area,km2,1142376.051,1142376.051,1142376.051,1142376.051,1142376.051,1142376.051,1142376.051,1142376.051,1142376.051,1142376.051 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Land area,km2,659848.2315,659848.2315,659848.2315,659848.2315,659848.2315,659848.2315,659848.2315,659848.2315,659848.2315,659848.2315 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Land area,km2,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Land area,km2,858123.9937,858123.9937,858123.9937,858123.9937,858123.9937,858123.9937,858123.9937,858123.9937,858123.9937,858123.9937 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Land area,km2,1342103.286,1342103.286,1342103.286,1342103.286,1342103.286,1342103.286,1342103.286,1342103.286,1342103.286,1342103.286 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Land area,km2,251557.862,251557.862,251557.862,251557.862,251557.862,251557.862,251557.862,251557.862,251557.862,251557.862 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Land area,km2,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Land area,km2,685399.7927,685399.7927,685399.7927,685399.7927,685399.7927,685399.7927,685399.7927,685399.7927,685399.7927,685399.7927 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Land area,km2,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194,879.4556194 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Land area,km2,781.6286343,781.6286343,781.6286343,781.6286343,781.6286343,781.6286343,781.6286343,781.6286343,781.6286343,781.6286343 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Land area,km2,1069931.121,1069931.121,1069931.121,1069931.121,1069931.121,1069931.121,1069931.121,1069931.121,1069931.121,1069931.121 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Land area,km2,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Land area,km2,2963.918592,2963.918592,2963.918592,2963.918592,2963.918592,2963.918592,2963.918592,2963.918592,2963.918592,2963.918592 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Land area,km2,17943.63048,17943.63048,17943.63048,17943.63048,17943.63048,17943.63048,17943.63048,17943.63048,17943.63048,17943.63048 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Land area,km2,854490.0482,854490.0482,854490.0482,854490.0482,854490.0482,854490.0482,854490.0482,854490.0482,854490.0482,854490.0482 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Land area|%,%,0.403352306,0.403352306,0.403352306,0.403352306,0.403352306,0.403352306,0.403352306,0.403352306,0.403352306,0.403352306 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Land area|%,%,0.8827369,0.8827369,0.8827369,0.8827369,0.8827369,0.8827369,0.8827369,0.8827369,0.8827369,0.8827369 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Land area|%,%,34.31059499,34.31059499,34.31059499,34.31059499,34.31059499,34.31059499,34.31059499,34.31059499,34.31059499,34.31059499 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Land area|%,%,5.434836731,5.434836731,5.434836731,5.434836731,5.434836731,5.434836731,5.434836731,5.434836731,5.434836731,5.434836731 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Land area|%,%,56.92785195,56.92785195,56.92785195,56.92785195,56.92785195,56.92785195,56.92785195,56.92785195,56.92785195,56.92785195 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Land area|%,%,12.05611432,12.05611432,12.05611432,12.05611432,12.05611432,12.05611432,12.05611432,12.05611432,12.05611432,12.05611432 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Land area|%,%,0.312510021,0.312510021,0.312510021,0.312510021,0.312510021,0.312510021,0.312510021,0.312510021,0.312510021,0.312510021 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Land area|%,%,63.54755722,63.54755722,63.54755722,63.54755722,63.54755722,63.54755722,63.54755722,63.54755722,63.54755722,63.54755722 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Land area|%,%,0.830034741,0.830034741,0.830034741,0.830034741,0.830034741,0.830034741,0.830034741,0.830034741,0.830034741,0.830034741 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Land area|%,%,59.09020847,59.09020847,59.09020847,59.09020847,59.09020847,59.09020847,59.09020847,59.09020847,59.09020847,59.09020847 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Land area|%,%,4.596325267,4.596325267,4.596325267,4.596325267,4.596325267,4.596325267,4.596325267,4.596325267,4.596325267,4.596325267 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Land area|%,%,3.409674783,3.409674783,3.409674783,3.409674783,3.409674783,3.409674783,3.409674783,3.409674783,3.409674783,3.409674783 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Land area|%,%,34.40624289,34.40624289,34.40624289,34.40624289,34.40624289,34.40624289,34.40624289,34.40624289,34.40624289,34.40624289 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Land area|%,%,2.855975984,2.855975984,2.855975984,2.855975984,2.855975984,2.855975984,2.855975984,2.855975984,2.855975984,2.855975984 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Land area|%,%,70.72633038,70.72633038,70.72633038,70.72633038,70.72633038,70.72633038,70.72633038,70.72633038,70.72633038,70.72633038 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Land area|%,%,52.85188154,52.85188154,52.85188154,52.85188154,52.85188154,52.85188154,52.85188154,52.85188154,52.85188154,52.85188154 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Land area|%,%,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Land area|%,%,72.59552262,72.59552262,72.59552262,72.59552262,72.59552262,72.59552262,72.59552262,72.59552262,72.59552262,72.59552262 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Land area|%,%,58.16419921,58.16419921,58.16419921,58.16419921,58.16419921,58.16419921,58.16419921,58.16419921,58.16419921,58.16419921 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Land area|%,%,34.30644221,34.30644221,34.30644221,34.30644221,34.30644221,34.30644221,34.30644221,34.30644221,34.30644221,34.30644221 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Land area|%,%,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Land area|%,%,54.40014128,54.40014128,54.40014128,54.40014128,54.40014128,54.40014128,54.40014128,54.40014128,54.40014128,54.40014128 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Land area|%,%,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343,0.565483343 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Land area|%,%,6.536212627,6.536212627,6.536212627,6.536212627,6.536212627,6.536212627,6.536212627,6.536212627,6.536212627,6.536212627 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Land area|%,%,57.5324895,57.5324895,57.5324895,57.5324895,57.5324895,57.5324895,57.5324895,57.5324895,57.5324895,57.5324895 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Land area|%,%,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Land area|%,%,0.395124436,0.395124436,0.395124436,0.395124436,0.395124436,0.395124436,0.395124436,0.395124436,0.395124436,0.395124436 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Land area|%,%,9.145031686,9.145031686,9.145031686,9.145031686,9.145031686,9.145031686,9.145031686,9.145031686,9.145031686,9.145031686 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Land area|%,%,85.70141657,85.70141657,85.70141657,85.70141657,85.70141657,85.70141657,85.70141657,85.70141657,85.70141657,85.70141657 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Land area|Low,km2,1239355.938,1239355.938,1239355.938,1239355.938,1239355.938,1239355.938,1239355.938,1239355.938,1239355.938,1239355.938 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Land area|Low,km2,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Land area|Low,km2,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Land area|Low,km2,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Land area|Low,km2,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Land area|Low,km2,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Land area|Low,km2,1987601.959,1987601.959,1987601.959,1987601.959,1987601.959,1987601.959,1987601.959,1987601.959,1987601.959,1987601.959 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Land area|Low,km2,1005455.085,1005455.085,1005455.085,1005455.085,1005455.085,1005455.085,1005455.085,1005455.085,1005455.085,1005455.085 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Land area|Low,km2,1005.13574,1005.13574,1005.13574,1005.13574,1005.13574,1005.13574,1005.13574,1005.13574,1005.13574,1005.13574 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Land area|Low,km2,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Land area|Low,km2,166637.4459,166637.4459,166637.4459,166637.4459,166637.4459,166637.4459,166637.4459,166637.4459,166637.4459,166637.4459 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Land area|Low,km2,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Land area|Low,km2,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Land area|Low,km2,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242,36539.46242 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Land area|Low,km2,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Land area|Low,km2,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Land area|Low,km2,183743.6621,183743.6621,183743.6621,183743.6621,183743.6621,183743.6621,183743.6621,183743.6621,183743.6621,183743.6621 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Land area|Low,km2,395245.5907,395245.5907,395245.5907,395245.5907,395245.5907,395245.5907,395245.5907,395245.5907,395245.5907,395245.5907 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Land area|Low,km2,94696.5233,94696.5233,94696.5233,94696.5233,94696.5233,94696.5233,94696.5233,94696.5233,94696.5233,94696.5233 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Land area|Low,km2,2287.464486,2287.464486,2287.464486,2287.464486,2287.464486,2287.464486,2287.464486,2287.464486,2287.464486,2287.464486 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Land area|Low,km2,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Land area|Low,km2,821933.0745,821933.0745,821933.0745,821933.0745,821933.0745,821933.0745,821933.0745,821933.0745,821933.0745,821933.0745 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Land area|Low,km2,6344.97111,6344.97111,6344.97111,6344.97111,6344.97111,6344.97111,6344.97111,6344.97111,6344.97111,6344.97111 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Land area|Low,km2,181394.6302,181394.6302,181394.6302,181394.6302,181394.6302,181394.6302,181394.6302,181394.6302,181394.6302,181394.6302 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Land area|Low,km2,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Land area|Low,km2,853161.1529,853161.1529,853161.1529,853161.1529,853161.1529,853161.1529,853161.1529,853161.1529,853161.1529,853161.1529 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Land area|Low,km2,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Land area|Low,km2,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Land area|Low,km2,62354.94049,62354.94049,62354.94049,62354.94049,62354.94049,62354.94049,62354.94049,62354.94049,62354.94049,62354.94049 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Land area|Low,km2,375587.7257,375587.7257,375587.7257,375587.7257,375587.7257,375587.7257,375587.7257,375587.7257,375587.7257,375587.7257 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Land area|Low,km2,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Land area|Low,km2,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Land area|Low,km2,449090.7615,449090.7615,449090.7615,449090.7615,449090.7615,449090.7615,449090.7615,449090.7615,449090.7615,449090.7615 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Land area|Low,km2,20213.71818,20213.71818,20213.71818,20213.71818,20213.71818,20213.71818,20213.71818,20213.71818,20213.71818,20213.71818 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Land area|Low,km2,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Land area|Low,km2,623003.3313,623003.3313,623003.3313,623003.3313,623003.3313,623003.3313,623003.3313,623003.3313,623003.3313,623003.3313 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Land area|Low,km2,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292,632547.292 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Land area|Low,km2,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Land area|Low,km2,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Land area|Low,km2,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Land area|Low,km2,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Land area|Low,km2,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Land area|Low,km2,104964.5952,104964.5952,104964.5952,104964.5952,104964.5952,104964.5952,104964.5952,104964.5952,104964.5952,104964.5952 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Land area|Low,km2,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Land area|Low,km2,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Land area|Low,km2,565358.9105,565358.9105,565358.9105,565358.9105,565358.9105,565358.9105,565358.9105,565358.9105,565358.9105,565358.9105 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Land area|Low,km2,192471.312,192471.312,192471.312,192471.312,192471.312,192471.312,192471.312,192471.312,192471.312,192471.312 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Land area|Low,km2,311088.2263,311088.2263,311088.2263,311088.2263,311088.2263,311088.2263,311088.2263,311088.2263,311088.2263,311088.2263 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Land area|Low,km2,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Land area|Low,km2,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Land area|Low,km2,17816.35378,17816.35378,17816.35378,17816.35378,17816.35378,17816.35378,17816.35378,17816.35378,17816.35378,17816.35378 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Land area|Low,km2,344284.372,344284.372,344284.372,344284.372,344284.372,344284.372,344284.372,344284.372,344284.372,344284.372 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Land area|Low,km2,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007,68.64476007 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Land area|Low,km2,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Land area|Low,km2,7698281.215,7698281.215,7698281.215,7698281.215,7698281.215,7698281.215,7698281.215,7698281.215,7698281.215,7698281.215 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Land area|Low,km2,10189.99075,10189.99075,10189.99075,10189.99075,10189.99075,10189.99075,10189.99075,10189.99075,10189.99075,10189.99075 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Land area|Low,km2,1082.755326,1082.755326,1082.755326,1082.755326,1082.755326,1082.755326,1082.755326,1082.755326,1082.755326,1082.755326 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Land area|Low,km2,1437.092816,1437.092816,1437.092816,1437.092816,1437.092816,1437.092816,1437.092816,1437.092816,1437.092816,1437.092816 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Land area|Low,km2,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Land area|Low,km2,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Land area|Low,km2,163154.3603,163154.3603,163154.3603,163154.3603,163154.3603,163154.3603,163154.3603,163154.3603,163154.3603,163154.3603 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Land area|Low,km2,600976.7684,600976.7684,600976.7684,600976.7684,600976.7684,600976.7684,600976.7684,600976.7684,600976.7684,600976.7684 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Land area|Low,km2,2980705.739,2980705.739,2980705.739,2980705.739,2980705.739,2980705.739,2980705.739,2980705.739,2980705.739,2980705.739 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Land area|Low,km2,189044.8958,189044.8958,189044.8958,189044.8958,189044.8958,189044.8958,189044.8958,189044.8958,189044.8958,189044.8958 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Land area|Low,km2,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Land area|Low,km2,2448662.587,2448662.587,2448662.587,2448662.587,2448662.587,2448662.587,2448662.587,2448662.587,2448662.587,2448662.587 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Land area|Low,km2,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295,1150.357295 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Land area|Low,km2,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Land area|Low,km2,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Land area|Low,km2,84077.11468,84077.11468,84077.11468,84077.11468,84077.11468,84077.11468,84077.11468,84077.11468,84077.11468,84077.11468 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Land area|Low,km2,1119358.446,1119358.446,1119358.446,1119358.446,1119358.446,1119358.446,1119358.446,1119358.446,1119358.446,1119358.446 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Land area|Low,km2,685802.0139,685802.0139,685802.0139,685802.0139,685802.0139,685802.0139,685802.0139,685802.0139,685802.0139,685802.0139 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Land area|Low,km2,45313.51904,45313.51904,45313.51904,45313.51904,45313.51904,45313.51904,45313.51904,45313.51904,45313.51904,45313.51904 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Land area|Low,km2,86433.66428,86433.66428,86433.66428,86433.66428,86433.66428,86433.66428,86433.66428,86433.66428,86433.66428,86433.66428 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Land area|Low,km2,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Land area|Low,km2,5052980.224,5052980.224,5052980.224,5052980.224,5052980.224,5052980.224,5052980.224,5052980.224,5052980.224,5052980.224 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Land area|Low,km2,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Land area|Low,km2,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374,30418.36374 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Land area|Low,km2,20303.83521,20303.83521,20303.83521,20303.83521,20303.83521,20303.83521,20303.83521,20303.83521,20303.83521,20303.83521 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Land area|Low,km2,14653.17564,14653.17564,14653.17564,14653.17564,14653.17564,14653.17564,14653.17564,14653.17564,14653.17564,14653.17564 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Land area|Low,km2,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262,907756.1262 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Land area|Low,km2,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Land area|Low,km2,7093952.945,7093952.945,7093952.945,7093952.945,7093952.945,7093952.945,7093952.945,7093952.945,7093952.945,7093952.945 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Land area|Low,km2,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53,1610710.53 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Land area|Low,km2,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Land area|Low,km2,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Land area|Low,km2,567570.6018,567570.6018,567570.6018,567570.6018,567570.6018,567570.6018,567570.6018,567570.6018,567570.6018,567570.6018 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Land area|Low,km2,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167,460368.2167 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Land area|Low,km2,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Land area|Low,km2,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Land area|Low,km2,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525,464.7443525 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Land area|Low,km2,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Land area|Low,km2,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Land area|Low,km2,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952,657.0721952 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Land area|Low,km2,1558580.921,1558580.921,1558580.921,1558580.921,1558580.921,1558580.921,1558580.921,1558580.921,1558580.921,1558580.921 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Land area|Low,km2,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Land area|Low,km2,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Land area|Low,km2,1587.284355,1587.284355,1587.284355,1587.284355,1587.284355,1587.284355,1587.284355,1587.284355,1587.284355,1587.284355 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Land area|Low,km2,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Land area|Low,km2,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Land area|Low,km2,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Land area|Low,km2,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Land area|Low,km2,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Land area|Low,km2,11708.23074,11708.23074,11708.23074,11708.23074,11708.23074,11708.23074,11708.23074,11708.23074,11708.23074,11708.23074 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Land area|Low,km2,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Land area|Low,km2,297898.7619,297898.7619,297898.7619,297898.7619,297898.7619,297898.7619,297898.7619,297898.7619,297898.7619,297898.7619 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Land area|Low,km2,26900.18031,26900.18031,26900.18031,26900.18031,26900.18031,26900.18031,26900.18031,26900.18031,26900.18031,26900.18031 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Land area|Low,km2,5324.237297,5324.237297,5324.237297,5324.237297,5324.237297,5324.237297,5324.237297,5324.237297,5324.237297,5324.237297 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Land area|Low,km2,59357.11516,59357.11516,59357.11516,59357.11516,59357.11516,59357.11516,59357.11516,59357.11516,59357.11516,59357.11516 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Land area|Low,km2,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Land area|Low,km2,1389176.33,1389176.33,1389176.33,1389176.33,1389176.33,1389176.33,1389176.33,1389176.33,1389176.33,1389176.33 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Land area|Low,km2,110264.6235,110264.6235,110264.6235,110264.6235,110264.6235,110264.6235,110264.6235,110264.6235,110264.6235,110264.6235 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Land area|Low,km2,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Land area|Low,km2,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Land area|Low,km2,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Land area|Low,km2,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Land area|Low,km2,730.8949962,730.8949962,730.8949962,730.8949962,730.8949962,730.8949962,730.8949962,730.8949962,730.8949962,730.8949962 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Land area|Low,km2,500426.1535,500426.1535,500426.1535,500426.1535,500426.1535,500426.1535,500426.1535,500426.1535,500426.1535,500426.1535 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Land area|Low,km2,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Land area|Low,km2,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Land area|Low,km2,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Land area|Low,km2,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Land area|Low,km2,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012,116760.7012 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Land area|Low,km2,388077.2481,388077.2481,388077.2481,388077.2481,388077.2481,388077.2481,388077.2481,388077.2481,388077.2481,388077.2481 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Land area|Low,km2,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Land area|Low,km2,1547658.469,1547658.469,1547658.469,1547658.469,1547658.469,1547658.469,1547658.469,1547658.469,1547658.469,1547658.469 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Land area|Low,km2,49215.68176,49215.68176,49215.68176,49215.68176,49215.68176,49215.68176,49215.68176,49215.68176,49215.68176,49215.68176 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Land area|Low,km2,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Land area|Low,km2,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025,982.7777025 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Land area|Low,km2,4156.077665,4156.077665,4156.077665,4156.077665,4156.077665,4156.077665,4156.077665,4156.077665,4156.077665,4156.077665 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Land area|Low,km2,267718.8638,267718.8638,267718.8638,267718.8638,267718.8638,267718.8638,267718.8638,267718.8638,267718.8638,267718.8638 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Land area|Low,km2,470.102044,470.102044,470.102044,470.102044,470.102044,470.102044,470.102044,470.102044,470.102044,470.102044 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Land area|Low,km2,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Land area|Low,km2,38589.92595,38589.92595,38589.92595,38589.92595,38589.92595,38589.92595,38589.92595,38589.92595,38589.92595,38589.92595 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Land area|Low,km2,656331.825,656331.825,656331.825,656331.825,656331.825,656331.825,656331.825,656331.825,656331.825,656331.825 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Land area|Low,km2,1798660.216,1798660.216,1798660.216,1798660.216,1798660.216,1798660.216,1798660.216,1798660.216,1798660.216,1798660.216 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Land area|Low,km2,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Land area|Low,km2,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Land area|Low,km2,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Land area|Low,km2,85023.30485,85023.30485,85023.30485,85023.30485,85023.30485,85023.30485,85023.30485,85023.30485,85023.30485,85023.30485 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Land area|Low,km2,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Land area|Low,km2,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Land area|Low|%,%,12.61848502,12.61848502,12.61848502,12.61848502,12.61848502,12.61848502,12.61848502,12.61848502,12.61848502,12.61848502 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Land area|Low|%,%,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Land area|Low|%,%,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Land area|Low|%,%,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Land area|Low|%,%,71.55771708,71.55771708,71.55771708,71.55771708,71.55771708,71.55771708,71.55771708,71.55771708,71.55771708,71.55771708 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Land area|Low|%,%,92.71990439,92.71990439,92.71990439,92.71990439,92.71990439,92.71990439,92.71990439,92.71990439,92.71990439,92.71990439 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Land area|Low|%,%,7.807214978,7.807214978,7.807214978,7.807214978,7.807214978,7.807214978,7.807214978,7.807214978,7.807214978,7.807214978 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Land area|Low|%,%,69.97910935,69.97910935,69.97910935,69.97910935,69.97910935,69.97910935,69.97910935,69.97910935,69.97910935,69.97910935 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Land area|Low|%,%,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Land area|Low|%,%,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Land area|Low|%,%,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159,33.54033159 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Land area|Low|%,%,53.6786321,53.6786321,53.6786321,53.6786321,53.6786321,53.6786321,53.6786321,53.6786321,53.6786321,53.6786321 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Land area|Low|%,%,78.38870932,78.38870932,78.38870932,78.38870932,78.38870932,78.38870932,78.38870932,78.38870932,78.38870932,78.38870932 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Land area|Low|%,%,98.91084886,98.91084886,98.91084886,98.91084886,98.91084886,98.91084886,98.91084886,98.91084886,98.91084886,98.91084886 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Land area|Low|%,%,20.72750298,20.72750298,20.72750298,20.72750298,20.72750298,20.72750298,20.72750298,20.72750298,20.72750298,20.72750298 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Land area|Low|%,%,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Land area|Low|%,%,87.39557138,87.39557138,87.39557138,87.39557138,87.39557138,87.39557138,87.39557138,87.39557138,87.39557138,87.39557138 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Land area|Low|%,%,22.07841979,22.07841979,22.07841979,22.07841979,22.07841979,22.07841979,22.07841979,22.07841979,22.07841979,22.07841979 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Land area|Low|%,%,69.17420806,69.17420806,69.17420806,69.17420806,69.17420806,69.17420806,69.17420806,69.17420806,69.17420806,69.17420806 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Land area|Low|%,%,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Land area|Low|%,%,98.59623566,98.59623566,98.59623566,98.59623566,98.59623566,98.59623566,98.59623566,98.59623566,98.59623566,98.59623566 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Land area|Low|%,%,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Land area|Low|%,%,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Land area|Low|%,%,73.47368974,73.47368974,73.47368974,73.47368974,73.47368974,73.47368974,73.47368974,73.47368974,73.47368974,73.47368974 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Land area|Low|%,%,63.86571434,63.86571434,63.86571434,63.86571434,63.86571434,63.86571434,63.86571434,63.86571434,63.86571434,63.86571434 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Land area|Low|%,%,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Land area|Low|%,%,76.94814108,76.94814108,76.94814108,76.94814108,76.94814108,76.94814108,76.94814108,76.94814108,76.94814108,76.94814108 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Land area|Low|%,%,20.99629417,20.99629417,20.99629417,20.99629417,20.99629417,20.99629417,20.99629417,20.99629417,20.99629417,20.99629417 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Land area|Low|%,%,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Land area|Low|%,%,79.9412324,79.9412324,79.9412324,79.9412324,79.9412324,79.9412324,79.9412324,79.9412324,79.9412324,79.9412324 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Land area|Low|%,%,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599,98.75445599 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Land area|Low|%,%,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Land area|Low|%,%,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Land area|Low|%,%,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Land area|Low|%,%,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Land area|Low|%,%,19.14285418,19.14285418,19.14285418,19.14285418,19.14285418,19.14285418,19.14285418,19.14285418,19.14285418,19.14285418 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Land area|Low|%,%,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Land area|Low|%,%,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Land area|Low|%,%,43.77599193,43.77599193,43.77599193,43.77599193,43.77599193,43.77599193,43.77599193,43.77599193,43.77599193,43.77599193 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Land area|Low|%,%,83.79048816,83.79048816,83.79048816,83.79048816,83.79048816,83.79048816,83.79048816,83.79048816,83.79048816,83.79048816 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Land area|Low|%,%,96.96293969,96.96293969,96.96293969,96.96293969,96.96293969,96.96293969,96.96293969,96.96293969,96.96293969,96.96293969 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Land area|Low|%,%,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Land area|Low|%,%,16.33321561,16.33321561,16.33321561,16.33321561,16.33321561,16.33321561,16.33321561,16.33321561,16.33321561,16.33321561 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Land area|Low|%,%,73.97992676,73.97992676,73.97992676,73.97992676,73.97992676,73.97992676,73.97992676,73.97992676,73.97992676,73.97992676 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Land area|Low|%,%,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755,0.498625755 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Land area|Low|%,%,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Land area|Low|%,%,82.22888564,82.22888564,82.22888564,82.22888564,82.22888564,82.22888564,82.22888564,82.22888564,82.22888564,82.22888564 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Land area|Low|%,%,34.75927777,34.75927777,34.75927777,34.75927777,34.75927777,34.75927777,34.75927777,34.75927777,34.75927777,34.75927777 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Land area|Low|%,%,2.231397044,2.231397044,2.231397044,2.231397044,2.231397044,2.231397044,2.231397044,2.231397044,2.231397044,2.231397044 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Land area|Low|%,%,0.240042861,0.240042861,0.240042861,0.240042861,0.240042861,0.240042861,0.240042861,0.240042861,0.240042861,0.240042861 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Land area|Low|%,%,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Land area|Low|%,%,8.733198197,8.733198197,8.733198197,8.733198197,8.733198197,8.733198197,8.733198197,8.733198197,8.733198197,8.733198197 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Land area|Low|%,%,97.0100817,97.0100817,97.0100817,97.0100817,97.0100817,97.0100817,97.0100817,97.0100817,97.0100817,97.0100817 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Land area|Low|%,%,32.13661078,32.13661078,32.13661078,32.13661078,32.13661078,32.13661078,32.13661078,32.13661078,32.13661078,32.13661078 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Land area|Low|%,%,57.82749283,57.82749283,57.82749283,57.82749283,57.82749283,57.82749283,57.82749283,57.82749283,57.82749283,57.82749283 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Land area|Low|%,%,14.50717783,14.50717783,14.50717783,14.50717783,14.50717783,14.50717783,14.50717783,14.50717783,14.50717783,14.50717783 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Land area|Low|%,%,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766,1.030920766 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Land area|Low|%,%,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Land area|Low|%,%,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Land area|Low|%,%,92.7447382,92.7447382,92.7447382,92.7447382,92.7447382,92.7447382,92.7447382,92.7447382,92.7447382,92.7447382 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Land area|Low|%,%,91.71555887,91.71555887,91.71555887,91.71555887,91.71555887,91.71555887,91.71555887,91.71555887,91.71555887,91.71555887 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Land area|Low|%,%,87.18215466,87.18215466,87.18215466,87.18215466,87.18215466,87.18215466,87.18215466,87.18215466,87.18215466,87.18215466 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Land area|Low|%,%,18.947409,18.947409,18.947409,18.947409,18.947409,18.947409,18.947409,18.947409,18.947409,18.947409 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Land area|Low|%,%,43.59588317,43.59588317,43.59588317,43.59588317,43.59588317,43.59588317,43.59588317,43.59588317,43.59588317,43.59588317 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Land area|Low|%,%,59.58913457,59.58913457,59.58913457,59.58913457,59.58913457,59.58913457,59.58913457,59.58913457,59.58913457,59.58913457 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Land area|Low|%,%,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266,40.83861266 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Land area|Low|%,%,9.60413338,9.60413338,9.60413338,9.60413338,9.60413338,9.60413338,9.60413338,9.60413338,9.60413338,9.60413338 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Land area|Low|%,%,28.38195192,28.38195192,28.38195192,28.38195192,28.38195192,28.38195192,28.38195192,28.38195192,28.38195192,28.38195192 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Land area|Low|%,%,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094,99.90880094 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Land area|Low|%,%,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Land area|Low|%,%,92.38754717,92.38754717,92.38754717,92.38754717,92.38754717,92.38754717,92.38754717,92.38754717,92.38754717,92.38754717 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Land area|Low|%,%,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059,99.50597059 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Land area|Low|%,%,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Land area|Low|%,%,77.40297954,77.40297954,77.40297954,77.40297954,77.40297954,77.40297954,77.40297954,77.40297954,77.40297954,77.40297954 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Land area|Low|%,%,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234,89.54952234 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Land area|Low|%,%,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521,0.665207521 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Land area|Low|%,%,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Land area|Low|%,%,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216,1.204023216 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Land area|Low|%,%,99.84289868,99.84289868,99.84289868,99.84289868,99.84289868,99.84289868,99.84289868,99.84289868,99.84289868,99.84289868 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Land area|Low|%,%,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Land area|Low|%,%,7.20166742,7.20166742,7.20166742,7.20166742,7.20166742,7.20166742,7.20166742,7.20166742,7.20166742,7.20166742 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Land area|Low|%,%,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Land area|Low|%,%,46.66918075,46.66918075,46.66918075,46.66918075,46.66918075,46.66918075,46.66918075,46.66918075,46.66918075,46.66918075 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Land area|Low|%,%,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Land area|Low|%,%,26.18035298,26.18035298,26.18035298,26.18035298,26.18035298,26.18035298,26.18035298,26.18035298,26.18035298,26.18035298 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Land area|Low|%,%,99.65824489,99.65824489,99.65824489,99.65824489,99.65824489,99.65824489,99.65824489,99.65824489,99.65824489,99.65824489 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Land area|Low|%,%,14.78047071,14.78047071,14.78047071,14.78047071,14.78047071,14.78047071,14.78047071,14.78047071,14.78047071,14.78047071 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Land area|Low|%,%,46.0785725,46.0785725,46.0785725,46.0785725,46.0785725,46.0785725,46.0785725,46.0785725,46.0785725,46.0785725 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Land area|Low|%,%,59.69875166,59.69875166,59.69875166,59.69875166,59.69875166,59.69875166,59.69875166,59.69875166,59.69875166,59.69875166 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Land area|Low|%,%,36.57988399,36.57988399,36.57988399,36.57988399,36.57988399,36.57988399,36.57988399,36.57988399,36.57988399,36.57988399 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Land area|Low|%,%,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Land area|Low|%,%,0.506962771,0.506962771,0.506962771,0.506962771,0.506962771,0.506962771,0.506962771,0.506962771,0.506962771,0.506962771 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Land area|Low|%,%,54.93848828,54.93848828,54.93848828,54.93848828,54.93848828,54.93848828,54.93848828,54.93848828,54.93848828,54.93848828 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Land area|Low|%,%,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Land area|Low|%,%,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698,98.32767698 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Land area|Low|%,%,99.41234809,99.41234809,99.41234809,99.41234809,99.41234809,99.41234809,99.41234809,99.41234809,99.41234809,99.41234809 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Land area|Low|%,%,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Land area|Low|%,%,56.82336071,56.82336071,56.82336071,56.82336071,56.82336071,56.82336071,56.82336071,56.82336071,56.82336071,56.82336071 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Land area|Low|%,%,16.83692907,16.83692907,16.83692907,16.83692907,16.83692907,16.83692907,16.83692907,16.83692907,16.83692907,16.83692907 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Land area|Low|%,%,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Land area|Low|%,%,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006,5.409081006 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Land area|Low|%,%,3.418669227,3.418669227,3.418669227,3.418669227,3.418669227,3.418669227,3.418669227,3.418669227,3.418669227,3.418669227 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Land area|Low|%,%,67.19893577,67.19893577,67.19893577,67.19893577,67.19893577,67.19893577,67.19893577,67.19893577,67.19893577,67.19893577 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Land area|Low|%,%,0.127060357,0.127060357,0.127060357,0.127060357,0.127060357,0.127060357,0.127060357,0.127060357,0.127060357,0.127060357 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Land area|Low|%,%,34.33410771,34.33410771,34.33410771,34.33410771,34.33410771,34.33410771,34.33410771,34.33410771,34.33410771,34.33410771 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Land area|Low|%,%,98.90864298,98.90864298,98.90864298,98.90864298,98.90864298,98.90864298,98.90864298,98.90864298,98.90864298,98.90864298 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Land area|Low|%,%,91.98993848,91.98993848,91.98993848,91.98993848,91.98993848,91.98993848,91.98993848,91.98993848,91.98993848,91.98993848 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Land area|Low|%,%,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Land area|Low|%,%,66.14356409,66.14356409,66.14356409,66.14356409,66.14356409,66.14356409,66.14356409,66.14356409,66.14356409,66.14356409 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Land area|Low|%,%,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Risk score|Population weighted,risk score,0.502989909,0.503631027,0.504300596,0.504904887,0.505507285,0.505994016,0.50645784,0.506898498,0.507250347,0.507528251 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Risk score|Population weighted,risk score,0.882929274,0.88299921,0.883067,0.883131786,0.883189541,0.883239344,0.883282324,0.883318864,0.883349713,0.883377019 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Risk score|Population weighted,risk score,2.239149304,2.240738763,2.242916109,2.245281488,2.24763877,2.250283603,2.253012007,2.255908409,2.258678467,2.260837184 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Risk score|Population weighted,risk score,0.402233277,0.402161124,0.402095472,0.402041234,0.401993326,0.401950521,0.401912306,0.401876537,0.401841636,0.40180768 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Risk score|Population weighted,risk score,1.732070461,1.731682697,1.731686243,1.731976059,1.732562725,1.733406777,1.734409595,1.735547806,1.736744253,1.737890676 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Risk score|Population weighted,risk score,1.64909731,1.648513868,1.648072166,1.647918829,1.647846744,1.647856857,1.647962668,1.64812899,1.648331021,1.648555833 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Risk score|Population weighted,risk score,1.465712303,1.465086654,1.464264399,1.463391273,1.462629146,1.461927138,1.461226355,1.460509296,1.45985836,1.459240648 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Risk score|Population weighted,risk score,2.46416803,2.464200249,2.464342489,2.464521543,2.464711345,2.46489674,2.465001312,2.465001425,2.464918574,2.464763568 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Risk score|Population weighted,risk score,0.991891072,0.988863009,0.98612575,0.983899525,0.982034165,0.980515621,0.979306213,0.978340763,0.977621976,0.977037137 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Risk score|Population weighted,risk score,1.51919019,1.520135012,1.52063756,1.520918892,1.521166393,1.521282769,1.521304425,1.521290238,1.521293639,1.521308192 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Risk score|Population weighted,risk score,0.609439967,0.612040677,0.613448171,0.614488125,0.615271135,0.616008022,0.616644677,0.617318112,0.617874884,0.618313336 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Risk score|Population weighted,risk score,2.456807128,2.456301261,2.456132024,2.456140391,2.456263275,2.456427682,2.456574023,2.456710034,2.4568343,2.456948176 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Risk score|Population weighted,risk score,1.164061651,1.16664441,1.168322295,1.169361422,1.169820403,1.169889976,1.169697602,1.169329329,1.168849658,1.16829214 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Risk score|Population weighted,risk score,2.706681538,2.70803378,2.708533115,2.708826463,2.708965257,2.709045709,2.708934196,2.708710795,2.70845403,2.708193281 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Risk score|Population weighted,risk score,1.98979428,1.990535742,1.991176391,1.991708904,1.992142751,1.99244787,1.992678941,1.992884333,1.993054922,1.993200789 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Risk score|Population weighted,risk score,0.511565663,0.511318902,0.511118579,0.510907945,0.510727158,0.510586396,0.510442655,0.510264229,0.510067983,0.509913343 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Risk score|Population weighted,risk score,1.228302108,1.229078301,1.230412388,1.232020673,1.233936048,1.235950546,1.237940501,1.239904262,1.241808305,1.243643604 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Risk score|Population weighted,risk score,0.506240784,0.506237032,0.506309055,0.50647472,0.506724451,0.507030179,0.507341794,0.507640998,0.507889619,0.508059999 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Risk score|Population weighted,risk score,2.137818059,2.137014844,2.136347793,2.135706779,2.135056438,2.134428328,2.133999849,2.133759518,2.133717143,2.133856208 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Risk score|Population weighted,risk score,2.561793662,2.562265255,2.562684532,2.562989612,2.563178894,2.563273495,2.563171664,2.562905848,2.562541002,2.56205154 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Risk score|Population weighted,risk score,1.689011502,1.686396357,1.685311959,1.684792654,1.685004789,1.685736571,1.686596664,1.687627593,1.68891829,1.690222496 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Risk score|Population weighted,risk score,1.330367041,1.32828225,1.325664627,1.323294879,1.321041186,1.318721663,1.31642456,1.314405651,1.312683666,1.311226077 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Risk score|Population weighted,risk score,1.436953897,1.433884565,1.431864901,1.430420534,1.429298889,1.428436737,1.427817924,1.427388339,1.427141412,1.427077912 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Risk score|Population weighted,risk score,0.520237644,0.52085549,0.521443601,0.521965203,0.522427915,0.52286901,0.523287306,0.523670318,0.5240189,0.524334167 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Risk score|Population weighted,risk score,0.80771415,0.807197949,0.806714569,0.806234011,0.80574996,0.805308445,0.804960349,0.804680221,0.804452282,0.804266878 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Risk score|Population weighted,risk score,2.598154532,2.600830876,2.602120403,2.603191244,2.603790398,2.604347026,2.604638893,2.604693222,2.60462935,2.604400213 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Risk score|Population weighted,risk score,1.616736186,1.621979262,1.625600054,1.628037245,1.629585843,1.630436969,1.63095822,1.631253782,1.631433888,1.631458515 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Risk score|Population weighted,risk score,0.851719591,0.85281263,0.853508367,0.853914959,0.854110912,0.854131082,0.854119022,0.854093465,0.854062095,0.854092154 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Risk score|Population weighted,risk score,1.038931349,1.036596929,1.035150042,1.034393326,1.033595087,1.032781311,1.031883466,1.031015749,1.030177198,1.029819057 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Risk score|Population weighted,risk score,0.461156563,0.461390264,0.461559983,0.461774512,0.461928773,0.46208533,0.462244754,0.462416827,0.462606765,0.462825444 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Risk score|Population weighted,risk score,2.370654484,2.372806883,2.374320875,2.375454444,2.376218162,2.376752305,2.377111629,2.377331885,2.377455499,2.377499169 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Risk score|Population weighted,risk score,2.003029836,2.007937522,2.011553188,2.0142926,2.016754507,2.018885611,2.020753107,2.022413348,2.023865855,2.025103649 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Risk score|Population weighted,risk score,0.227941399,0.227966512,0.22801917,0.228108515,0.228231557,0.228384716,0.228532593,0.228669313,0.228794312,0.228899821 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Risk score|Population weighted,risk score,0.455450281,0.455469933,0.455581321,0.455762338,0.455900973,0.456011857,0.456134176,0.456253825,0.456337181,0.456381215 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Risk score|Population weighted,risk score,2.791758475,2.793783317,2.794273157,2.794412948,2.794357603,2.794173463,2.79383566,2.793453578,2.793133259,2.792857931 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Risk score|Population weighted,risk score,0.559373928,0.559803804,0.559961691,0.560050051,0.560103659,0.560136024,0.560153764,0.560163712,0.560171148,0.560177047 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Risk score|Population weighted,risk score,2.273912126,2.274262087,2.274561361,2.274937528,2.275353691,2.275792755,2.276229013,2.276640791,2.27701662,2.277347243 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Risk score|Population weighted,risk score,1.316671032,1.320137072,1.323103179,1.325501302,1.327520339,1.329171761,1.330481615,1.331448148,1.332189939,1.332793238 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Risk score|Population weighted,risk score,1.132954128,1.132005693,1.13177194,1.131970448,1.13242413,1.133032965,1.133769434,1.134581506,1.135438557,1.1362949 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Risk score|Population weighted,risk score,1.33948286,1.339902337,1.340396993,1.340943593,1.341484788,1.34201835,1.342519961,1.342984081,1.343374518,1.343686129 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Risk score|Population weighted,risk score,1.00324918,1.004200178,1.005016769,1.005708394,1.006286651,1.006765408,1.007157145,1.007480583,1.007751057,1.007980244 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Risk score|Population weighted,risk score,0.837494583,0.837496258,0.837220942,0.836762174,0.836191151,0.835557683,0.834945388,0.834347611,0.833787534,0.833257194 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Risk score|Population weighted,risk score,0.85578246,0.856105771,0.856501849,0.856992328,0.857407775,0.857749319,0.858029169,0.858258463,0.858459011,0.85862943 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Risk score|Population weighted,risk score,0.428384943,0.428175035,0.427980843,0.427815513,0.427673297,0.427553882,0.427450909,0.427360913,0.427280285,0.427209817 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Risk score|Population weighted,risk score,1.85920579,1.867221609,1.875424964,1.883881331,1.892149465,1.900161548,1.907516294,1.914102741,1.919828296,1.924384544 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Risk score|Population weighted,risk score,1.372234057,1.374004359,1.375501623,1.376653884,1.377479473,1.378135805,1.378593577,1.378889352,1.379043016,1.379048413 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Risk score|Population weighted,risk score,1.905646795,1.915163539,1.92268901,1.928339483,1.932351607,1.935230861,1.937289578,1.938949615,1.94035976,1.941563904 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Risk score|Population weighted,risk score,2.239868247,2.239963919,2.239933273,2.239786644,2.239557518,2.23926698,2.238944591,2.238613673,2.238286168,2.237994772 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Risk score|Population weighted,risk score,2.969384286,2.968291433,2.967343862,2.966622747,2.966121794,2.965882307,2.96565142,2.965487557,2.965402282,2.965357946 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Risk score|Population weighted,risk score,0.312732795,0.311700468,0.311062265,0.310681018,0.310519271,0.310470593,0.310491571,0.310577606,0.310711304,0.31088243 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Risk score|Population weighted,risk score,0.145833178,0.140939084,0.13764587,0.135309644,0.133743648,0.133167899,0.133887553,0.135932229,0.138577632,0.141274921 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Risk score|Population weighted,risk score,2.08475814,2.084886988,2.085072258,2.085305218,2.085534841,2.085780072,2.086073695,2.08640468,2.086697587,2.086953655 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Risk score|Population weighted,risk score,0.341166196,0.341392785,0.341612793,0.341811025,0.341994694,0.342150949,0.342284427,0.342394455,0.34249316,0.342573882 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Risk score|Population weighted,risk score,0.760063826,0.760016437,0.760010069,0.760020684,0.760022706,0.76004906,0.760126902,0.760233575,0.760344051,0.760462505 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Risk score|Population weighted,risk score,2.67620191,2.676137534,2.675723597,2.675565757,2.675205447,2.674911589,2.674634882,2.674245843,2.673856358,2.673470497 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Risk score|Population weighted,risk score,2.116449535,2.11690675,2.117295295,2.117482246,2.117636151,2.117743341,2.117811351,2.117808306,2.117780069,2.117738754 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Risk score|Population weighted,risk score,1.994966378,2.009767765,2.024493114,2.038775027,2.052408103,2.06497606,2.075708451,2.084998596,2.092970287,2.099784047 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Risk score|Population weighted,risk score,1.532887492,1.532735073,1.533376279,1.534235227,1.535236316,1.53657276,1.537894195,1.539193608,1.540376752,1.54120513 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Risk score|Population weighted,risk score,0.370750696,0.370971757,0.371057315,0.371142294,0.371142294,0.371143447,0.371142411,0.371142518,0.371140569,0.37114139 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Risk score|Population weighted,risk score,0.491116999,0.492657555,0.493834141,0.494744887,0.495504614,0.496121023,0.49665843,0.49712258,0.497518081,0.49787042 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Risk score|Population weighted,risk score,1.392974798,1.395347864,1.397015791,1.398175096,1.398892041,1.399285006,1.399521593,1.399617544,1.399648004,1.399601875 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Risk score|Population weighted,risk score,1.920104133,1.922251766,1.923766577,1.924942585,1.925913605,1.926636153,1.927197499,1.927633148,1.927939222,1.928145821 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Risk score|Population weighted,risk score,2.843810008,2.845887292,2.846248879,2.848432973,2.848270764,2.850775124,2.850510808,2.852038659,2.853201345,2.854016056 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Risk score|Population weighted,risk score,0.840555822,0.840941699,0.841290151,0.841579783,0.84181805,0.84201872,0.842184562,0.842326931,0.842445012,0.842548995 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Risk score|Population weighted,risk score,1.713335977,1.71834861,1.723609137,1.728717232,1.733759545,1.738129486,1.742156874,1.74585743,1.749373336,1.752676662 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Risk score|Population weighted,risk score,0.61352494,0.614017307,0.614281603,0.61442449,0.614523192,0.614582239,0.614679842,0.614755502,0.614806843,0.614881933 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Risk score|Population weighted,risk score,1.728900068,1.7306811,1.731794185,1.732290085,1.732428213,1.73232301,1.731981729,1.731478004,1.730845577,1.73013781 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Risk score|Population weighted,risk score,1.187980384,1.188814444,1.189628751,1.190367068,1.191038945,1.19157155,1.191996773,1.192338528,1.192619802,1.19284662 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Risk score|Population weighted,risk score,0.987900288,0.992988384,0.997911917,1.002292058,1.006024765,1.009157189,1.011700046,1.013749262,1.01541915,1.01677542 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Risk score|Population weighted,risk score,0.486631498,0.486632389,0.486632884,0.486633127,0.486633537,0.48663356,0.486633578,0.486633578,0.486633778,0.486633527 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Risk score|Population weighted,risk score,0.572774185,0.572006072,0.57122393,0.570442951,0.569664952,0.568862204,0.56805343,0.56728294,0.566621911,0.56609923 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Risk score|Population weighted,risk score,0.587353175,0.587974751,0.588538841,0.589031211,0.589458645,0.589838976,0.590204518,0.590528052,0.590811899,0.591062479 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Risk score|Population weighted,risk score,2.722923478,2.723207751,2.723408233,2.723564427,2.723681491,2.723767926,2.723826112,2.723860091,2.723877185,2.723887607 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Risk score|Population weighted,risk score,0.359791982,0.360288721,0.361091305,0.362132456,0.363397721,0.364815734,0.366070733,0.367153004,0.368078323,0.368832165 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Risk score|Population weighted,risk score,0.424229685,0.424287028,0.424342365,0.424384529,0.424421885,0.424459822,0.424486865,0.424514824,0.424537566,0.424552458 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Risk score|Population weighted,risk score,2.492529169,2.493495121,2.493633523,2.493656996,2.493938353,2.492911984,2.492382736,2.49190636,2.491868108,2.491247138 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Risk score|Population weighted,risk score,0.893138975,0.894666212,0.896566486,0.898640738,0.900854977,0.903121364,0.905385911,0.907323069,0.908980875,0.910416941 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Risk score|Population weighted,risk score,1.676414848,1.677839109,1.679111712,1.680420648,1.681260188,1.681862064,1.682283129,1.682896978,1.683445634,1.683860114 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Risk score|Population weighted,risk score,0.849958276,0.852354952,0.854605748,0.856789318,0.858810992,0.86052865,0.862039388,0.863417015,0.86467683,0.86577318 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Risk score|Population weighted,risk score,0.485084874,0.485033739,0.485024742,0.48498993,0.484956276,0.484905542,0.484884914,0.484869955,0.484861813,0.484877049 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Risk score|Population weighted,risk score,1.198179116,1.198743597,1.20010388,1.202008778,1.204353596,1.206999435,1.209769062,1.212529775,1.214974054,1.217131176 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Risk score|Population weighted,risk score,2.614572203,2.614808708,2.614973951,2.615138125,2.615238672,2.615574934,2.615610527,2.615807905,2.615939312,2.615917253 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Risk score|Population weighted,risk score,0.552437556,0.551338392,0.550342736,0.549331542,0.548395068,0.547548332,0.54667207,0.545988165,0.545366021,0.544817418 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Risk score|Population weighted,risk score,0.773276879,0.773270633,0.773219536,0.773199746,0.77319787,0.773193286,0.77322473,0.773288828,0.773359279,0.773423215 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Risk score|Population weighted,risk score,0.637847417,0.635516428,0.633453375,0.631789443,0.630528415,0.62958721,0.628939038,0.628553651,0.628293655,0.628070747 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Risk score|Population weighted,risk score,0.632661875,0.634126787,0.635406262,0.636511928,0.637385582,0.638107299,0.638710513,0.639205513,0.639599639,0.639902198 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Risk score|Population weighted,risk score,2.333507589,2.332471513,2.331632404,2.33107277,2.330759725,2.330591851,2.330427286,2.330325172,2.330196837,2.330058537 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Risk score|Population weighted,risk score,1.46509097,1.466207582,1.467232704,1.468107114,1.468881661,1.469614208,1.470315235,1.470953136,1.471502642,1.471984566 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Risk score|Population weighted,risk score,1.621191171,1.62328153,1.625333987,1.62736406,1.629299307,1.631139071,1.632874109,1.634519345,1.635898282,1.637024229 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Risk score|Population weighted,risk score,0.401534124,0.401766922,0.402011652,0.40224436,0.402471055,0.402691697,0.40287766,0.403025242,0.403144043,0.403238782 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Risk score|Population weighted,risk score,0.314979056,0.315205865,0.315475488,0.315774426,0.316090089,0.316401918,0.316684326,0.316935876,0.317155361,0.317324628 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Risk score|Population weighted,risk score,0.372689571,0.372375281,0.372132944,0.37187928,0.371631162,0.371403554,0.371213748,0.371065044,0.370951382,0.370869669 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Risk score|Population weighted,risk score,0.410223949,0.410840925,0.411392383,0.411903695,0.41240711,0.412877322,0.413291552,0.413659687,0.414001678,0.414350776 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Risk score|Population weighted,risk score,1.413714187,1.416152857,1.418311854,1.420277643,1.421980315,1.423334981,1.424465002,1.42545895,1.426372642,1.427190689 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Risk score|Population weighted,risk score,0.628642738,0.631456408,0.633198498,0.634233922,0.634804192,0.635052819,0.635113031,0.63505746,0.634918862,0.634730354 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Risk score|Population weighted,risk score,1.167465878,1.169382067,1.171192262,1.171504778,1.172142316,1.172162714,1.171643632,1.171320344,1.17113851,1.171186561 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Risk score|Population weighted,risk score,0.595274233,0.594394033,0.593596438,0.59284774,0.592154855,0.591541664,0.591009112,0.590545048,0.590137963,0.589782282 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Risk score|Population weighted,risk score,2.834211574,2.834449116,2.834750209,2.83497509,2.83522104,2.8354125,2.835570572,2.835716765,2.835809307,2.835896179 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Risk score|Population weighted,risk score,1.052777055,1.050803261,1.04920185,1.047579203,1.045821909,1.043999247,1.042548457,1.041351809,1.040378912,1.039519651 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Risk score|Population weighted,risk score,2.707589143,2.708309999,2.708410236,2.708449388,2.708430207,2.708342518,2.708141404,2.707836272,2.707492146,2.707089565 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Risk score|Population weighted,risk score,0.902015524,0.90382457,0.905323895,0.906521719,0.907461931,0.908168067,0.908711441,0.909129351,0.909472932,0.909771036 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Risk score|Population weighted,risk score,0.452464835,0.452159103,0.452368136,0.452938461,0.453523479,0.45393455,0.453253442,0.453762428,0.454177111,0.454282336 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Risk score|Population weighted,risk score,0.846647491,0.846825576,0.84669917,0.846373932,0.845910214,0.845356008,0.844741076,0.84408653,0.843499959,0.843034409 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Risk score|Population weighted,risk score,0.556267386,0.558833525,0.560848125,0.562548458,0.563949734,0.565025778,0.565660651,0.565860889,0.565781203,0.565518226 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Risk score|Population weighted,risk score,0.526408443,0.526925942,0.527386226,0.527790756,0.528137142,0.528444874,0.528727559,0.528979372,0.529214699,0.529435933 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Risk score|Population weighted,risk score,2.091004465,2.094230335,2.096926729,2.099202104,2.101023954,2.1022819,2.103199259,2.103845098,2.104265,2.104522578 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Risk score|Population weighted,risk score,0.891075716,0.89274796,0.893431449,0.893311148,0.892546327,0.891267105,0.889757974,0.888128109,0.886434292,0.884966934 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Risk score|Population weighted,risk score,0.410409997,0.410950321,0.41144948,0.411940005,0.412414623,0.41283505,0.41318903,0.413491852,0.413752075,0.413962214 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Risk score|Population weighted,risk score,0.842305991,0.842274701,0.841384783,0.840801532,0.840732214,0.84009943,0.839235258,0.838579605,0.838040114,0.837648908 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Risk score|Population weighted,risk score,2.199786694,2.201227901,2.202168316,2.202830498,2.20327734,2.203382629,2.203481461,2.203719423,2.203958207,2.204179763 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Risk score|Population weighted,risk score,1.867455767,1.868438432,1.868379823,1.869053953,1.869268054,1.869992722,1.870566558,1.871051209,1.870925273,1.871304748 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Risk score|Population weighted,risk score,1.826505978,1.824057042,1.821250792,1.818428093,1.815657521,1.813455175,1.811665837,1.810129558,1.8087261,1.807366898 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Risk score|Population weighted,risk score,2.320812861,2.322556255,2.323920523,2.324979894,2.325826468,2.326392188,2.326887415,2.327200142,2.327557991,2.32769712 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Risk score|Population weighted,risk score,0.382169468,0.382315467,0.382324943,0.382330658,0.382332994,0.382334652,0.382336746,0.382337966,0.382338155,0.382339421 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Risk score|Population weighted,risk score,0.530599792,0.530947134,0.531269382,0.531597326,0.531894738,0.532164552,0.532447293,0.532744737,0.533031124,0.53330473 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Risk score|Population weighted,risk score,1.771894764,1.771510925,1.770669565,1.769358772,1.767648634,1.765746514,1.763691001,1.761713481,1.759989725,1.758473081 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Risk score|Population weighted,risk score,0.693146054,0.694312826,0.69537384,0.696321511,0.6971848,0.698020651,0.698819394,0.699491772,0.700031493,0.700463139 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Risk score|Population weighted,risk score,2.49956592,2.500807399,2.501851613,2.502750861,2.503495467,2.504150867,2.504734655,2.505248671,2.505683769,2.506049658 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Risk score|Population weighted,risk score,1.868703762,1.868126587,1.867660912,1.867275138,1.866935938,1.866641528,1.866418375,1.866256249,1.866158447,1.866127193 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Risk score|Population weighted,risk score,0.572393067,0.572785018,0.572819533,0.572937946,0.573096331,0.573267263,0.57339081,0.573387835,0.573336825,0.573180924 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Risk score|Population weighted,risk score,1.163576001,1.163602176,1.163528109,1.163360152,1.163137156,1.162838023,1.162553886,1.162312256,1.16213335,1.162069802 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Risk score|Population weighted,risk score,0.589565374,0.58966724,0.589742635,0.589802336,0.589856419,0.589906517,0.589950754,0.589989656,0.590025104,0.590055734 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Risk score|Population weighted,risk score,0.439810992,0.439495126,0.439195642,0.438898076,0.438613708,0.438365178,0.438158003,0.437976816,0.437818578,0.437689794 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Risk score|Population weighted,risk score,0.625838604,0.62603399,0.626186337,0.626221184,0.626180749,0.626113854,0.626074885,0.6260155,0.625953256,0.625967395 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Risk score|Population weighted,risk score,2.111138195,2.111994379,2.112755679,2.113432217,2.114013157,2.114533475,2.114977547,2.115332904,2.115624201,2.115866368 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Risk score|Population weighted,risk score,0.566942224,0.566659063,0.566459169,0.566327658,0.566243666,0.566198545,0.566164618,0.5661217,0.566066622,0.566002744 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Risk score|Population weighted,risk score,1.864746231,1.867238315,1.867311985,1.866633661,1.867424657,1.867572859,1.867594862,1.86760883,1.867917454,1.866736658 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Risk score|Population weighted,risk score,2.755414077,2.755072212,2.755045039,2.755265038,2.755602862,2.756039936,2.756444099,2.756803715,2.757122968,2.757389558 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Risk score|Population weighted,risk score,0.596394026,0.60161929,0.606099024,0.60900239,0.611358421,0.61329024,0.614584136,0.615185939,0.615782421,0.616077117 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Risk score|Population weighted,risk score,0.37640843,0.376011325,0.375588438,0.375246889,0.374928042,0.374623145,0.37440789,0.374284091,0.374247487,0.374269699 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Risk score|Population weighted,risk score,0.55249581,0.553414288,0.554138405,0.554835706,0.55546411,0.555976669,0.556383103,0.556676622,0.556899256,0.557094644 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Risk score|Population weighted,risk score,0.802659253,0.799585047,0.796754867,0.794275999,0.792044207,0.790090293,0.788271032,0.786850359,0.785886652,0.785419714 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Risk score|Population weighted,risk score,2.631300862,2.630412505,2.62920625,2.628796572,2.628263878,2.627939153,2.627852253,2.627554474,2.627343064,2.627062106 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Risk score|Population weighted,risk score,0.406598427,0.406467313,0.406338761,0.406221588,0.406122839,0.40602994,0.405941844,0.405864714,0.405796061,0.405733898 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Risk score|Population weighted,risk score,0.496809156,0.496753729,0.496623864,0.496509976,0.496448361,0.496418434,0.496406555,0.496361614,0.496303164,0.496315344 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Risk score|Population weighted,risk score,0.597237776,0.596206144,0.595502731,0.595010752,0.59465999,0.594424846,0.594239916,0.594096872,0.593999002,0.593957138 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Risk score|Population weighted,risk score,2.247258256,2.247484504,2.24763523,2.247866263,2.248218094,2.248600523,2.249078632,2.249688574,2.250452919,2.251378662 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Risk score|Population weighted,risk score,2.019426919,2.021155445,2.022691878,2.023945957,2.025053667,2.025931421,2.026571893,2.027015423,2.027327865,2.027493061 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Risk score|Population weighted,risk score,1.825712397,1.825684427,1.825672629,1.825591911,1.825458078,1.825272058,1.82509919,1.824954766,1.824817575,1.824732222 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Risk score|Population weighted,risk score,2.139983206,2.140903679,2.141755952,2.142517432,2.143240512,2.143951452,2.144527722,2.14498749,2.145269006,2.145397629 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Risk score|Population weighted,risk score,0.968801944,0.970837285,0.971885487,0.972431534,0.972756711,0.972878336,0.972840734,0.972725356,0.972570831,0.972379524 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Risk score|Population weighted,risk score,1.254977268,1.254204924,1.253235205,1.252398548,1.251626462,1.250924807,1.25021004,1.249507571,1.248865895,1.248300271 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Risk score|Population weighted,risk score,0.715966075,0.719028197,0.721334937,0.722953659,0.724060526,0.724704765,0.724989143,0.724962016,0.724916361,0.724851037 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Risk score|Population weighted,risk score,0.426201808,0.430465598,0.431375693,0.431786756,0.432021591,0.432172912,0.432270765,0.432351773,0.43241191,0.43245941 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Risk score|Population weighted,risk score,1.42845611,1.429427906,1.429489123,1.429066119,1.428576777,1.428121551,1.427372745,1.426431981,1.425397751,1.424262361 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Risk score|Population weighted,risk score,0.638905598,0.649249513,0.657175551,0.662826375,0.667654299,0.670412674,0.673336771,0.67588955,0.678153745,0.680190011 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Risk score|Population weighted,risk score,1.692031595,1.694203359,1.696677534,1.699195816,1.701830412,1.704597095,1.70712532,1.709345349,1.711284308,1.713052368 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Risk score|Population weighted,risk score,0.8918047,0.89167738,0.891553692,0.891432095,0.89131385,0.891205418,0.89111637,0.891042627,0.890981046,0.890929222 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Risk score|Population weighted,risk score,2.969639733,2.969506712,2.969431388,2.969373283,2.969323172,2.969284424,2.969251209,2.969213545,2.969179098,2.969149914 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Risk score|Population weighted,risk score,1.292166489,1.292669947,1.293109266,1.293246047,1.293203723,1.293227308,1.293291882,1.293368574,1.293466104,1.293594772 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Risk score|Population weighted,risk score,0.850680949,0.849915203,0.849038401,0.848190696,0.847313524,0.84640104,0.845536737,0.844760172,0.844072225,0.843457547 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Risk score|Population weighted,risk score,2.140913714,2.140534416,2.140239207,2.139917934,2.139636177,2.139401104,2.139187966,2.138995541,2.138861179,2.138787568 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Risk score|Population weighted,risk score,2.849955095,2.849309014,2.848909416,2.848740316,2.848700897,2.848754864,2.848880259,2.849057945,2.849245935,2.849477682 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Risk score|Population weighted,risk score,2.109182047,2.111771387,2.113700254,2.115129143,2.116166799,2.117258669,2.118364234,2.119441853,2.12045222,2.121357059 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Risk score|Population weighted,risk score,1.799055715,1.799594152,1.799851368,1.800001636,1.800096257,1.800158311,1.800200698,1.800230655,1.800251655,1.800267052 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Risk score|Population weighted,risk score,0.843799376,0.848198429,0.851849829,0.85475368,0.85699241,0.858704388,0.860003863,0.861020352,0.861828083,0.862511788 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Risk score|Population weighted,risk score,0.479490687,0.478561131,0.477691987,0.476835157,0.475955891,0.475126592,0.474380384,0.473773203,0.473235357,0.472890526 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Risk score|Population weighted,risk score,1.351753882,1.355432852,1.35808196,1.359945135,1.361161861,1.361836063,1.362030527,1.362056488,1.362053272,1.362018151 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Risk score|Population weighted,risk score,2.444768748,2.444830203,2.44456508,2.444162116,2.44368172,2.443176887,2.442712171,2.442311562,2.441981653,2.441718543 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Risk score|Population weighted,risk score,0.343059902,0.34251247,0.342438618,0.342408405,0.342455578,0.342522484,0.342590857,0.342558263,0.342637276,0.34263713 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Risk score|Population weighted,risk score,2.653820778,2.650671086,2.648442983,2.646948909,2.645930274,2.645378671,2.645093932,2.645024157,2.645137971,2.645337655 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Risk score|Population weighted,risk score,2.869659055,2.870220613,2.87062777,2.870937702,2.8711693,2.871375453,2.871563648,2.87173664,2.871901121,2.872035752 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Risk score|Population weighted,risk score,0.24976562,0.24998342,0.250288887,0.250633763,0.251079931,0.251762534,0.252457629,0.253312604,0.254059715,0.254844362 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Risk score|Population weighted,risk score,1.849993411,1.854019434,1.857020157,1.859170042,1.860585176,1.86140965,1.86184183,1.862019142,1.862027234,1.861900963 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Risk score|Population weighted,risk score,0.52964348,0.529646205,0.529651843,0.529659406,0.52966926,0.529680238,0.529691326,0.529701969,0.529711408,0.529719696 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Risk score|Population weighted,risk score,2.281871415,2.281947238,2.282497046,2.283499113,2.284732657,2.286122156,2.287495169,2.288875046,2.290341627,2.291868107 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Risk score|Population weighted,risk score,0.422324925,0.422441781,0.422558251,0.42267348,0.42278342,0.422894546,0.423000906,0.423096336,0.423183531,0.423262662 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Risk score|Population weighted,risk score,0.412707169,0.413066747,0.413351168,0.413597616,0.413793296,0.413989709,0.414163969,0.414321106,0.414458704,0.41457528 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Risk score|Population weighted,risk score,0.371965595,0.372779827,0.373282825,0.373628624,0.373867954,0.373968553,0.373889508,0.373634427,0.373309754,0.372983812 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Risk score|Population weighted,risk score,1.0525655,1.052824546,1.053193211,1.052545188,1.052096603,1.051127837,1.050054504,1.049470375,1.048803715,1.048906972 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Risk score|Population weighted,risk score,0.812705325,0.812852679,0.813144486,0.813550759,0.814016647,0.814497676,0.814978958,0.815454138,0.815911002,0.816344596 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Risk score|Population weighted,risk score,2.088615604,2.087647679,2.087201379,2.086499668,2.085928559,2.085485488,2.085015922,2.084611345,2.084286372,2.084030892 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Risk score|Population weighted,risk score,0.603505087,0.603902526,0.604214446,0.604449013,0.604678798,0.604866708,0.605020557,0.605131341,0.605193445,0.605259009 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Risk score|Population weighted,risk score,0.735532042,0.735156733,0.734769851,0.734457581,0.734213903,0.733973031,0.733739174,0.733552933,0.733398957,0.733275046 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Risk score|Population weighted,risk score,0.758282372,0.758348137,0.758372311,0.758357585,0.758310749,0.75825496,0.758197554,0.758138939,0.758085929,0.758050834 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Risk score|Population weighted,risk score,0.909058722,0.909262735,0.909452105,0.909612396,0.909920372,0.910154084,0.910403334,0.910683938,0.911013795,0.911164061 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Risk score|Population weighted,risk score,0.404250642,0.404363546,0.404461652,0.404545046,0.40461895,0.404684642,0.40474385,0.404799946,0.404851492,0.404900584 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Risk score|Population weighted,risk score,0.498839872,0.501176427,0.503734493,0.50619775,0.508390854,0.510333926,0.512049852,0.513560968,0.514888553,0.516053952 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Risk score|Population weighted,risk score,2.239991256,2.24177942,2.243358374,2.244707368,2.24586967,2.246916037,2.247799612,2.248536666,2.249136743,2.249633598 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Risk score|Population weighted,risk score,1.12414436,1.119126908,1.114874636,1.111427639,1.108566764,1.106165873,1.10430416,1.102894604,1.101854124,1.101114416 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Risk score|Population weighted,risk score,2.288018587,2.289152338,2.290215326,2.291193613,2.292079069,2.292899868,2.293740408,2.294656047,2.295692875,2.296764152 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Risk score|Population weighted,risk score,1.908798138,1.910027149,1.911153149,1.912174229,1.913053379,1.913777017,1.914359782,1.914861788,1.91527353,1.915636664 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Risk score|Population weighted,risk score,2.946427449,2.94610053,2.9462138,2.946532659,2.94696037,2.94748955,2.948057788,2.948647089,2.949172244,2.949680688 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Risk score|Population weighted,risk score,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596,0.328937596 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Risk score|Population weighted,risk score,0.60744696,0.607488417,0.607524921,0.607575737,0.607642322,0.607703104,0.607750618,0.607792744,0.607821886,0.607840614 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Risk score|Population weighted,risk score,2.512909384,2.512682246,2.512717997,2.512923893,2.512913243,2.512809654,2.513308172,2.51345539,2.513496068,2.513427248 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Risk score|Population weighted,risk score,0.56602896,0.565796695,0.565620692,0.565478478,0.565365266,0.565272157,0.565194174,0.565128013,0.565069594,0.565019141 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Risk score|Population weighted,risk score,2.843044826,2.842891378,2.842809279,2.842760336,2.842734721,2.842723935,2.842726258,2.842740427,2.842761351,2.842785785 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Risk score|Population weighted,risk score,1.274909605,1.280601098,1.285587836,1.289752416,1.293368791,1.296626298,1.29961791,1.302281858,1.304662226,1.306782756 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Risk score|Population weighted,risk score,0.891746046,0.891639806,0.891535348,0.891402671,0.891241386,0.891059122,0.8908652,0.890668382,0.890473036,0.890282858 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Risk score|Population weighted,risk score,0.722243902,0.722982625,0.723542118,0.724361445,0.724904418,0.725500116,0.726104458,0.726353568,0.726855829,0.727107201 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Risk score|Population weighted,risk score,0.408355408,0.408841979,0.409089785,0.409237175,0.409267125,0.409243703,0.409202498,0.409139303,0.409057773,0.408970425 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Risk score|Population weighted,risk score,0.169754013,0.169969859,0.170164764,0.170314187,0.170421977,0.170496901,0.170556359,0.170603408,0.170654336,0.170712424 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Risk score|Population weighted,risk score,0.434998933,0.43375743,0.433299062,0.433020459,0.432933918,0.43292804,0.432920887,0.432917776,0.432915228,0.432913125 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Risk score|Population weighted,risk score,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527,1.03504527 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Risk score|Population weighted,risk score,0.448158786,0.448084303,0.448043191,0.447974674,0.447961037,0.447946278,0.447928903,0.447902238,0.447860292,0.447839102 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Population,people,8009.359825,9432.354347,9778.284776,9996.709858,10068.98362,10035.53954,9875.781613,9572.866836,9201.422979,8753.426824 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Population,people,4886.059932,5453.562202,5866.299939,6247.16059,6499.259555,6613.374979,6530.538813,6242.502305,5988.03672,5665.050995 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Population,people,5916218.124,7612107.532,8810416.412,9804887.47,10625767.69,11158473.21,11429644.18,11613008.08,11749910.24,11770280.99 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Population,people,17390.90987,31505.17842,38683.09327,45358.19885,51178.12031,55926.93608,59428.93688,61918.86892,63239.49956,63541.42158 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Population,people,151440.9933,313477.4733,366428.9104,408787.8055,443329.1864,462322.6743,461308.0699,450010.1858,441011.5944,433459.9528 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Population,people,163805.0501,214016.2274,262461.0764,309208.4965,348133.3164,381473.2954,403896.5257,414823.6093,416209.823,408920.4639 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Population,people,15240,19471.87996,23205.19974,26552.89038,29584.02261,31702.63141,33190.23597,33849.57941,34020.12283,33417.23695 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Population,people,1705276.846,2934760.373,3439955.237,3905572.678,4260390.46,4457769.097,4527977.704,4554411.136,4661968.644,4853739.214 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Population,people,41409,52421.23831,71577.13624,92994.02719,114108.1937,133250.0835,148950.6139,160192.4677,166689.9653,168237.5434 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Population,people,1434652.891,2028587.742,2436258.789,2803625.907,3122848.191,3381801.337,3561309.075,3666213.792,3697492.726,3664107.598 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Population,people,86060.38052,106451.3999,122116.7138,135578.5725,146284.5218,153761.5012,158128.6807,159099.3892,157230.1851,153170.9302 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Population,people,1368784.98,2134471.56,2370210.563,2552583.262,2676039.868,2731244.07,2724748.361,2667593.378,2571871.24,2449871.026 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Population,people,73431.01022,126522.3099,158513.7845,192535.8294,222689.7214,254762.9681,278464.4305,303328.448,325435.5916,343442.1163 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Population,people,198596,213194.5543,207899.4297,198871.6555,180630.5539,165208.2257,145714.3088,131027.4926,114977.4698,104600.5422 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Population,people,540540.9898,688319.036,763171.0645,821571.7917,869746.2789,877887.2598,870861.2036,857481.5612,843088.0007,814101.4495 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Population,people,894194.0312,1172084.426,1501100.026,1831710.139,2116038.729,2371039.503,2543794.799,2667528.384,2715435.956,2685966.233 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Population,people,21866.38011,32593.04915,37301.7114,41793.82699,45839.05705,49200.8522,51938.37529,53122.67669,53260.30074,52482.87732 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Population,people,870844.6649,1265460.639,1755625.405,2350754.669,3037092.501,3750332.741,4431446.041,5047760.656,5541987.166,5911198.831 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Population,people,899958.3741,1294363.731,1426361.451,1533120.478,1608189.397,1653205.666,1642544.058,1604449.738,1538486.677,1474892.713 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Population,people,1259990.572,1517000.414,1582328.371,1609302.528,1602682.275,1567405.104,1517647.968,1457555.289,1389730.188,1320737.322 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Population,people,2730.699953,3643.169234,3914.864377,4073.959513,4132.78469,4058.621821,3914.153229,3693.623158,3505.410676,3207.065253 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Population,people,795300.6891,1131461.699,1415352.452,1721243.94,1984015.698,2215434.483,2412464.228,2533135.45,2602222.334,2608778.049 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Population,people,1766.239961,2465.479921,2654.35673,2755.636944,2833.006525,2832.378483,2803.714316,2685.664654,2601.10299,2487.408152 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Population,people,141219.3621,322632.9218,379418.3014,433027.3251,481045.3436,516357.3199,537018.071,546429.1669,556590.3218,577288.8179 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Population,people,11750919.57,14505812.83,17359412.4,20075852.77,22422847.17,24244625.51,25464406.78,26001982.14,25892177.19,25297243.13 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Population,people,8340.000331,13858.71661,15957.11502,18266.44552,20738.98021,23197.5303,25622.24363,27921.83506,30061.91924,32013.36592 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Population,people,107741,154564.7872,204837.9719,258803.7256,311399.9693,357526.1904,395589.3434,423989.4719,441568.1518,448254.0668 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Population,people,630123.2626,1077176.105,1351175.159,1619384.052,1867366.712,2074706.379,2235077.264,2348582.038,2409080.51,2412799.34 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Population,people,40939125.72,54093177.14,61916126.28,69341502.49,75846619.7,80883203.17,84617510.07,86905777.13,87787217.24,87203330.31 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Population|Low,people,345605.8397,444884.9537,474107.6192,496918.6952,518648.2457,540941.5903,566539.1491,593525.7634,618991.1686,645550.6338 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Population|Low,people,6157658.982,6049265.617,6750645.211,7235840.519,7604642.655,7763655.206,7754474.586,7641996.766,7440820.568,7148146.84 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Population|Low,people,14763097.04,16809898.18,18951998.01,20670697.91,21928297.86,22591397.91,22711098,22338698.17,21662198.29,20764998.47 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Population|Low,people,80667605.05,110000348.4,136157481.2,159908910.6,179443644,193652413.2,201409126.2,202173960.4,196656961.8,186201051 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Population|Low,people,1242002.501,1430600,1612200,1753800,1852700,1898300,1892800,1845600,1769300,1670900 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Population|Low,people,3191404.461,5240500,6332600,7281500,8057700,8614300,8929900,9003800,8843200,8483400 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Population|Low,people,13142687.67,15835659.96,16943547.15,17889088.14,18627148.45,19105821.66,19304016.31,19261338.18,19055323.76,18714083.51 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Population|Low,people,9201032.789,10706529.2,12063846.49,13211886.43,14080697.9,14629861.83,14851534.42,14771419.47,14441578.9,13927493.08 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Population|Low,people,113.7499981,1481.062457,1466.808577,1509.011251,1499.535592,1544.958785,1472.88967,1474.238345,1477.98442,1452.236302 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Population|Low,people,16519559.58,20833900,26597000,32575600,38254900,43231100,47311700,50283000,52074500,52672000 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Population|Low,people,8735865.581,11793187.92,14208784.53,16554095.13,18679163.18,20404315.51,21738429.79,22675867.12,23154212.28,23207474.84 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Population|Low,people,27159016.37,34666568.03,40089184.78,44630059.27,48407878.33,50892671.18,52249122.35,53239586.01,54004254.78,54233250.21 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Population|Low,people,75453.69085,560592.464,609192.4019,639592.4987,651492.8178,646293.1761,623893.5989,585894.2352,538294.81,487795.3859 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Population|Low,people,9168679.585,11685905.42,13661725.2,15389541.56,16796295.78,17828708.3,18404752.47,18508359.07,18185753.45,17536291.69 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Population|Low,people,9361680.805,13637600,16640400,19396100,21735500,23533600,24700000,25213500,25117700,24493000 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Population|Low,people,5716453.642,10368700,12769400,15039600,17107500,18883300,20326200,21411900,22120500,22468300 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Population|Low,people,7235689.224,5391650.818,6608146.465,7778639.627,8774712.889,9567454.173,10166991.25,10534682.54,10632968.77,10478573.74 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Population|Low,people,29141130.86,37679406.64,37983663.82,38367171.08,38647335.07,38384623.8,37902811.25,37895714.97,38703907.88,39786224.57 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Population|Low,people,3666601.342,5088910.517,6274521.121,7397179.393,8353351.251,9094956.097,9614151.772,9889988.776,9914395.398,9720381.199 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Population|Low,people,169342.4872,310772.0375,313185.6396,304874.9533,289159.753,267459.0236,240280.547,210013.1614,179342.955,151053.7349 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Population|Low,people,2350816.679,4637269.137,5340544.253,5889827.686,6377214.326,6642811.027,6651017.427,6543627.078,6468433.816,6439037.182 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Population|Low,people,33104221.38,50049412.63,64847993.28,80381050.11,95198793.79,108278589.5,119201941,127507863.6,132879678.8,135245825.2 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Population|Low,people,270015.1283,251216.7457,233540.532,209558.4719,182837.7413,156077.2047,130892.3616,107990.6327,87929.85208,71061.01267 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Population|Low,people,504201.3788,930352.2101,1092892.698,1237336.457,1360561.86,1452271.47,1508406.263,1536024.402,1537458.402,1513101.193 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Population|Low,people,22800284.4,30565173.02,38231449.01,45877724.74,53036201.74,59129081.22,63761664.97,66945653.24,68679946.09,69054543.31 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Population|Low,people,165203828.4,206890750.3,243148448.5,275860563.1,304505554.7,325957397.9,340453057.1,347972694.6,349115084.7,344811997.5 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Population|Low,people,5942006.976,10083260.42,11789108.94,13386762.65,14625828.54,15340711.39,15636806.81,15785106.33,16205696.66,16914777.89 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Population|Low,people,1171645370,1382139403,1506355395,1594131062,1642217295,1656722301,1639655828,1596893308,1535521168,1462178154 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Population|Low,people,5515938.13,8261117.784,8646662.007,8818571.817,8771517.555,8541902.776,8222236.497,7830733.652,7445191.667,7103844.037 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Population|Low,people,10720155.84,15368909.29,19006781.35,22526381.76,25723955.54,28484882.24,30734829.19,32374757.6,33368540.66,33724868 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Population|Low,people,2120633.85,2298900,2487400,2609900,2677300,2678000,2612400,2494700,2342500,2167600 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Population|Low,people,8201.790326,105383.403,97759.07987,87539.25598,75515.09185,63173.7226,51509.5893,41022.72742,32212.47753,24982.73989 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Population|Low,people,9955741.909,13608896.04,16945718.07,20262680.42,23206987.96,25588974.04,27369455.44,28490470.01,28943246.71,28761917.32 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Population|Low,people,8767827.623,11495651.29,11567179.5,11308032.98,10699891.12,9922229.032,9124414.776,8371484.616,7729672.998,7218954.197 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Population|Low,people,6886357.372,9384107.116,10804273.71,11959921.75,12862911.45,13364849.69,13555327.27,13430121.35,13004180.58,12350711.76 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Population|Low,people,52359941.56,66705977.91,72123140.33,75896931.07,77760027.69,77903752.17,76803532.81,74805017.08,72233265.07,69342457.98 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Population|Low,people,32075542.11,38687974.93,50955076.61,64218807.06,77007187.79,88609124.78,97842961.44,104190198.4,107627482.2,108005806.3 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Population|Low,people,138761477,171046867.5,187828736.8,198757032.6,203855650.1,203158384.7,197492430.5,188393580.7,177011531.7,164603980 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Population|Low,people,3304258.005,4702200,5683800,6572000,7341200,7950900,8379800,8631800,8704700,8622900 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Population|Low,people,160.4099964,1412.13097,1355.769977,1273.6603,1172.345849,1066.47954,965.5815604,874.7960245,792.2275088,721.7610199 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Population|Low,people,606515.7237,1205001.029,1286095.433,1343493.475,1394592.275,1436091.983,1458293.667,1466196.395,1466499.699,1473201.633 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Population|Low,people,400.439991,3254.079649,3580.646078,3833.486783,4014.249509,4135.744558,4214.244836,4253.819805,4262.734629,4253.110348 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Population|Low,people,7835519.127,8708043.659,9052696.468,9406089.17,9698553.045,9971404.367,10276741.08,10620315.3,10965752.01,11297564.81 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Population|Low,people,2108541.638,2686599.155,3139799.119,3507199.091,3797899.067,3993299.199,4084499.194,4081899.194,4001099.294,3855499.448 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Population|Low,people,8620890.257,16144227.96,20864209.36,25630291.04,30032274.63,33761661.49,36639152.03,38496246.79,39298845.45,39157847.76 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Population|Low,people,18034707.03,27602753.12,30175600.02,32089177.82,33309483.23,33745912.76,33455068.82,32582007.96,31273929.77,29682823.34 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Population|Low,people,6172128.06,6448573.859,7207473.63,7770289.765,8123644.043,8248862.054,8155505.546,7888666.732,7500240.145,7033822.925 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Population|Low,people,15968884.75,23618431.33,28532874.89,32909119.12,36654125.59,39700620.69,41900655.13,43199850.26,43622521.63,43356727.64 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Population|Low,people,7306580.371,12021500,14929600,17731400,20192300,22210600,23754600,24726500,25101600,24972900 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Population|Low,people,357858.7824,597196.4436,737395.6716,870095.0417,993994.4697,1103293.769,1194893.374,1273593.218,1342192.835,1398592.515 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Population|Low,people,1115317.696,1599128.155,1548098.529,1457214.369,1332833.919,1180247.499,1023419.862,887763.4561,767963.0818,660655.0039 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Population|Low,people,16446071.36,21775784.07,26261101.65,30257576.3,33605209.02,36108987.16,37713989.18,38415337.73,38208928.9,37271689.3 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Population|Low,people,51.41999885,49.71142949,50.32661409,50.18765017,49.62463699,48.85252098,48.15282642,47.27072408,46.31570448,45.46269155 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Population|Low,people,5153074.179,7889725.2,9449989.393,10857373.96,12000279.88,12845503.1,13399248.92,13646311.22,13598703.56,13329038.62 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Population|Low,people,843414762.6,924833807.3,929974120.4,903243405.9,858138630.4,794783836.2,724065461.2,656246941.1,593963210.4,539546487.9 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Population|Low,people,1217849.644,1186427.674,1149022.222,1094516.26,1034529.525,963729.4072,892679.6403,825344.1069,767632.4879,725253.9757 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Population|Low,people,3771.479911,4943.101392,5297.548525,5530.317897,5636.701256,5624.161394,5506.841807,5294.346795,5019.736244,4698.117857 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Population|Low,people,102619.7692,105457.3833,102703.9913,99629.79051,97267.42115,94878.88162,92564.45521,90987.35398,90927.43703,91425.98739 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Population|Low,people,181070.7562,1505200,1740100,1949100,2121900,2231100,2285200,2314000,2354000,2405200 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Population|Low,people,5301566.711,6664496.09,7346196.16,7857396.298,8243696.456,8417296.636,8385696.849,8264497.035,8095297.206,7849697.38 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Population|Low,people,62716236.29,90547726.01,97746280.48,102257916.7,104072158.2,103619842.9,101576715.9,98261530.93,93934794.56,88900163.05 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Population|Low,people,3845584.063,4771872.108,5546887.883,6189899.235,6649841.121,6939197.025,7037404.584,6928550.148,6642891.107,6250493.248 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Population|Low,people,62560085.7,74609408.46,80269948.96,85396874.32,89964790.22,94671757.27,99751781.49,104711571.2,109273895.6,113792574.1 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Population|Low,people,43887691.65,56271973.1,59778589.54,61221037.35,61341957.83,59933969.67,57207537.31,53770642.92,50012467.3,46331967.76 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Population|Low,people,15456508.53,20121000,25746000,31415600,36468400,40637500,43830400,45851200,46638400,46342900 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Population|Low,people,4525912.871,4529234.568,4364308.238,4170057.17,4038787.5,3929456.768,3805541.552,3741882.789,3731616.183,3739179.542 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Population|Low,people,36134.9209,32057.74055,28753.60732,25508.82257,22517.17016,19579.58274,16871.99104,14743.6935,13161.43939,11885.39533 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Population|Low,people,90301.3572,267816.646,263046.9313,252378.2241,236230.148,219469.367,202902.4232,186349.1847,170733.9054,156624.7438 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Population|Low,people,18517855.39,32364269.65,41592466.64,50755963.98,59105861.9,66183960.29,71761559.2,75536658.87,77283459.35,77204360.45 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Population|Low,people,6837372.575,8969728.916,8549784.5,8143485.295,7707107.582,7253964.042,6848620.767,6567922.84,6431597.218,6361809.844 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Population|Low,people,36953730.95,46147970.27,50496925.19,53751277.05,55920973.55,56878142.16,56823397.8,56012972.44,54672243.22,52987831.26 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Population|Low,people,17472061.52,24742231.16,30467930.43,35683871.24,40108073.74,43575725.33,45992922.95,47218066.15,47229187.04,46275560.64 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Population|Low,people,2259895.602,3365217.688,4577490.85,5942779.292,7352714.535,8694640.213,9873694.455,10836434.65,11542668.43,11968560.23 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Population|Low,people,4151000.705,3772994.743,4169673.886,4444059.673,4630152.75,4695249.255,4653635.859,4527415.922,4341910.451,4098689.273 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Population|Low,people,16040965.25,23836100,33344200,45169200,58617100,72551800,85861400,97693900,107383800,114481000 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Population|Low,people,77478863.06,93334771.08,98056980.31,99997279.98,99445516.81,96693854.52,92532597.46,87509265.09,82215232.15,77081863.16 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Population|Low,people,1635506.743,4319300,4921000,5409400,5785300,5972400,6056100,6178100,6347200,6477100 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Population|Low,people,720948.5613,1123314.65,1262192.089,1377260.627,1463357.745,1516945.755,1542495.052,1545233.374,1530075.352,1498029.517 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Population|Low,people,6131.046772,7527.294295,7103.30339,6602.336256,5914.44858,5205.683833,4200.691254,3560.58848,2824.750526,2160.262302 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Population|Low,people,363530.3011,429797.1279,460946.8585,477800.0962,482012.4825,474990.8065,459125.14,437555.6189,415041.8642,394242.8391 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Population|Low,people,153767476.1,205280595,258209652.4,318895100.5,382437039.2,442963554.3,497024079.8,542408774.7,577708368.3,603273308.8 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Population|Low,people,4640462.998,5892016.799,6605060.193,7177922.78,7592651.803,7847004.726,7952959.566,7921607.996,7778568.226,7540486.986 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Population|Low,people,5424270.151,7791424.702,8604775.815,9358810.817,10110611.6,10846807.95,11555404.49,12239260.28,12888527.98,13533482.89 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Population|Low,people,69738252.5,81756703.89,88323843.16,92547845.58,95146151.32,94842452.8,92082534.66,87879788.09,83483563.96,79982212.57 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Population|Low,people,30516119.68,43058700,47686800,50930400,53615900,54843500,54433800,53256900,51705800,49630900 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Population|Low,people,5492666.963,6491188.477,6699589.456,6715690.654,6572391.867,6278693.063,5851394.187,5321295.201,4726996.11,4122296.876 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Population|Low,people,15084018.67,18239760.15,19130336.99,19576501.84,19597566.23,19283745.79,18750314.08,18067574.21,17268785.92,16447429.36 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Population|Low,people,59442138.49,64268732.44,64894723.47,63643717.09,60705287.33,56997341.87,53453573.58,50389344.29,47639532.44,45258162.87 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Population|Low,people,31254386.94,41091900,50811500,60320100,68980000,76290900,82243000,86684900,89471000,90569700 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Population|Low,people,4782432.692,8047800,9621700,11018200,12108100,12862300,13271700,13334400,13096900,12628600 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Population|Low,people,16310.60024,15602.6792,15141.27958,14508.7341,13711.98714,12700.30352,11649.76344,10679.38998,9820.952991,9043.491562 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Population|Low,people,1846662.52,7486600,7874400,8108600,8283000,8488600,8689700,8905500,9202600,9584400 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Population|Low,people,27287140.32,36814850.26,39657349.09,41332750.98,42043654.89,41753160.66,40497368.48,38566177.55,36270386.94,33708996.57 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Population|Low,people,6714.109848,7649.640383,7123.279434,6662.065991,6272.82517,5948.980241,5674.960653,5461.055885,5305.895725,5195.721596 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Population|Low,people,2818522.173,3182408.628,3485996.985,3687720.48,3851122.605,3921887.911,3892958.376,3828898.082,3736760.793,3587812.065 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Population|Low,people,1169316.173,1967800,2312100,2610100,2845500,2985600,3037600,3008800,2898400,2729700 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Population|Low,people,20197.07032,29477.80755,33329.60992,36471.95148,38856.19562,40455.89601,41243.81541,41263.90245,40589.29656,39333.42351 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Population|Low,people,11219570.2,16176700,20805200,25419500,29638900,33273000,36169800,38212100,39372800,39728400 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Population|Low,people,3369814.76,6294600,7111300,7731000,8198100,8571500,8800800,8840900,8778600,8717200 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Population|Low,people,24134742.59,33106058.8,36547927.08,39130104.66,40930374.56,41612817.37,41426498.66,40534653.32,39159636.43,37567779.42 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Population|Low,people,8769207.939,11838100,12562200,12877500,13001700,12855500,12431300,11894500,11349000,10764600 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Population|Low,people,568522.4823,1019200,1200800,1358600,1485400,1583200,1648600,1685900,1702100,1707000 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Population|Low,people,3478643.959,4624629.234,5729817.825,6843096.052,7849207.516,8663201.88,9237607.212,9564968.953,9643752.231,9484996.442 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Population|Low,people,749916.8389,1402252.808,1767472.485,2128209.259,2447744.825,2714407.43,2898144.263,2979782.457,2961907.461,2852896.215 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Population|Low,people,9292839.849,10639267.47,11429117.98,11881813.39,12004334.04,11847322.66,11463796.66,10914532.99,10285531.56,9657516.093 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Population|Low,people,7692676.133,11432266.18,13643275.99,15490650.72,16986616.66,17930434.98,18369258.93,18297858.27,17712872.22,16762505.62 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Population|Low,people,3307792.389,5324313.104,5435716.671,5352448.89,5069817.12,4663359.66,4234047.845,3800997.13,3431585.501,3153099.477 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Population|Low,people,4348832.497,5267332.972,5755035.389,6081109.945,6235630.006,6214776.067,6025740.48,5693118.582,5265298.93,4794149.177 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Population|Low,people,1174339.088,2757900,3277900,3768000,4203200,4519500,4697800,4775500,4860900,5038400 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Population|Low,people,40975605.34,56925295.65,73132373.04,89590746.41,104650986.6,117487685.1,127628767.6,134520381.4,137783691.3,137714703 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Population|Low,people,11163179.53,13475298.45,13119145.99,12765752.72,12352285.36,11841545.47,11366463.07,11106055.73,11028192.36,11008938.18 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Population|Low,people,2600771.104,836600,924000,988700,1031600,1052000,1048100,1025000,992800,955800 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Population|Low,people,34556192.72,43065995.17,51819510.91,60094407.05,67163451.11,72586815.56,76118184.01,77567868.63,77051781.23,75040018.3 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Population|Low,people,31945346.98,30596800,34239800,36879600,38881400,40094000,40352300,39713500,38215300,36226400 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Population|Low,people,25752.49942,429500,427700,415300,401000,389500,376200,360700,347400,338400 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Population|Low,people,175.8415869,178.0746803,180.5090386,172.1707151,162.7759887,151.2926379,122.8019504,113.3514086,96.75772943,88.44003567 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Population|Low,people,16732572.53,22108291.62,24527133.35,26413947.05,27724846.3,28470942.39,28696179.47,28470860.74,27909664.04,27108412.59 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Population|Low,people,5103558.174,8818400,10401300,12115300,13943500,15798500,17653500,19503600,21289400,22944200 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Population|Low,people,13330258.58,18783500,24607300,30888700,37072900,42545700,47086800,50492600,52622800,53471500 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Population|Low,people,10123746.43,17132300,21366700,25521700,29389000,32638300,35163300,36966500,37942300,38044600 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Population|Low,people,2768.320073,4264.202491,5056.41693,5717.452837,6249.387045,6683.981563,6927.754459,7063.129926,6982.620888,6808.09838 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Population|Low,people,13349680.25,19992018.22,26526428.13,33895627.44,41553946.01,48810660.14,55073993.54,60057788.23,63642554.98,65690768.04 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Population|Low,people,12407611.56,17396454.29,20391051.99,22891946.21,24778146.31,25903893.65,26285905.26,26019954.55,25153706.03,23798990.83 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Population|Low,people,320.8199928,1942.176766,1867.743574,1777.751048,1651.009558,1516.094751,1415.118658,1350.985278,1306.666054,1265.557085 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Population|Low,people,6136516.007,6597406.476,6790846.024,6836796.897,6862267.539,6731241.951,6494844.695,6248201.649,5972208.773,5647536.196 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Population|Low,people,16375556.86,26609769.31,30045936.38,32982216.88,35314398.11,37007954.56,38019357.81,38293943.41,37876784.5,36882460.92 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Population|Low,people,5246473.374,5407270.953,6467366.231,7475561.76,8322758.171,8934155.668,9320654.259,9470554.07,9384854.999,9094556.803 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Population|Low,people,2977.380031,9015.353683,10061.83894,10945.69096,11703.57023,12329.70139,12850.22725,13265.5752,13549.33482,13760.37359 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Population|Low,people,424344.7643,500848.1576,506398.0321,497676.5505,477297.6428,449574.4516,419435.5762,388491.3819,357070.0561,327001.4086 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Population|Low,people,590166.5002,721909.9201,800500.7937,855596.8543,891643.1487,905186.4823,896926.052,869892.6332,829494.955,778665.3663 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Population|Low,people,162779.2517,210324.9099,206923.6617,200671.3579,193195.0526,185098.3714,175088.8681,165154.5819,157524.9755,151259.6329 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Population|Low,people,19517233.23,19773100,21879300,23704900,24679200,25057400,24979500,24287100,23021500,21269000 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Population|Low,people,3377377.42,4553680.457,5195732.609,5729624.024,6139126.986,6413796.619,6534424.088,6502607.413,6350661.172,6107398.634 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Population|Low,people,45849298.92,54145545.53,56717041.93,57355318.09,56253677.18,54103033.32,51332942.26,47904827.84,44095470.57,40510845.37 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Population|Low,people,98806916.2,121500722.2,132992110.8,141346919.9,146387589.7,147886536.4,145992438.7,141623516.8,135454820.6,127884266 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Population|Low,people,76849083.64,102360307.3,117185845,130665361.2,141904676.1,149973759.8,155335707.7,157823835.5,157704847,155012674 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Population|Low,people,1974893.486,2402600,2726100,2970100,3133700,3198700,3176600,3101400,2988100,2845000 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Population|Low,people,912781.7174,2265500,2811400,3310400,3745300,4091500,4335000,4473200,4500800,4434800 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Population|Low,people,5669709.331,8348841.396,8350965.111,8386898.405,8380216.948,8291496.266,8199130.09,8184950.016,8267892.248,8402585.069 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Population|Low,people,2841235.913,3553353.583,3661079.41,3701877.753,3661598.319,3553766.093,3413040.792,3244301.786,3055759.769,2846854.351 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Population|Low,people,22452.75988,273700,343200,413300,478600,536500,586200,626500,656200,673600 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Population|%,%,0.02143798,0.020754077,0.01993144,0.019158493,0.018416267,0.017801053,0.017263361,0.016710598,0.016193074,0.01565281 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Population|%,%,0.049314613,0.047310381,0.04517612,0.043941174,0.042909599,0.0420412,0.040911755,0.039335982,0.038610574,0.037890276 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Population|%,%,21.78217224,21.95665132,21.97566183,21.96789686,21.94916773,21.92419636,21.87399608,21.81145599,21.75611165,21.70181095 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Population|%,%,0.304225503,0.303848876,0.302935872,0.30159179,0.299156044,0.296171411,0.292376031,0.289179703,0.285886393,0.282804759 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Population|%,%,6.441714898,6.759622066,6.860936758,6.940252381,6.951457255,6.959441742,6.935607624,6.876788855,6.817623238,6.731476291 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Population|%,%,0.718431013,0.700193446,0.686502988,0.673981365,0.6564045,0.645151043,0.633444935,0.619640052,0.606011373,0.592168052 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Population|%,%,0.009126695,0.009322916,0.009462114,0.009549304,0.009643906,0.00965922,0.009686174,0.009668869,0.009689074,0.009639 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Population|%,%,28.69768305,29.10429185,29.17812661,29.1739324,29.12828576,29.0574994,28.95626293,28.85168214,28.76657479,28.69437263 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Population|%,%,0.128054079,0.13457043,0.139652623,0.144075375,0.147512561,0.149769511,0.151668359,0.153221502,0.154381871,0.155301546 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Population|%,%,43.4183072,43.14124755,42.86320399,42.66016292,42.53866113,42.53356647,42.49873595,42.47334034,42.47696906,42.49275299 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Population|%,%,4.081510536,3.962309237,3.889315044,3.865721161,3.851721262,3.850487097,3.871432996,3.897679737,3.929673968,3.972790304 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Population|%,%,6.289126893,6.42355896,6.544306995,6.649793966,6.74051875,6.815637559,6.879843759,6.934523693,6.981287042,7.020069934 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Population|%,%,20.51942342,21.18591928,21.49630926,22.12801165,22.40339249,23.09099684,23.30441296,23.81661809,24.24643061,24.55613588 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Population|%,%,0.015318531,0.015049936,0.014645006,0.014470551,0.013876052,0.01373606,0.013324382,0.01324049,0.012853728,0.012887016 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Population|%,%,10.19586579,10.32814219,10.38865079,10.45602606,10.55043584,10.42955888,10.38507463,10.3754802,10.41453684,10.37111545 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Population|%,%,5.785226525,5.825179794,5.83042036,5.830575063,5.802389821,5.834609665,5.803722529,5.817794048,5.822317995,5.795852726 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Population|%,%,0.118082547,0.100706795,0.089683744,0.082342633,0.077554114,0.074339496,0.072376278,0.070326976,0.068915487,0.067979127 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Population|%,%,5.428879442,5.309008768,5.265159772,5.20433098,5.181239776,5.169179457,5.161162107,5.16691488,5.160915488,5.163475888 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Population|%,%,2.94912454,3.00604461,2.991103305,3.010226659,2.999463587,3.014405839,3.017507611,3.012660777,2.975462477,2.971722682 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Population|%,%,8.292377706,8.259200615,8.215961051,8.167182766,8.125997064,8.077367593,8.044226836,8.01788506,7.999137698,7.981732774 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Population|%,%,0.010007234,0.009895883,0.009871687,0.009856457,0.009829713,0.009720482,0.009665172,0.009577333,0.009664633,0.009513945 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Population|%,%,7.08851297,6.994391309,6.802878379,6.771352466,6.693958607,6.658355071,6.669830158,6.629144825,6.6091879,6.566531874 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Population|%,%,0.020141385,0.020826652,0.021129712,0.02139885,0.021789508,0.022032426,0.022553669,0.022579046,0.022919226,0.023107298 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Population|%,%,12.02543316,11.69849965,11.57504199,11.49223262,11.44474076,11.42509835,11.43126721,11.44234461,11.45035532,11.4577806 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Population|%,%,33.9974093,33.67524266,33.4920124,33.3995797,33.37781234,33.3933291,33.44621133,33.5141872,33.59618573,33.70413225 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Population|%,%,0.163415406,0.157156815,0.153414621,0.150771714,0.148735828,0.146833752,0.145139738,0.143162468,0.141206043,0.139527052 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Population|%,%,0.808243886,0.822875328,0.832427661,0.837858912,0.839966578,0.840334488,0.840127899,0.839706159,0.839119454,0.838304642 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Population|%,%,6.224210244,6.287399268,6.323742828,6.345126116,6.353964788,6.356661895,6.35627846,6.353271309,6.349326503,6.342028408 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Population|%,%,53.25012737,52.82330489,52.81395758,53.04635258,53.42718414,53.90987994,54.45264859,55.04438229,55.64464469,56.23499806 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Population|Low|%,%,1.199165205,1.192602754,1.186295193,1.17720886,1.17108869,1.164101329,1.158159398,1.15328563,1.147289131,1.141631962 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Population|Low|%,%,99.99231488,99.99281977,99.99326349,99.99365033,99.99398633,99.99427115,99.99451426,99.99472373,99.99490093,99.99505967 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Population|Low|%,%,99.99998862,99.99998917,99.99998948,99.99998989,99.99999026,99.99999074,99.9999912,99.99999179,99.9999921,99.99999265 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Population|Low|%,%,97.33669625,97.30479695,97.28299985,97.27091551,97.26427766,97.26115851,97.26019071,97.2607426,97.26238786,97.26482157 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Population|Low|%,%,35.17792745,34.84331603,34.5366598,34.28407624,34.06923249,33.88993148,33.74438669,33.62299853,33.53440806,33.46437834 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Population|Low|%,%,92.86528928,92.88057118,92.90315654,92.92954562,92.96399079,93.00197598,93.04015298,93.07938695,93.11860946,93.15301169 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Population|Low|%,%,0.420684897,0.363005504,0.329102216,0.318356804,0.302264784,0.30104419,0.280176844,0.275816341,0.273043492,0.264909942 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Population|Low|%,%,38.09565252,38.37142191,38.5247749,38.59978111,38.60447894,38.56229992,38.49281049,38.40366616,38.30244708,38.19368302 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Population|Low|%,%,99.99333356,99.99356203,99.99372634,99.99385938,99.99396484,99.99404898,99.99411001,99.99415133,99.99417631,99.99419248 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Population|Low|%,%,99.99852892,99.99865572,99.99875277,99.9988272,99.99889759,99.99894416,99.99897401,99.99901609,99.99903586,99.99905409 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Population|Low|%,%,65.51992805,65.77753562,66.07560107,66.38373252,66.71524094,67.0476524,67.36485661,67.66581266,67.94932484,68.214691 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Population|Low|%,%,95.2936653,95.1730917,95.13052035,95.10618331,95.1219323,95.16824666,95.2125944,95.2718294,95.34413631,95.41155235 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Population|Low|%,%,80.58361959,80.60524763,80.60655744,80.60956646,80.61033441,80.60017387,80.57930147,80.55753599,80.53750314,80.51854202 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Population|Low|%,%,99.76470926,99.75908644,99.75549883,99.75294172,99.75103593,99.74945817,99.74842061,99.74774358,99.7474259,99.74736993 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Population|Low|%,%,10.61593792,10.69157593,10.7720176,10.86239902,10.95924779,11.05019929,11.1225546,11.1804281,11.22717885,11.26594085 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Population|Low|%,%,99.99466129,99.99502183,99.99521145,99.99537675,99.99552059,99.99565003,99.99575162,99.99582937,99.99588505,99.99591853 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Population|Low|%,%,79.7824296,79.99254027,80.11750925,80.18915745,80.22368009,80.22656781,80.21206121,80.18545505,80.1523905,80.11305929 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Population|Low|%,%,8.908304045,8.738581663,8.592366888,8.474541891,8.377829053,8.296242211,8.234295523,8.19041583,8.161300546,8.14266216 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Population|Low|%,%,43.54894508,43.22394583,43.11213797,43.10826246,43.09120985,43.06471755,42.99291045,42.89253028,42.80110247,42.76229914 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Population|Low|%,%,99.99955075,99.99958458,99.99960507,99.99961799,99.99962619,99.99963,99.99963139,99.9996314,99.9996303,99.99962828 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Population|Low|%,%,98.93471225,99.05695398,99.14580685,99.20864959,99.26381646,99.31333763,99.35715581,99.39569378,99.42944737,99.4589361 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Population|Low|%,%,99.99656845,99.99663233,99.99668299,99.9967331,99.99677661,99.99681507,99.99684608,99.99687267,99.99689416,99.99691338 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Population|Low|%,%,99.99908341,99.99911752,99.9991433,99.99916957,99.99919589,99.99922142,99.99924547,99.99926782,99.9992881,99.99930614 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Population|Low|%,%,81.93780933,82.51793257,82.98538325,83.35449182,83.64979548,83.88148023,84.0607741,84.19509985,84.29982186,84.38573153 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Population|Low|%,%,56.16819795,55.93535238,55.83103143,55.80713286,55.83570405,55.89611196,55.98033837,56.07951069,56.19037306,56.3057099 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Population|Low|%,%,98.6725425,98.76607593,98.84639016,98.91441354,98.97128683,99.01837399,99.0569025,99.08871358,99.11531548,99.13785673 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Population|Low|%,%,25.17895289,25.41647562,25.54281737,25.59770235,25.60056389,25.56588805,25.51576093,25.45437408,25.38705362,25.31473405 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Population|Low|%,%,22.52895219,22.42130809,22.31788161,22.22246172,22.13625546,22.0611638,21.99751388,21.94486868,21.90435073,21.87310006 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Population|Low|%,%,99.77416509,99.78846359,99.80300127,99.81823737,99.8332204,99.84721811,99.85949484,99.87002401,99.87926618,99.88686955 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Population|Low|%,%,80.93059798,81.06216913,81.16655563,81.24600558,81.30347713,81.34429027,81.37044927,81.38410841,81.39115349,81.39340235 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Population|Low|%,%,99.19109357,99.31580417,99.41736227,99.4940105,99.5504975,99.59427356,99.62819914,99.65623821,99.68045774,99.70110324 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Population|Low|%,%,99.99961101,99.99963024,99.99964691,99.99966423,99.99968118,99.99969714,99.99971161,99.99972435,99.99973542,99.99974486 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Population|Low|%,%,0.825952239,0.796015203,0.774283253,0.758582668,0.748146681,0.745268721,0.752596696,0.770745396,0.793815139,0.817396399 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Population|Low|%,%,99.98280637,99.9834906,99.98409651,99.9846301,99.98510717,99.98551717,99.98585307,99.98611534,99.98634344,99.9865368 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Population|Low|%,%,1.1028825,1.111366,1.117903865,1.121230413,1.123810053,1.124454747,1.124098382,1.122676116,1.121477145,1.119828949 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Population|Low|%,%,13.27290452,13.21868041,13.17612538,13.14029947,13.10765837,13.0802365,13.05880113,13.04122268,13.02509818,13.01026168 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Population|Low|%,%,99.99996348,99.99996856,99.99997194,99.99997408,99.99997543,99.99997994,99.99998026,99.99998024,99.99998237,99.99998569 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Population|Low|%,%,99.9995403,99.99955379,99.99956558,99.99957489,99.99958256,99.99958976,99.99959614,99.99960201,99.99960672,99.99961123 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Population|Low|%,%,82.86368029,83.06876299,83.31681301,83.59626275,83.90128973,84.21067636,84.47225796,84.69833073,84.89238391,85.05570029 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Population|Low|%,%,90.04139672,90.05381884,90.11256929,90.17709523,90.2556917,90.35491986,90.45190482,90.55255269,90.65048883,90.72856751 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Population|Low|%,%,90.69347479,90.85584554,90.94259334,90.98482195,90.9874831,90.96446184,90.93122784,90.88850186,90.83918652,90.78612066 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Population|Low|%,%,99.99938524,99.99940449,99.99941302,99.99943015,99.99944363,99.99943521,99.99944547,99.99946751,99.99946617,99.99946481 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Population|Low|%,%,13.97010326,14.03408768,14.09001865,14.13659519,14.17516345,14.20735377,14.23373613,14.25713779,14.2754681,14.29339486 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Population|Low|%,%,84.60098797,84.7765292,84.92829147,85.06798477,85.19575259,85.2976932,85.38893974,85.47055164,85.5472939,85.62004365 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Population|Low|%,%,0.007658184,0.007907019,0.008062578,0.008193902,0.008327679,0.008446148,0.008603328,0.008748977,0.008879545,0.009011435 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Population|Low|%,%,95.15419007,95.140608,95.14401894,95.15248202,95.16856247,95.18712931,95.20501429,95.22165932,95.23501872,95.24619755 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Population|Low|%,%,65.05606869,65.28632969,65.50992551,65.72293728,65.92227225,66.08144731,66.2098655,66.31456453,66.40119565,66.47330755 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Population|Low|%,%,40.48525344,41.08129065,41.64934833,42.15839534,42.60654523,42.99100715,43.30453286,43.55837592,43.76218505,43.91220487 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Population|Low|%,%,0.045429822,0.04434826,0.04339123,0.042515398,0.041718732,0.040999303,0.040355876,0.039769741,0.039271916,0.038837049 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Population|Low|%,%,0.234548396,0.241610402,0.247999998,0.253437401,0.258199645,0.26238266,0.266487564,0.270089926,0.273230956,0.275935507 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Population|Low|%,%,99.99993285,99.99994133,99.99994773,99.99995288,99.99995701,99.99996004,99.99996243,99.99996412,99.99996548,99.99996662 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Population|Low|%,%,33.22232131,33.33679142,33.46966437,33.60879456,33.75219464,33.89501586,34.03466028,34.15460363,34.25794098,34.34820557 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Population|Low|%,%,96.1409261,96.12957509,96.12157767,96.11794027,96.12097253,96.12407571,96.12758792,96.13506332,96.1441985,96.15107985 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Population|Low|%,%,22.37507445,22.51814986,22.65216112,22.78156384,22.90091788,23.00132638,23.08908141,23.1690858,23.24340028,23.30717028 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Population|Low|%,%,57.48075727,57.52468823,57.58722294,57.66180479,57.74703185,57.83636055,57.92528958,58.01164202,58.09046996,58.16171075 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Population|Low|%,%,3.205663262,3.16321127,3.12654614,3.077605649,3.028900562,2.982779293,2.92927974,2.892124541,2.856381042,2.824970926 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Population|Low|%,%,0.464555442,0.467198224,0.462633661,0.458124361,0.450712988,0.439496807,0.428996187,0.42063546,0.413920791,0.407900176 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Population|Low|%,%,21.43304722,21.29415966,21.17077918,21.07014728,20.99263734,20.93374351,20.8919299,20.86543329,20.8466307,20.8305285 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Population|Low|%,%,99.99988622,99.99990622,99.99991978,99.99992903,99.99993553,99.99993999,99.99994315,99.99994555,99.99994741,99.99994877 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Population|Low|%,%,88.0750987,87.90318515,87.75580178,87.62654459,87.50718239,87.39610416,87.28694214,87.18173038,87.09236836,87.01695861 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Population|Low|%,%,78.73915699,78.65389447,78.55445585,78.44370948,78.33561231,78.23086584,78.12354908,78.0104321,77.91365182,77.8310286 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Population|Low|%,%,77.62680199,77.91994292,78.15275691,78.34447463,78.50013455,78.6179445,78.71039352,78.78422741,78.84514341,78.89502383 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Population|Low|%,%,7.003001408,7.120797494,7.194201957,7.234490301,7.254517388,7.262370105,7.262135957,7.256873126,7.248207163,7.238178775 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Population|Low|%,%,59.65870585,59.81000813,59.89017676,59.78743287,59.69845859,59.53074331,59.30087109,59.08073654,58.8677746,58.67592334 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Population|Low|%,%,43.70042941,43.56245013,43.4499317,43.33315565,43.2036702,43.06818859,42.95967134,42.87055594,42.79734068,42.73373015 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Population|Low|%,%,26.14961151,26.45583254,26.69215829,26.86708727,26.99324402,27.07816275,27.13605988,27.17371624,27.20230678,27.22650473 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Population|Low|%,%,1.018112804,0.992915749,0.992220057,1.014339569,1.029315799,1.0516533,1.007843391,1.040195291,1.043113193,1.040588777 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Population|Low|%,%,8.494518006,8.489987515,8.420504896,8.308555414,8.169149252,8.014152534,7.847756392,7.673452684,7.516151109,7.385175788 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Population|Low|%,%,99.97827065,99.97910373,99.97984694,99.98049911,99.98105648,99.98150399,99.98187132,99.98217064,99.98242819,99.98264915 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Population|Low|%,%,33.89457685,34.03763539,34.10207395,34.10198771,34.050209,33.95722235,33.84454142,33.72088013,33.5905697,33.47771472 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Population|Low|%,%,30.93405958,31.01792939,31.02732067,31.0441268,31.08872079,31.08805223,31.06517002,31.0426819,31.02283044,31.00738417 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Population|Low|%,%,96.91505815,96.88799231,96.85279734,96.81739593,96.78235379,96.74553421,96.71397342,96.68934796,96.66891379,96.65115381 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Population|Low|%,%,99.99979937,99.99982248,99.99984262,99.99986084,99.99987625,99.99988952,99.99990065,99.99990981,99.9999177,99.99992422 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Population|Low|%,%,99.27247307,99.30507394,99.33090157,99.35041151,99.36452669,99.37565144,99.38522169,99.38815661,99.39727701,99.39825563 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Population|Low|%,%,92.1534986,92.21717658,92.29891845,92.39514633,92.50132162,92.60753028,92.71104633,92.80660151,92.89138473,92.96521545 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Population|Low|%,%,0.371198231,0.414017916,0.448723575,0.482675209,0.515430107,0.54528803,0.568891661,0.584435505,0.594344771,0.596182449 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Population|Low|%,%,99.99955976,99.99959327,99.99961948,99.99963946,99.99965485,99.99966629,99.99967524,99.9996825,99.99968829,99.99969318 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Population|Low|%,%,0.19026253,0.18484536,0.180848975,0.177996847,0.176089189,0.174851725,0.173966483,0.173273341,0.172622433,0.17194128 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Population|Low|%,%,99.7286295,99.76828103,99.79665585,99.81919878,99.83985184,99.8545654,99.86809922,99.87995518,99.88935264,99.8973149 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Population|Low|%,%,7.782667888,7.575895026,7.483073623,7.409986079,7.332741201,7.259267183,7.195362075,7.136614053,7.078705365,7.011305438 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Population|Low|%,%,99.75137135,99.77324217,99.7936491,99.81125611,99.8270166,99.8407296,99.85248317,99.86290645,99.87206369,99.88030517 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Population|Low|%,%,34.99569495,35.13408419,35.09305053,34.92319889,34.73792355,34.55177812,34.30840704,34.03758186,33.75990167,33.48276067 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Population|Low|%,%,99.76637711,99.77606432,99.78391491,99.78943402,99.79390185,99.79805984,99.80179288,99.80514661,99.80817701,99.8109441 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Population|Low|%,%,20.9179817,21.13486016,21.30060771,21.41716246,21.49788687,21.54481727,21.56527196,21.56293621,21.55902711,21.55363592 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Population|Low|%,%,99.31609836,99.30565992,99.28664672,99.26086583,99.23770186,99.21885713,99.19356176,99.16409661,99.13236708,99.09905244 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Population|Low|%,%,21.73721976,22.57346588,23.20952285,23.65786005,24.04090003,24.25977578,24.49181983,24.69430705,24.87395169,25.03552723 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Population|Low|%,%,81.58107995,81.70081079,81.83368013,81.96560155,82.10177756,82.24519701,82.37400009,82.48266613,82.57349534,82.65346925 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Population|Low|%,%,64.32877489,64.38704603,64.40997432,64.40456745,64.38483782,64.36848992,64.3533755,64.33808363,64.32304413,64.31095298 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Population|Low|%,%,22.96942016,22.81562916,22.65495737,22.50165729,22.35084765,22.20224557,22.06416142,21.93988141,21.82897051,21.72978289 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Population|Low|%,%,99.97694398,99.97770238,99.9768691,99.97721945,99.97700336,99.9774329,99.97738767,99.97791923,99.97791744,99.97764133 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Population|Low|%,%,0.036415337,0.031534386,0.031392876,0.030136656,0.029323723,0.028583533,0.024668933,0.024492526,0.022804084,0.023055275 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Population|Low|%,%,66.41062071,66.60688844,66.74068052,66.83251368,66.88825268,66.91503549,66.91300961,66.90430822,66.89628205,66.88761333 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Population|Low|%,%,0.047230808,0.049092256,0.050086346,0.050566051,0.051016654,0.051804173,0.052198664,0.052907737,0.0530913,0.053378011 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Population|Low|%,%,97.69752808,97.64779142,97.61838008,97.60316587,97.59762595,97.59789678,97.60202729,97.60891324,97.61786835,97.62801625 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Population|Low|%,%,99.0930163,99.05623605,99.0202983,98.98620713,98.9562344,98.92759378,98.90359541,98.88480601,98.87385329,98.87161445 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Population|Low|%,%,0.503380411,0.511099149,0.514813554,0.517088728,0.51869606,0.519922754,0.520838667,0.521615937,0.522248623,0.522741464 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Population|Low|%,%,35.94371515,35.89272819,35.85944229,35.72442154,35.64610614,35.51132118,35.37786145,35.30675796,35.19813745,35.15691304 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Population|Low|%,%,24.33576723,24.32381699,24.33409224,24.3615796,24.39880979,24.44042115,24.48446692,24.53008704,24.5756222,24.62026438 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Population|Low|%,%,99.9994442,99.99946282,99.99947786,99.99948847,99.99949742,99.9995038,99.99950926,99.99951503,99.9995205,99.99952503 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Population|Low|%,%,3.102627503,3.180018936,3.239484526,3.28009918,3.319220146,3.349552129,3.369225812,3.378903516,3.378044083,3.376778796 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Population|Low|%,%,1.952492306,1.950844678,1.946015656,1.938355107,1.927213875,1.915079345,1.903194756,1.891638053,1.881811962,1.875352178 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Population|Low|%,%,10.17967519,10.17218673,10.12395085,10.03420808,9.949819768,9.832677764,9.709198541,9.589080693,9.481784518,9.348733553 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Population|Low|%,%,0.162591022,0.166724198,0.171573086,0.176356706,0.180614697,0.184387741,0.187718976,0.190652879,0.19323144,0.195494078 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Population|Low|%,%,47.28552243,46.91420565,46.64912245,46.46897019,46.34597575,46.26290497,46.21462228,46.19575889,46.20174728,46.22649758 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Population|Low|%,%,99.64583376,99.65388918,99.66216758,99.67054959,99.67905827,99.68683014,99.69536153,99.70513532,99.71613164,99.72808691 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Population|Low|%,%,91.0769818,91.14990149,91.22895494,91.3109134,91.39114209,91.46775913,91.53613022,91.59663863,91.6490495,91.69440855 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Population|Low|%,%,99.95874168,99.95733304,99.95858294,99.95919574,99.95919778,99.95978234,99.96087923,99.96246306,99.96250536,99.96335453 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Population|Low|%,%,73.98259071,74.6825898,75.28886044,75.79527171,76.23438234,76.62978749,76.99581258,77.32520256,77.62331592,77.8889781 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Population|Low|%,%,16.74237824,16.72402496,16.71992971,16.72182561,16.73093378,16.74582784,16.76444973,16.78593603,16.80882185,16.83294122 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,STP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TKM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LTU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KHM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ETH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PSE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BOL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BFA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GHA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SAU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CPV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GTM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BIH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NLD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,OMN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ALB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GAB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NZL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,YEM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,WSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SVK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LSO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VCT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TJK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AFG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LCA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CYP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PYF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LAO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CIV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ESH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CUB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ARM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ATG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UKR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BHR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TON,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,USA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VNM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BGR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ROU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MOZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KGZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KWT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LUX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ECU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,AUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BEL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,THA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HTI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,IRQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SLE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GEO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HKG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DNK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,POL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MAR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HRV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,CHE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BLZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TCD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EST,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,URY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GNQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LBN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,UZB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,RWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TLS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,REU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BDI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TWN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NIC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,QAT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ITA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BTN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NPL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MLT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MDV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ISL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MWI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,TTO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ZWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,DEU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MTQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,KAZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,ERI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,NCL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MKD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,PRY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LVA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,JPN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SYR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,HND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MEX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,EGY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SGP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,SRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,BWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GRC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,LKA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GUF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,COM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,FSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,GLP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,MYT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_1p5,VIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Absolute,days/yr,31.54497758,31.54497758,31.54497758,31.54497758,31.54497758,31.54497758,31.54497758,31.54497758,31.54497758,31.54497758 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Absolute,days/yr,3.640645089,3.640645089,3.640645089,3.640645089,3.640645089,3.640645089,3.640645089,3.640645089,3.640645089,3.640645089 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Absolute,days/yr,100.9614875,100.9614875,100.9614875,100.9614875,100.9614875,100.9614875,100.9614875,100.9614875,100.9614875,100.9614875 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Absolute,days/yr,15.29336264,15.29336264,15.29336264,15.29336264,15.29336264,15.29336264,15.29336264,15.29336264,15.29336264,15.29336264 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Absolute,days/yr,59.86526692,59.86526692,59.86526692,59.86526692,59.86526692,59.86526692,59.86526692,59.86526692,59.86526692,59.86526692 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Absolute,days/yr,86.65635003,86.65635003,86.65635003,86.65635003,86.65635003,86.65635003,86.65635003,86.65635003,86.65635003,86.65635003 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Absolute,days/yr,28.37095706,28.37095706,28.37095706,28.37095706,28.37095706,28.37095706,28.37095706,28.37095706,28.37095706,28.37095706 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Absolute,days/yr,37.16007475,37.16007475,37.16007475,37.16007475,37.16007475,37.16007475,37.16007475,37.16007475,37.16007475,37.16007475 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Absolute,days/yr,54.46153371,54.46153371,54.46153371,54.46153371,54.46153371,54.46153371,54.46153371,54.46153371,54.46153371,54.46153371 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Absolute,days/yr,61.07440222,61.07440222,61.07440222,61.07440222,61.07440222,61.07440222,61.07440222,61.07440222,61.07440222,61.07440222 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Absolute,days/yr,3.439481919,3.439481919,3.439481919,3.439481919,3.439481919,3.439481919,3.439481919,3.439481919,3.439481919,3.439481919 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Absolute,days/yr,121.4685702,121.4685702,121.4685702,121.4685702,121.4685702,121.4685702,121.4685702,121.4685702,121.4685702,121.4685702 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Absolute,days/yr,57.64146983,57.64146983,57.64146983,57.64146983,57.64146983,57.64146983,57.64146983,57.64146983,57.64146983,57.64146983 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Absolute,days/yr,199.1852877,199.1852877,199.1852877,199.1852877,199.1852877,199.1852877,199.1852877,199.1852877,199.1852877,199.1852877 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Absolute,days/yr,10.21906663,10.21906663,10.21906663,10.21906663,10.21906663,10.21906663,10.21906663,10.21906663,10.21906663,10.21906663 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Absolute,days/yr,9.93169047,9.93169047,9.93169047,9.93169047,9.93169047,9.93169047,9.93169047,9.93169047,9.93169047,9.93169047 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Absolute,days/yr,27.29149875,27.29149875,27.29149875,27.29149875,27.29149875,27.29149875,27.29149875,27.29149875,27.29149875,27.29149875 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Absolute,days/yr,15.28082907,15.28082907,15.28082907,15.28082907,15.28082907,15.28082907,15.28082907,15.28082907,15.28082907,15.28082907 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Absolute,days/yr,91.5488294,91.5488294,91.5488294,91.5488294,91.5488294,91.5488294,91.5488294,91.5488294,91.5488294,91.5488294 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Absolute,days/yr,128.0900123,128.0900123,128.0900123,128.0900123,128.0900123,128.0900123,128.0900123,128.0900123,128.0900123,128.0900123 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Absolute,days/yr,36.05302794,36.05302794,36.05302794,36.05302794,36.05302794,36.05302794,36.05302794,36.05302794,36.05302794,36.05302794 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Absolute,days/yr,40.88425956,40.88425956,40.88425956,40.88425956,40.88425956,40.88425956,40.88425956,40.88425956,40.88425956,40.88425956 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Absolute,days/yr,39.76016953,39.76016953,39.76016953,39.76016953,39.76016953,39.76016953,39.76016953,39.76016953,39.76016953,39.76016953 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Absolute,days/yr,12.34050164,12.34050164,12.34050164,12.34050164,12.34050164,12.34050164,12.34050164,12.34050164,12.34050164,12.34050164 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Absolute,days/yr,11.96565803,11.96565803,11.96565803,11.96565803,11.96565803,11.96565803,11.96565803,11.96565803,11.96565803,11.96565803 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Absolute,days/yr,181.8601555,181.8601555,181.8601555,181.8601555,181.8601555,181.8601555,181.8601555,181.8601555,181.8601555,181.8601555 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Absolute,days/yr,81.23132855,81.23132855,81.23132855,81.23132855,81.23132855,81.23132855,81.23132855,81.23132855,81.23132855,81.23132855 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Absolute,days/yr,18.45518445,18.45518445,18.45518445,18.45518445,18.45518445,18.45518445,18.45518445,18.45518445,18.45518445,18.45518445 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Absolute,days/yr,37.33455642,37.33455642,37.33455642,37.33455642,37.33455642,37.33455642,37.33455642,37.33455642,37.33455642,37.33455642 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Absolute,days/yr,12.32726177,12.32726177,12.32726177,12.32726177,12.32726177,12.32726177,12.32726177,12.32726177,12.32726177,12.32726177 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Absolute,days/yr,155.1461841,155.1461841,155.1461841,155.1461841,155.1461841,155.1461841,155.1461841,155.1461841,155.1461841,155.1461841 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Absolute,days/yr,108.6388732,108.6388732,108.6388732,108.6388732,108.6388732,108.6388732,108.6388732,108.6388732,108.6388732,108.6388732 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Absolute,days/yr,2.746715083,2.746715083,2.746715083,2.746715083,2.746715083,2.746715083,2.746715083,2.746715083,2.746715083,2.746715083 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Absolute,days/yr,13.39104716,13.39104716,13.39104716,13.39104716,13.39104716,13.39104716,13.39104716,13.39104716,13.39104716,13.39104716 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Absolute,days/yr,148.9706243,148.9706243,148.9706243,148.9706243,148.9706243,148.9706243,148.9706243,148.9706243,148.9706243,148.9706243 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Absolute,days/yr,2.48023653,2.48023653,2.48023653,2.48023653,2.48023653,2.48023653,2.48023653,2.48023653,2.48023653,2.48023653 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Absolute,days/yr,112.7595713,112.7595713,112.7595713,112.7595713,112.7595713,112.7595713,112.7595713,112.7595713,112.7595713,112.7595713 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Absolute,days/yr,29.38680998,29.38680998,29.38680998,29.38680998,29.38680998,29.38680998,29.38680998,29.38680998,29.38680998,29.38680998 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Absolute,days/yr,54.53464086,54.53464086,54.53464086,54.53464086,54.53464086,54.53464086,54.53464086,54.53464086,54.53464086,54.53464086 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Absolute,days/yr,32.98406558,32.98406558,32.98406558,32.98406558,32.98406558,32.98406558,32.98406558,32.98406558,32.98406558,32.98406558 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Absolute,days/yr,3.319161422,3.319161422,3.319161422,3.319161422,3.319161422,3.319161422,3.319161422,3.319161422,3.319161422,3.319161422 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Absolute,days/yr,61.24729983,61.24729983,61.24729983,61.24729983,61.24729983,61.24729983,61.24729983,61.24729983,61.24729983,61.24729983 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Absolute,days/yr,22.45974231,22.45974231,22.45974231,22.45974231,22.45974231,22.45974231,22.45974231,22.45974231,22.45974231,22.45974231 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Absolute,days/yr,17.72470228,17.72470228,17.72470228,17.72470228,17.72470228,17.72470228,17.72470228,17.72470228,17.72470228,17.72470228 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Absolute,days/yr,49.5647497,49.5647497,49.5647497,49.5647497,49.5647497,49.5647497,49.5647497,49.5647497,49.5647497,49.5647497 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Absolute,days/yr,50.82370271,50.82370271,50.82370271,50.82370271,50.82370271,50.82370271,50.82370271,50.82370271,50.82370271,50.82370271 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Absolute,days/yr,116.7960792,116.7960792,116.7960792,116.7960792,116.7960792,116.7960792,116.7960792,116.7960792,116.7960792,116.7960792 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Absolute,days/yr,64.14806195,64.14806195,64.14806195,64.14806195,64.14806195,64.14806195,64.14806195,64.14806195,64.14806195,64.14806195 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Absolute,days/yr,210.8264082,210.8264082,210.8264082,210.8264082,210.8264082,210.8264082,210.8264082,210.8264082,210.8264082,210.8264082 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Absolute,days/yr,3.639916362,3.639916362,3.639916362,3.639916362,3.639916362,3.639916362,3.639916362,3.639916362,3.639916362,3.639916362 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Absolute,days/yr,1.013881698,1.013881698,1.013881698,1.013881698,1.013881698,1.013881698,1.013881698,1.013881698,1.013881698,1.013881698 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Absolute,days/yr,39.81576747,39.81576747,39.81576747,39.81576747,39.81576747,39.81576747,39.81576747,39.81576747,39.81576747,39.81576747 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Absolute,days/yr,3.032748375,3.032748375,3.032748375,3.032748375,3.032748375,3.032748375,3.032748375,3.032748375,3.032748375,3.032748375 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Absolute,days/yr,20.90076535,20.90076535,20.90076535,20.90076535,20.90076535,20.90076535,20.90076535,20.90076535,20.90076535,20.90076535 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Absolute,days/yr,151.4966192,151.4966192,151.4966192,151.4966192,151.4966192,151.4966192,151.4966192,151.4966192,151.4966192,151.4966192 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Absolute,days/yr,100.3855062,100.3855062,100.3855062,100.3855062,100.3855062,100.3855062,100.3855062,100.3855062,100.3855062,100.3855062 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Absolute,days/yr,52.48216159,52.48216159,52.48216159,52.48216159,52.48216159,52.48216159,52.48216159,52.48216159,52.48216159,52.48216159 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Absolute,days/yr,41.57370204,41.57370204,41.57370204,41.57370204,41.57370204,41.57370204,41.57370204,41.57370204,41.57370204,41.57370204 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Absolute,days/yr,1.134007143,1.134007143,1.134007143,1.134007143,1.134007143,1.134007143,1.134007143,1.134007143,1.134007143,1.134007143 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Absolute,days/yr,13.98809036,13.98809036,13.98809036,13.98809036,13.98809036,13.98809036,13.98809036,13.98809036,13.98809036,13.98809036 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Absolute,days/yr,62.50988605,62.50988605,62.50988605,62.50988605,62.50988605,62.50988605,62.50988605,62.50988605,62.50988605,62.50988605 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Absolute,days/yr,85.79983639,85.79983639,85.79983639,85.79983639,85.79983639,85.79983639,85.79983639,85.79983639,85.79983639,85.79983639 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Absolute,days/yr,168.5525165,168.5525165,168.5525165,168.5525165,168.5525165,168.5525165,168.5525165,168.5525165,168.5525165,168.5525165 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Absolute,days/yr,19.59359467,19.59359467,19.59359467,19.59359467,19.59359467,19.59359467,19.59359467,19.59359467,19.59359467,19.59359467 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Absolute,days/yr,69.62246713,69.62246713,69.62246713,69.62246713,69.62246713,69.62246713,69.62246713,69.62246713,69.62246713,69.62246713 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Absolute,days/yr,10.58963581,10.58963581,10.58963581,10.58963581,10.58963581,10.58963581,10.58963581,10.58963581,10.58963581,10.58963581 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Absolute,days/yr,54.59653893,54.59653893,54.59653893,54.59653893,54.59653893,54.59653893,54.59653893,54.59653893,54.59653893,54.59653893 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Absolute,days/yr,91.71391395,91.71391395,91.71391395,91.71391395,91.71391395,91.71391395,91.71391395,91.71391395,91.71391395,91.71391395 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Absolute,days/yr,18.01796861,18.01796861,18.01796861,18.01796861,18.01796861,18.01796861,18.01796861,18.01796861,18.01796861,18.01796861 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Absolute,days/yr,1.047075269,1.047075269,1.047075269,1.047075269,1.047075269,1.047075269,1.047075269,1.047075269,1.047075269,1.047075269 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Absolute,days/yr,16.04604242,16.04604242,16.04604242,16.04604242,16.04604242,16.04604242,16.04604242,16.04604242,16.04604242,16.04604242 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Absolute,days/yr,23.84819574,23.84819574,23.84819574,23.84819574,23.84819574,23.84819574,23.84819574,23.84819574,23.84819574,23.84819574 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Absolute,days/yr,16.47630081,16.47630081,16.47630081,16.47630081,16.47630081,16.47630081,16.47630081,16.47630081,16.47630081,16.47630081 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Absolute,days/yr,0.567494611,0.567494611,0.567494611,0.567494611,0.567494611,0.567494611,0.567494611,0.567494611,0.567494611,0.567494611 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Absolute,days/yr,18.31865241,18.31865241,18.31865241,18.31865241,18.31865241,18.31865241,18.31865241,18.31865241,18.31865241,18.31865241 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Absolute,days/yr,257.8075846,257.8075846,257.8075846,257.8075846,257.8075846,257.8075846,257.8075846,257.8075846,257.8075846,257.8075846 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Absolute,days/yr,15.97232362,15.97232362,15.97232362,15.97232362,15.97232362,15.97232362,15.97232362,15.97232362,15.97232362,15.97232362 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Absolute,days/yr,78.21209904,78.21209904,78.21209904,78.21209904,78.21209904,78.21209904,78.21209904,78.21209904,78.21209904,78.21209904 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Absolute,days/yr,37.24803705,37.24803705,37.24803705,37.24803705,37.24803705,37.24803705,37.24803705,37.24803705,37.24803705,37.24803705 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Absolute,days/yr,19.0177039,19.0177039,19.0177039,19.0177039,19.0177039,19.0177039,19.0177039,19.0177039,19.0177039,19.0177039 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Absolute,days/yr,32.50558334,32.50558334,32.50558334,32.50558334,32.50558334,32.50558334,32.50558334,32.50558334,32.50558334,32.50558334 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Absolute,days/yr,198.7924621,198.7924621,198.7924621,198.7924621,198.7924621,198.7924621,198.7924621,198.7924621,198.7924621,198.7924621 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Absolute,days/yr,32.47103732,32.47103732,32.47103732,32.47103732,32.47103732,32.47103732,32.47103732,32.47103732,32.47103732,32.47103732 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Absolute,days/yr,23.96389574,23.96389574,23.96389574,23.96389574,23.96389574,23.96389574,23.96389574,23.96389574,23.96389574,23.96389574 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Absolute,days/yr,5.026657978,5.026657978,5.026657978,5.026657978,5.026657978,5.026657978,5.026657978,5.026657978,5.026657978,5.026657978 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Absolute,days/yr,23.39828411,23.39828411,23.39828411,23.39828411,23.39828411,23.39828411,23.39828411,23.39828411,23.39828411,23.39828411 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Absolute,days/yr,122.2699286,122.2699286,122.2699286,122.2699286,122.2699286,122.2699286,122.2699286,122.2699286,122.2699286,122.2699286 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Absolute,days/yr,37.28038084,37.28038084,37.28038084,37.28038084,37.28038084,37.28038084,37.28038084,37.28038084,37.28038084,37.28038084 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Absolute,days/yr,73.52115056,73.52115056,73.52115056,73.52115056,73.52115056,73.52115056,73.52115056,73.52115056,73.52115056,73.52115056 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Absolute,days/yr,7.417946777,7.417946777,7.417946777,7.417946777,7.417946777,7.417946777,7.417946777,7.417946777,7.417946777,7.417946777 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Absolute,days/yr,4.538764984,4.538764984,4.538764984,4.538764984,4.538764984,4.538764984,4.538764984,4.538764984,4.538764984,4.538764984 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Absolute,days/yr,11.80811721,11.80811721,11.80811721,11.80811721,11.80811721,11.80811721,11.80811721,11.80811721,11.80811721,11.80811721 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Absolute,days/yr,12.61644382,12.61644382,12.61644382,12.61644382,12.61644382,12.61644382,12.61644382,12.61644382,12.61644382,12.61644382 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Absolute,days/yr,59.53104855,59.53104855,59.53104855,59.53104855,59.53104855,59.53104855,59.53104855,59.53104855,59.53104855,59.53104855 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Absolute,days/yr,28.56179137,28.56179137,28.56179137,28.56179137,28.56179137,28.56179137,28.56179137,28.56179137,28.56179137,28.56179137 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Absolute,days/yr,32.32504314,32.32504314,32.32504314,32.32504314,32.32504314,32.32504314,32.32504314,32.32504314,32.32504314,32.32504314 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Absolute,days/yr,19.41977004,19.41977004,19.41977004,19.41977004,19.41977004,19.41977004,19.41977004,19.41977004,19.41977004,19.41977004 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Absolute,days/yr,240.3402505,240.3402505,240.3402505,240.3402505,240.3402505,240.3402505,240.3402505,240.3402505,240.3402505,240.3402505 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Absolute,days/yr,50.94829394,50.94829394,50.94829394,50.94829394,50.94829394,50.94829394,50.94829394,50.94829394,50.94829394,50.94829394 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Absolute,days/yr,94.09927615,94.09927615,94.09927615,94.09927615,94.09927615,94.09927615,94.09927615,94.09927615,94.09927615,94.09927615 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Absolute,days/yr,25.188091,25.188091,25.188091,25.188091,25.188091,25.188091,25.188091,25.188091,25.188091,25.188091 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Absolute,days/yr,18.85982857,18.85982857,18.85982857,18.85982857,18.85982857,18.85982857,18.85982857,18.85982857,18.85982857,18.85982857 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Absolute,days/yr,23.6480978,23.6480978,23.6480978,23.6480978,23.6480978,23.6480978,23.6480978,23.6480978,23.6480978,23.6480978 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Absolute,days/yr,4.112658214,4.112658214,4.112658214,4.112658214,4.112658214,4.112658214,4.112658214,4.112658214,4.112658214,4.112658214 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Absolute,days/yr,12.31671914,12.31671914,12.31671914,12.31671914,12.31671914,12.31671914,12.31671914,12.31671914,12.31671914,12.31671914 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Absolute,days/yr,127.2655645,127.2655645,127.2655645,127.2655645,127.2655645,127.2655645,127.2655645,127.2655645,127.2655645,127.2655645 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Absolute,days/yr,20.57704828,20.57704828,20.57704828,20.57704828,20.57704828,20.57704828,20.57704828,20.57704828,20.57704828,20.57704828 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Absolute,days/yr,14.37910615,14.37910615,14.37910615,14.37910615,14.37910615,14.37910615,14.37910615,14.37910615,14.37910615,14.37910615 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Absolute,days/yr,95.48707812,95.48707812,95.48707812,95.48707812,95.48707812,95.48707812,95.48707812,95.48707812,95.48707812,95.48707812 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Absolute,days/yr,134.3214626,134.3214626,134.3214626,134.3214626,134.3214626,134.3214626,134.3214626,134.3214626,134.3214626,134.3214626 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Absolute,days/yr,199.0883467,199.0883467,199.0883467,199.0883467,199.0883467,199.0883467,199.0883467,199.0883467,199.0883467,199.0883467 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Absolute,days/yr,49.66679572,49.66679572,49.66679572,49.66679572,49.66679572,49.66679572,49.66679572,49.66679572,49.66679572,49.66679572 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Absolute,days/yr,87.05521975,87.05521975,87.05521975,87.05521975,87.05521975,87.05521975,87.05521975,87.05521975,87.05521975,87.05521975 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Absolute,days/yr,5.648266559,5.648266559,5.648266559,5.648266559,5.648266559,5.648266559,5.648266559,5.648266559,5.648266559,5.648266559 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Absolute,days/yr,12.60426371,12.60426371,12.60426371,12.60426371,12.60426371,12.60426371,12.60426371,12.60426371,12.60426371,12.60426371 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Absolute,days/yr,64.10520155,64.10520155,64.10520155,64.10520155,64.10520155,64.10520155,64.10520155,64.10520155,64.10520155,64.10520155 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Absolute,days/yr,13.90299699,13.90299699,13.90299699,13.90299699,13.90299699,13.90299699,13.90299699,13.90299699,13.90299699,13.90299699 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Absolute,days/yr,141.0209498,141.0209498,141.0209498,141.0209498,141.0209498,141.0209498,141.0209498,141.0209498,141.0209498,141.0209498 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Absolute,days/yr,55.27117111,55.27117111,55.27117111,55.27117111,55.27117111,55.27117111,55.27117111,55.27117111,55.27117111,55.27117111 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Absolute,days/yr,15.28740074,15.28740074,15.28740074,15.28740074,15.28740074,15.28740074,15.28740074,15.28740074,15.28740074,15.28740074 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Absolute,days/yr,4.828422981,4.828422981,4.828422981,4.828422981,4.828422981,4.828422981,4.828422981,4.828422981,4.828422981,4.828422981 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Absolute,days/yr,11.33530264,11.33530264,11.33530264,11.33530264,11.33530264,11.33530264,11.33530264,11.33530264,11.33530264,11.33530264 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Absolute,days/yr,18.66701968,18.66701968,18.66701968,18.66701968,18.66701968,18.66701968,18.66701968,18.66701968,18.66701968,18.66701968 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Absolute,days/yr,18.11987021,18.11987021,18.11987021,18.11987021,18.11987021,18.11987021,18.11987021,18.11987021,18.11987021,18.11987021 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Absolute,days/yr,93.45950474,93.45950474,93.45950474,93.45950474,93.45950474,93.45950474,93.45950474,93.45950474,93.45950474,93.45950474 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Absolute,days/yr,12.1760584,12.1760584,12.1760584,12.1760584,12.1760584,12.1760584,12.1760584,12.1760584,12.1760584,12.1760584 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Absolute,days/yr,97.03691153,97.03691153,97.03691153,97.03691153,97.03691153,97.03691153,97.03691153,97.03691153,97.03691153,97.03691153 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Absolute,days/yr,89.89444632,89.89444632,89.89444632,89.89444632,89.89444632,89.89444632,89.89444632,89.89444632,89.89444632,89.89444632 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Absolute,days/yr,0.672517773,0.672517773,0.672517773,0.672517773,0.672517773,0.672517773,0.672517773,0.672517773,0.672517773,0.672517773 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Absolute,days/yr,10.28876853,10.28876853,10.28876853,10.28876853,10.28876853,10.28876853,10.28876853,10.28876853,10.28876853,10.28876853 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Absolute,days/yr,2.267225897,2.267225897,2.267225897,2.267225897,2.267225897,2.267225897,2.267225897,2.267225897,2.267225897,2.267225897 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Absolute,days/yr,13.49424424,13.49424424,13.49424424,13.49424424,13.49424424,13.49424424,13.49424424,13.49424424,13.49424424,13.49424424 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Absolute,days/yr,229.3044625,229.3044625,229.3044625,229.3044625,229.3044625,229.3044625,229.3044625,229.3044625,229.3044625,229.3044625 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Absolute,days/yr,12.71245592,12.71245592,12.71245592,12.71245592,12.71245592,12.71245592,12.71245592,12.71245592,12.71245592,12.71245592 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Absolute,days/yr,20.01970236,20.01970236,20.01970236,20.01970236,20.01970236,20.01970236,20.01970236,20.01970236,20.01970236,20.01970236 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Absolute,days/yr,12.4939777,12.4939777,12.4939777,12.4939777,12.4939777,12.4939777,12.4939777,12.4939777,12.4939777,12.4939777 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Absolute,days/yr,51.43395273,51.43395273,51.43395273,51.43395273,51.43395273,51.43395273,51.43395273,51.43395273,51.43395273,51.43395273 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Absolute,days/yr,82.62296197,82.62296197,82.62296197,82.62296197,82.62296197,82.62296197,82.62296197,82.62296197,82.62296197,82.62296197 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Absolute,days/yr,76.51313035,76.51313035,76.51313035,76.51313035,76.51313035,76.51313035,76.51313035,76.51313035,76.51313035,76.51313035 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Absolute,days/yr,54.67574624,54.67574624,54.67574624,54.67574624,54.67574624,54.67574624,54.67574624,54.67574624,54.67574624,54.67574624 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Absolute,days/yr,23.24735674,23.24735674,23.24735674,23.24735674,23.24735674,23.24735674,23.24735674,23.24735674,23.24735674,23.24735674 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Absolute,days/yr,23.39224605,23.39224605,23.39224605,23.39224605,23.39224605,23.39224605,23.39224605,23.39224605,23.39224605,23.39224605 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Absolute,days/yr,27.40660032,27.40660032,27.40660032,27.40660032,27.40660032,27.40660032,27.40660032,27.40660032,27.40660032,27.40660032 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Absolute,days/yr,4.134370957,4.134370957,4.134370957,4.134370957,4.134370957,4.134370957,4.134370957,4.134370957,4.134370957,4.134370957 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Absolute,days/yr,31.7801685,31.7801685,31.7801685,31.7801685,31.7801685,31.7801685,31.7801685,31.7801685,31.7801685,31.7801685 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Absolute,days/yr,15.01856601,15.01856601,15.01856601,15.01856601,15.01856601,15.01856601,15.01856601,15.01856601,15.01856601,15.01856601 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Absolute,days/yr,32.85389609,32.85389609,32.85389609,32.85389609,32.85389609,32.85389609,32.85389609,32.85389609,32.85389609,32.85389609 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Absolute,days/yr,2.793225823,2.793225823,2.793225823,2.793225823,2.793225823,2.793225823,2.793225823,2.793225823,2.793225823,2.793225823 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Absolute,days/yr,92.41487925,92.41487925,92.41487925,92.41487925,92.41487925,92.41487925,92.41487925,92.41487925,92.41487925,92.41487925 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Absolute,days/yr,55.57690556,55.57690556,55.57690556,55.57690556,55.57690556,55.57690556,55.57690556,55.57690556,55.57690556,55.57690556 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Absolute,days/yr,24.86498969,24.86498969,24.86498969,24.86498969,24.86498969,24.86498969,24.86498969,24.86498969,24.86498969,24.86498969 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Absolute,days/yr,50.33068767,50.33068767,50.33068767,50.33068767,50.33068767,50.33068767,50.33068767,50.33068767,50.33068767,50.33068767 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Absolute,days/yr,235.5992717,235.5992717,235.5992717,235.5992717,235.5992717,235.5992717,235.5992717,235.5992717,235.5992717,235.5992717 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Absolute,days/yr,61.64276957,61.64276957,61.64276957,61.64276957,61.64276957,61.64276957,61.64276957,61.64276957,61.64276957,61.64276957 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Absolute,days/yr,4.358967645,4.358967645,4.358967645,4.358967645,4.358967645,4.358967645,4.358967645,4.358967645,4.358967645,4.358967645 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Absolute,days/yr,0.479817194,0.479817194,0.479817194,0.479817194,0.479817194,0.479817194,0.479817194,0.479817194,0.479817194,0.479817194 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Absolute,days/yr,19.65669809,19.65669809,19.65669809,19.65669809,19.65669809,19.65669809,19.65669809,19.65669809,19.65669809,19.65669809 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Absolute,days/yr,45.05502897,45.05502897,45.05502897,45.05502897,45.05502897,45.05502897,45.05502897,45.05502897,45.05502897,45.05502897 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Absolute,days/yr,69.20502262,69.20502262,69.20502262,69.20502262,69.20502262,69.20502262,69.20502262,69.20502262,69.20502262,69.20502262 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Absolute,days/yr,13.44329768,13.44329768,13.44329768,13.44329768,13.44329768,13.44329768,13.44329768,13.44329768,13.44329768,13.44329768 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Absolute,days/yr,138.1234335,138.1234335,138.1234335,138.1234335,138.1234335,138.1234335,138.1234335,138.1234335,138.1234335,138.1234335 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Absolute,days/yr,141.7909389,141.7909389,141.7909389,141.7909389,141.7909389,141.7909389,141.7909389,141.7909389,141.7909389,141.7909389 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Absolute,days/yr,12.11744496,12.11744496,12.11744496,12.11744496,12.11744496,12.11744496,12.11744496,12.11744496,12.11744496,12.11744496 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Absolute,days/yr,63.89803738,63.89803738,63.89803738,63.89803738,63.89803738,63.89803738,63.89803738,63.89803738,63.89803738,63.89803738 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Absolute,days/yr,8.196756781,8.196756781,8.196756781,8.196756781,8.196756781,8.196756781,8.196756781,8.196756781,8.196756781,8.196756781 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Absolute,days/yr,106.3427627,106.3427627,106.3427627,106.3427627,106.3427627,106.3427627,106.3427627,106.3427627,106.3427627,106.3427627 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Absolute,days/yr,17.4028633,17.4028633,17.4028633,17.4028633,17.4028633,17.4028633,17.4028633,17.4028633,17.4028633,17.4028633 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Absolute,days/yr,3.585262007,3.585262007,3.585262007,3.585262007,3.585262007,3.585262007,3.585262007,3.585262007,3.585262007,3.585262007 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Absolute,days/yr,2.344978514,2.344978514,2.344978514,2.344978514,2.344978514,2.344978514,2.344978514,2.344978514,2.344978514,2.344978514 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Absolute,days/yr,47.64902169,47.64902169,47.64902169,47.64902169,47.64902169,47.64902169,47.64902169,47.64902169,47.64902169,47.64902169 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Absolute,days/yr,17.36044644,17.36044644,17.36044644,17.36044644,17.36044644,17.36044644,17.36044644,17.36044644,17.36044644,17.36044644 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Absolute,days/yr,80.96896582,80.96896582,80.96896582,80.96896582,80.96896582,80.96896582,80.96896582,80.96896582,80.96896582,80.96896582 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Absolute,days/yr,9.001319743,9.001319743,9.001319743,9.001319743,9.001319743,9.001319743,9.001319743,9.001319743,9.001319743,9.001319743 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Absolute,days/yr,18.28138967,18.28138967,18.28138967,18.28138967,18.28138967,18.28138967,18.28138967,18.28138967,18.28138967,18.28138967 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Absolute,days/yr,24.12251033,24.12251033,24.12251033,24.12251033,24.12251033,24.12251033,24.12251033,24.12251033,24.12251033,24.12251033 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Absolute,days/yr,36.93510339,36.93510339,36.93510339,36.93510339,36.93510339,36.93510339,36.93510339,36.93510339,36.93510339,36.93510339 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Absolute,days/yr,13.83820446,13.83820446,13.83820446,13.83820446,13.83820446,13.83820446,13.83820446,13.83820446,13.83820446,13.83820446 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Absolute,days/yr,9.975607898,9.975607898,9.975607898,9.975607898,9.975607898,9.975607898,9.975607898,9.975607898,9.975607898,9.975607898 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Absolute,days/yr,107.0832066,107.0832066,107.0832066,107.0832066,107.0832066,107.0832066,107.0832066,107.0832066,107.0832066,107.0832066 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Absolute,days/yr,26.39984696,26.39984696,26.39984696,26.39984696,26.39984696,26.39984696,26.39984696,26.39984696,26.39984696,26.39984696 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Absolute,days/yr,79.1863185,79.1863185,79.1863185,79.1863185,79.1863185,79.1863185,79.1863185,79.1863185,79.1863185,79.1863185 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Absolute,days/yr,82.60961797,82.60961797,82.60961797,82.60961797,82.60961797,82.60961797,82.60961797,82.60961797,82.60961797,82.60961797 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Absolute,days/yr,285.0842142,285.0842142,285.0842142,285.0842142,285.0842142,285.0842142,285.0842142,285.0842142,285.0842142,285.0842142 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Absolute,days/yr,2.272623573,2.272623573,2.272623573,2.272623573,2.272623573,2.272623573,2.272623573,2.272623573,2.272623573,2.272623573 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Absolute,days/yr,18.95966859,18.95966859,18.95966859,18.95966859,18.95966859,18.95966859,18.95966859,18.95966859,18.95966859,18.95966859 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Absolute,days/yr,128.3880311,128.3880311,128.3880311,128.3880311,128.3880311,128.3880311,128.3880311,128.3880311,128.3880311,128.3880311 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Absolute,days/yr,13.91827073,13.91827073,13.91827073,13.91827073,13.91827073,13.91827073,13.91827073,13.91827073,13.91827073,13.91827073 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Absolute,days/yr,54.61422285,54.61422285,54.61422285,54.61422285,54.61422285,54.61422285,54.61422285,54.61422285,54.61422285,54.61422285 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Absolute,days/yr,24.7432413,24.7432413,24.7432413,24.7432413,24.7432413,24.7432413,24.7432413,24.7432413,24.7432413,24.7432413 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Absolute,days/yr,32.16971079,32.16971079,32.16971079,32.16971079,32.16971079,32.16971079,32.16971079,32.16971079,32.16971079,32.16971079 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Absolute,days/yr,19.66941267,19.66941267,19.66941267,19.66941267,19.66941267,19.66941267,19.66941267,19.66941267,19.66941267,19.66941267 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Absolute,days/yr,2.41507526,2.41507526,2.41507526,2.41507526,2.41507526,2.41507526,2.41507526,2.41507526,2.41507526,2.41507526 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Absolute,days/yr,0.311222733,0.311222733,0.311222733,0.311222733,0.311222733,0.311222733,0.311222733,0.311222733,0.311222733,0.311222733 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Absolute,days/yr,3.739645215,3.739645215,3.739645215,3.739645215,3.739645215,3.739645215,3.739645215,3.739645215,3.739645215,3.739645215 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Absolute,days/yr,4.528924707,4.528924707,4.528924707,4.528924707,4.528924707,4.528924707,4.528924707,4.528924707,4.528924707,4.528924707 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Absolute,days/yr,0.929075271,0.929075271,0.929075271,0.929075271,0.929075271,0.929075271,0.929075271,0.929075271,0.929075271,0.929075271 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Absolute|Land area weighted,days/yr,32.46758313,32.46758313,32.46758313,32.46758313,32.46758313,32.46758313,32.46758313,32.46758313,32.46758313,32.46758313 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Absolute|Land area weighted,days/yr,33.09807274,33.09807274,33.09807274,33.09807274,33.09807274,33.09807274,33.09807274,33.09807274,33.09807274,33.09807274 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Absolute|Land area weighted,days/yr,129.5253244,129.5253244,129.5253244,129.5253244,129.5253244,129.5253244,129.5253244,129.5253244,129.5253244,129.5253244 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Absolute|Land area weighted,days/yr,22.11673658,22.11673658,22.11673658,22.11673658,22.11673658,22.11673658,22.11673658,22.11673658,22.11673658,22.11673658 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Absolute|Land area weighted,days/yr,86.44695992,86.44695992,86.44695992,86.44695992,86.44695992,86.44695992,86.44695992,86.44695992,86.44695992,86.44695992 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Absolute|Land area weighted,days/yr,100.504037,100.504037,100.504037,100.504037,100.504037,100.504037,100.504037,100.504037,100.504037,100.504037 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Absolute|Land area weighted,days/yr,63.1607113,63.1607113,63.1607113,63.1607113,63.1607113,63.1607113,63.1607113,63.1607113,63.1607113,63.1607113 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Absolute|Land area weighted,days/yr,165.415878,165.415878,165.415878,165.415878,165.415878,165.415878,165.415878,165.415878,165.415878,165.415878 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Absolute|Land area weighted,days/yr,62.74799407,62.74799407,62.74799407,62.74799407,62.74799407,62.74799407,62.74799407,62.74799407,62.74799407,62.74799407 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Absolute|Land area weighted,days/yr,71.59756477,71.59756477,71.59756477,71.59756477,71.59756477,71.59756477,71.59756477,71.59756477,71.59756477,71.59756477 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Absolute|Land area weighted,days/yr,25.54205209,25.54205209,25.54205209,25.54205209,25.54205209,25.54205209,25.54205209,25.54205209,25.54205209,25.54205209 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Absolute|Land area weighted,days/yr,163.6905352,163.6905352,163.6905352,163.6905352,163.6905352,163.6905352,163.6905352,163.6905352,163.6905352,163.6905352 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Absolute|Land area weighted,days/yr,77.31201306,77.31201306,77.31201306,77.31201306,77.31201306,77.31201306,77.31201306,77.31201306,77.31201306,77.31201306 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Absolute|Land area weighted,days/yr,222.7784525,222.7784525,222.7784525,222.7784525,222.7784525,222.7784525,222.7784525,222.7784525,222.7784525,222.7784525 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Absolute|Land area weighted,days/yr,108.7513974,108.7513974,108.7513974,108.7513974,108.7513974,108.7513974,108.7513974,108.7513974,108.7513974,108.7513974 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.00907647,25.00907647,25.00907647,25.00907647,25.00907647,25.00907647,25.00907647,25.00907647,25.00907647,25.00907647 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Absolute|Land area weighted,days/yr,41.64902072,41.64902072,41.64902072,41.64902072,41.64902072,41.64902072,41.64902072,41.64902072,41.64902072,41.64902072 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Absolute|Land area weighted,days/yr,25.12739817,25.12739817,25.12739817,25.12739817,25.12739817,25.12739817,25.12739817,25.12739817,25.12739817,25.12739817 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Absolute|Land area weighted,days/yr,126.3207233,126.3207233,126.3207233,126.3207233,126.3207233,126.3207233,126.3207233,126.3207233,126.3207233,126.3207233 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Absolute|Land area weighted,days/yr,201.3337984,201.3337984,201.3337984,201.3337984,201.3337984,201.3337984,201.3337984,201.3337984,201.3337984,201.3337984 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Absolute|Land area weighted,days/yr,50.82337859,50.82337859,50.82337859,50.82337859,50.82337859,50.82337859,50.82337859,50.82337859,50.82337859,50.82337859 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Absolute|Land area weighted,days/yr,54.14365655,54.14365655,54.14365655,54.14365655,54.14365655,54.14365655,54.14365655,54.14365655,54.14365655,54.14365655 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Absolute|Land area weighted,days/yr,63.47640055,63.47640055,63.47640055,63.47640055,63.47640055,63.47640055,63.47640055,63.47640055,63.47640055,63.47640055 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Absolute|Land area weighted,days/yr,22.20907245,22.20907245,22.20907245,22.20907245,22.20907245,22.20907245,22.20907245,22.20907245,22.20907245,22.20907245 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Absolute|Land area weighted,days/yr,31.73910026,31.73910026,31.73910026,31.73910026,31.73910026,31.73910026,31.73910026,31.73910026,31.73910026,31.73910026 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Absolute|Land area weighted,days/yr,242.5445054,242.5445054,242.5445054,242.5445054,242.5445054,242.5445054,242.5445054,242.5445054,242.5445054,242.5445054 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Absolute|Land area weighted,days/yr,96.2887331,96.2887331,96.2887331,96.2887331,96.2887331,96.2887331,96.2887331,96.2887331,96.2887331,96.2887331 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Absolute|Land area weighted,days/yr,37.42408437,37.42408437,37.42408437,37.42408437,37.42408437,37.42408437,37.42408437,37.42408437,37.42408437,37.42408437 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Absolute|Land area weighted,days/yr,48.61060731,48.61060731,48.61060731,48.61060731,48.61060731,48.61060731,48.61060731,48.61060731,48.61060731,48.61060731 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Absolute|Land area weighted,days/yr,17.75207584,17.75207584,17.75207584,17.75207584,17.75207584,17.75207584,17.75207584,17.75207584,17.75207584,17.75207584 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Absolute|Land area weighted,days/yr,192.7294269,192.7294269,192.7294269,192.7294269,192.7294269,192.7294269,192.7294269,192.7294269,192.7294269,192.7294269 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Absolute|Land area weighted,days/yr,135.8396777,135.8396777,135.8396777,135.8396777,135.8396777,135.8396777,135.8396777,135.8396777,135.8396777,135.8396777 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.46216498,10.46216498,10.46216498,10.46216498,10.46216498,10.46216498,10.46216498,10.46216498,10.46216498,10.46216498 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Absolute|Land area weighted,days/yr,23.7442509,23.7442509,23.7442509,23.7442509,23.7442509,23.7442509,23.7442509,23.7442509,23.7442509,23.7442509 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Absolute|Land area weighted,days/yr,237.7625776,237.7625776,237.7625776,237.7625776,237.7625776,237.7625776,237.7625776,237.7625776,237.7625776,237.7625776 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Absolute|Land area weighted,days/yr,29.17829275,29.17829275,29.17829275,29.17829275,29.17829275,29.17829275,29.17829275,29.17829275,29.17829275,29.17829275 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Absolute|Land area weighted,days/yr,129.8602017,129.8602017,129.8602017,129.8602017,129.8602017,129.8602017,129.8602017,129.8602017,129.8602017,129.8602017 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Absolute|Land area weighted,days/yr,51.49640092,51.49640092,51.49640092,51.49640092,51.49640092,51.49640092,51.49640092,51.49640092,51.49640092,51.49640092 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Absolute|Land area weighted,days/yr,67.50449722,67.50449722,67.50449722,67.50449722,67.50449722,67.50449722,67.50449722,67.50449722,67.50449722,67.50449722 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Absolute|Land area weighted,days/yr,61.04133557,61.04133557,61.04133557,61.04133557,61.04133557,61.04133557,61.04133557,61.04133557,61.04133557,61.04133557 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Absolute|Land area weighted,days/yr,33.18504425,33.18504425,33.18504425,33.18504425,33.18504425,33.18504425,33.18504425,33.18504425,33.18504425,33.18504425 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Absolute|Land area weighted,days/yr,74.21426017,74.21426017,74.21426017,74.21426017,74.21426017,74.21426017,74.21426017,74.21426017,74.21426017,74.21426017 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Absolute|Land area weighted,days/yr,35.37776946,35.37776946,35.37776946,35.37776946,35.37776946,35.37776946,35.37776946,35.37776946,35.37776946,35.37776946 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Absolute|Land area weighted,days/yr,23.04817715,23.04817715,23.04817715,23.04817715,23.04817715,23.04817715,23.04817715,23.04817715,23.04817715,23.04817715 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Absolute|Land area weighted,days/yr,81.77298484,81.77298484,81.77298484,81.77298484,81.77298484,81.77298484,81.77298484,81.77298484,81.77298484,81.77298484 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Absolute|Land area weighted,days/yr,61.78139386,61.78139386,61.78139386,61.78139386,61.78139386,61.78139386,61.78139386,61.78139386,61.78139386,61.78139386 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Absolute|Land area weighted,days/yr,144.0891096,144.0891096,144.0891096,144.0891096,144.0891096,144.0891096,144.0891096,144.0891096,144.0891096,144.0891096 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Absolute|Land area weighted,days/yr,106.1682742,106.1682742,106.1682742,106.1682742,106.1682742,106.1682742,106.1682742,106.1682742,106.1682742,106.1682742 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Absolute|Land area weighted,days/yr,244.1332527,244.1332527,244.1332527,244.1332527,244.1332527,244.1332527,244.1332527,244.1332527,244.1332527,244.1332527 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Absolute|Land area weighted,days/yr,15.19767315,15.19767315,15.19767315,15.19767315,15.19767315,15.19767315,15.19767315,15.19767315,15.19767315,15.19767315 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Absolute|Land area weighted,days/yr,7.785638213,7.785638213,7.785638213,7.785638213,7.785638213,7.785638213,7.785638213,7.785638213,7.785638213,7.785638213 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Absolute|Land area weighted,days/yr,104.7914458,104.7914458,104.7914458,104.7914458,104.7914458,104.7914458,104.7914458,104.7914458,104.7914458,104.7914458 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Absolute|Land area weighted,days/yr,30.59928459,30.59928459,30.59928459,30.59928459,30.59928459,30.59928459,30.59928459,30.59928459,30.59928459,30.59928459 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Absolute|Land area weighted,days/yr,26.18472407,26.18472407,26.18472407,26.18472407,26.18472407,26.18472407,26.18472407,26.18472407,26.18472407,26.18472407 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Absolute|Land area weighted,days/yr,177.6647901,177.6647901,177.6647901,177.6647901,177.6647901,177.6647901,177.6647901,177.6647901,177.6647901,177.6647901 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Absolute|Land area weighted,days/yr,126.620124,126.620124,126.620124,126.620124,126.620124,126.620124,126.620124,126.620124,126.620124,126.620124 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Absolute|Land area weighted,days/yr,61.45180031,61.45180031,61.45180031,61.45180031,61.45180031,61.45180031,61.45180031,61.45180031,61.45180031,61.45180031 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Absolute|Land area weighted,days/yr,63.49782642,63.49782642,63.49782642,63.49782642,63.49782642,63.49782642,63.49782642,63.49782642,63.49782642,63.49782642 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Absolute|Land area weighted,days/yr,19.97931701,19.97931701,19.97931701,19.97931701,19.97931701,19.97931701,19.97931701,19.97931701,19.97931701,19.97931701 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Absolute|Land area weighted,days/yr,20.91872608,20.91872608,20.91872608,20.91872608,20.91872608,20.91872608,20.91872608,20.91872608,20.91872608,20.91872608 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Absolute|Land area weighted,days/yr,79.54874562,79.54874562,79.54874562,79.54874562,79.54874562,79.54874562,79.54874562,79.54874562,79.54874562,79.54874562 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Absolute|Land area weighted,days/yr,129.1523915,129.1523915,129.1523915,129.1523915,129.1523915,129.1523915,129.1523915,129.1523915,129.1523915,129.1523915 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Absolute|Land area weighted,days/yr,222.9852434,222.9852434,222.9852434,222.9852434,222.9852434,222.9852434,222.9852434,222.9852434,222.9852434,222.9852434 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Absolute|Land area weighted,days/yr,36.54111025,36.54111025,36.54111025,36.54111025,36.54111025,36.54111025,36.54111025,36.54111025,36.54111025,36.54111025 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Absolute|Land area weighted,days/yr,91.76624261,91.76624261,91.76624261,91.76624261,91.76624261,91.76624261,91.76624261,91.76624261,91.76624261,91.76624261 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Absolute|Land area weighted,days/yr,27.94272849,27.94272849,27.94272849,27.94272849,27.94272849,27.94272849,27.94272849,27.94272849,27.94272849,27.94272849 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Absolute|Land area weighted,days/yr,99.02052831,99.02052831,99.02052831,99.02052831,99.02052831,99.02052831,99.02052831,99.02052831,99.02052831,99.02052831 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Absolute|Land area weighted,days/yr,97.77278615,97.77278615,97.77278615,97.77278615,97.77278615,97.77278615,97.77278615,97.77278615,97.77278615,97.77278615 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Absolute|Land area weighted,days/yr,37.71384712,37.71384712,37.71384712,37.71384712,37.71384712,37.71384712,37.71384712,37.71384712,37.71384712,37.71384712 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Absolute|Land area weighted,days/yr,26.17621939,26.17621939,26.17621939,26.17621939,26.17621939,26.17621939,26.17621939,26.17621939,26.17621939,26.17621939 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Absolute|Land area weighted,days/yr,28.91806007,28.91806007,28.91806007,28.91806007,28.91806007,28.91806007,28.91806007,28.91806007,28.91806007,28.91806007 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Absolute|Land area weighted,days/yr,29.86807583,29.86807583,29.86807583,29.86807583,29.86807583,29.86807583,29.86807583,29.86807583,29.86807583,29.86807583 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Absolute|Land area weighted,days/yr,212.6224145,212.6224145,212.6224145,212.6224145,212.6224145,212.6224145,212.6224145,212.6224145,212.6224145,212.6224145 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Absolute|Land area weighted,days/yr,14.17861687,14.17861687,14.17861687,14.17861687,14.17861687,14.17861687,14.17861687,14.17861687,14.17861687,14.17861687 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Absolute|Land area weighted,days/yr,23.02544531,23.02544531,23.02544531,23.02544531,23.02544531,23.02544531,23.02544531,23.02544531,23.02544531,23.02544531 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Absolute|Land area weighted,days/yr,287.2499709,287.2499709,287.2499709,287.2499709,287.2499709,287.2499709,287.2499709,287.2499709,287.2499709,287.2499709 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Absolute|Land area weighted,days/yr,24.77337501,24.77337501,24.77337501,24.77337501,24.77337501,24.77337501,24.77337501,24.77337501,24.77337501,24.77337501 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Absolute|Land area weighted,days/yr,99.05455939,99.05455939,99.05455939,99.05455939,99.05455939,99.05455939,99.05455939,99.05455939,99.05455939,99.05455939 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Absolute|Land area weighted,days/yr,41.44095407,41.44095407,41.44095407,41.44095407,41.44095407,41.44095407,41.44095407,41.44095407,41.44095407,41.44095407 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Absolute|Land area weighted,days/yr,23.55744702,23.55744702,23.55744702,23.55744702,23.55744702,23.55744702,23.55744702,23.55744702,23.55744702,23.55744702 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Absolute|Land area weighted,days/yr,51.45287526,51.45287526,51.45287526,51.45287526,51.45287526,51.45287526,51.45287526,51.45287526,51.45287526,51.45287526 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Absolute|Land area weighted,days/yr,231.6389013,231.6389013,231.6389013,231.6389013,231.6389013,231.6389013,231.6389013,231.6389013,231.6389013,231.6389013 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Absolute|Land area weighted,days/yr,35.2611961,35.2611961,35.2611961,35.2611961,35.2611961,35.2611961,35.2611961,35.2611961,35.2611961,35.2611961 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Absolute|Land area weighted,days/yr,38.02284063,38.02284063,38.02284063,38.02284063,38.02284063,38.02284063,38.02284063,38.02284063,38.02284063,38.02284063 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Absolute|Land area weighted,days/yr,33.93722957,33.93722957,33.93722957,33.93722957,33.93722957,33.93722957,33.93722957,33.93722957,33.93722957,33.93722957 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Absolute|Land area weighted,days/yr,29.98542845,29.98542845,29.98542845,29.98542845,29.98542845,29.98542845,29.98542845,29.98542845,29.98542845,29.98542845 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Absolute|Land area weighted,days/yr,142.3965063,142.3965063,142.3965063,142.3965063,142.3965063,142.3965063,142.3965063,142.3965063,142.3965063,142.3965063 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Absolute|Land area weighted,days/yr,64.8660361,64.8660361,64.8660361,64.8660361,64.8660361,64.8660361,64.8660361,64.8660361,64.8660361,64.8660361 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Absolute|Land area weighted,days/yr,86.87552937,86.87552937,86.87552937,86.87552937,86.87552937,86.87552937,86.87552937,86.87552937,86.87552937,86.87552937 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Absolute|Land area weighted,days/yr,22.09440139,22.09440139,22.09440139,22.09440139,22.09440139,22.09440139,22.09440139,22.09440139,22.09440139,22.09440139 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Absolute|Land area weighted,days/yr,17.17338871,17.17338871,17.17338871,17.17338871,17.17338871,17.17338871,17.17338871,17.17338871,17.17338871,17.17338871 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Absolute|Land area weighted,days/yr,17.81906857,17.81906857,17.81906857,17.81906857,17.81906857,17.81906857,17.81906857,17.81906857,17.81906857,17.81906857 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Absolute|Land area weighted,days/yr,21.26905113,21.26905113,21.26905113,21.26905113,21.26905113,21.26905113,21.26905113,21.26905113,21.26905113,21.26905113 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Absolute|Land area weighted,days/yr,76.23981907,76.23981907,76.23981907,76.23981907,76.23981907,76.23981907,76.23981907,76.23981907,76.23981907,76.23981907 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Absolute|Land area weighted,days/yr,35.98951389,35.98951389,35.98951389,35.98951389,35.98951389,35.98951389,35.98951389,35.98951389,35.98951389,35.98951389 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Absolute|Land area weighted,days/yr,46.16755028,46.16755028,46.16755028,46.16755028,46.16755028,46.16755028,46.16755028,46.16755028,46.16755028,46.16755028 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Absolute|Land area weighted,days/yr,29.32348633,29.32348633,29.32348633,29.32348633,29.32348633,29.32348633,29.32348633,29.32348633,29.32348633,29.32348633 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Absolute|Land area weighted,days/yr,277.5555499,277.5555499,277.5555499,277.5555499,277.5555499,277.5555499,277.5555499,277.5555499,277.5555499,277.5555499 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Absolute|Land area weighted,days/yr,54.51678874,54.51678874,54.51678874,54.51678874,54.51678874,54.51678874,54.51678874,54.51678874,54.51678874,54.51678874 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Absolute|Land area weighted,days/yr,198.2847492,198.2847492,198.2847492,198.2847492,198.2847492,198.2847492,198.2847492,198.2847492,198.2847492,198.2847492 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Absolute|Land area weighted,days/yr,45.30220522,45.30220522,45.30220522,45.30220522,45.30220522,45.30220522,45.30220522,45.30220522,45.30220522,45.30220522 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Absolute|Land area weighted,days/yr,26.80911729,26.80911729,26.80911729,26.80911729,26.80911729,26.80911729,26.80911729,26.80911729,26.80911729,26.80911729 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Absolute|Land area weighted,days/yr,43.03321689,43.03321689,43.03321689,43.03321689,43.03321689,43.03321689,43.03321689,43.03321689,43.03321689,43.03321689 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Absolute|Land area weighted,days/yr,21.83066026,21.83066026,21.83066026,21.83066026,21.83066026,21.83066026,21.83066026,21.83066026,21.83066026,21.83066026 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Absolute|Land area weighted,days/yr,19.53060811,19.53060811,19.53060811,19.53060811,19.53060811,19.53060811,19.53060811,19.53060811,19.53060811,19.53060811 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Absolute|Land area weighted,days/yr,149.22385,149.22385,149.22385,149.22385,149.22385,149.22385,149.22385,149.22385,149.22385,149.22385 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Absolute|Land area weighted,days/yr,28.08630192,28.08630192,28.08630192,28.08630192,28.08630192,28.08630192,28.08630192,28.08630192,28.08630192,28.08630192 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Absolute|Land area weighted,days/yr,21.92375671,21.92375671,21.92375671,21.92375671,21.92375671,21.92375671,21.92375671,21.92375671,21.92375671,21.92375671 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Absolute|Land area weighted,days/yr,105.1507721,105.1507721,105.1507721,105.1507721,105.1507721,105.1507721,105.1507721,105.1507721,105.1507721,105.1507721 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Absolute|Land area weighted,days/yr,152.2758373,152.2758373,152.2758373,152.2758373,152.2758373,152.2758373,152.2758373,152.2758373,152.2758373,152.2758373 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Absolute|Land area weighted,days/yr,222.0253643,222.0253643,222.0253643,222.0253643,222.0253643,222.0253643,222.0253643,222.0253643,222.0253643,222.0253643 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Absolute|Land area weighted,days/yr,93.41974954,93.41974954,93.41974954,93.41974954,93.41974954,93.41974954,93.41974954,93.41974954,93.41974954,93.41974954 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Absolute|Land area weighted,days/yr,149.9599979,149.9599979,149.9599979,149.9599979,149.9599979,149.9599979,149.9599979,149.9599979,149.9599979,149.9599979 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Absolute|Land area weighted,days/yr,18.95678779,18.95678779,18.95678779,18.95678779,18.95678779,18.95678779,18.95678779,18.95678779,18.95678779,18.95678779 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Absolute|Land area weighted,days/yr,21.96994744,21.96994744,21.96994744,21.96994744,21.96994744,21.96994744,21.96994744,21.96994744,21.96994744,21.96994744 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Absolute|Land area weighted,days/yr,87.15158598,87.15158598,87.15158598,87.15158598,87.15158598,87.15158598,87.15158598,87.15158598,87.15158598,87.15158598 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Absolute|Land area weighted,days/yr,29.85649258,29.85649258,29.85649258,29.85649258,29.85649258,29.85649258,29.85649258,29.85649258,29.85649258,29.85649258 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Absolute|Land area weighted,days/yr,173.9915192,173.9915192,173.9915192,173.9915192,173.9915192,173.9915192,173.9915192,173.9915192,173.9915192,173.9915192 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Absolute|Land area weighted,days/yr,89.58126227,89.58126227,89.58126227,89.58126227,89.58126227,89.58126227,89.58126227,89.58126227,89.58126227,89.58126227 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Absolute|Land area weighted,days/yr,25.59436681,25.59436681,25.59436681,25.59436681,25.59436681,25.59436681,25.59436681,25.59436681,25.59436681,25.59436681 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Absolute|Land area weighted,days/yr,48.28343493,48.28343493,48.28343493,48.28343493,48.28343493,48.28343493,48.28343493,48.28343493,48.28343493,48.28343493 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Absolute|Land area weighted,days/yr,24.19632914,24.19632914,24.19632914,24.19632914,24.19632914,24.19632914,24.19632914,24.19632914,24.19632914,24.19632914 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Absolute|Land area weighted,days/yr,22.74690141,22.74690141,22.74690141,22.74690141,22.74690141,22.74690141,22.74690141,22.74690141,22.74690141,22.74690141 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Absolute|Land area weighted,days/yr,32.04257522,32.04257522,32.04257522,32.04257522,32.04257522,32.04257522,32.04257522,32.04257522,32.04257522,32.04257522 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Absolute|Land area weighted,days/yr,114.6602869,114.6602869,114.6602869,114.6602869,114.6602869,114.6602869,114.6602869,114.6602869,114.6602869,114.6602869 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Absolute|Land area weighted,days/yr,27.32174603,27.32174603,27.32174603,27.32174603,27.32174603,27.32174603,27.32174603,27.32174603,27.32174603,27.32174603 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Absolute|Land area weighted,days/yr,110.394507,110.394507,110.394507,110.394507,110.394507,110.394507,110.394507,110.394507,110.394507,110.394507 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Absolute|Land area weighted,days/yr,193.4112987,193.4112987,193.4112987,193.4112987,193.4112987,193.4112987,193.4112987,193.4112987,193.4112987,193.4112987 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Absolute|Land area weighted,days/yr,31.22568219,31.22568219,31.22568219,31.22568219,31.22568219,31.22568219,31.22568219,31.22568219,31.22568219,31.22568219 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Absolute|Land area weighted,days/yr,19.80890871,19.80890871,19.80890871,19.80890871,19.80890871,19.80890871,19.80890871,19.80890871,19.80890871,19.80890871 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Absolute|Land area weighted,days/yr,20.61469204,20.61469204,20.61469204,20.61469204,20.61469204,20.61469204,20.61469204,20.61469204,20.61469204,20.61469204 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Absolute|Land area weighted,days/yr,30.60764597,30.60764597,30.60764597,30.60764597,30.60764597,30.60764597,30.60764597,30.60764597,30.60764597,30.60764597 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Absolute|Land area weighted,days/yr,255.6221812,255.6221812,255.6221812,255.6221812,255.6221812,255.6221812,255.6221812,255.6221812,255.6221812,255.6221812 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Absolute|Land area weighted,days/yr,22.58241534,22.58241534,22.58241534,22.58241534,22.58241534,22.58241534,22.58241534,22.58241534,22.58241534,22.58241534 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Absolute|Land area weighted,days/yr,26.05103962,26.05103962,26.05103962,26.05103962,26.05103962,26.05103962,26.05103962,26.05103962,26.05103962,26.05103962 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Absolute|Land area weighted,days/yr,27.39139122,27.39139122,27.39139122,27.39139122,27.39139122,27.39139122,27.39139122,27.39139122,27.39139122,27.39139122 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Absolute|Land area weighted,days/yr,127.6987297,127.6987297,127.6987297,127.6987297,127.6987297,127.6987297,127.6987297,127.6987297,127.6987297,127.6987297 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Absolute|Land area weighted,days/yr,110.784639,110.784639,110.784639,110.784639,110.784639,110.784639,110.784639,110.784639,110.784639,110.784639 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Absolute|Land area weighted,days/yr,115.1682315,115.1682315,115.1682315,115.1682315,115.1682315,115.1682315,115.1682315,115.1682315,115.1682315,115.1682315 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Absolute|Land area weighted,days/yr,127.1479816,127.1479816,127.1479816,127.1479816,127.1479816,127.1479816,127.1479816,127.1479816,127.1479816,127.1479816 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Absolute|Land area weighted,days/yr,45.59451658,45.59451658,45.59451658,45.59451658,45.59451658,45.59451658,45.59451658,45.59451658,45.59451658,45.59451658 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Absolute|Land area weighted,days/yr,62.44082061,62.44082061,62.44082061,62.44082061,62.44082061,62.44082061,62.44082061,62.44082061,62.44082061,62.44082061 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Absolute|Land area weighted,days/yr,32.62213169,32.62213169,32.62213169,32.62213169,32.62213169,32.62213169,32.62213169,32.62213169,32.62213169,32.62213169 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Absolute|Land area weighted,days/yr,19.01134757,19.01134757,19.01134757,19.01134757,19.01134757,19.01134757,19.01134757,19.01134757,19.01134757,19.01134757 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Absolute|Land area weighted,days/yr,65.1018704,65.1018704,65.1018704,65.1018704,65.1018704,65.1018704,65.1018704,65.1018704,65.1018704,65.1018704 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.9042138,25.9042138,25.9042138,25.9042138,25.9042138,25.9042138,25.9042138,25.9042138,25.9042138,25.9042138 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Absolute|Land area weighted,days/yr,49.80742232,49.80742232,49.80742232,49.80742232,49.80742232,49.80742232,49.80742232,49.80742232,49.80742232,49.80742232 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Absolute|Land area weighted,days/yr,42.97270471,42.97270471,42.97270471,42.97270471,42.97270471,42.97270471,42.97270471,42.97270471,42.97270471,42.97270471 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Absolute|Land area weighted,days/yr,236.9674649,236.9674649,236.9674649,236.9674649,236.9674649,236.9674649,236.9674649,236.9674649,236.9674649,236.9674649 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Absolute|Land area weighted,days/yr,61.96896245,61.96896245,61.96896245,61.96896245,61.96896245,61.96896245,61.96896245,61.96896245,61.96896245,61.96896245 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Absolute|Land area weighted,days/yr,40.29757193,40.29757193,40.29757193,40.29757193,40.29757193,40.29757193,40.29757193,40.29757193,40.29757193,40.29757193 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Absolute|Land area weighted,days/yr,97.55317241,97.55317241,97.55317241,97.55317241,97.55317241,97.55317241,97.55317241,97.55317241,97.55317241,97.55317241 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Absolute|Land area weighted,days/yr,261.2166918,261.2166918,261.2166918,261.2166918,261.2166918,261.2166918,261.2166918,261.2166918,261.2166918,261.2166918 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Absolute|Land area weighted,days/yr,93.1009391,93.1009391,93.1009391,93.1009391,93.1009391,93.1009391,93.1009391,93.1009391,93.1009391,93.1009391 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Absolute|Land area weighted,days/yr,79.25395894,79.25395894,79.25395894,79.25395894,79.25395894,79.25395894,79.25395894,79.25395894,79.25395894,79.25395894 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Absolute|Land area weighted,days/yr,23.98727958,23.98727958,23.98727958,23.98727958,23.98727958,23.98727958,23.98727958,23.98727958,23.98727958,23.98727958 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Absolute|Land area weighted,days/yr,27.62189042,27.62189042,27.62189042,27.62189042,27.62189042,27.62189042,27.62189042,27.62189042,27.62189042,27.62189042 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Absolute|Land area weighted,days/yr,55.31363137,55.31363137,55.31363137,55.31363137,55.31363137,55.31363137,55.31363137,55.31363137,55.31363137,55.31363137 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Absolute|Land area weighted,days/yr,177.4495297,177.4495297,177.4495297,177.4495297,177.4495297,177.4495297,177.4495297,177.4495297,177.4495297,177.4495297 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Absolute|Land area weighted,days/yr,19.56033683,19.56033683,19.56033683,19.56033683,19.56033683,19.56033683,19.56033683,19.56033683,19.56033683,19.56033683 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Absolute|Land area weighted,days/yr,167.9471795,167.9471795,167.9471795,167.9471795,167.9471795,167.9471795,167.9471795,167.9471795,167.9471795,167.9471795 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Absolute|Land area weighted,days/yr,211.156866,211.156866,211.156866,211.156866,211.156866,211.156866,211.156866,211.156866,211.156866,211.156866 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Absolute|Land area weighted,days/yr,18.15521552,18.15521552,18.15521552,18.15521552,18.15521552,18.15521552,18.15521552,18.15521552,18.15521552,18.15521552 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Absolute|Land area weighted,days/yr,109.7385986,109.7385986,109.7385986,109.7385986,109.7385986,109.7385986,109.7385986,109.7385986,109.7385986,109.7385986 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Absolute|Land area weighted,days/yr,25.93993199,25.93993199,25.93993199,25.93993199,25.93993199,25.93993199,25.93993199,25.93993199,25.93993199,25.93993199 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Absolute|Land area weighted,days/yr,133.429036,133.429036,133.429036,133.429036,133.429036,133.429036,133.429036,133.429036,133.429036,133.429036 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Absolute|Land area weighted,days/yr,21.72928598,21.72928598,21.72928598,21.72928598,21.72928598,21.72928598,21.72928598,21.72928598,21.72928598,21.72928598 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Absolute|Land area weighted,days/yr,18.25800155,18.25800155,18.25800155,18.25800155,18.25800155,18.25800155,18.25800155,18.25800155,18.25800155,18.25800155 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Absolute|Land area weighted,days/yr,22.88492104,22.88492104,22.88492104,22.88492104,22.88492104,22.88492104,22.88492104,22.88492104,22.88492104,22.88492104 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Absolute|Land area weighted,days/yr,54.29220633,54.29220633,54.29220633,54.29220633,54.29220633,54.29220633,54.29220633,54.29220633,54.29220633,54.29220633 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Absolute|Land area weighted,days/yr,33.87736216,33.87736216,33.87736216,33.87736216,33.87736216,33.87736216,33.87736216,33.87736216,33.87736216,33.87736216 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Absolute|Land area weighted,days/yr,143.6195593,143.6195593,143.6195593,143.6195593,143.6195593,143.6195593,143.6195593,143.6195593,143.6195593,143.6195593 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Absolute|Land area weighted,days/yr,27.02795461,27.02795461,27.02795461,27.02795461,27.02795461,27.02795461,27.02795461,27.02795461,27.02795461,27.02795461 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Absolute|Land area weighted,days/yr,35.00427638,35.00427638,35.00427638,35.00427638,35.00427638,35.00427638,35.00427638,35.00427638,35.00427638,35.00427638 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Absolute|Land area weighted,days/yr,36.52411501,36.52411501,36.52411501,36.52411501,36.52411501,36.52411501,36.52411501,36.52411501,36.52411501,36.52411501 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Absolute|Land area weighted,days/yr,46.60545795,46.60545795,46.60545795,46.60545795,46.60545795,46.60545795,46.60545795,46.60545795,46.60545795,46.60545795 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Absolute|Land area weighted,days/yr,22.03784496,22.03784496,22.03784496,22.03784496,22.03784496,22.03784496,22.03784496,22.03784496,22.03784496,22.03784496 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Absolute|Land area weighted,days/yr,16.46034219,16.46034219,16.46034219,16.46034219,16.46034219,16.46034219,16.46034219,16.46034219,16.46034219,16.46034219 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Absolute|Land area weighted,days/yr,147.1102662,147.1102662,147.1102662,147.1102662,147.1102662,147.1102662,147.1102662,147.1102662,147.1102662,147.1102662 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Absolute|Land area weighted,days/yr,39.89395817,39.89395817,39.89395817,39.89395817,39.89395817,39.89395817,39.89395817,39.89395817,39.89395817,39.89395817 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Absolute|Land area weighted,days/yr,105.7627229,105.7627229,105.7627229,105.7627229,105.7627229,105.7627229,105.7627229,105.7627229,105.7627229,105.7627229 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Absolute|Land area weighted,days/yr,98.79506465,98.79506465,98.79506465,98.79506465,98.79506465,98.79506465,98.79506465,98.79506465,98.79506465,98.79506465 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Absolute|Land area weighted,days/yr,314.1934771,314.1934771,314.1934771,314.1934771,314.1934771,314.1934771,314.1934771,314.1934771,314.1934771,314.1934771 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Absolute|Land area weighted,days/yr,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Absolute|Land area weighted,days/yr,29.21655789,29.21655789,29.21655789,29.21655789,29.21655789,29.21655789,29.21655789,29.21655789,29.21655789,29.21655789 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Absolute|Land area weighted,days/yr,156.8192065,156.8192065,156.8192065,156.8192065,156.8192065,156.8192065,156.8192065,156.8192065,156.8192065,156.8192065 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Absolute|Land area weighted,days/yr,21.83536849,21.83536849,21.83536849,21.83536849,21.83536849,21.83536849,21.83536849,21.83536849,21.83536849,21.83536849 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Absolute|Land area weighted,days/yr,208.907288,208.907288,208.907288,208.907288,208.907288,208.907288,208.907288,208.907288,208.907288,208.907288 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Absolute|Land area weighted,days/yr,57.57725367,57.57725367,57.57725367,57.57725367,57.57725367,57.57725367,57.57725367,57.57725367,57.57725367,57.57725367 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Absolute|Land area weighted,days/yr,49.31435677,49.31435677,49.31435677,49.31435677,49.31435677,49.31435677,49.31435677,49.31435677,49.31435677,49.31435677 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Absolute|Land area weighted,days/yr,28.32716368,28.32716368,28.32716368,28.32716368,28.32716368,28.32716368,28.32716368,28.32716368,28.32716368,28.32716368 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Absolute|Land area weighted,days/yr,23.22344593,23.22344593,23.22344593,23.22344593,23.22344593,23.22344593,23.22344593,23.22344593,23.22344593,23.22344593 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Absolute|Land area weighted,days/yr,9.8972561,9.8972561,9.8972561,9.8972561,9.8972561,9.8972561,9.8972561,9.8972561,9.8972561,9.8972561 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Absolute|Land area weighted,days/yr,16.25671907,16.25671907,16.25671907,16.25671907,16.25671907,16.25671907,16.25671907,16.25671907,16.25671907,16.25671907 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Absolute|Land area weighted,days/yr,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Absolute|Land area weighted,days/yr,23.22898299,23.22898299,23.22898299,23.22898299,23.22898299,23.22898299,23.22898299,23.22898299,23.22898299,23.22898299 +Climate Solutions,ssp2_1p5,CAN,cdd|Hazard|Absolute|Population weighted,days/yr,22.29493103,22.30135599,22.30955152,22.31339834,22.319667,22.32216979,22.32495802,22.32774987,22.32753051,22.32459252 +Climate Solutions,ssp2_1p5,STP,cdd|Hazard|Absolute|Population weighted,days/yr,35.80749585,35.80876659,35.81016678,35.81166561,35.81310292,35.81442293,35.81559435,35.81658959,35.81743256,35.81816353 +Climate Solutions,ssp2_1p5,TKM,cdd|Hazard|Absolute|Population weighted,days/yr,132.5138724,132.7690166,133.1071679,133.4797949,133.8509014,134.2578835,134.6699889,135.0973148,135.5047895,135.8217076 +Climate Solutions,ssp2_1p5,LTU,cdd|Hazard|Absolute|Population weighted,days/yr,22.06997747,22.0667352,22.06378708,22.06135322,22.05920358,22.0572822,22.05556764,22.05396413,22.05239966,22.0508777 +Climate Solutions,ssp2_1p5,KHM,cdd|Hazard|Absolute|Population weighted,days/yr,84.87792021,84.86479969,84.86626275,84.8774203,84.90088562,84.93418961,84.97313732,85.01791669,85.06530982,85.11044101 +Climate Solutions,ssp2_1p5,ETH,cdd|Hazard|Absolute|Population weighted,days/yr,83.99227256,83.99973282,84.00289441,84.01343981,84.02053772,84.02734802,84.03774516,84.05002362,84.06281261,84.07570783 +Climate Solutions,ssp2_1p5,SWZ,cdd|Hazard|Absolute|Population weighted,days/yr,61.92380015,61.84289589,61.75632383,61.67277533,61.60446914,61.54539005,61.48957915,61.43556711,61.38910927,61.34737958 +Climate Solutions,ssp2_1p5,PSE,cdd|Hazard|Absolute|Population weighted,days/yr,165.1912344,165.1885184,165.1973067,165.2102735,165.2245259,165.2386151,165.2459712,165.2446146,165.2364256,165.2222166 +Climate Solutions,ssp2_1p5,ARG,cdd|Hazard|Absolute|Population weighted,days/yr,46.1877761,46.05765359,45.9402611,45.84381327,45.76223589,45.69564431,45.64280682,45.59943928,45.56548258,45.53965544 +Climate Solutions,ssp2_1p5,BOL,cdd|Hazard|Absolute|Population weighted,days/yr,67.60898681,67.5356749,67.4563402,67.38468665,67.3292826,67.27954429,67.23071766,67.18869127,67.15789954,67.13255701 +Climate Solutions,ssp2_1p5,BHS,cdd|Hazard|Absolute|Population weighted,days/yr,23.5342064,23.50693033,23.48607167,23.47469015,23.46767076,23.45913153,23.45320924,23.45079274,23.44768339,23.44274144 +Climate Solutions,ssp2_1p5,BFA,cdd|Hazard|Absolute|Population weighted,days/yr,163.3936903,163.307885,163.2749179,163.2709707,163.2859128,163.3082144,163.3286001,163.3479672,163.3658072,163.3823922 +Climate Solutions,ssp2_1p5,GHA,cdd|Hazard|Absolute|Population weighted,days/yr,59.71198881,59.8873236,60.00322842,60.07701601,60.11305172,60.12313669,60.11610421,60.09758186,60.07128133,60.03942261 +Climate Solutions,ssp2_1p5,SAU,cdd|Hazard|Absolute|Population weighted,days/yr,204.2843945,204.5111203,204.5919898,204.6366573,204.6577751,204.6679545,204.6451641,204.6037585,204.5589853,204.5128071 +Climate Solutions,ssp2_1p5,CPV,cdd|Hazard|Absolute|Population weighted,days/yr,102.1732031,102.2216907,102.2647398,102.3012233,102.33195,102.3536628,102.3702273,102.385189,102.3974564,102.4078499 +Climate Solutions,ssp2_1p5,SVN,cdd|Hazard|Absolute|Population weighted,days/yr,25.43617468,25.43032281,25.42593367,25.42077041,25.41538295,25.41024271,25.40446196,25.39773031,25.39079579,25.38462115 +Climate Solutions,ssp2_1p5,GTM,cdd|Hazard|Absolute|Population weighted,days/yr,51.84364174,51.85186564,51.87695542,51.91039024,51.95530151,52.00374837,52.0540874,52.1061977,52.1577907,52.20883032 +Climate Solutions,ssp2_1p5,BIH,cdd|Hazard|Absolute|Population weighted,days/yr,25.07386057,25.0773062,25.08286237,25.09135968,25.10273616,25.11587493,25.12910676,25.14170851,25.15229528,25.15968969 +Climate Solutions,ssp2_1p5,GIN,cdd|Hazard|Absolute|Population weighted,days/yr,121.6168605,121.5564404,121.5090632,121.4616118,121.4126119,121.364122,121.3341604,121.3204866,121.3241987,121.3423516 +Climate Solutions,ssp2_1p5,JOR,cdd|Hazard|Absolute|Population weighted,days/yr,177.906523,177.9764167,178.0363743,178.0796754,178.106402,178.1197182,178.1061953,178.0706961,178.022434,177.9575039 +Climate Solutions,ssp2_1p5,COG,cdd|Hazard|Absolute|Population weighted,days/yr,79.95536052,79.80072987,79.7348097,79.7037511,79.71438166,79.75449881,79.80383978,79.86185451,79.93496809,80.00964441 +Climate Solutions,ssp2_1p5,ESP,cdd|Hazard|Absolute|Population weighted,days/yr,55.35729979,55.28606672,55.19603695,55.11457431,55.03730741,54.9576974,54.87871788,54.80914795,54.74965306,54.69912792 +Climate Solutions,ssp2_1p5,LBR,cdd|Hazard|Absolute|Population weighted,days/yr,64.30664637,64.09076368,63.94968875,63.84956932,63.7706225,63.70936795,63.66557554,63.63532385,63.618162,63.6138492 +Climate Solutions,ssp2_1p5,NLD,cdd|Hazard|Absolute|Population weighted,days/yr,22.60838372,22.61418504,22.61967163,22.62461214,22.62898865,22.63297805,22.63659231,22.63977138,22.64251386,22.64482254 +Climate Solutions,ssp2_1p5,JAM,cdd|Hazard|Absolute|Population weighted,days/yr,31.14645131,31.1532739,31.16027848,31.16795079,31.17605927,31.18360679,31.18963951,31.19446203,31.19836479,31.20156201 +Climate Solutions,ssp2_1p5,OMN,cdd|Hazard|Absolute|Population weighted,days/yr,184.6974073,185.1026859,185.3032917,185.4801658,185.567667,185.650701,185.6933025,185.6973026,185.6836692,185.6389687 +Climate Solutions,ssp2_1p5,TZA,cdd|Hazard|Absolute|Population weighted,days/yr,84.77022686,85.07825608,85.30117164,85.45575734,85.55639655,85.61562825,85.65687436,85.68496427,85.7072144,85.71974099 +Climate Solutions,ssp2_1p5,ALB,cdd|Hazard|Absolute|Population weighted,days/yr,37.9683303,38.04051547,38.08908737,38.11924974,38.1355634,38.14083148,38.14278076,38.14274767,38.14155772,38.14341731 +Climate Solutions,ssp2_1p5,GAB,cdd|Hazard|Absolute|Population weighted,days/yr,45.76496801,45.68306016,45.63218037,45.61029174,45.58018908,45.55219459,45.51902801,45.49085952,45.46005588,45.45058284 +Climate Solutions,ssp2_1p5,NZL,cdd|Hazard|Absolute|Population weighted,days/yr,19.35482691,19.36431025,19.37150531,19.37813648,19.38337462,19.38794488,19.39194535,19.39587164,19.39924286,19.40245032 +Climate Solutions,ssp2_1p5,YEM,cdd|Hazard|Absolute|Population weighted,days/yr,145.4075221,145.682639,145.8891587,146.0524263,146.1664487,146.2536217,146.3177801,146.3625581,146.3939802,146.4139555 +Climate Solutions,ssp2_1p5,PAK,cdd|Hazard|Absolute|Population weighted,days/yr,117.3291865,117.6302444,117.8565176,118.0355252,118.2004179,118.3444053,118.4728476,118.5892334,118.692884,118.7823284 +Climate Solutions,ssp2_1p5,WSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.52292314,10.52325027,10.52100922,10.51485257,10.50550304,10.49275898,10.48072975,10.46978534,10.4603843,10.45247554 +Climate Solutions,ssp2_1p5,SVK,cdd|Hazard|Absolute|Population weighted,days/yr,24.05853837,24.05955344,24.06416635,24.0715789,24.07735129,24.08191209,24.08706262,24.0922707,24.0959714,24.09794042 +Climate Solutions,ssp2_1p5,ARE,cdd|Hazard|Absolute|Population weighted,days/yr,212.1601291,212.5435849,212.6237356,212.6333769,212.6047658,212.5519289,212.4704805,212.3833423,212.3112817,212.2501495 +Climate Solutions,ssp2_1p5,GUM,cdd|Hazard|Absolute|Population weighted,days/yr,29.13194526,29.15126368,29.15835907,29.1623299,29.16473902,29.16619348,29.16699073,29.16743778,29.16777196,29.16803706 +Climate Solutions,ssp2_1p5,IND,cdd|Hazard|Absolute|Population weighted,days/yr,129.4297557,129.4825224,129.5290289,129.5874328,129.6527724,129.721196,129.7885048,129.8516355,129.9087017,129.9580068 +Climate Solutions,ssp2_1p5,AZE,cdd|Hazard|Absolute|Population weighted,days/yr,54.88049701,55.00381709,55.11506913,55.20688512,55.28663733,55.35449804,55.41027174,55.45191708,55.4841973,55.51064561 +Climate Solutions,ssp2_1p5,MDG,cdd|Hazard|Absolute|Population weighted,days/yr,51.43224452,51.45002048,51.47142006,51.4939519,51.51536361,51.53618992,51.55727086,51.5781719,51.59802397,51.61620444 +Climate Solutions,ssp2_1p5,LSO,cdd|Hazard|Absolute|Population weighted,days/yr,61.45415425,61.47119012,61.49034841,61.51039809,61.53005729,61.54851254,61.56577106,61.58189535,61.59587768,61.6079991 +Climate Solutions,ssp2_1p5,VCT,cdd|Hazard|Absolute|Population weighted,days/yr,36.39000928,36.424504,36.45412355,36.47921028,36.5001849,36.51755044,36.53175959,36.54349138,36.55330205,36.56161516 +Climate Solutions,ssp2_1p5,KEN,cdd|Hazard|Absolute|Population weighted,days/yr,41.80420605,41.81223301,41.80471584,41.78686036,41.76227211,41.73416194,41.70679443,41.67995986,41.65471451,41.63074388 +Climate Solutions,ssp2_1p5,KOR,cdd|Hazard|Absolute|Population weighted,days/yr,36.59580598,36.60450366,36.61409875,36.62485005,36.63406182,36.64173042,36.64806172,36.65326209,36.65768964,36.6613728 +Climate Solutions,ssp2_1p5,BLR,cdd|Hazard|Absolute|Population weighted,days/yr,23.00341374,22.9995004,22.99600782,22.99325118,22.99086662,22.98897942,22.98736775,22.98588755,22.98454797,22.98325101 +Climate Solutions,ssp2_1p5,TJK,cdd|Hazard|Absolute|Population weighted,days/yr,94.95800008,95.66174083,96.38004313,97.11815503,97.83932434,98.5419076,99.18926921,99.77064563,100.2739626,100.6672297 +Climate Solutions,ssp2_1p5,TUR,cdd|Hazard|Absolute|Population weighted,days/yr,61.01752229,61.12178869,61.21476314,61.28828895,61.3429509,61.38991019,61.42542017,61.45161265,61.46757959,61.47189637 +Climate Solutions,ssp2_1p5,AFG,cdd|Hazard|Absolute|Population weighted,days/yr,112.4736528,113.3441029,114.0363098,114.5615563,114.9381878,115.2104517,115.4067662,115.5673897,115.7057059,115.8262041 +Climate Solutions,ssp2_1p5,BGD,cdd|Hazard|Absolute|Population weighted,days/yr,107.2686015,107.2823378,107.2903822,107.2968175,107.3018346,107.3046675,107.3048645,107.302591,107.297819,107.2916057 +Climate Solutions,ssp2_1p5,MRT,cdd|Hazard|Absolute|Population weighted,days/yr,235.0961891,234.9450483,234.7865344,234.6659164,234.5835872,234.5760592,234.5429913,234.5137901,234.501658,234.4946048 +Climate Solutions,ssp2_1p5,SLB,cdd|Hazard|Absolute|Population weighted,days/yr,17.26497619,17.20763408,17.17290807,17.15287999,17.14536739,17.1444934,17.1479549,17.1552339,17.16544579,17.17767663 +Climate Solutions,ssp2_1p5,LCA,cdd|Hazard|Absolute|Population weighted,days/yr,5.71720297,5.52537079,5.396312455,5.304762136,5.24339364,5.220816198,5.248978692,5.32903543,5.432619256,5.538233797 +Climate Solutions,ssp2_1p5,CYP,cdd|Hazard|Absolute|Population weighted,days/yr,107.6155248,107.6180568,107.6257064,107.6377903,107.6503315,107.6647498,107.6837767,107.7065376,107.7268187,107.7445321 +Climate Solutions,ssp2_1p5,PYF,cdd|Hazard|Absolute|Population weighted,days/yr,18.22169359,18.23316662,18.24465666,18.25554824,18.26574917,18.27474912,18.28262843,18.28936064,18.29538515,18.30044951 +Climate Solutions,ssp2_1p5,FRA,cdd|Hazard|Absolute|Population weighted,days/yr,26.21054368,26.2132625,26.21565844,26.21804996,26.22047252,26.22310839,26.22630962,26.23000257,26.23408504,26.2387437 +Climate Solutions,ssp2_1p5,NAM,cdd|Hazard|Absolute|Population weighted,days/yr,179.3525939,179.3197266,179.2577903,179.23153,179.1700107,179.1225947,179.0786936,179.029051,178.9704301,178.9135431 +Climate Solutions,ssp2_1p5,SOM,cdd|Hazard|Absolute|Population weighted,days/yr,115.7142088,115.77474,115.8247527,115.8461379,115.86376,115.8726749,115.8772005,115.8731019,115.8661838,115.8578708 +Climate Solutions,ssp2_1p5,PER,cdd|Hazard|Absolute|Population weighted,days/yr,128.9340658,130.5396661,132.0970928,133.5705378,134.9444473,136.1837139,137.2448797,138.1627954,138.9513301,139.6270707 +Climate Solutions,ssp2_1p5,LAO,cdd|Hazard|Absolute|Population weighted,days/yr,71.12743455,71.12379848,71.16544814,71.21855049,71.28099229,71.36283778,71.44298684,71.52220777,71.5947434,71.64619962 +Climate Solutions,ssp2_1p5,SYC,cdd|Hazard|Absolute|Population weighted,days/yr,17.67016687,17.67828323,17.68138368,17.68447941,17.68447941,17.68456165,17.68451442,17.6844917,17.68440978,17.68446535 +Climate Solutions,ssp2_1p5,NOR,cdd|Hazard|Absolute|Population weighted,days/yr,22.84272136,22.87946798,22.90809715,22.93044929,22.94930133,22.96490468,22.97821922,22.98944695,22.99894602,23.00685255 +Climate Solutions,ssp2_1p5,CIV,cdd|Hazard|Absolute|Population weighted,days/yr,68.36867465,68.49383644,68.58550415,68.65173532,68.69528739,68.72210224,68.74075503,68.75229732,68.76119499,68.76633697 +Climate Solutions,ssp2_1p5,BEN,cdd|Hazard|Absolute|Population weighted,days/yr,105.0689278,105.2260831,105.3509965,105.4644843,105.5709812,105.6594162,105.7356111,105.8019279,105.8567223,105.9021939 +Climate Solutions,ssp2_1p5,ESH,cdd|Hazard|Absolute|Population weighted,days/yr,215.2211706,215.5967746,215.7646528,216.2078919,216.2987727,216.7866662,216.8235964,217.1417325,217.4060292,217.6107742 +Climate Solutions,ssp2_1p5,CUB,cdd|Hazard|Absolute|Population weighted,days/yr,36.30167198,36.30818076,36.31412825,36.31906975,36.32311967,36.32653463,36.32935818,36.33180933,36.33382428,36.33556517 +Climate Solutions,ssp2_1p5,CMR,cdd|Hazard|Absolute|Population weighted,days/yr,99.76944263,100.2064225,100.6786182,101.1405057,101.6003104,102.0033293,102.3758616,102.7184212,103.0444465,103.3496772 +Climate Solutions,ssp2_1p5,MNE,cdd|Hazard|Absolute|Population weighted,days/yr,27.35843297,27.38207953,27.39932874,27.41298584,27.42487473,27.43508904,27.44504557,27.45297478,27.45880853,27.46380145 +Climate Solutions,ssp2_1p5,TGO,cdd|Hazard|Absolute|Population weighted,days/yr,90.47438101,90.61400809,90.70284711,90.74795664,90.76593764,90.76540792,90.74916823,90.72230138,90.68730912,90.64709265 +Climate Solutions,ssp2_1p5,CHN,cdd|Hazard|Absolute|Population weighted,days/yr,53.67423274,53.73467206,53.79182817,53.84154961,53.88493151,53.91926375,53.94652559,53.96866077,53.98677416,54.00147284 +Climate Solutions,ssp2_1p5,ARM,cdd|Hazard|Absolute|Population weighted,days/yr,36.95387179,37.02530691,37.08663734,37.14208778,37.19457843,37.23980424,37.2744737,37.30018769,37.31864218,37.32697164 +Climate Solutions,ssp2_1p5,ATG,cdd|Hazard|Absolute|Population weighted,days/yr,25.79677671,25.7968195,25.79684326,25.7968549,25.79687461,25.79687569,25.79687655,25.79687655,25.79688616,25.79687413 +Climate Solutions,ssp2_1p5,DOM,cdd|Hazard|Absolute|Population weighted,days/yr,26.36462735,26.34081073,26.31795779,26.29650977,26.2761943,26.25601082,26.23604577,26.21746443,26.20170141,26.18976734 +Climate Solutions,ssp2_1p5,UKR,cdd|Hazard|Absolute|Population weighted,days/yr,29.89010306,29.91991104,29.947172,29.97122107,29.99223762,30.0110676,30.02916081,30.04517448,30.05915452,30.07140484 +Climate Solutions,ssp2_1p5,BHR,cdd|Hazard|Absolute|Population weighted,days/yr,202.7206036,202.7616747,202.7906399,202.8132065,202.8301197,202.8426075,202.8510141,202.8559234,202.858393,202.8598988 +Climate Solutions,ssp2_1p5,TON,cdd|Hazard|Absolute|Population weighted,days/yr,19.09333516,19.12902863,19.18212836,19.24841041,19.3263541,19.41179515,19.48746003,19.55283072,19.60897873,19.65526507 +Climate Solutions,ssp2_1p5,FIN,cdd|Hazard|Absolute|Population weighted,days/yr,23.03040953,23.03343491,23.03639317,23.03873153,23.04075567,23.04270534,23.04425034,23.04574628,23.04697249,23.04788465 +Climate Solutions,ssp2_1p5,LBY,cdd|Hazard|Absolute|Population weighted,days/yr,167.0958372,167.334158,167.4350202,167.6122913,167.7625279,167.5309854,167.4384867,167.3997398,167.4476904,167.3655316 +Climate Solutions,ssp2_1p5,IDN,cdd|Hazard|Absolute|Population weighted,days/yr,33.0419651,33.07021596,33.1019449,33.13416563,33.16654416,33.19808748,33.22865319,33.25516253,33.27840294,33.29915704 +Climate Solutions,ssp2_1p5,CAF,cdd|Hazard|Absolute|Population weighted,days/yr,88.56992285,88.68861499,88.81222061,88.94116397,89.04325479,89.12456313,89.1938628,89.2868907,89.36949345,89.43862564 +Climate Solutions,ssp2_1p5,USA,cdd|Hazard|Absolute|Population weighted,days/yr,40.41664928,40.57507296,40.724898,40.87153624,41.00854654,41.12625009,41.23025021,41.32545023,41.41199591,41.48791553 +Climate Solutions,ssp2_1p5,SWE,cdd|Hazard|Absolute|Population weighted,days/yr,24.51089386,24.51250621,24.51451921,24.51560805,24.51679945,24.5172583,24.51814834,24.51916105,24.52014188,24.52159249 +Climate Solutions,ssp2_1p5,VNM,cdd|Hazard|Absolute|Population weighted,days/yr,56.60982218,56.65456366,56.74804286,56.87503425,57.0283407,57.19924364,57.37680943,57.55257098,57.70760563,57.84407876 +Climate Solutions,ssp2_1p5,MLI,cdd|Hazard|Absolute|Population weighted,days/yr,185.5790434,185.6150008,185.636508,185.6592118,185.6667254,185.7241796,185.7231883,185.7578508,185.7795865,185.7726414 +Climate Solutions,ssp2_1p5,RUS,cdd|Hazard|Absolute|Population weighted,days/yr,28.18923755,28.14600896,28.10709048,28.06634287,28.02745995,27.99213889,27.95482106,27.92600145,27.89945903,27.87606308 +Climate Solutions,ssp2_1p5,BGR,cdd|Hazard|Absolute|Population weighted,days/yr,37.98811611,38.00301224,38.01342275,38.02280952,38.03127311,38.03834174,38.04611103,38.05468709,38.06308719,38.0710002 +Climate Solutions,ssp2_1p5,MUS,cdd|Hazard|Absolute|Population weighted,days/yr,27.4405203,27.36644818,27.30082247,27.24772422,27.20730095,27.1769747,27.15590588,27.14313731,27.13438665,27.12688657 +Climate Solutions,ssp2_1p5,ROU,cdd|Hazard|Absolute|Population weighted,days/yr,30.87294481,30.92199252,30.96503545,31.00263916,31.032527,31.05743138,31.07868927,31.09653687,31.11103337,31.12245698 +Climate Solutions,ssp2_1p5,AGO,cdd|Hazard|Absolute|Population weighted,days/yr,134.423454,134.286181,134.1741001,134.0983337,134.0534178,134.0284552,134.006084,133.9930281,133.978416,133.9647232 +Climate Solutions,ssp2_1p5,PRT,cdd|Hazard|Absolute|Population weighted,days/yr,59.51698606,59.56606948,59.61224808,59.65157461,59.68665144,59.720454,59.75327541,59.78328838,59.80913931,59.83190914 +Climate Solutions,ssp2_1p5,ZAF,cdd|Hazard|Absolute|Population weighted,days/yr,74.03949161,74.11832689,74.19425252,74.2689038,74.34069731,74.40988149,74.47367745,74.53178861,74.57933122,74.61640211 +Climate Solutions,ssp2_1p5,FJI,cdd|Hazard|Absolute|Population weighted,days/yr,20.9948753,21.01111834,21.02855347,21.04523569,21.06171451,21.07776186,21.09143957,21.10231896,21.11093993,21.11796049 +Climate Solutions,ssp2_1p5,BRN,cdd|Hazard|Absolute|Population weighted,days/yr,18.14720254,18.15749993,18.1696974,18.18319091,18.19741886,18.21146191,18.22416995,18.23547906,18.24534056,18.25294736 +Climate Solutions,ssp2_1p5,MYS,cdd|Hazard|Absolute|Population weighted,days/yr,19.91965795,19.90944199,19.90480489,19.9006545,19.89743594,19.89518601,19.89449344,19.89531466,19.89714246,19.89962006 +Climate Solutions,ssp2_1p5,AUT,cdd|Hazard|Absolute|Population weighted,days/yr,22.22889913,22.26407036,22.29587227,22.32530956,22.35383559,22.38024873,22.4033803,22.42381475,22.44254621,22.46098194 +Climate Solutions,ssp2_1p5,MOZ,cdd|Hazard|Absolute|Population weighted,days/yr,65.09343887,65.24652258,65.3988976,65.55059718,65.6918418,65.80923871,65.91071824,66.00291838,66.09028299,66.17153144 +Climate Solutions,ssp2_1p5,UGA,cdd|Hazard|Absolute|Population weighted,days/yr,30.92195157,31.04822049,31.13012199,31.18095032,31.2109405,31.22676321,31.23377471,31.23517613,31.23259964,31.22765955 +Climate Solutions,ssp2_1p5,KGZ,cdd|Hazard|Absolute|Population weighted,days/yr,53.21636125,53.29848293,53.38261946,53.39816734,53.43425669,53.44395861,53.42890013,53.42404863,53.42612967,53.43726405 +Climate Solutions,ssp2_1p5,HUN,cdd|Hazard|Absolute|Population weighted,days/yr,29.25058676,29.24440024,29.23950867,29.23539231,29.23144807,29.22813707,29.22559445,29.22348851,29.22177405,29.22041989 +Climate Solutions,ssp2_1p5,NER,cdd|Hazard|Absolute|Population weighted,days/yr,220.0928203,220.0409715,220.0416027,220.0281115,220.0369612,220.0502642,220.0613157,220.0793254,220.085168,220.0954142 +Climate Solutions,ssp2_1p5,BRA,cdd|Hazard|Absolute|Population weighted,days/yr,42.83289806,42.74646211,42.67642443,42.60650152,42.53176129,42.45466112,42.39342984,42.34269915,42.301444,42.26505017 +Climate Solutions,ssp2_1p5,KWT,cdd|Hazard|Absolute|Population weighted,days/yr,200.5051322,200.60928,200.6237619,200.6294185,200.6266473,200.6139782,200.5849217,200.5408368,200.4911183,200.4329543 +Climate Solutions,ssp2_1p5,PAN,cdd|Hazard|Absolute|Population weighted,days/yr,44.08524165,44.17290398,44.24691486,44.307647,44.35668516,44.39486221,44.42536581,44.44967341,44.46988304,44.4873492 +Climate Solutions,ssp2_1p5,GUY,cdd|Hazard|Absolute|Population weighted,days/yr,21.97087454,21.96308436,21.97060589,21.98623269,22.00496184,22.01251743,21.99631941,22.00934952,22.01951741,22.02520276 +Climate Solutions,ssp2_1p5,CRI,cdd|Hazard|Absolute|Population weighted,days/yr,39.81393832,39.84766823,39.86952711,39.88263459,39.88897067,39.89001321,39.88722052,39.8814369,39.87587618,39.87256262 +Climate Solutions,ssp2_1p5,LUX,cdd|Hazard|Absolute|Population weighted,days/yr,22.15578364,22.16786696,22.17746582,22.18550277,22.19207943,22.19726265,22.20079011,22.2027064,22.20353269,22.20364711 +Climate Solutions,ssp2_1p5,IRL,cdd|Hazard|Absolute|Population weighted,days/yr,20.14996817,20.15776415,20.16441069,20.17017529,20.17505055,20.17925377,20.18296718,20.18621107,20.18916196,20.19184479 +Climate Solutions,ssp2_1p5,NGA,cdd|Hazard|Absolute|Population weighted,days/yr,129.1758599,129.5151857,129.7990251,130.0393119,130.232268,130.3657609,130.4634867,130.5326855,130.5779632,130.6059753 +Climate Solutions,ssp2_1p5,ECU,cdd|Hazard|Absolute|Population weighted,days/yr,42.33971661,42.41539129,42.44646518,42.44133032,42.40708619,42.34964993,42.28183257,42.20868506,42.13269247,42.06695535 +Climate Solutions,ssp2_1p5,CZE,cdd|Hazard|Absolute|Population weighted,days/yr,22.22134051,22.24471488,22.26627566,22.28737366,22.30770036,22.32567459,22.34080901,22.35374103,22.36484735,22.37381385 +Climate Solutions,ssp2_1p5,AUS,cdd|Hazard|Absolute|Population weighted,days/yr,38.85463045,38.83768586,38.77995898,38.74430123,38.73538313,38.69956609,38.64934741,38.61614054,38.58906585,38.57002964 +Climate Solutions,ssp2_1p5,IRN,cdd|Hazard|Absolute|Population weighted,days/yr,123.1888437,123.3679742,123.4760073,123.5477777,123.5904852,123.587677,123.5911443,123.6207047,123.6530476,123.6807514 +Climate Solutions,ssp2_1p5,DZA,cdd|Hazard|Absolute|Population weighted,days/yr,84.88505312,85.03799956,85.00111685,85.05471694,85.02407331,85.05625276,85.0604857,85.04965322,84.95687899,84.95128907 +Climate Solutions,ssp2_1p5,SLV,cdd|Hazard|Absolute|Population weighted,days/yr,88.80406402,88.66938651,88.52220821,88.37719576,88.2372383,88.12092953,88.02666957,87.94872484,87.88214401,87.82333179 +Climate Solutions,ssp2_1p5,CHL,cdd|Hazard|Absolute|Population weighted,days/yr,134.073654,134.1804908,134.2524857,134.2998356,134.348301,134.360995,134.3849255,134.3967466,134.4158685,134.4181633 +Climate Solutions,ssp2_1p5,PRI,cdd|Hazard|Absolute|Population weighted,days/yr,17.42206841,17.42041766,17.42029145,17.42024284,17.42020405,17.42018068,17.42017563,17.42016637,17.42015222,17.4201473 +Climate Solutions,ssp2_1p5,BEL,cdd|Hazard|Absolute|Population weighted,days/yr,22.42827907,22.43045504,22.43242811,22.43445102,22.43633989,22.4381252,22.44004339,22.44211014,22.44416313,22.44613252 +Climate Solutions,ssp2_1p5,THA,cdd|Hazard|Absolute|Population weighted,days/yr,87.15544613,87.1359652,87.09368201,87.0280225,86.94221621,86.84683708,86.7439174,86.64481357,86.55819711,86.4818191 +Climate Solutions,ssp2_1p5,HTI,cdd|Hazard|Absolute|Population weighted,days/yr,30.07181897,30.09782923,30.12459543,30.15121374,30.17807564,30.20705439,30.23692542,30.26255926,30.28312378,30.29963673 +Climate Solutions,ssp2_1p5,IRQ,cdd|Hazard|Absolute|Population weighted,days/yr,170.0719938,170.242646,170.3874916,170.5129824,170.6175922,170.7102226,170.7931334,170.8665173,170.9288586,170.9814243 +Climate Solutions,ssp2_1p5,SLE,cdd|Hazard|Absolute|Population weighted,days/yr,89.07919495,89.03364527,88.99696319,88.96604242,88.93922594,88.91576394,88.8987287,88.88742086,88.88116732,88.87978266 +Climate Solutions,ssp2_1p5,GEO,cdd|Hazard|Absolute|Population weighted,days/yr,26.48068579,26.60453884,26.71105178,26.80442626,26.88456525,26.95280688,27.00781914,27.04814705,27.0789713,27.09872165 +Climate Solutions,ssp2_1p5,HKG,cdd|Hazard|Absolute|Population weighted,days/yr,48.4249174,48.42598382,48.42276612,48.4153164,48.40540061,48.39211403,48.37946285,48.36868856,48.36065666,48.35766333 +Climate Solutions,ssp2_1p5,DNK,cdd|Hazard|Absolute|Population weighted,days/yr,24.7438743,24.75536562,24.76313991,24.76906168,24.77393022,24.77795958,24.78138294,24.78441137,24.78727808,24.790158 +Climate Solutions,ssp2_1p5,POL,cdd|Hazard|Absolute|Population weighted,days/yr,22.51827232,22.51654657,22.5148524,22.51294085,22.51057665,22.50817046,22.50604744,22.5039711,22.50214441,22.50093024 +Climate Solutions,ssp2_1p5,MDA,cdd|Hazard|Absolute|Population weighted,days/yr,31.92290539,31.92501992,31.92580989,31.92265236,31.91723121,31.9113439,31.9070626,31.90243279,31.89810857,31.89717614 +Climate Solutions,ssp2_1p5,MAR,cdd|Hazard|Absolute|Population weighted,days/yr,106.5960418,106.6731426,106.74555,106.8109537,106.8698844,106.9243358,106.971783,107.0102289,107.0418644,107.0680216 +Climate Solutions,ssp2_1p5,HRV,cdd|Hazard|Absolute|Population weighted,days/yr,27.3445319,27.33687946,27.33230141,27.32974039,27.3286718,27.32888338,27.32910399,27.32856657,27.32751462,27.32574326 +Climate Solutions,ssp2_1p5,MNG,cdd|Hazard|Absolute|Population weighted,days/yr,96.5727651,96.7540043,96.72331705,96.62368712,96.65975523,96.65657759,96.64221441,96.63266914,96.65189524,96.51356918 +Climate Solutions,ssp2_1p5,GNB,cdd|Hazard|Absolute|Population weighted,days/yr,196.687004,196.7889374,196.875988,196.9582186,197.0280451,197.092534,197.152742,197.2091063,197.2646846,197.312841 +Climate Solutions,ssp2_1p5,KIR,cdd|Hazard|Absolute|Population weighted,days/yr,30.47126939,30.71211607,30.91851795,31.05210037,31.16055325,31.24944411,31.30895487,31.33659247,31.36404116,31.37757529 +Climate Solutions,ssp2_1p5,CHE,cdd|Hazard|Absolute|Population weighted,days/yr,20.3159657,20.3119089,20.3048213,20.29951076,20.29373109,20.2869,20.28131251,20.27791418,20.27708848,20.27766627 +Climate Solutions,ssp2_1p5,GRD,cdd|Hazard|Absolute|Population weighted,days/yr,24.71195096,24.75303248,24.7854207,24.81660946,24.84471663,24.8676423,24.88582121,24.8989497,24.90890765,24.91764693 +Climate Solutions,ssp2_1p5,BLZ,cdd|Hazard|Absolute|Population weighted,days/yr,31.31953918,31.24477467,31.17804215,31.11820971,31.06448499,31.01759782,30.97355077,30.93849589,30.91519043,30.90302288 +Climate Solutions,ssp2_1p5,TCD,cdd|Hazard|Absolute|Population weighted,days/yr,191.3481968,191.2894091,191.0529852,191.0238536,190.9254495,190.8735994,190.8859527,190.8296568,190.7972546,190.7377083 +Climate Solutions,ssp2_1p5,EST,cdd|Hazard|Absolute|Population weighted,days/yr,22.26493588,22.25913062,22.25343369,22.24823737,22.24386355,22.23974443,22.23583477,22.23241254,22.22936622,22.22660771 +Climate Solutions,ssp2_1p5,URY,cdd|Hazard|Absolute|Population weighted,days/yr,25.52065927,25.52208094,25.521957,25.52260244,25.52436766,25.5268308,25.53037674,25.53232555,25.53364529,25.53705682 +Climate Solutions,ssp2_1p5,GNQ,cdd|Hazard|Absolute|Population weighted,days/yr,28.15296934,28.07748153,28.02498496,27.98819163,27.96002031,27.93875622,27.92164246,27.9089491,27.89950941,27.89517179 +Climate Solutions,ssp2_1p5,LBN,cdd|Hazard|Absolute|Population weighted,days/yr,133.2250995,133.2523789,133.2687983,133.2970344,133.3427036,133.3926081,133.4543098,133.5331285,133.6328744,133.7548507 +Climate Solutions,ssp2_1p5,UZB,cdd|Hazard|Absolute|Population weighted,days/yr,105.7514517,105.8851222,105.9930895,106.0712948,106.1337444,106.1761188,106.1995174,106.2091779,106.2105873,106.2010428 +Climate Solutions,ssp2_1p5,TUN,cdd|Hazard|Absolute|Population weighted,days/yr,81.98219286,81.99870365,81.99761984,81.97768486,81.9459849,81.89908224,81.85126416,81.80979148,81.77063037,81.74035366 +Climate Solutions,ssp2_1p5,DJI,cdd|Hazard|Absolute|Population weighted,days/yr,118.3787517,118.4991161,118.614741,118.7149589,118.8093862,118.9026229,118.9798765,119.0421907,119.0838705,119.1061813 +Climate Solutions,ssp2_1p5,RWA,cdd|Hazard|Absolute|Population weighted,days/yr,44.82840615,44.90840482,44.93628103,44.94404338,44.94474174,44.9364337,44.92488593,44.91287138,44.90054048,44.88841646 +Climate Solutions,ssp2_1p5,TLS,cdd|Hazard|Absolute|Population weighted,days/yr,59.44095835,59.43749465,59.42497796,59.41152258,59.39699558,59.38336226,59.36853586,59.35371609,59.34049304,59.32932097 +Climate Solutions,ssp2_1p5,COL,cdd|Hazard|Absolute|Population weighted,days/yr,33.69108361,33.83361039,33.94375831,34.02390843,34.08142415,34.11807634,34.13799305,34.14327675,34.1467344,34.1487076 +Climate Solutions,ssp2_1p5,REU,cdd|Hazard|Absolute|Population weighted,days/yr,18.1331675,18.24010759,18.26273661,18.27288839,18.27867558,18.28241528,18.28483383,18.28683193,18.28833251,18.28951558 +Climate Solutions,ssp2_1p5,BDI,cdd|Hazard|Absolute|Population weighted,days/yr,63.02570785,63.0616331,63.06780414,63.0575968,63.04435189,63.03204291,63.00994734,62.98142865,62.95027483,62.91558976 +Climate Solutions,ssp2_1p5,TWN,cdd|Hazard|Absolute|Population weighted,days/yr,28.47565699,28.83045854,29.0997039,29.2886088,29.45000492,29.54221933,29.63997032,29.7253128,29.80100603,29.86908026 +Climate Solutions,ssp2_1p5,NIC,cdd|Hazard|Absolute|Population weighted,days/yr,76.38027947,76.48073385,76.59735372,76.71752273,76.84395816,76.97688457,77.09865904,77.20600792,77.30026112,77.38666223 +Climate Solutions,ssp2_1p5,BRB,cdd|Hazard|Absolute|Population weighted,days/yr,42.80512055,42.79990227,42.79483284,42.78984911,42.78500279,42.78055863,42.77690894,42.77388655,42.77136259,42.76923856 +Climate Solutions,ssp2_1p5,QAT,cdd|Hazard|Absolute|Population weighted,days/yr,238.4315929,238.4106069,238.3990467,238.3901934,238.3826859,238.3769709,238.3721959,238.3668059,238.3618653,238.3576832 +Climate Solutions,ssp2_1p5,COD,cdd|Hazard|Absolute|Population weighted,days/yr,62.70836754,62.71793176,62.7375197,62.74896843,62.75224012,62.76138906,62.77432556,62.78946979,62.80740899,62.82747773 +Climate Solutions,ssp2_1p5,ITA,cdd|Hazard|Absolute|Population weighted,days/yr,38.54174776,38.5352657,38.52656041,38.51817025,38.50890085,38.49862949,38.48883389,38.48006985,38.47251402,38.46575118 +Climate Solutions,ssp2_1p5,BTN,cdd|Hazard|Absolute|Population weighted,days/yr,93.30321534,93.32557723,93.34516078,93.36312598,93.38257668,93.40293107,93.42182348,93.43873147,93.45537458,93.47228246 +Climate Solutions,ssp2_1p5,SDN,cdd|Hazard|Absolute|Population weighted,days/yr,229.7917593,229.7036747,229.6619431,229.6361214,229.6399866,229.6404515,229.6614883,229.6810643,229.6941103,229.7335556 +Climate Solutions,ssp2_1p5,NPL,cdd|Hazard|Absolute|Population weighted,days/yr,105.4289587,105.7094846,105.9113322,106.0609468,106.1668226,106.2787244,106.392353,106.502868,106.6057047,106.6950952 +Climate Solutions,ssp2_1p5,MLT,cdd|Hazard|Absolute|Population weighted,days/yr,79.60398141,79.61446943,79.61947964,79.62240665,79.62424974,79.62545848,79.62628412,79.62686763,79.62727668,79.6275766 +Climate Solutions,ssp2_1p5,MDV,cdd|Hazard|Absolute|Population weighted,days/yr,30.60684609,30.74911873,30.86548829,30.95726232,31.02734036,31.080934,31.12212279,31.15532085,31.1819453,31.20453618 +Climate Solutions,ssp2_1p5,SUR,cdd|Hazard|Absolute|Population weighted,days/yr,24.27045232,24.25080827,24.23434171,24.22000591,24.20838961,24.19821333,24.18968369,24.1856446,24.18249757,24.1823939 +Climate Solutions,ssp2_1p5,VEN,cdd|Hazard|Absolute|Population weighted,days/yr,63.65880508,63.85901817,64.00617862,64.1106228,64.1805118,64.22111111,64.23579414,64.24071683,64.24314393,64.24270315 +Climate Solutions,ssp2_1p5,ISR,cdd|Hazard|Absolute|Population weighted,days/yr,162.4246574,162.4463621,162.4167987,162.3662478,162.303831,162.2369552,162.175705,162.123366,162.0806047,162.0468764 +Climate Solutions,ssp2_1p5,ISL,cdd|Hazard|Absolute|Population weighted,days/yr,18.78232144,18.77093366,18.77028203,18.77002562,18.77151157,18.77433791,18.77632496,18.77463711,18.77839392,18.77842442 +Climate Solutions,ssp2_1p5,ZMB,cdd|Hazard|Absolute|Population weighted,days/yr,168.7599078,168.4870512,168.2972083,168.1757024,168.095775,168.0568397,168.0408489,168.0432383,168.0616896,168.0871224 +Climate Solutions,ssp2_1p5,SEN,cdd|Hazard|Absolute|Population weighted,days/yr,215.8113726,215.7782381,215.7715596,215.7778174,215.7935963,215.8180332,215.8443204,215.8718236,215.9002686,215.926996 +Climate Solutions,ssp2_1p5,PNG,cdd|Hazard|Absolute|Population weighted,days/yr,14.68161825,14.69283788,14.70824967,14.72548078,14.74706344,14.77941276,14.81268487,14.85312779,14.88885678,14.92607728 +Climate Solutions,ssp2_1p5,MWI,cdd|Hazard|Absolute|Population weighted,days/yr,103.1919623,103.5043632,103.7520095,103.9408845,104.0756403,104.1649579,104.222595,104.2606661,104.2865156,104.3027229 +Climate Solutions,ssp2_1p5,TTO,cdd|Hazard|Absolute|Population weighted,days/yr,27.67040528,27.67193776,27.6734339,27.67488965,27.6761946,27.67722089,27.67793674,27.67830868,27.67854777,27.67876213 +Climate Solutions,ssp2_1p5,ZWE,cdd|Hazard|Absolute|Population weighted,days/yr,127.9836371,128.048206,128.1567474,128.3066122,128.4719153,128.6486884,128.8179762,128.9823678,129.1425233,129.2937228 +Climate Solutions,ssp2_1p5,DEU,cdd|Hazard|Absolute|Population weighted,days/yr,21.69274074,21.69748894,21.70174577,21.70558323,21.70890147,21.71191153,21.7146804,21.71713464,21.71921368,21.72104569 +Climate Solutions,ssp2_1p5,VUT,cdd|Hazard|Absolute|Population weighted,days/yr,20.26352101,20.26569751,20.26771501,20.26948803,20.27083529,20.27226162,20.27358811,20.27494018,20.27605449,20.27699774 +Climate Solutions,ssp2_1p5,MTQ,cdd|Hazard|Absolute|Population weighted,days/yr,20.14274941,20.16910961,20.1852685,20.19633662,20.20401351,20.20739653,20.20529037,20.19783347,20.18824329,20.17858387 +Climate Solutions,ssp2_1p5,KAZ,cdd|Hazard|Absolute|Population weighted,days/yr,49.27084063,49.27139344,49.27707465,49.23580514,49.20485848,49.15104057,49.0924434,49.05778643,49.02198507,49.02237025 +Climate Solutions,ssp2_1p5,PHL,cdd|Hazard|Absolute|Population weighted,days/yr,38.85412649,38.85621753,38.86956742,38.89197719,38.91944716,38.94879002,38.97891234,39.00935393,39.03921389,39.06807828 +Climate Solutions,ssp2_1p5,ERI,cdd|Hazard|Absolute|Population weighted,days/yr,115.3466608,115.3284116,115.3457018,115.3254785,115.3052809,115.2884113,115.2673394,115.2519452,115.2423104,115.2364379 +Climate Solutions,ssp2_1p5,NCL,cdd|Hazard|Absolute|Population weighted,days/yr,27.78580649,27.78771722,27.79145435,27.79644903,27.80310159,27.81028601,27.81940551,27.83015718,27.84142044,27.85383518 +Climate Solutions,ssp2_1p5,MKD,cdd|Hazard|Absolute|Population weighted,days/yr,34.00229387,33.9855149,33.97018237,33.95921777,33.95114429,33.94268192,33.93198298,33.92322811,33.91641929,33.91082888 +Climate Solutions,ssp2_1p5,PRK,cdd|Hazard|Absolute|Population weighted,days/yr,37.0208312,37.02909308,37.03485092,37.03847937,37.03921942,37.0385335,37.03714498,37.03536794,37.03410066,37.03377344 +Climate Solutions,ssp2_1p5,PRY,cdd|Hazard|Absolute|Population weighted,days/yr,33.88718394,33.89487321,33.90420315,33.91494478,33.93312168,33.94973842,33.96785404,33.98753144,34.00963418,34.0239447 +Climate Solutions,ssp2_1p5,LVA,cdd|Hazard|Absolute|Population weighted,days/yr,22.15914151,22.16420381,22.16860059,22.17233624,22.17564709,22.17858987,22.18124213,22.18375641,22.18606751,22.18826912 +Climate Solutions,ssp2_1p5,JPN,cdd|Hazard|Absolute|Population weighted,days/yr,18.62543237,18.70662904,18.79425047,18.87819562,18.95293193,19.01915243,19.07762612,19.12911908,19.17436803,19.21408234 +Climate Solutions,ssp2_1p5,SYR,cdd|Hazard|Absolute|Population weighted,days/yr,133.4143509,133.6401092,133.8372055,134.0067065,134.1542617,134.2866405,134.3986375,134.4920001,134.5687307,134.6338526 +Climate Solutions,ssp2_1p5,HND,cdd|Hazard|Absolute|Population weighted,days/yr,45.137499,44.87956316,44.64601544,44.44572257,44.27032231,44.11603547,43.98949761,43.88706487,43.80469539,43.73970902 +Climate Solutions,ssp2_1p5,MMR,cdd|Hazard|Absolute|Population weighted,days/yr,128.2257107,128.3548416,128.4864975,128.6179335,128.7454859,128.8709484,128.99889,129.1297477,129.2699165,129.4117982 +Climate Solutions,ssp2_1p5,MEX,cdd|Hazard|Absolute|Population weighted,days/yr,92.17323697,92.21409379,92.24028521,92.25421514,92.25676864,92.24963994,92.23777851,92.22584546,92.21361272,92.20409452 +Climate Solutions,ssp2_1p5,EGY,cdd|Hazard|Absolute|Population weighted,days/yr,263.7725265,263.330125,263.3208284,263.5719789,263.9722602,264.4833418,265.0519126,265.669446,266.2953437,266.906994 +Climate Solutions,ssp2_1p5,SGP,cdd|Hazard|Absolute|Population weighted,days/yr,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043,17.48172043 +Climate Solutions,ssp2_1p5,SRB,cdd|Hazard|Absolute|Population weighted,days/yr,29.32915431,29.33466101,29.33933473,29.34404464,29.34910372,29.35360815,29.35730428,29.36052496,29.3630437,29.36487599 +Climate Solutions,ssp2_1p5,BWA,cdd|Hazard|Absolute|Population weighted,days/yr,144.1852988,144.1498544,144.1623585,144.1924963,144.1860667,144.1606466,144.2267702,144.2404198,144.2415475,144.2239917 +Climate Solutions,ssp2_1p5,GBR,cdd|Hazard|Absolute|Population weighted,days/yr,24.22648965,24.22784907,24.22862619,24.2289837,24.22915452,24.22928221,24.22943173,24.22958147,24.22972572,24.22993272 +Climate Solutions,ssp2_1p5,GMB,cdd|Hazard|Absolute|Population weighted,days/yr,210.6033199,210.5023661,210.4346893,210.3863535,210.3555112,210.3351347,210.3174203,210.3016426,210.2884633,210.2780271 +Climate Solutions,ssp2_1p5,GRC,cdd|Hazard|Absolute|Population weighted,days/yr,59.27666846,59.55345183,59.79640656,60.00057179,60.17896654,60.34066019,60.48905626,60.62136608,60.73979379,60.84454333 +Climate Solutions,ssp2_1p5,LKA,cdd|Hazard|Absolute|Population weighted,days/yr,44.01376755,44.00861911,44.00367938,43.99745599,43.98994136,43.98148564,43.97251183,43.96342381,43.9544176,43.9456661 +Climate Solutions,ssp2_1p5,GUF,cdd|Hazard|Absolute|Population weighted,days/yr,30.6971215,30.70598961,30.71655724,30.73858602,30.75504064,30.77477914,30.79694375,30.80781759,30.82382613,30.83499965 +Climate Solutions,ssp2_1p5,COM,cdd|Hazard|Absolute|Population weighted,days/yr,20.32447258,20.30339408,20.28600654,20.27085455,20.25830329,20.24703334,20.23711045,20.22864098,20.22160585,20.21582193 +Climate Solutions,ssp2_1p5,FSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.24586095,10.24379503,10.24023523,10.23474756,10.22800531,10.22077591,10.21365937,10.20704319,10.2014111,10.19674404 +Climate Solutions,ssp2_1p5,GLP,cdd|Hazard|Absolute|Population weighted,days/yr,17.54929856,17.53109827,17.52398016,17.51964001,17.51829991,17.51823179,17.51813009,17.518093,17.51805735,17.51803151 +Climate Solutions,ssp2_1p5,MYT,cdd|Hazard|Absolute|Population weighted,days/yr,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301,41.17204301 +Climate Solutions,ssp2_1p5,VIR,cdd|Hazard|Absolute|Population weighted,days/yr,22.92408536,22.9073533,22.8981177,22.88272601,22.87966249,22.87634705,22.8724437,22.86645356,22.85703086,22.85227069 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Risk score,risk score,0.574721002,0.574721002,0.574721002,0.574721002,0.574721002,0.574721002,0.574721002,0.574721002,0.574721002,0.574721002 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Risk score,risk score,0.108706923,0.108706923,0.108706923,0.108706923,0.108706923,0.108706923,0.108706923,0.108706923,0.108706923,0.108706923 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Risk score,risk score,1.788360167,1.788360167,1.788360167,1.788360167,1.788360167,1.788360167,1.788360167,1.788360167,1.788360167,1.788360167 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Risk score,risk score,0.317179437,0.317179437,0.317179437,0.317179437,0.317179437,0.317179437,0.317179437,0.317179437,0.317179437,0.317179437 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Risk score,risk score,1.346645336,1.346645336,1.346645336,1.346645336,1.346645336,1.346645336,1.346645336,1.346645336,1.346645336,1.346645336 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Risk score,risk score,1.504208852,1.504208852,1.504208852,1.504208852,1.504208852,1.504208852,1.504208852,1.504208852,1.504208852,1.504208852 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Risk score,risk score,0.717198427,0.717198427,0.717198427,0.717198427,0.717198427,0.717198427,0.717198427,0.717198427,0.717198427,0.717198427 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Risk score,risk score,0.580010611,0.580010611,0.580010611,0.580010611,0.580010611,0.580010611,0.580010611,0.580010611,0.580010611,0.580010611 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Risk score,risk score,1.36106597,1.36106597,1.36106597,1.36106597,1.36106597,1.36106597,1.36106597,1.36106597,1.36106597,1.36106597 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Risk score,risk score,1.602841049,1.602841049,1.602841049,1.602841049,1.602841049,1.602841049,1.602841049,1.602841049,1.602841049,1.602841049 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Risk score,risk score,0.084985136,0.084985136,0.084985136,0.084985136,0.084985136,0.084985136,0.084985136,0.084985136,0.084985136,0.084985136 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Risk score,risk score,1.82026419,1.82026419,1.82026419,1.82026419,1.82026419,1.82026419,1.82026419,1.82026419,1.82026419,1.82026419 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Risk score,risk score,1.096668214,1.096668214,1.096668214,1.096668214,1.096668214,1.096668214,1.096668214,1.096668214,1.096668214,1.096668214 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Risk score,risk score,2.505450064,2.505450064,2.505450064,2.505450064,2.505450064,2.505450064,2.505450064,2.505450064,2.505450064,2.505450064 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Risk score,risk score,0.186790348,0.186790348,0.186790348,0.186790348,0.186790348,0.186790348,0.186790348,0.186790348,0.186790348,0.186790348 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Risk score,risk score,0.230267547,0.230267547,0.230267547,0.230267547,0.230267547,0.230267547,0.230267547,0.230267547,0.230267547,0.230267547 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Risk score,risk score,0.952608427,0.952608427,0.952608427,0.952608427,0.952608427,0.952608427,0.952608427,0.952608427,0.952608427,0.952608427 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Risk score,risk score,0.6369247,0.6369247,0.6369247,0.6369247,0.6369247,0.6369247,0.6369247,0.6369247,0.6369247,0.6369247 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Risk score,risk score,1.642146234,1.642146234,1.642146234,1.642146234,1.642146234,1.642146234,1.642146234,1.642146234,1.642146234,1.642146234 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Risk score,risk score,1.852069339,1.852069339,1.852069339,1.852069339,1.852069339,1.852069339,1.852069339,1.852069339,1.852069339,1.852069339 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Risk score,risk score,0.901808677,0.901808677,0.901808677,0.901808677,0.901808677,0.901808677,0.901808677,0.901808677,0.901808677,0.901808677 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Risk score,risk score,1.427682616,1.427682616,1.427682616,1.427682616,1.427682616,1.427682616,1.427682616,1.427682616,1.427682616,1.427682616 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Risk score,risk score,0.841933314,0.841933314,0.841933314,0.841933314,0.841933314,0.841933314,0.841933314,0.841933314,0.841933314,0.841933314 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Risk score,risk score,0.360400884,0.360400884,0.360400884,0.360400884,0.360400884,0.360400884,0.360400884,0.360400884,0.360400884,0.360400884 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Risk score,risk score,0.287517308,0.287517308,0.287517308,0.287517308,0.287517308,0.287517308,0.287517308,0.287517308,0.287517308,0.287517308 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Risk score,risk score,2.135978001,2.135978001,2.135978001,2.135978001,2.135978001,2.135978001,2.135978001,2.135978001,2.135978001,2.135978001 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Risk score,risk score,1.612723123,1.612723123,1.612723123,1.612723123,1.612723123,1.612723123,1.612723123,1.612723123,1.612723123,1.612723123 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Risk score,risk score,0.718035413,0.718035413,0.718035413,0.718035413,0.718035413,0.718035413,0.718035413,0.718035413,0.718035413,0.718035413 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Risk score,risk score,1.010806384,1.010806384,1.010806384,1.010806384,1.010806384,1.010806384,1.010806384,1.010806384,1.010806384,1.010806384 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Risk score,risk score,0.235627033,0.235627033,0.235627033,0.235627033,0.235627033,0.235627033,0.235627033,0.235627033,0.235627033,0.235627033 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Risk score,risk score,2.081098591,2.081098591,2.081098591,2.081098591,2.081098591,2.081098591,2.081098591,2.081098591,2.081098591,2.081098591 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Risk score,risk score,1.744188945,1.744188945,1.744188945,1.744188945,1.744188945,1.744188945,1.744188945,1.744188945,1.744188945,1.744188945 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Risk score,risk score,0.072285374,0.072285374,0.072285374,0.072285374,0.072285374,0.072285374,0.072285374,0.072285374,0.072285374,0.072285374 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Risk score,risk score,0.363448084,0.363448084,0.363448084,0.363448084,0.363448084,0.363448084,0.363448084,0.363448084,0.363448084,0.363448084 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Risk score,risk score,1.804389748,1.804389748,1.804389748,1.804389748,1.804389748,1.804389748,1.804389748,1.804389748,1.804389748,1.804389748 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Risk score,risk score,0.045396977,0.045396977,0.045396977,0.045396977,0.045396977,0.045396977,0.045396977,0.045396977,0.045396977,0.045396977 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Risk score,risk score,2.017274201,2.017274201,2.017274201,2.017274201,2.017274201,2.017274201,2.017274201,2.017274201,2.017274201,2.017274201 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Risk score,risk score,0.939833555,0.939833555,0.939833555,0.939833555,0.939833555,0.939833555,0.939833555,0.939833555,0.939833555,0.939833555 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Risk score,risk score,1.299881169,1.299881169,1.299881169,1.299881169,1.299881169,1.299881169,1.299881169,1.299881169,1.299881169,1.299881169 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Risk score,risk score,0.92968795,0.92968795,0.92968795,0.92968795,0.92968795,0.92968795,0.92968795,0.92968795,0.92968795,0.92968795 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Risk score,risk score,0.213993992,0.213993992,0.213993992,0.213993992,0.213993992,0.213993992,0.213993992,0.213993992,0.213993992,0.213993992 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Risk score,risk score,1.228797926,1.228797926,1.228797926,1.228797926,1.228797926,1.228797926,1.228797926,1.228797926,1.228797926,1.228797926 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Risk score,risk score,0.481996657,0.481996657,0.481996657,0.481996657,0.481996657,0.481996657,0.481996657,0.481996657,0.481996657,0.481996657 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Risk score,risk score,0.463565443,0.463565443,0.463565443,0.463565443,0.463565443,0.463565443,0.463565443,0.463565443,0.463565443,0.463565443 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Risk score,risk score,1.111173817,1.111173817,1.111173817,1.111173817,1.111173817,1.111173817,1.111173817,1.111173817,1.111173817,1.111173817 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Risk score,risk score,1.62820083,1.62820083,1.62820083,1.62820083,1.62820083,1.62820083,1.62820083,1.62820083,1.62820083,1.62820083 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Risk score,risk score,1.848474034,1.848474034,1.848474034,1.848474034,1.848474034,1.848474034,1.848474034,1.848474034,1.848474034,1.848474034 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Risk score,risk score,1.450275565,1.450275565,1.450275565,1.450275565,1.450275565,1.450275565,1.450275565,1.450275565,1.450275565,1.450275565 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Risk score,risk score,2.622423326,2.622423326,2.622423326,2.622423326,2.622423326,2.622423326,2.622423326,2.622423326,2.622423326,2.622423326 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Risk score,risk score,0.107599759,0.107599759,0.107599759,0.107599759,0.107599759,0.107599759,0.107599759,0.107599759,0.107599759,0.107599759 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Risk score,risk score,0.061439372,0.061439372,0.061439372,0.061439372,0.061439372,0.061439372,0.061439372,0.061439372,0.061439372,0.061439372 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Risk score,risk score,0.814694878,0.814694878,0.814694878,0.814694878,0.814694878,0.814694878,0.814694878,0.814694878,0.814694878,0.814694878 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Risk score,risk score,0.079715748,0.079715748,0.079715748,0.079715748,0.079715748,0.079715748,0.079715748,0.079715748,0.079715748,0.079715748 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Risk score,risk score,0.950281267,0.950281267,0.950281267,0.950281267,0.950281267,0.950281267,0.950281267,0.950281267,0.950281267,0.950281267 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Risk score,risk score,2.516285373,2.516285373,2.516285373,2.516285373,2.516285373,2.516285373,2.516285373,2.516285373,2.516285373,2.516285373 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Risk score,risk score,1.681774521,1.681774521,1.681774521,1.681774521,1.681774521,1.681774521,1.681774521,1.681774521,1.681774521,1.681774521 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Risk score,risk score,1.113889331,1.113889331,1.113889331,1.113889331,1.113889331,1.113889331,1.113889331,1.113889331,1.113889331,1.113889331 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Risk score,risk score,0.940657913,0.940657913,0.940657913,0.940657913,0.940657913,0.940657913,0.940657913,0.940657913,0.940657913,0.940657913 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Risk score,risk score,0.036564981,0.036564981,0.036564981,0.036564981,0.036564981,0.036564981,0.036564981,0.036564981,0.036564981,0.036564981 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Risk score,risk score,0.259978964,0.259978964,0.259978964,0.259978964,0.259978964,0.259978964,0.259978964,0.259978964,0.259978964,0.259978964 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Risk score,risk score,1.248037991,1.248037991,1.248037991,1.248037991,1.248037991,1.248037991,1.248037991,1.248037991,1.248037991,1.248037991 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Risk score,risk score,1.435411783,1.435411783,1.435411783,1.435411783,1.435411783,1.435411783,1.435411783,1.435411783,1.435411783,1.435411783 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Risk score,risk score,2.257601325,2.257601325,2.257601325,2.257601325,2.257601325,2.257601325,2.257601325,2.257601325,2.257601325,2.257601325 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Risk score,risk score,0.370228819,0.370228819,0.370228819,0.370228819,0.370228819,0.370228819,0.370228819,0.370228819,0.370228819,0.370228819 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Risk score,risk score,1.246188015,1.246188015,1.246188015,1.246188015,1.246188015,1.246188015,1.246188015,1.246188015,1.246188015,1.246188015 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Risk score,risk score,0.489613706,0.489613706,0.489613706,0.489613706,0.489613706,0.489613706,0.489613706,0.489613706,0.489613706,0.489613706 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Risk score,risk score,1.013131848,1.013131848,1.013131848,1.013131848,1.013131848,1.013131848,1.013131848,1.013131848,1.013131848,1.013131848 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Risk score,risk score,1.561636385,1.561636385,1.561636385,1.561636385,1.561636385,1.561636385,1.561636385,1.561636385,1.561636385,1.561636385 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Risk score,risk score,0.620192615,0.620192615,0.620192615,0.620192615,0.620192615,0.620192615,0.620192615,0.620192615,0.620192615,0.620192615 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Risk score,risk score,0.049157329,0.049157329,0.049157329,0.049157329,0.049157329,0.049157329,0.049157329,0.049157329,0.049157329,0.049157329 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Risk score,risk score,0.498283957,0.498283957,0.498283957,0.498283957,0.498283957,0.498283957,0.498283957,0.498283957,0.498283957,0.498283957 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Risk score,risk score,0.818529739,0.818529739,0.818529739,0.818529739,0.818529739,0.818529739,0.818529739,0.818529739,0.818529739,0.818529739 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Risk score,risk score,0.213016871,0.213016871,0.213016871,0.213016871,0.213016871,0.213016871,0.213016871,0.213016871,0.213016871,0.213016871 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Risk score,risk score,0.018465588,0.018465588,0.018465588,0.018465588,0.018465588,0.018465588,0.018465588,0.018465588,0.018465588,0.018465588 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Risk score,risk score,0.345279,0.345279,0.345279,0.345279,0.345279,0.345279,0.345279,0.345279,0.345279,0.345279 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Risk score,risk score,2.702813629,2.702813629,2.702813629,2.702813629,2.702813629,2.702813629,2.702813629,2.702813629,2.702813629,2.702813629 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Risk score,risk score,0.453198342,0.453198342,0.453198342,0.453198342,0.453198342,0.453198342,0.453198342,0.453198342,0.453198342,0.453198342 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Risk score,risk score,1.448989012,1.448989012,1.448989012,1.448989012,1.448989012,1.448989012,1.448989012,1.448989012,1.448989012,1.448989012 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Risk score,risk score,0.804350714,0.804350714,0.804350714,0.804350714,0.804350714,0.804350714,0.804350714,0.804350714,0.804350714,0.804350714 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Risk score,risk score,0.364626141,0.364626141,0.364626141,0.364626141,0.364626141,0.364626141,0.364626141,0.364626141,0.364626141,0.364626141 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Risk score,risk score,0.790194649,0.790194649,0.790194649,0.790194649,0.790194649,0.790194649,0.790194649,0.790194649,0.790194649,0.790194649 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Risk score,risk score,2.473445323,2.473445323,2.473445323,2.473445323,2.473445323,2.473445323,2.473445323,2.473445323,2.473445323,2.473445323 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Risk score,risk score,0.615498645,0.615498645,0.615498645,0.615498645,0.615498645,0.615498645,0.615498645,0.615498645,0.615498645,0.615498645 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Risk score,risk score,0.729426831,0.729426831,0.729426831,0.729426831,0.729426831,0.729426831,0.729426831,0.729426831,0.729426831,0.729426831 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Risk score,risk score,0.164900035,0.164900035,0.164900035,0.164900035,0.164900035,0.164900035,0.164900035,0.164900035,0.164900035,0.164900035 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Risk score,risk score,0.834350081,0.834350081,0.834350081,0.834350081,0.834350081,0.834350081,0.834350081,0.834350081,0.834350081,0.834350081 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Risk score,risk score,2.159357516,2.159357516,2.159357516,2.159357516,2.159357516,2.159357516,2.159357516,2.159357516,2.159357516,2.159357516 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Risk score,risk score,1.235799155,1.235799155,1.235799155,1.235799155,1.235799155,1.235799155,1.235799155,1.235799155,1.235799155,1.235799155 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Risk score,risk score,1.790770421,1.790770421,1.790770421,1.790770421,1.790770421,1.790770421,1.790770421,1.790770421,1.790770421,1.790770421 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Risk score,risk score,0.181235891,0.181235891,0.181235891,0.181235891,0.181235891,0.181235891,0.181235891,0.181235891,0.181235891,0.181235891 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Risk score,risk score,0.097628804,0.097628804,0.097628804,0.097628804,0.097628804,0.097628804,0.097628804,0.097628804,0.097628804,0.097628804 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Risk score,risk score,0.309775917,0.309775917,0.309775917,0.309775917,0.309775917,0.309775917,0.309775917,0.309775917,0.309775917,0.309775917 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Risk score,risk score,0.258263595,0.258263595,0.258263595,0.258263595,0.258263595,0.258263595,0.258263595,0.258263595,0.258263595,0.258263595 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Risk score,risk score,1.504558999,1.504558999,1.504558999,1.504558999,1.504558999,1.504558999,1.504558999,1.504558999,1.504558999,1.504558999 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Risk score,risk score,0.531167674,0.531167674,0.531167674,0.531167674,0.531167674,0.531167674,0.531167674,0.531167674,0.531167674,0.531167674 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Risk score,risk score,0.692204989,0.692204989,0.692204989,0.692204989,0.692204989,0.692204989,0.692204989,0.692204989,0.692204989,0.692204989 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Risk score,risk score,0.580117091,0.580117091,0.580117091,0.580117091,0.580117091,0.580117091,0.580117091,0.580117091,0.580117091,0.580117091 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Risk score,risk score,2.556562002,2.556562002,2.556562002,2.556562002,2.556562002,2.556562002,2.556562002,2.556562002,2.556562002,2.556562002 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Risk score,risk score,1.58627518,1.58627518,1.58627518,1.58627518,1.58627518,1.58627518,1.58627518,1.58627518,1.58627518,1.58627518 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Risk score,risk score,1.266394886,1.266394886,1.266394886,1.266394886,1.266394886,1.266394886,1.266394886,1.266394886,1.266394886,1.266394886 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Risk score,risk score,0.634181094,0.634181094,0.634181094,0.634181094,0.634181094,0.634181094,0.634181094,0.634181094,0.634181094,0.634181094 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Risk score,risk score,0.805405631,0.805405631,0.805405631,0.805405631,0.805405631,0.805405631,0.805405631,0.805405631,0.805405631,0.805405631 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Risk score,risk score,0.617139259,0.617139259,0.617139259,0.617139259,0.617139259,0.617139259,0.617139259,0.617139259,0.617139259,0.617139259 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Risk score,risk score,0.147786376,0.147786376,0.147786376,0.147786376,0.147786376,0.147786376,0.147786376,0.147786376,0.147786376,0.147786376 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Risk score,risk score,0.450383578,0.450383578,0.450383578,0.450383578,0.450383578,0.450383578,0.450383578,0.450383578,0.450383578,0.450383578 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Risk score,risk score,1.952025215,1.952025215,1.952025215,1.952025215,1.952025215,1.952025215,1.952025215,1.952025215,1.952025215,1.952025215 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Risk score,risk score,0.47938987,0.47938987,0.47938987,0.47938987,0.47938987,0.47938987,0.47938987,0.47938987,0.47938987,0.47938987 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Risk score,risk score,0.310634898,0.310634898,0.310634898,0.310634898,0.310634898,0.310634898,0.310634898,0.310634898,0.310634898,0.310634898 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Risk score,risk score,1.862609825,1.862609825,1.862609825,1.862609825,1.862609825,1.862609825,1.862609825,1.862609825,1.862609825,1.862609825 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Risk score,risk score,2.16925824,2.16925824,2.16925824,2.16925824,2.16925824,2.16925824,2.16925824,2.16925824,2.16925824,2.16925824 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Risk score,risk score,2.614006637,2.614006637,2.614006637,2.614006637,2.614006637,2.614006637,2.614006637,2.614006637,2.614006637,2.614006637 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Risk score,risk score,1.235544926,1.235544926,1.235544926,1.235544926,1.235544926,1.235544926,1.235544926,1.235544926,1.235544926,1.235544926 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Risk score,risk score,1.343933904,1.343933904,1.343933904,1.343933904,1.343933904,1.343933904,1.343933904,1.343933904,1.343933904,1.343933904 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Risk score,risk score,0.158066124,0.158066124,0.158066124,0.158066124,0.158066124,0.158066124,0.158066124,0.158066124,0.158066124,0.158066124 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Risk score,risk score,0.387581777,0.387581777,0.387581777,0.387581777,0.387581777,0.387581777,0.387581777,0.387581777,0.387581777,0.387581777 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Risk score,risk score,1.353327048,1.353327048,1.353327048,1.353327048,1.353327048,1.353327048,1.353327048,1.353327048,1.353327048,1.353327048 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Risk score,risk score,0.347372142,0.347372142,0.347372142,0.347372142,0.347372142,0.347372142,0.347372142,0.347372142,0.347372142,0.347372142 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Risk score,risk score,2.053589211,2.053589211,2.053589211,2.053589211,2.053589211,2.053589211,2.053589211,2.053589211,2.053589211,2.053589211 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Risk score,risk score,1.202456697,1.202456697,1.202456697,1.202456697,1.202456697,1.202456697,1.202456697,1.202456697,1.202456697,1.202456697 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Risk score,risk score,0.506561665,0.506561665,0.506561665,0.506561665,0.506561665,0.506561665,0.506561665,0.506561665,0.506561665,0.506561665 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Risk score,risk score,0.146667624,0.146667624,0.146667624,0.146667624,0.146667624,0.146667624,0.146667624,0.146667624,0.146667624,0.146667624 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Risk score,risk score,0.299230624,0.299230624,0.299230624,0.299230624,0.299230624,0.299230624,0.299230624,0.299230624,0.299230624,0.299230624 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Risk score,risk score,0.515739225,0.515739225,0.515739225,0.515739225,0.515739225,0.515739225,0.515739225,0.515739225,0.515739225,0.515739225 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Risk score,risk score,0.607541222,0.607541222,0.607541222,0.607541222,0.607541222,0.607541222,0.607541222,0.607541222,0.607541222,0.607541222 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Risk score,risk score,1.984733593,1.984733593,1.984733593,1.984733593,1.984733593,1.984733593,1.984733593,1.984733593,1.984733593,1.984733593 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Risk score,risk score,0.423972812,0.423972812,0.423972812,0.423972812,0.423972812,0.423972812,0.423972812,0.423972812,0.423972812,0.423972812 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Risk score,risk score,1.576414251,1.576414251,1.576414251,1.576414251,1.576414251,1.576414251,1.576414251,1.576414251,1.576414251,1.576414251 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Risk score,risk score,1.38863709,1.38863709,1.38863709,1.38863709,1.38863709,1.38863709,1.38863709,1.38863709,1.38863709,1.38863709 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Risk score,risk score,0.01244182,0.01244182,0.01244182,0.01244182,0.01244182,0.01244182,0.01244182,0.01244182,0.01244182,0.01244182 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Risk score,risk score,0.207553145,0.207553145,0.207553145,0.207553145,0.207553145,0.207553145,0.207553145,0.207553145,0.207553145,0.207553145 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Risk score,risk score,0.107650367,0.107650367,0.107650367,0.107650367,0.107650367,0.107650367,0.107650367,0.107650367,0.107650367,0.107650367 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Risk score,risk score,0.487102882,0.487102882,0.487102882,0.487102882,0.487102882,0.487102882,0.487102882,0.487102882,0.487102882,0.487102882 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Risk score,risk score,2.545863331,2.545863331,2.545863331,2.545863331,2.545863331,2.545863331,2.545863331,2.545863331,2.545863331,2.545863331 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Risk score,risk score,0.240227345,0.240227345,0.240227345,0.240227345,0.240227345,0.240227345,0.240227345,0.240227345,0.240227345,0.240227345 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Risk score,risk score,0.44536844,0.44536844,0.44536844,0.44536844,0.44536844,0.44536844,0.44536844,0.44536844,0.44536844,0.44536844 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Risk score,risk score,0.323105854,0.323105854,0.323105854,0.323105854,0.323105854,0.323105854,0.323105854,0.323105854,0.323105854,0.323105854 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Risk score,risk score,0.934650135,0.934650135,0.934650135,0.934650135,0.934650135,0.934650135,0.934650135,0.934650135,0.934650135,0.934650135 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Risk score,risk score,1.6160249,1.6160249,1.6160249,1.6160249,1.6160249,1.6160249,1.6160249,1.6160249,1.6160249,1.6160249 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Risk score,risk score,1.676593136,1.676593136,1.676593136,1.676593136,1.676593136,1.676593136,1.676593136,1.676593136,1.676593136,1.676593136 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Risk score,risk score,0.929817867,0.929817867,0.929817867,0.929817867,0.929817867,0.929817867,0.929817867,0.929817867,0.929817867,0.929817867 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Risk score,risk score,0.488203468,0.488203468,0.488203468,0.488203468,0.488203468,0.488203468,0.488203468,0.488203468,0.488203468,0.488203468 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Risk score,risk score,0.529280459,0.529280459,0.529280459,0.529280459,0.529280459,0.529280459,0.529280459,0.529280459,0.529280459,0.529280459 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Risk score,risk score,0.878950397,0.878950397,0.878950397,0.878950397,0.878950397,0.878950397,0.878950397,0.878950397,0.878950397,0.878950397 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Risk score,risk score,0.105559986,0.105559986,0.105559986,0.105559986,0.105559986,0.105559986,0.105559986,0.105559986,0.105559986,0.105559986 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Risk score,risk score,0.670257942,0.670257942,0.670257942,0.670257942,0.670257942,0.670257942,0.670257942,0.670257942,0.670257942,0.670257942 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Risk score,risk score,0.440150461,0.440150461,0.440150461,0.440150461,0.440150461,0.440150461,0.440150461,0.440150461,0.440150461,0.440150461 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Risk score,risk score,0.993779082,0.993779082,0.993779082,0.993779082,0.993779082,0.993779082,0.993779082,0.993779082,0.993779082,0.993779082 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Risk score,risk score,0.143118038,0.143118038,0.143118038,0.143118038,0.143118038,0.143118038,0.143118038,0.143118038,0.143118038,0.143118038 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Risk score,risk score,1.118678932,1.118678932,1.118678932,1.118678932,1.118678932,1.118678932,1.118678932,1.118678932,1.118678932,1.118678932 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Risk score,risk score,1.178170597,1.178170597,1.178170597,1.178170597,1.178170597,1.178170597,1.178170597,1.178170597,1.178170597,1.178170597 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Risk score,risk score,0.82635225,0.82635225,0.82635225,0.82635225,0.82635225,0.82635225,0.82635225,0.82635225,0.82635225,0.82635225 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Risk score,risk score,1.243039404,1.243039404,1.243039404,1.243039404,1.243039404,1.243039404,1.243039404,1.243039404,1.243039404,1.243039404 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Risk score,risk score,2.568149662,2.568149662,2.568149662,2.568149662,2.568149662,2.568149662,2.568149662,2.568149662,2.568149662,2.568149662 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Risk score,risk score,1.423999728,1.423999728,1.423999728,1.423999728,1.423999728,1.423999728,1.423999728,1.423999728,1.423999728,1.423999728 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Risk score,risk score,0.136631762,0.136631762,0.136631762,0.136631762,0.136631762,0.136631762,0.136631762,0.136631762,0.136631762,0.136631762 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Risk score,risk score,0.01507889,0.01507889,0.01507889,0.01507889,0.01507889,0.01507889,0.01507889,0.01507889,0.01507889,0.01507889 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Risk score,risk score,0.626602882,0.626602882,0.626602882,0.626602882,0.626602882,0.626602882,0.626602882,0.626602882,0.626602882,0.626602882 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Risk score,risk score,1.371270865,1.371270865,1.371270865,1.371270865,1.371270865,1.371270865,1.371270865,1.371270865,1.371270865,1.371270865 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Risk score,risk score,1.059336643,1.059336643,1.059336643,1.059336643,1.059336643,1.059336643,1.059336643,1.059336643,1.059336643,1.059336643 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Risk score,risk score,0.283854503,0.283854503,0.283854503,0.283854503,0.283854503,0.283854503,0.283854503,0.283854503,0.283854503,0.283854503 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Risk score,risk score,2.32782987,2.32782987,2.32782987,2.32782987,2.32782987,2.32782987,2.32782987,2.32782987,2.32782987,2.32782987 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Risk score,risk score,2.061260129,2.061260129,2.061260129,2.061260129,2.061260129,2.061260129,2.061260129,2.061260129,2.061260129,2.061260129 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Risk score,risk score,0.242018973,0.242018973,0.242018973,0.242018973,0.242018973,0.242018973,0.242018973,0.242018973,0.242018973,0.242018973 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Risk score,risk score,1.301037171,1.301037171,1.301037171,1.301037171,1.301037171,1.301037171,1.301037171,1.301037171,1.301037171,1.301037171 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Risk score,risk score,0.194882769,0.194882769,0.194882769,0.194882769,0.194882769,0.194882769,0.194882769,0.194882769,0.194882769,0.194882769 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Risk score,risk score,2.047579181,2.047579181,2.047579181,2.047579181,2.047579181,2.047579181,2.047579181,2.047579181,2.047579181,2.047579181 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Risk score,risk score,0.397735731,0.397735731,0.397735731,0.397735731,0.397735731,0.397735731,0.397735731,0.397735731,0.397735731,0.397735731 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Risk score,risk score,0.07716751,0.07716751,0.07716751,0.07716751,0.07716751,0.07716751,0.07716751,0.07716751,0.07716751,0.07716751 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Risk score,risk score,0.073014389,0.073014389,0.073014389,0.073014389,0.073014389,0.073014389,0.073014389,0.073014389,0.073014389,0.073014389 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Risk score,risk score,1.159008258,1.159008258,1.159008258,1.159008258,1.159008258,1.159008258,1.159008258,1.159008258,1.159008258,1.159008258 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Risk score,risk score,0.418422671,0.418422671,0.418422671,0.418422671,0.418422671,0.418422671,0.418422671,0.418422671,0.418422671,0.418422671 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Risk score,risk score,1.314770508,1.314770508,1.314770508,1.314770508,1.314770508,1.314770508,1.314770508,1.314770508,1.314770508,1.314770508 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Risk score,risk score,0.255316084,0.255316084,0.255316084,0.255316084,0.255316084,0.255316084,0.255316084,0.255316084,0.255316084,0.255316084 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Risk score,risk score,0.699877902,0.699877902,0.699877902,0.699877902,0.699877902,0.699877902,0.699877902,0.699877902,0.699877902,0.699877902 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Risk score,risk score,0.483583641,0.483583641,0.483583641,0.483583641,0.483583641,0.483583641,0.483583641,0.483583641,0.483583641,0.483583641 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Risk score,risk score,1.419171231,1.419171231,1.419171231,1.419171231,1.419171231,1.419171231,1.419171231,1.419171231,1.419171231,1.419171231 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Risk score,risk score,0.266063752,0.266063752,0.266063752,0.266063752,0.266063752,0.266063752,0.266063752,0.266063752,0.266063752,0.266063752 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Risk score,risk score,0.364583265,0.364583265,0.364583265,0.364583265,0.364583265,0.364583265,0.364583265,0.364583265,0.364583265,0.364583265 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Risk score,risk score,1.847860946,1.847860946,1.847860946,1.847860946,1.847860946,1.847860946,1.847860946,1.847860946,1.847860946,1.847860946 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Risk score,risk score,0.919843062,0.919843062,0.919843062,0.919843062,0.919843062,0.919843062,0.919843062,0.919843062,0.919843062,0.919843062 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Risk score,risk score,1.718362583,1.718362583,1.718362583,1.718362583,1.718362583,1.718362583,1.718362583,1.718362583,1.718362583,1.718362583 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Risk score,risk score,1.819802836,1.819802836,1.819802836,1.819802836,1.819802836,1.819802836,1.819802836,1.819802836,1.819802836,1.819802836 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Risk score,risk score,2.661628758,2.661628758,2.661628758,2.661628758,2.661628758,2.661628758,2.661628758,2.661628758,2.661628758,2.661628758 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Risk score,risk score,0.083361155,0.083361155,0.083361155,0.083361155,0.083361155,0.083361155,0.083361155,0.083361155,0.083361155,0.083361155 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Risk score,risk score,0.716968984,0.716968984,0.716968984,0.716968984,0.716968984,0.716968984,0.716968984,0.716968984,0.716968984,0.716968984 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Risk score,risk score,2.334826382,2.334826382,2.334826382,2.334826382,2.334826382,2.334826382,2.334826382,2.334826382,2.334826382,2.334826382 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Risk score,risk score,0.419231873,0.419231873,0.419231873,0.419231873,0.419231873,0.419231873,0.419231873,0.419231873,0.419231873,0.419231873 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Risk score,risk score,0.812996279,0.812996279,0.812996279,0.812996279,0.812996279,0.812996279,0.812996279,0.812996279,0.812996279,0.812996279 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Risk score,risk score,0.783759805,0.783759805,0.783759805,0.783759805,0.783759805,0.783759805,0.783759805,0.783759805,0.783759805,0.783759805 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Risk score,risk score,0.645198783,0.645198783,0.645198783,0.645198783,0.645198783,0.645198783,0.645198783,0.645198783,0.645198783,0.645198783 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Risk score,risk score,0.465992519,0.465992519,0.465992519,0.465992519,0.465992519,0.465992519,0.465992519,0.465992519,0.465992519,0.465992519 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Risk score,risk score,0.060493335,0.060493335,0.060493335,0.060493335,0.060493335,0.060493335,0.060493335,0.060493335,0.060493335,0.060493335 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Risk score,risk score,0.00506019,0.00506019,0.00506019,0.00506019,0.00506019,0.00506019,0.00506019,0.00506019,0.00506019,0.00506019 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Risk score,risk score,0.257495973,0.257495973,0.257495973,0.257495973,0.257495973,0.257495973,0.257495973,0.257495973,0.257495973,0.257495973 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Risk score,risk score,0.137715812,0.137715812,0.137715812,0.137715812,0.137715812,0.137715812,0.137715812,0.137715812,0.137715812,0.137715812 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Risk score,risk score,0.033444223,0.033444223,0.033444223,0.033444223,0.033444223,0.033444223,0.033444223,0.033444223,0.033444223,0.033444223 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Risk score|Land area weighted,risk score,0.597350884,0.597350884,0.597350884,0.597350884,0.597350884,0.597350884,0.597350884,0.597350884,0.597350884,0.597350884 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Risk score|Land area weighted,risk score,0.988279395,0.988279395,0.988279395,0.988279395,0.988279395,0.988279395,0.988279395,0.988279395,0.988279395,0.988279395 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Risk score|Land area weighted,risk score,2.290997385,2.290997385,2.290997385,2.290997385,2.290997385,2.290997385,2.290997385,2.290997385,2.290997385,2.290997385 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Risk score|Land area weighted,risk score,0.459177308,0.459177308,0.459177308,0.459177308,0.459177308,0.459177308,0.459177308,0.459177308,0.459177308,0.459177308 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Risk score|Land area weighted,risk score,1.944981097,1.944981097,1.944981097,1.944981097,1.944981097,1.944981097,1.944981097,1.944981097,1.944981097,1.944981097 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Risk score|Land area weighted,risk score,1.744698134,1.744698134,1.744698134,1.744698134,1.744698134,1.744698134,1.744698134,1.744698134,1.744698134,1.744698134 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.596624962,1.596624962,1.596624962,1.596624962,1.596624962,1.596624962,1.596624962,1.596624962,1.596624962,1.596624962 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Risk score|Land area weighted,risk score,2.581654697,2.581654697,2.581654697,2.581654697,2.581654697,2.581654697,2.581654697,2.581654697,2.581654697,2.581654697 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Risk score|Land area weighted,risk score,1.559053156,1.559053156,1.559053156,1.559053156,1.559053156,1.559053156,1.559053156,1.559053156,1.559053156,1.559053156 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Risk score|Land area weighted,risk score,1.885992421,1.885992421,1.885992421,1.885992421,1.885992421,1.885992421,1.885992421,1.885992421,1.885992421,1.885992421 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Risk score|Land area weighted,risk score,0.633809022,0.633809022,0.633809022,0.633809022,0.633809022,0.633809022,0.633809022,0.633809022,0.633809022,0.633809022 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Risk score|Land area weighted,risk score,2.45391579,2.45391579,2.45391579,2.45391579,2.45391579,2.45391579,2.45391579,2.45391579,2.45391579,2.45391579 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Risk score|Land area weighted,risk score,1.471286901,1.471286901,1.471286901,1.471286901,1.471286901,1.471286901,1.471286901,1.471286901,1.471286901,1.471286901 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Risk score|Land area weighted,risk score,2.799836936,2.799836936,2.799836936,2.799836936,2.799836936,2.799836936,2.799836936,2.799836936,2.799836936,2.799836936 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Risk score|Land area weighted,risk score,1.987518321,1.987518321,1.987518321,1.987518321,1.987518321,1.987518321,1.987518321,1.987518321,1.987518321,1.987518321 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Risk score|Land area weighted,risk score,0.579908536,0.579908536,0.579908536,0.579908536,0.579908536,0.579908536,0.579908536,0.579908536,0.579908536,0.579908536 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Risk score|Land area weighted,risk score,1.453019122,1.453019122,1.453019122,1.453019122,1.453019122,1.453019122,1.453019122,1.453019122,1.453019122,1.453019122 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Risk score|Land area weighted,risk score,1.048198245,1.048198245,1.048198245,1.048198245,1.048198245,1.048198245,1.048198245,1.048198245,1.048198245,1.048198245 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Risk score|Land area weighted,risk score,2.266477543,2.266477543,2.266477543,2.266477543,2.266477543,2.266477543,2.266477543,2.266477543,2.266477543,2.266477543 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Risk score|Land area weighted,risk score,2.909198161,2.909198161,2.909198161,2.909198161,2.909198161,2.909198161,2.909198161,2.909198161,2.909198161,2.909198161 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Risk score|Land area weighted,risk score,1.271329502,1.271329502,1.271329502,1.271329502,1.271329502,1.271329502,1.271329502,1.271329502,1.271329502,1.271329502 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Risk score|Land area weighted,risk score,1.879306586,1.879306586,1.879306586,1.879306586,1.879306586,1.879306586,1.879306586,1.879306586,1.879306586,1.879306586 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Risk score|Land area weighted,risk score,1.344213915,1.344213915,1.344213915,1.344213915,1.344213915,1.344213915,1.344213915,1.344213915,1.344213915,1.344213915 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Risk score|Land area weighted,risk score,0.64832429,0.64832429,0.64832429,0.64832429,0.64832429,0.64832429,0.64832429,0.64832429,0.64832429,0.64832429 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Risk score|Land area weighted,risk score,0.762824505,0.762824505,0.762824505,0.762824505,0.762824505,0.762824505,0.762824505,0.762824505,0.762824505,0.762824505 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Risk score|Land area weighted,risk score,2.846014516,2.846014516,2.846014516,2.846014516,2.846014516,2.846014516,2.846014516,2.846014516,2.846014516,2.846014516 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Risk score|Land area weighted,risk score,1.911378034,1.911378034,1.911378034,1.911378034,1.911378034,1.911378034,1.911378034,1.911378034,1.911378034,1.911378034 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Risk score|Land area weighted,risk score,1.455717093,1.455717093,1.455717093,1.455717093,1.455717093,1.455717093,1.455717093,1.455717093,1.455717093,1.455717093 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Risk score|Land area weighted,risk score,1.316139124,1.316139124,1.316139124,1.316139124,1.316139124,1.316139124,1.316139124,1.316139124,1.316139124,1.316139124 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Risk score|Land area weighted,risk score,0.342063462,0.342063462,0.342063462,0.342063462,0.342063462,0.342063462,0.342063462,0.342063462,0.342063462,0.342063462 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Risk score|Land area weighted,risk score,2.58678009,2.58678009,2.58678009,2.58678009,2.58678009,2.58678009,2.58678009,2.58678009,2.58678009,2.58678009 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Risk score|Land area weighted,risk score,2.172325101,2.172325101,2.172325101,2.172325101,2.172325101,2.172325101,2.172325101,2.172325101,2.172325101,2.172325101 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.275348513,0.275348513,0.275348513,0.275348513,0.275348513,0.275348513,0.275348513,0.275348513,0.275348513,0.275348513 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Risk score|Land area weighted,risk score,0.644315152,0.644315152,0.644315152,0.644315152,0.644315152,0.644315152,0.644315152,0.644315152,0.644315152,0.644315152 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Risk score|Land area weighted,risk score,2.878978398,2.878978398,2.878978398,2.878978398,2.878978398,2.878978398,2.878978398,2.878978398,2.878978398,2.878978398 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Risk score|Land area weighted,risk score,0.534056485,0.534056485,0.534056485,0.534056485,0.534056485,0.534056485,0.534056485,0.534056485,0.534056485,0.534056485 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Risk score|Land area weighted,risk score,2.322882986,2.322882986,2.322882986,2.322882986,2.322882986,2.322882986,2.322882986,2.322882986,2.322882986,2.322882986 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Risk score|Land area weighted,risk score,1.646183265,1.646183265,1.646183265,1.646183265,1.646183265,1.646183265,1.646183265,1.646183265,1.646183265,1.646183265 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Risk score|Land area weighted,risk score,1.607148035,1.607148035,1.607148035,1.607148035,1.607148035,1.607148035,1.607148035,1.607148035,1.607148035,1.607148035 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Risk score|Land area weighted,risk score,1.72034981,1.72034981,1.72034981,1.72034981,1.72034981,1.72034981,1.72034981,1.72034981,1.72034981,1.72034981 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Risk score|Land area weighted,risk score,2.139516339,2.139516339,2.139516339,2.139516339,2.139516339,2.139516339,2.139516339,2.139516339,2.139516339,2.139516339 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.488959532,1.488959532,1.488959532,1.488959532,1.488959532,1.488959532,1.488959532,1.488959532,1.488959532,1.488959532 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.760105552,0.760105552,0.760105552,0.760105552,0.760105552,0.760105552,0.760105552,0.760105552,0.760105552,0.760105552 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Risk score|Land area weighted,risk score,0.605929005,0.605929005,0.605929005,0.605929005,0.605929005,0.605929005,0.605929005,0.605929005,0.605929005,0.605929005 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Risk score|Land area weighted,risk score,1.83165322,1.83165322,1.83165322,1.83165322,1.83165322,1.83165322,1.83165322,1.83165322,1.83165322,1.83165322 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Risk score|Land area weighted,risk score,1.97231392,1.97231392,1.97231392,1.97231392,1.97231392,1.97231392,1.97231392,1.97231392,1.97231392,1.97231392 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Risk score|Land area weighted,risk score,2.274059845,2.274059845,2.274059845,2.274059845,2.274059845,2.274059845,2.274059845,2.274059845,2.274059845,2.274059845 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Risk score|Land area weighted,risk score,2.401247105,2.401247105,2.401247105,2.401247105,2.401247105,2.401247105,2.401247105,2.401247105,2.401247105,2.401247105 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Risk score|Land area weighted,risk score,3.037697397,3.037697397,3.037697397,3.037697397,3.037697397,3.037697397,3.037697397,3.037697397,3.037697397,3.037697397 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Risk score|Land area weighted,risk score,0.44910148,0.44910148,0.44910148,0.44910148,0.44910148,0.44910148,0.44910148,0.44910148,0.44910148,0.44910148 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Risk score|Land area weighted,risk score,0.471795401,0.471795401,0.471795401,0.471795401,0.471795401,0.471795401,0.471795401,0.471795401,0.471795401,0.471795401 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Risk score|Land area weighted,risk score,2.143886297,2.143886297,2.143886297,2.143886297,2.143886297,2.143886297,2.143886297,2.143886297,2.143886297,2.143886297 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Risk score|Land area weighted,risk score,0.808309446,0.808309446,0.808309446,0.808309446,0.808309446,0.808309446,0.808309446,0.808309446,0.808309446,0.808309446 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Risk score|Land area weighted,risk score,1.191896908,1.191896908,1.191896908,1.191896908,1.191896908,1.191896908,1.191896908,1.191896908,1.191896908,1.191896908 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Risk score|Land area weighted,risk score,2.947398536,2.947398536,2.947398536,2.947398536,2.947398536,2.947398536,2.947398536,2.947398536,2.947398536,2.947398536 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Risk score|Land area weighted,risk score,2.122203446,2.122203446,2.122203446,2.122203446,2.122203446,2.122203446,2.122203446,2.122203446,2.122203446,2.122203446 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Risk score|Land area weighted,risk score,1.308246941,1.308246941,1.308246941,1.308246941,1.308246941,1.308246941,1.308246941,1.308246941,1.308246941,1.308246941 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Risk score|Land area weighted,risk score,1.435499371,1.435499371,1.435499371,1.435499371,1.435499371,1.435499371,1.435499371,1.435499371,1.435499371,1.435499371 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Risk score|Land area weighted,risk score,0.644781924,0.644781924,0.644781924,0.644781924,0.644781924,0.644781924,0.644781924,0.644781924,0.644781924,0.644781924 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.391461357,0.391461357,0.391461357,0.391461357,0.391461357,0.391461357,0.391461357,0.391461357,0.391461357,0.391461357 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Risk score|Land area weighted,risk score,1.588346624,1.588346624,1.588346624,1.588346624,1.588346624,1.588346624,1.588346624,1.588346624,1.588346624,1.588346624 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.161666621,2.161666621,2.161666621,2.161666621,2.161666621,2.161666621,2.161666621,2.161666621,2.161666621,2.161666621 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Risk score|Land area weighted,risk score,2.983942861,2.983942861,2.983942861,2.983942861,2.983942861,2.983942861,2.983942861,2.983942861,2.983942861,2.983942861 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Risk score|Land area weighted,risk score,0.690577726,0.690577726,0.690577726,0.690577726,0.690577726,0.690577726,0.690577726,0.690577726,0.690577726,0.690577726 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Risk score|Land area weighted,risk score,1.644042916,1.644042916,1.644042916,1.644042916,1.644042916,1.644042916,1.644042916,1.644042916,1.644042916,1.644042916 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Risk score|Land area weighted,risk score,1.291902003,1.291902003,1.291902003,1.291902003,1.291902003,1.291902003,1.291902003,1.291902003,1.291902003,1.291902003 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Risk score|Land area weighted,risk score,1.837946422,1.837946422,1.837946422,1.837946422,1.837946422,1.837946422,1.837946422,1.837946422,1.837946422,1.837946422 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Risk score|Land area weighted,risk score,1.679119849,1.679119849,1.679119849,1.679119849,1.679119849,1.679119849,1.679119849,1.679119849,1.679119849,1.679119849 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Risk score|Land area weighted,risk score,1.298858853,1.298858853,1.298858853,1.298858853,1.298858853,1.298858853,1.298858853,1.298858853,1.298858853,1.298858853 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Risk score|Land area weighted,risk score,1.228860377,1.228860377,1.228860377,1.228860377,1.228860377,1.228860377,1.228860377,1.228860377,1.228860377,1.228860377 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Risk score|Land area weighted,risk score,0.897718421,0.897718421,0.897718421,0.897718421,0.897718421,0.897718421,0.897718421,0.897718421,0.897718421,0.897718421 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Risk score|Land area weighted,risk score,1.024619598,1.024619598,1.024619598,1.024619598,1.024619598,1.024619598,1.024619598,1.024619598,1.024619598,1.024619598 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Risk score|Land area weighted,risk score,2.74867999,2.74867999,2.74867999,2.74867999,2.74867999,2.74867999,2.74867999,2.74867999,2.74867999,2.74867999 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Risk score|Land area weighted,risk score,0.46121151,0.46121151,0.46121151,0.46121151,0.46121151,0.46121151,0.46121151,0.46121151,0.46121151,0.46121151 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Risk score|Land area weighted,risk score,0.436091911,0.436091911,0.436091911,0.436091911,0.436091911,0.436091911,0.436091911,0.436091911,0.436091911,0.436091911 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Risk score|Land area weighted,risk score,2.993749498,2.993749498,2.993749498,2.993749498,2.993749498,2.993749498,2.993749498,2.993749498,2.993749498,2.993749498 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Risk score|Land area weighted,risk score,0.703260278,0.703260278,0.703260278,0.703260278,0.703260278,0.703260278,0.703260278,0.703260278,0.703260278,0.703260278 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Risk score|Land area weighted,risk score,1.835911223,1.835911223,1.835911223,1.835911223,1.835911223,1.835911223,1.835911223,1.835911223,1.835911223,1.835911223 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Risk score|Land area weighted,risk score,0.917512422,0.917512422,0.917512422,0.917512422,0.917512422,0.917512422,0.917512422,0.917512422,0.917512422,0.917512422 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Risk score|Land area weighted,risk score,0.453980545,0.453980545,0.453980545,0.453980545,0.453980545,0.453980545,0.453980545,0.453980545,0.453980545,0.453980545 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Risk score|Land area weighted,risk score,1.250410653,1.250410653,1.250410653,1.250410653,1.250410653,1.250410653,1.250410653,1.250410653,1.250410653,1.250410653 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Risk score|Land area weighted,risk score,2.887035601,2.887035601,2.887035601,2.887035601,2.887035601,2.887035601,2.887035601,2.887035601,2.887035601,2.887035601 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Risk score|Land area weighted,risk score,0.679624849,0.679624849,0.679624849,0.679624849,0.679624849,0.679624849,0.679624849,0.679624849,0.679624849,0.679624849 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Risk score|Land area weighted,risk score,1.157741477,1.157741477,1.157741477,1.157741477,1.157741477,1.157741477,1.157741477,1.157741477,1.157741477,1.157741477 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Risk score|Land area weighted,risk score,1.113208353,1.113208353,1.113208353,1.113208353,1.113208353,1.113208353,1.113208353,1.113208353,1.113208353,1.113208353 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Risk score|Land area weighted,risk score,1.069834588,1.069834588,1.069834588,1.069834588,1.069834588,1.069834588,1.069834588,1.069834588,1.069834588,1.069834588 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Risk score|Land area weighted,risk score,2.517715926,2.517715926,2.517715926,2.517715926,2.517715926,2.517715926,2.517715926,2.517715926,2.517715926,2.517715926 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Risk score|Land area weighted,risk score,2.143297377,2.143297377,2.143297377,2.143297377,2.143297377,2.143297377,2.143297377,2.143297377,2.143297377,2.143297377 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Risk score|Land area weighted,risk score,2.113791728,2.113791728,2.113791728,2.113791728,2.113791728,2.113791728,2.113791728,2.113791728,2.113791728,2.113791728 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Risk score|Land area weighted,risk score,0.540015818,0.540015818,0.540015818,0.540015818,0.540015818,0.540015818,0.540015818,0.540015818,0.540015818,0.540015818 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Risk score|Land area weighted,risk score,0.369402428,0.369402428,0.369402428,0.369402428,0.369402428,0.369402428,0.369402428,0.369402428,0.369402428,0.369402428 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Risk score|Land area weighted,risk score,0.467549627,0.467549627,0.467549627,0.467549627,0.467549627,0.467549627,0.467549627,0.467549627,0.467549627,0.467549627 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.435081029,0.435081029,0.435081029,0.435081029,0.435081029,0.435081029,0.435081029,0.435081029,0.435081029,0.435081029 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.922671716,1.922671716,1.922671716,1.922671716,1.922671716,1.922671716,1.922671716,1.922671716,1.922671716,1.922671716 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Risk score|Land area weighted,risk score,0.66931285,0.66931285,0.66931285,0.66931285,0.66931285,0.66931285,0.66931285,0.66931285,0.66931285,0.66931285 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Risk score|Land area weighted,risk score,0.9894141,0.9894141,0.9894141,0.9894141,0.9894141,0.9894141,0.9894141,0.9894141,0.9894141,0.9894141 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Risk score|Land area weighted,risk score,0.875679532,0.875679532,0.875679532,0.875679532,0.875679532,0.875679532,0.875679532,0.875679532,0.875679532,0.875679532 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Risk score|Land area weighted,risk score,2.957825736,2.957825736,2.957825736,2.957825736,2.957825736,2.957825736,2.957825736,2.957825736,2.957825736,2.957825736 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Risk score|Land area weighted,risk score,1.696125506,1.696125506,1.696125506,1.696125506,1.696125506,1.696125506,1.696125506,1.696125506,1.696125506,1.696125506 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Risk score|Land area weighted,risk score,2.668417366,2.668417366,2.668417366,2.668417366,2.668417366,2.668417366,2.668417366,2.668417366,2.668417366,2.668417366 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Risk score|Land area weighted,risk score,1.140712376,1.140712376,1.140712376,1.140712376,1.140712376,1.140712376,1.140712376,1.140712376,1.140712376,1.140712376 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Risk score|Land area weighted,risk score,1.145878297,1.145878297,1.145878297,1.145878297,1.145878297,1.145878297,1.145878297,1.145878297,1.145878297,1.145878297 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Risk score|Land area weighted,risk score,1.122883748,1.122883748,1.122883748,1.122883748,1.122883748,1.122883748,1.122883748,1.122883748,1.122883748,1.122883748 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Risk score|Land area weighted,risk score,0.78492571,0.78492571,0.78492571,0.78492571,0.78492571,0.78492571,0.78492571,0.78492571,0.78492571,0.78492571 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Risk score|Land area weighted,risk score,0.715747999,0.715747999,0.715747999,0.715747999,0.715747999,0.715747999,0.715747999,0.715747999,0.715747999,0.715747999 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Risk score|Land area weighted,risk score,2.29080752,2.29080752,2.29080752,2.29080752,2.29080752,2.29080752,2.29080752,2.29080752,2.29080752,2.29080752 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Risk score|Land area weighted,risk score,0.654338565,0.654338565,0.654338565,0.654338565,0.654338565,0.654338565,0.654338565,0.654338565,0.654338565,0.654338565 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Risk score|Land area weighted,risk score,0.473654037,0.473654037,0.473654037,0.473654037,0.473654037,0.473654037,0.473654037,0.473654037,0.473654037,0.473654037 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Risk score|Land area weighted,risk score,2.03764703,2.03764703,2.03764703,2.03764703,2.03764703,2.03764703,2.03764703,2.03764703,2.03764703,2.03764703 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Risk score|Land area weighted,risk score,2.447288605,2.447288605,2.447288605,2.447288605,2.447288605,2.447288605,2.447288605,2.447288605,2.447288605,2.447288605 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Risk score|Land area weighted,risk score,2.890145337,2.890145337,2.890145337,2.890145337,2.890145337,2.890145337,2.890145337,2.890145337,2.890145337,2.890145337 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Risk score|Land area weighted,risk score,2.323556099,2.323556099,2.323556099,2.323556099,2.323556099,2.323556099,2.323556099,2.323556099,2.323556099,2.323556099 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Risk score|Land area weighted,risk score,2.216136845,2.216136845,2.216136845,2.216136845,2.216136845,2.216136845,2.216136845,2.216136845,2.216136845,2.216136845 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Risk score|Land area weighted,risk score,0.53049125,0.53049125,0.53049125,0.53049125,0.53049125,0.53049125,0.53049125,0.53049125,0.53049125,0.53049125 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Risk score|Land area weighted,risk score,0.675382575,0.675382575,0.675382575,0.675382575,0.675382575,0.675382575,0.675382575,0.675382575,0.675382575,0.675382575 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Risk score|Land area weighted,risk score,1.840408695,1.840408695,1.840408695,1.840408695,1.840408695,1.840408695,1.840408695,1.840408695,1.840408695,1.840408695 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Risk score|Land area weighted,risk score,0.74562609,0.74562609,0.74562609,0.74562609,0.74562609,0.74562609,0.74562609,0.74562609,0.74562609,0.74562609 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Risk score|Land area weighted,risk score,2.529571254,2.529571254,2.529571254,2.529571254,2.529571254,2.529571254,2.529571254,2.529571254,2.529571254,2.529571254 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Risk score|Land area weighted,risk score,1.948961693,1.948961693,1.948961693,1.948961693,1.948961693,1.948961693,1.948961693,1.948961693,1.948961693,1.948961693 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Risk score|Land area weighted,risk score,0.848013905,0.848013905,0.848013905,0.848013905,0.848013905,0.848013905,0.848013905,0.848013905,0.848013905,0.848013905 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Risk score|Land area weighted,risk score,1.46680169,1.46680169,1.46680169,1.46680169,1.46680169,1.46680169,1.46680169,1.46680169,1.46680169,1.46680169 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Risk score|Land area weighted,risk score,0.638886952,0.638886952,0.638886952,0.638886952,0.638886952,0.638886952,0.638886952,0.638886952,0.638886952,0.638886952 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Risk score|Land area weighted,risk score,0.630088447,0.630088447,0.630088447,0.630088447,0.630088447,0.630088447,0.630088447,0.630088447,0.630088447,0.630088447 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Risk score|Land area weighted,risk score,1.073760386,1.073760386,1.073760386,1.073760386,1.073760386,1.073760386,1.073760386,1.073760386,1.073760386,1.073760386 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Risk score|Land area weighted,risk score,2.426890867,2.426890867,2.426890867,2.426890867,2.426890867,2.426890867,2.426890867,2.426890867,2.426890867,2.426890867 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Risk score|Land area weighted,risk score,0.954743462,0.954743462,0.954743462,0.954743462,0.954743462,0.954743462,0.954743462,0.954743462,0.954743462,0.954743462 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Risk score|Land area weighted,risk score,1.790785893,1.790785893,1.790785893,1.790785893,1.790785893,1.790785893,1.790785893,1.790785893,1.790785893,1.790785893 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Risk score|Land area weighted,risk score,2.987818369,2.987818369,2.987818369,2.987818369,2.987818369,2.987818369,2.987818369,2.987818369,2.987818369,2.987818369 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.577700068,0.577700068,0.577700068,0.577700068,0.577700068,0.577700068,0.577700068,0.577700068,0.577700068,0.577700068 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Risk score|Land area weighted,risk score,0.399615749,0.399615749,0.399615749,0.399615749,0.399615749,0.399615749,0.399615749,0.399615749,0.399615749,0.399615749 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Risk score|Land area weighted,risk score,0.978808136,0.978808136,0.978808136,0.978808136,0.978808136,0.978808136,0.978808136,0.978808136,0.978808136,0.978808136 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.105042867,1.105042867,1.105042867,1.105042867,1.105042867,1.105042867,1.105042867,1.105042867,1.105042867,1.105042867 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Risk score|Land area weighted,risk score,2.8469366,2.8469366,2.8469366,2.8469366,2.8469366,2.8469366,2.8469366,2.8469366,2.8469366,2.8469366 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Risk score|Land area weighted,risk score,0.426715508,0.426715508,0.426715508,0.426715508,0.426715508,0.426715508,0.426715508,0.426715508,0.426715508,0.426715508 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Risk score|Land area weighted,risk score,0.580012092,0.580012092,0.580012092,0.580012092,0.580012092,0.580012092,0.580012092,0.580012092,0.580012092,0.580012092 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.708404827,0.708404827,0.708404827,0.708404827,0.708404827,0.708404827,0.708404827,0.708404827,0.708404827,0.708404827 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Risk score|Land area weighted,risk score,2.319870218,2.319870218,2.319870218,2.319870218,2.319870218,2.319870218,2.319870218,2.319870218,2.319870218,2.319870218 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Risk score|Land area weighted,risk score,2.162440932,2.162440932,2.162440932,2.162440932,2.162440932,2.162440932,2.162440932,2.162440932,2.162440932,2.162440932 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Risk score|Land area weighted,risk score,2.512667822,2.512667822,2.512667822,2.512667822,2.512667822,2.512667822,2.512667822,2.512667822,2.512667822,2.512667822 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Risk score|Land area weighted,risk score,2.162303409,2.162303409,2.162303409,2.162303409,2.162303409,2.162303409,2.162303409,2.162303409,2.162303409,2.162303409 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Risk score|Land area weighted,risk score,0.95750816,0.95750816,0.95750816,0.95750816,0.95750816,0.95750816,0.95750816,0.95750816,0.95750816,0.95750816 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Risk score|Land area weighted,risk score,1.412845099,1.412845099,1.412845099,1.412845099,1.412845099,1.412845099,1.412845099,1.412845099,1.412845099,1.412845099 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Risk score|Land area weighted,risk score,1.047689387,1.047689387,1.047689387,1.047689387,1.047689387,1.047689387,1.047689387,1.047689387,1.047689387,1.047689387 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Risk score|Land area weighted,risk score,0.485291415,0.485291415,0.485291415,0.485291415,0.485291415,0.485291415,0.485291415,0.485291415,0.485291415,0.485291415 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Risk score|Land area weighted,risk score,1.373027639,1.373027639,1.373027639,1.373027639,1.373027639,1.373027639,1.373027639,1.373027639,1.373027639,1.373027639 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Risk score|Land area weighted,risk score,0.759295909,0.759295909,0.759295909,0.759295909,0.759295909,0.759295909,0.759295909,0.759295909,0.759295909,0.759295909 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Risk score|Land area weighted,risk score,1.506506258,1.506506258,1.506506258,1.506506258,1.506506258,1.506506258,1.506506258,1.506506258,1.506506258,1.506506258 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Risk score|Land area weighted,risk score,2.201815948,2.201815948,2.201815948,2.201815948,2.201815948,2.201815948,2.201815948,2.201815948,2.201815948,2.201815948 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Risk score|Land area weighted,risk score,2.868505906,2.868505906,2.868505906,2.868505906,2.868505906,2.868505906,2.868505906,2.868505906,2.868505906,2.868505906 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Risk score|Land area weighted,risk score,1.314597403,1.314597403,1.314597403,1.314597403,1.314597403,1.314597403,1.314597403,1.314597403,1.314597403,1.314597403 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Risk score|Land area weighted,risk score,1.34711005,1.34711005,1.34711005,1.34711005,1.34711005,1.34711005,1.34711005,1.34711005,1.34711005,1.34711005 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Risk score|Land area weighted,risk score,2.409576915,2.409576915,2.409576915,2.409576915,2.409576915,2.409576915,2.409576915,2.409576915,2.409576915,2.409576915 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Risk score|Land area weighted,risk score,2.855129148,2.855129148,2.855129148,2.855129148,2.855129148,2.855129148,2.855129148,2.855129148,2.855129148,2.855129148 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Risk score|Land area weighted,risk score,2.150148197,2.150148197,2.150148197,2.150148197,2.150148197,2.150148197,2.150148197,2.150148197,2.150148197,2.150148197 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Risk score|Land area weighted,risk score,2.484213909,2.484213909,2.484213909,2.484213909,2.484213909,2.484213909,2.484213909,2.484213909,2.484213909,2.484213909 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Risk score|Land area weighted,risk score,0.753831971,0.753831971,0.753831971,0.753831971,0.753831971,0.753831971,0.753831971,0.753831971,0.753831971,0.753831971 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Risk score|Land area weighted,risk score,0.880487226,0.880487226,0.880487226,0.880487226,0.880487226,0.880487226,0.880487226,0.880487226,0.880487226,0.880487226 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.684938726,1.684938726,1.684938726,1.684938726,1.684938726,1.684938726,1.684938726,1.684938726,1.684938726,1.684938726 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Risk score|Land area weighted,risk score,2.714592209,2.714592209,2.714592209,2.714592209,2.714592209,2.714592209,2.714592209,2.714592209,2.714592209,2.714592209 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Risk score|Land area weighted,risk score,0.413785942,0.413785942,0.413785942,0.413785942,0.413785942,0.413785942,0.413785942,0.413785942,0.413785942,0.413785942 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Risk score|Land area weighted,risk score,2.830920478,2.830920478,2.830920478,2.830920478,2.830920478,2.830920478,2.830920478,2.830920478,2.830920478,2.830920478 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Risk score|Land area weighted,risk score,3.070120725,3.070120725,3.070120725,3.070120725,3.070120725,3.070120725,3.070120725,3.070120725,3.070120725,3.070120725 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Risk score|Land area weighted,risk score,0.362622609,0.362622609,0.362622609,0.362622609,0.362622609,0.362622609,0.362622609,0.362622609,0.362622609,0.362622609 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Risk score|Land area weighted,risk score,2.233202926,2.233202926,2.233202926,2.233202926,2.233202926,2.233202926,2.233202926,2.233202926,2.233202926,2.233202926 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Risk score|Land area weighted,risk score,0.616612988,0.616612988,0.616612988,0.616612988,0.616612988,0.616612988,0.616612988,0.616612988,0.616612988,0.616612988 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Risk score|Land area weighted,risk score,2.566735833,2.566735833,2.566735833,2.566735833,2.566735833,2.566735833,2.566735833,2.566735833,2.566735833,2.566735833 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Risk score|Land area weighted,risk score,0.496586872,0.496586872,0.496586872,0.496586872,0.496586872,0.496586872,0.496586872,0.496586872,0.496586872,0.496586872 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.392320257,0.392320257,0.392320257,0.392320257,0.392320257,0.392320257,0.392320257,0.392320257,0.392320257,0.392320257 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.713035899,0.713035899,0.713035899,0.713035899,0.713035899,0.713035899,0.713035899,0.713035899,0.713035899,0.713035899 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.320470721,1.320470721,1.320470721,1.320470721,1.320470721,1.320470721,1.320470721,1.320470721,1.320470721,1.320470721 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Risk score|Land area weighted,risk score,0.816187402,0.816187402,0.816187402,0.816187402,0.816187402,0.816187402,0.816187402,0.816187402,0.816187402,0.816187402 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Risk score|Land area weighted,risk score,2.331694824,2.331694824,2.331694824,2.331694824,2.331694824,2.331694824,2.331694824,2.331694824,2.331694824,2.331694824 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Risk score|Land area weighted,risk score,0.766916428,0.766916428,0.766916428,0.766916428,0.766916428,0.766916428,0.766916428,0.766916428,0.766916428,0.766916428 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Risk score|Land area weighted,risk score,1.34059953,1.34059953,1.34059953,1.34059953,1.34059953,1.34059953,1.34059953,1.34059953,1.34059953,1.34059953 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Risk score|Land area weighted,risk score,0.732269618,0.732269618,0.732269618,0.732269618,0.732269618,0.732269618,0.732269618,0.732269618,0.732269618,0.732269618 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Risk score|Land area weighted,risk score,1.78979516,1.78979516,1.78979516,1.78979516,1.78979516,1.78979516,1.78979516,1.78979516,1.78979516,1.78979516 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Risk score|Land area weighted,risk score,0.423795581,0.423795581,0.423795581,0.423795581,0.423795581,0.423795581,0.423795581,0.423795581,0.423795581,0.423795581 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Risk score|Land area weighted,risk score,0.608634947,0.608634947,0.608634947,0.608634947,0.608634947,0.608634947,0.608634947,0.608634947,0.608634947,0.608634947 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Risk score|Land area weighted,risk score,2.536343307,2.536343307,2.536343307,2.536343307,2.536343307,2.536343307,2.536343307,2.536343307,2.536343307,2.536343307 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Risk score|Land area weighted,risk score,1.389743423,1.389743423,1.389743423,1.389743423,1.389743423,1.389743423,1.389743423,1.389743423,1.389743423,1.389743423 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Risk score|Land area weighted,risk score,2.287827564,2.287827564,2.287827564,2.287827564,2.287827564,2.287827564,2.287827564,2.287827564,2.287827564,2.287827564 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Risk score|Land area weighted,risk score,2.180034668,2.180034668,2.180034668,2.180034668,2.180034668,2.180034668,2.180034668,2.180034668,2.180034668,2.180034668 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Risk score|Land area weighted,risk score,2.924668594,2.924668594,2.924668594,2.924668594,2.924668594,2.924668594,2.924668594,2.924668594,2.924668594,2.924668594 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Risk score|Land area weighted,risk score,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Risk score|Land area weighted,risk score,1.105348339,1.105348339,1.105348339,1.105348339,1.105348339,1.105348339,1.105348339,1.105348339,1.105348339,1.105348339 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Risk score|Land area weighted,risk score,2.849261411,2.849261411,2.849261411,2.849261411,2.849261411,2.849261411,2.849261411,2.849261411,2.849261411,2.849261411 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Risk score|Land area weighted,risk score,0.662956104,0.662956104,0.662956104,0.662956104,0.662956104,0.662956104,0.662956104,0.662956104,0.662956104,0.662956104 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Risk score|Land area weighted,risk score,3.109800711,3.109800711,3.109800711,3.109800711,3.109800711,3.109800711,3.109800711,3.109800711,3.109800711,3.109800711 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Risk score|Land area weighted,risk score,1.819206393,1.819206393,1.819206393,1.819206393,1.819206393,1.819206393,1.819206393,1.819206393,1.819206393,1.819206393 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Risk score|Land area weighted,risk score,0.989016687,0.989016687,0.989016687,0.989016687,0.989016687,0.989016687,0.989016687,0.989016687,0.989016687,0.989016687 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Risk score|Land area weighted,risk score,0.671122537,0.671122537,0.671122537,0.671122537,0.671122537,0.671122537,0.671122537,0.671122537,0.671122537,0.671122537 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Risk score|Land area weighted,risk score,0.581867917,0.581867917,0.581867917,0.581867917,0.581867917,0.581867917,0.581867917,0.581867917,0.581867917,0.581867917 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.160943208,0.160943208,0.160943208,0.160943208,0.160943208,0.160943208,0.160943208,0.160943208,0.160943208,0.160943208 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Risk score|Land area weighted,risk score,1.119368135,1.119368135,1.119368135,1.119368135,1.119368135,1.119368135,1.119368135,1.119368135,1.119368135,1.119368135 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Risk score|Land area weighted,risk score,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.835935844,0.835935844,0.835935844,0.835935844,0.835935844,0.835935844,0.835935844,0.835935844,0.835935844,0.835935844 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Land area,km2,18007.73524,18007.73524,18007.73524,18007.73524,18007.73524,18007.73524,18007.73524,18007.73524,18007.73524,18007.73524 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Land area,km2,12924.82323,12924.82323,12924.82323,12924.82323,12924.82323,12924.82323,12924.82323,12924.82323,12924.82323,12924.82323 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Land area,km2,607530.7473,607530.7473,607530.7473,607530.7473,607530.7473,607530.7473,607530.7473,607530.7473,607530.7473,607530.7473 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Land area,km2,2379.522835,2379.522835,2379.522835,2379.522835,2379.522835,2379.522835,2379.522835,2379.522835,2379.522835,2379.522835 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Land area,km2,20112.70016,20112.70016,20112.70016,20112.70016,20112.70016,20112.70016,20112.70016,20112.70016,20112.70016,20112.70016 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Land area,km2,153567.8019,153567.8019,153567.8019,153567.8019,153567.8019,153567.8019,153567.8019,153567.8019,153567.8019,153567.8019 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Land area,km2,3056.349184,3056.349184,3056.349184,3056.349184,3056.349184,3056.349184,3056.349184,3056.349184,3056.349184,3056.349184 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Land area,km2,22532.5596,22532.5596,22532.5596,22532.5596,22532.5596,22532.5596,22532.5596,22532.5596,22532.5596,22532.5596 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Land area,km2,14941.18534,14941.18534,14941.18534,14941.18534,14941.18534,14941.18534,14941.18534,14941.18534,14941.18534,14941.18534 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Land area,km2,28222.66752,28222.66752,28222.66752,28222.66752,28222.66752,28222.66752,28222.66752,28222.66752,28222.66752,28222.66752 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Land area,km2,3723.033556,3723.033556,3723.033556,3723.033556,3723.033556,3723.033556,3723.033556,3723.033556,3723.033556,3723.033556 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Land area,km2,686.9104282,686.9104282,686.9104282,686.9104282,686.9104282,686.9104282,686.9104282,686.9104282,686.9104282,686.9104282 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Land area,km2,6944.531075,6944.531075,6944.531075,6944.531075,6944.531075,6944.531075,6944.531075,6944.531075,6944.531075,6944.531075 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Land area,km2,3189.834094,3189.834094,3189.834094,3189.834094,3189.834094,3189.834094,3189.834094,3189.834094,3189.834094,3189.834094 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Land area,km2,806800.259,806800.259,806800.259,806800.259,806800.259,806800.259,806800.259,806800.259,806800.259,806800.259 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Land area,km2,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213,29.84385213 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Land area,km2,297458.065,297458.065,297458.065,297458.065,297458.065,297458.065,297458.065,297458.065,297458.065,297458.065 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Land area,km2,35590.84509,35590.84509,35590.84509,35590.84509,35590.84509,35590.84509,35590.84509,35590.84509,35590.84509,35590.84509 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Land area,km2,120485.6082,120485.6082,120485.6082,120485.6082,120485.6082,120485.6082,120485.6082,120485.6082,120485.6082,120485.6082 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Land area,km2,79296.86092,79296.86092,79296.86092,79296.86092,79296.86092,79296.86092,79296.86092,79296.86092,79296.86092,79296.86092 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Land area,km2,1283085.173,1283085.173,1283085.173,1283085.173,1283085.173,1283085.173,1283085.173,1283085.173,1283085.173,1283085.173 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Land area,km2,645059.8874,645059.8874,645059.8874,645059.8874,645059.8874,645059.8874,645059.8874,645059.8874,645059.8874,645059.8874 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Land area,km2,74316.2393,74316.2393,74316.2393,74316.2393,74316.2393,74316.2393,74316.2393,74316.2393,74316.2393,74316.2393 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Land area,km2,31101.04794,31101.04794,31101.04794,31101.04794,31101.04794,31101.04794,31101.04794,31101.04794,31101.04794,31101.04794 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Land area,km2,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672,10413.06672 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Land area,km2,847812.4033,847812.4033,847812.4033,847812.4033,847812.4033,847812.4033,847812.4033,847812.4033,847812.4033,847812.4033 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Land area,km2,24553.91343,24553.91343,24553.91343,24553.91343,24553.91343,24553.91343,24553.91343,24553.91343,24553.91343,24553.91343 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Land area,km2,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446,7549.655446 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Land area,km2,5822.965116,5822.965116,5822.965116,5822.965116,5822.965116,5822.965116,5822.965116,5822.965116,5822.965116,5822.965116 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Land area,km2,1485342.528,1485342.528,1485342.528,1485342.528,1485342.528,1485342.528,1485342.528,1485342.528,1485342.528,1485342.528 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Land area,km2,275211.8595,275211.8595,275211.8595,275211.8595,275211.8595,275211.8595,275211.8595,275211.8595,275211.8595,275211.8595 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Land area,km2,21804.15998,21804.15998,21804.15998,21804.15998,21804.15998,21804.15998,21804.15998,21804.15998,21804.15998,21804.15998 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Land area,km2,18420.50893,18420.50893,18420.50893,18420.50893,18420.50893,18420.50893,18420.50893,18420.50893,18420.50893,18420.50893 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Land area,km2,676459.8469,676459.8469,676459.8469,676459.8469,676459.8469,676459.8469,676459.8469,676459.8469,676459.8469,676459.8469 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Land area,km2,18543.81143,18543.81143,18543.81143,18543.81143,18543.81143,18543.81143,18543.81143,18543.81143,18543.81143,18543.81143 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Land area,km2,1474.756084,1474.756084,1474.756084,1474.756084,1474.756084,1474.756084,1474.756084,1474.756084,1474.756084,1474.756084 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Land area,km2,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792,3008.545792 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Land area,km2,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947,1801.709947 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Land area,km2,1049092.96,1049092.96,1049092.96,1049092.96,1049092.96,1049092.96,1049092.96,1049092.96,1049092.96,1049092.96 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Land area,km2,6367.482136,6367.482136,6367.482136,6367.482136,6367.482136,6367.482136,6367.482136,6367.482136,6367.482136,6367.482136 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Land area,km2,3495.1481,3495.1481,3495.1481,3495.1481,3495.1481,3495.1481,3495.1481,3495.1481,3495.1481,3495.1481 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Land area,km2,110325.48,110325.48,110325.48,110325.48,110325.48,110325.48,110325.48,110325.48,110325.48,110325.48 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Land area,km2,136851.9398,136851.9398,136851.9398,136851.9398,136851.9398,136851.9398,136851.9398,136851.9398,136851.9398,136851.9398 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Land area,km2,28616.09375,28616.09375,28616.09375,28616.09375,28616.09375,28616.09375,28616.09375,28616.09375,28616.09375,28616.09375 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Land area,km2,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427,59.68770427 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Land area,km2,46964.73767,46964.73767,46964.73767,46964.73767,46964.73767,46964.73767,46964.73767,46964.73767,46964.73767,46964.73767 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Land area,km2,904058.487,904058.487,904058.487,904058.487,904058.487,904058.487,904058.487,904058.487,904058.487,904058.487 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Land area,km2,86458.02366,86458.02366,86458.02366,86458.02366,86458.02366,86458.02366,86458.02366,86458.02366,86458.02366,86458.02366 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Land area,km2,10001.15865,10001.15865,10001.15865,10001.15865,10001.15865,10001.15865,10001.15865,10001.15865,10001.15865,10001.15865 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Land area,km2,97.69144102,97.69144102,97.69144102,97.69144102,97.69144102,97.69144102,97.69144102,97.69144102,97.69144102,97.69144102 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Land area|%,%,0.648315131,0.648315131,0.648315131,0.648315131,0.648315131,0.648315131,0.648315131,0.648315131,0.648315131,0.648315131 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Land area|%,%,1.191886532,1.191886532,1.191886532,1.191886532,1.191886532,1.191886532,1.191886532,1.191886532,1.191886532,1.191886532 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Land area|%,%,31.56631404,31.56631404,31.56631404,31.56631404,31.56631404,31.56631404,31.56631404,31.56631404,31.56631404,31.56631404 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Land area|%,%,0.977967447,0.977967447,0.977967447,0.977967447,0.977967447,0.977967447,0.977967447,0.977967447,0.977967447,0.977967447 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Land area|%,%,22.5932298,22.5932298,22.5932298,22.5932298,22.5932298,22.5932298,22.5932298,22.5932298,22.5932298,22.5932298 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Land area|%,%,49.96302128,49.96302128,49.96302128,49.96302128,49.96302128,49.96302128,49.96302128,49.96302128,49.96302128,49.96302128 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Land area|%,%,0.32497948,0.32497948,0.32497948,0.32497948,0.32497948,0.32497948,0.32497948,0.32497948,0.32497948,0.32497948 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Land area|%,%,4.981565437,4.981565437,4.981565437,4.981565437,4.981565437,4.981565437,4.981565437,4.981565437,4.981565437,4.981565437 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Land area|%,%,1.726689765,1.726689765,1.726689765,1.726689765,1.726689765,1.726689765,1.726689765,1.726689765,1.726689765,1.726689765 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Land area|%,%,39.94104255,39.94104255,39.94104255,39.94104255,39.94104255,39.94104255,39.94104255,39.94104255,39.94104255,39.94104255 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Land area|%,%,0.119041866,0.119041866,0.119041866,0.119041866,0.119041866,0.119041866,0.119041866,0.119041866,0.119041866,0.119041866 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Land area|%,%,0.116803671,0.116803671,0.116803671,0.116803671,0.116803671,0.116803671,0.116803671,0.116803671,0.116803671,0.116803671 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Land area|%,%,0.891093746,0.891093746,0.891093746,0.891093746,0.891093746,0.891093746,0.891093746,0.891093746,0.891093746,0.891093746 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Land area|%,%,0.498002813,0.498002813,0.498002813,0.498002813,0.498002813,0.498002813,0.498002813,0.498002813,0.498002813,0.498002813 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Land area|%,%,77.64037564,77.64037564,77.64037564,77.64037564,77.64037564,77.64037564,77.64037564,77.64037564,77.64037564,77.64037564 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Land area|%,%,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964,3.839519964 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Land area|%,%,36.27803697,36.27803697,36.27803697,36.27803697,36.27803697,36.27803697,36.27803697,36.27803697,36.27803697,36.27803697 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Land area|%,%,2.755814967,2.755814967,2.755814967,2.755814967,2.755814967,2.755814967,2.755814967,2.755814967,2.755814967,2.755814967 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Land area|%,%,45.12728934,45.12728934,45.12728934,45.12728934,45.12728934,45.12728934,45.12728934,45.12728934,45.12728934,45.12728934 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Land area|%,%,0.847006277,0.847006277,0.847006277,0.847006277,0.847006277,0.847006277,0.847006277,0.847006277,0.847006277,0.847006277 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Land area|%,%,79.43785743,79.43785743,79.43785743,79.43785743,79.43785743,79.43785743,79.43785743,79.43785743,79.43785743,79.43785743 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Land area|%,%,51.66737914,51.66737914,51.66737914,51.66737914,51.66737914,51.66737914,51.66737914,51.66737914,51.66737914,51.66737914 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Land area|%,%,5.96807807,5.96807807,5.96807807,5.96807807,5.96807807,5.96807807,5.96807807,5.96807807,5.96807807,5.96807807 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Land area|%,%,2.548290052,2.548290052,2.548290052,2.548290052,2.548290052,2.548290052,2.548290052,2.548290052,2.548290052,2.548290052 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Land area|%,%,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633,1.323754633 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Land area|%,%,71.72318331,71.72318331,71.72318331,71.72318331,71.72318331,71.72318331,71.72318331,71.72318331,71.72318331,71.72318331 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Land area|%,%,0.289561088,0.289561088,0.289561088,0.289561088,0.289561088,0.289561088,0.289561088,0.289561088,0.289561088,0.289561088 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Land area|%,%,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946,3.571142946 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Land area|%,%,0.03660227,0.03660227,0.03660227,0.03660227,0.03660227,0.03660227,0.03660227,0.03660227,0.03660227,0.03660227 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Land area|%,%,0.359729315,0.359729315,0.359729315,0.359729315,0.359729315,0.359729315,0.359729315,0.359729315,0.359729315,0.359729315 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Land area|%,%,64.37191503,64.37191503,64.37191503,64.37191503,64.37191503,64.37191503,64.37191503,64.37191503,64.37191503,64.37191503 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Land area|%,%,37.53227855,37.53227855,37.53227855,37.53227855,37.53227855,37.53227855,37.53227855,37.53227855,37.53227855,37.53227855 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Land area|%,%,5.265632988,5.265632988,5.265632988,5.265632988,5.265632988,5.265632988,5.265632988,5.265632988,5.265632988,5.265632988 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Land area|%,%,62.69675979,62.69675979,62.69675979,62.69675979,62.69675979,62.69675979,62.69675979,62.69675979,62.69675979,62.69675979 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Land area|%,%,53.69057832,53.69057832,53.69057832,53.69057832,53.69057832,53.69057832,53.69057832,53.69057832,53.69057832,53.69057832 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Land area|%,%,11.92353115,11.92353115,11.92353115,11.92353115,11.92353115,11.92353115,11.92353115,11.92353115,11.92353115,11.92353115 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Land area|%,%,0.129606564,0.129606564,0.129606564,0.129606564,0.129606564,0.129606564,0.129606564,0.129606564,0.129606564,0.129606564 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Land area|%,%,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055,2.335516055 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Land area|%,%,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057,0.077427057 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Land area|%,%,56.41197689,56.41197689,56.41197689,56.41197689,56.41197689,56.41197689,56.41197689,56.41197689,56.41197689,56.41197689 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Land area|%,%,0.699043885,0.699043885,0.699043885,0.699043885,0.699043885,0.699043885,0.699043885,0.699043885,0.699043885,0.699043885 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Land area|%,%,16.98978789,16.98978789,16.98978789,16.98978789,16.98978789,16.98978789,16.98978789,16.98978789,16.98978789,16.98978789 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Land area|%,%,14.70765533,14.70765533,14.70765533,14.70765533,14.70765533,14.70765533,14.70765533,14.70765533,14.70765533,14.70765533 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Land area|%,%,69.74705187,69.74705187,69.74705187,69.74705187,69.74705187,69.74705187,69.74705187,69.74705187,69.74705187,69.74705187 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Land area|%,%,7.33048146,7.33048146,7.33048146,7.33048146,7.33048146,7.33048146,7.33048146,7.33048146,7.33048146,7.33048146 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Land area|%,%,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968,4.887017968 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Land area|%,%,2.401945232,2.401945232,2.401945232,2.401945232,2.401945232,2.401945232,2.401945232,2.401945232,2.401945232,2.401945232 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Land area|%,%,90.6729027,90.6729027,90.6729027,90.6729027,90.6729027,90.6729027,90.6729027,90.6729027,90.6729027,90.6729027 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Land area|%,%,14.85424187,14.85424187,14.85424187,14.85424187,14.85424187,14.85424187,14.85424187,14.85424187,14.85424187,14.85424187 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Land area|%,%,91.2500136,91.2500136,91.2500136,91.2500136,91.2500136,91.2500136,91.2500136,91.2500136,91.2500136,91.2500136 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Land area|%,%,0.075998694,0.075998694,0.075998694,0.075998694,0.075998694,0.075998694,0.075998694,0.075998694,0.075998694,0.075998694 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Land area|Low,km2,739318.4119,739318.4119,739318.4119,739318.4119,739318.4119,739318.4119,739318.4119,739318.4119,739318.4119,739318.4119 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Land area|Low,km2,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726,738.5347726 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Land area|Low,km2,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Land area|Low,km2,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Land area|Low,km2,1079633.966,1079633.966,1079633.966,1079633.966,1079633.966,1079633.966,1079633.966,1079633.966,1079633.966,1079633.966 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Land area|Low,km2,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Land area|Low,km2,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Land area|Low,km2,2273425.387,2273425.387,2273425.387,2273425.387,2273425.387,2273425.387,2273425.387,2273425.387,2273425.387,2273425.387 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Land area|Low,km2,1076849.404,1076849.404,1076849.404,1076849.404,1076849.404,1076849.404,1076849.404,1076849.404,1076849.404,1076849.404 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Land area|Low,km2,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Land area|Low,km2,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Land area|Low,km2,165658.459,165658.459,165658.459,165658.459,165658.459,165658.459,165658.459,165658.459,165658.459,165658.459 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Land area|Low,km2,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Land area|Low,km2,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Land area|Low,km2,84208.67436,84208.67436,84208.67436,84208.67436,84208.67436,84208.67436,84208.67436,84208.67436,84208.67436,84208.67436 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Land area|Low,km2,27475.89194,27475.89194,27475.89194,27475.89194,27475.89194,27475.89194,27475.89194,27475.89194,27475.89194,27475.89194 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Land area|Low,km2,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Land area|Low,km2,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Land area|Low,km2,212928.2525,212928.2525,212928.2525,212928.2525,212928.2525,212928.2525,212928.2525,212928.2525,212928.2525,212928.2525 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Land area|Low,km2,482449.3216,482449.3216,482449.3216,482449.3216,482449.3216,482449.3216,482449.3216,482449.3216,482449.3216,482449.3216 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Land area|Low,km2,91634.44381,91634.44381,91634.44381,91634.44381,91634.44381,91634.44381,91634.44381,91634.44381,91634.44381,91634.44381 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Land area|Low,km2,1290.737585,1290.737585,1290.737585,1290.737585,1290.737585,1290.737585,1290.737585,1290.737585,1290.737585,1290.737585 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Land area|Low,km2,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Land area|Low,km2,829402.4606,829402.4606,829402.4606,829402.4606,829402.4606,829402.4606,829402.4606,829402.4606,829402.4606,829402.4606 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Land area|Low,km2,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832,26999.33832 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Land area|Low,km2,203364.4325,203364.4325,203364.4325,203364.4325,203364.4325,203364.4325,203364.4325,203364.4325,203364.4325,203364.4325 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Land area|Low,km2,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Land area|Low,km2,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Land area|Low,km2,852955.3135,852955.3135,852955.3135,852955.3135,852955.3135,852955.3135,852955.3135,852955.3135,852955.3135,852955.3135 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Land area|Low,km2,618.1528412,618.1528412,618.1528412,618.1528412,618.1528412,618.1528412,618.1528412,618.1528412,618.1528412,618.1528412 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Land area|Low,km2,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Land area|Low,km2,3126335.424,3126335.424,3126335.424,3126335.424,3126335.424,3126335.424,3126335.424,3126335.424,3126335.424,3126335.424 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Land area|Low,km2,80484.61741,80484.61741,80484.61741,80484.61741,80484.61741,80484.61741,80484.61741,80484.61741,80484.61741,80484.61741 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Land area|Low,km2,397339.9623,397339.9623,397339.9623,397339.9623,397339.9623,397339.9623,397339.9623,397339.9623,397339.9623,397339.9623 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Land area|Low,km2,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Land area|Low,km2,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Land area|Low,km2,449774.0784,449774.0784,449774.0784,449774.0784,449774.0784,449774.0784,449774.0784,449774.0784,449774.0784,449774.0784 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Land area|Low,km2,12309.4976,12309.4976,12309.4976,12309.4976,12309.4976,12309.4976,12309.4976,12309.4976,12309.4976,12309.4976 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Land area|Low,km2,530.8150243,530.8150243,530.8150243,530.8150243,530.8150243,530.8150243,530.8150243,530.8150243,530.8150243,530.8150243 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Land area|Low,km2,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Land area|Low,km2,760857.2211,760857.2211,760857.2211,760857.2211,760857.2211,760857.2211,760857.2211,760857.2211,760857.2211,760857.2211 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Land area|Low,km2,630216.431,630216.431,630216.431,630216.431,630216.431,630216.431,630216.431,630216.431,630216.431,630216.431 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Land area|Low,km2,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Land area|Low,km2,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Land area|Low,km2,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Land area|Low,km2,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Land area|Low,km2,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Land area|Low,km2,363056.7144,363056.7144,363056.7144,363056.7144,363056.7144,363056.7144,363056.7144,363056.7144,363056.7144,363056.7144 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Land area|Low,km2,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Land area|Low,km2,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Land area|Low,km2,754006.1187,754006.1187,754006.1187,754006.1187,754006.1187,754006.1187,754006.1187,754006.1187,754006.1187,754006.1187 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Land area|Low,km2,204602.4748,204602.4748,204602.4748,204602.4748,204602.4748,204602.4748,204602.4748,204602.4748,204602.4748,204602.4748 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Land area|Low,km2,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547,121.5209547 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Land area|Low,km2,310785.3527,310785.3527,310785.3527,310785.3527,310785.3527,310785.3527,310785.3527,310785.3527,310785.3527,310785.3527 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Land area|Low,km2,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Land area|Low,km2,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Land area|Low,km2,1148.726596,1148.726596,1148.726596,1148.726596,1148.726596,1148.726596,1148.726596,1148.726596,1148.726596,1148.726596 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Land area|Low,km2,368229.9127,368229.9127,368229.9127,368229.9127,368229.9127,368229.9127,368229.9127,368229.9127,368229.9127,368229.9127 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Land area|Low,km2,13722.11884,13722.11884,13722.11884,13722.11884,13722.11884,13722.11884,13722.11884,13722.11884,13722.11884,13722.11884 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Land area|Low,km2,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Land area|Low,km2,7768066.712,7768066.712,7768066.712,7768066.712,7768066.712,7768066.712,7768066.712,7768066.712,7768066.712,7768066.712 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Land area|Low,km2,18402.97468,18402.97468,18402.97468,18402.97468,18402.97468,18402.97468,18402.97468,18402.97468,18402.97468,18402.97468 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Land area|Low,km2,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105,235.0768105 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Land area|Low,km2,18615.53799,18615.53799,18615.53799,18615.53799,18615.53799,18615.53799,18615.53799,18615.53799,18615.53799,18615.53799 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Land area|Low,km2,305179.0179,305179.0179,305179.0179,305179.0179,305179.0179,305179.0179,305179.0179,305179.0179,305179.0179,305179.0179 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Land area|Low,km2,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Land area|Low,km2,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Land area|Low,km2,380989.4378,380989.4378,380989.4378,380989.4378,380989.4378,380989.4378,380989.4378,380989.4378,380989.4378,380989.4378 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Land area|Low,km2,618915.1386,618915.1386,618915.1386,618915.1386,618915.1386,618915.1386,618915.1386,618915.1386,618915.1386,618915.1386 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Land area|Low,km2,2878550.084,2878550.084,2878550.084,2878550.084,2878550.084,2878550.084,2878550.084,2878550.084,2878550.084,2878550.084 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Land area|Low,km2,212636.1803,212636.1803,212636.1803,212636.1803,212636.1803,212636.1803,212636.1803,212636.1803,212636.1803,212636.1803 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Land area|Low,km2,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Land area|Low,km2,2293511.875,2293511.875,2293511.875,2293511.875,2293511.875,2293511.875,2293511.875,2293511.875,2293511.875,2293511.875 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Land area|Low,km2,79854.5121,79854.5121,79854.5121,79854.5121,79854.5121,79854.5121,79854.5121,79854.5121,79854.5121,79854.5121 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Land area|Low,km2,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Land area|Low,km2,137732.0893,137732.0893,137732.0893,137732.0893,137732.0893,137732.0893,137732.0893,137732.0893,137732.0893,137732.0893 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Land area|Low,km2,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Land area|Low,km2,88573.13217,88573.13217,88573.13217,88573.13217,88573.13217,88573.13217,88573.13217,88573.13217,88573.13217,88573.13217 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Land area|Low,km2,1121248.19,1121248.19,1121248.19,1121248.19,1121248.19,1121248.19,1121248.19,1121248.19,1121248.19,1121248.19 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Land area|Low,km2,6953.258097,6953.258097,6953.258097,6953.258097,6953.258097,6953.258097,6953.258097,6953.258097,6953.258097,6953.258097 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Land area|Low,km2,756660.874,756660.874,756660.874,756660.874,756660.874,756660.874,756660.874,756660.874,756660.874,756660.874 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Land area|Low,km2,29118.04705,29118.04705,29118.04705,29118.04705,29118.04705,29118.04705,29118.04705,29118.04705,29118.04705,29118.04705 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Land area|Low,km2,76337.99328,76337.99328,76337.99328,76337.99328,76337.99328,76337.99328,76337.99328,76337.99328,76337.99328,76337.99328 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Land area|Low,km2,22615.69332,22615.69332,22615.69332,22615.69332,22615.69332,22615.69332,22615.69332,22615.69332,22615.69332,22615.69332 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Land area|Low,km2,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Land area|Low,km2,7011622.965,7011622.965,7011622.965,7011622.965,7011622.965,7011622.965,7011622.965,7011622.965,7011622.965,7011622.965 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Land area|Low,km2,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Land area|Low,km2,43737.49959,43737.49959,43737.49959,43737.49959,43737.49959,43737.49959,43737.49959,43737.49959,43737.49959,43737.49959 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Land area|Low,km2,90657.18202,90657.18202,90657.18202,90657.18202,90657.18202,90657.18202,90657.18202,90657.18202,90657.18202,90657.18202 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Land area|Low,km2,22550.51191,22550.51191,22550.51191,22550.51191,22550.51191,22550.51191,22550.51191,22550.51191,22550.51191,22550.51191 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Land area|Low,km2,3112.237438,3112.237438,3112.237438,3112.237438,3112.237438,3112.237438,3112.237438,3112.237438,3112.237438,3112.237438 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Land area|Low,km2,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Land area|Low,km2,45169.21335,45169.21335,45169.21335,45169.21335,45169.21335,45169.21335,45169.21335,45169.21335,45169.21335,45169.21335 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Land area|Low,km2,7244120.6,7244120.6,7244120.6,7244120.6,7244120.6,7244120.6,7244120.6,7244120.6,7244120.6,7244120.6 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Land area|Low,km2,1615419.235,1615419.235,1615419.235,1615419.235,1615419.235,1615419.235,1615419.235,1615419.235,1615419.235,1615419.235 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Land area|Low,km2,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Land area|Low,km2,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Land area|Low,km2,595575.1108,595575.1108,595575.1108,595575.1108,595575.1108,595575.1108,595575.1108,595575.1108,595575.1108,595575.1108 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Land area|Low,km2,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Land area|Low,km2,489975.2927,489975.2927,489975.2927,489975.2927,489975.2927,489975.2927,489975.2927,489975.2927,489975.2927,489975.2927 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Land area|Low,km2,3202.80104,3202.80104,3202.80104,3202.80104,3202.80104,3202.80104,3202.80104,3202.80104,3202.80104,3202.80104 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Land area|Low,km2,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Land area|Low,km2,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Land area|Low,km2,16467.3852,16467.3852,16467.3852,16467.3852,16467.3852,16467.3852,16467.3852,16467.3852,16467.3852,16467.3852 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Land area|Low,km2,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Land area|Low,km2,1937.846528,1937.846528,1937.846528,1937.846528,1937.846528,1937.846528,1937.846528,1937.846528,1937.846528,1937.846528 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Land area|Low,km2,30887.79746,30887.79746,30887.79746,30887.79746,30887.79746,30887.79746,30887.79746,30887.79746,30887.79746,30887.79746 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Land area|Low,km2,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Land area|Low,km2,15819.98751,15819.98751,15819.98751,15819.98751,15819.98751,15819.98751,15819.98751,15819.98751,15819.98751,15819.98751 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Land area|Low,km2,1549871.191,1549871.191,1549871.191,1549871.191,1549871.191,1549871.191,1549871.191,1549871.191,1549871.191,1549871.191 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Land area|Low,km2,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Land area|Low,km2,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127,61.37931127 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Land area|Low,km2,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Land area|Low,km2,17847.4043,17847.4043,17847.4043,17847.4043,17847.4043,17847.4043,17847.4043,17847.4043,17847.4043,17847.4043 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Land area|Low,km2,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Land area|Low,km2,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Land area|Low,km2,446530.6319,446530.6319,446530.6319,446530.6319,446530.6319,446530.6319,446530.6319,446530.6319,446530.6319,446530.6319 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Land area|Low,km2,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Land area|Low,km2,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Land area|Low,km2,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785,5219.844785 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Land area|Low,km2,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Land area|Low,km2,573994.8878,573994.8878,573994.8878,573994.8878,573994.8878,573994.8878,573994.8878,573994.8878,573994.8878,573994.8878 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Land area|Low,km2,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338,25424.76338 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Land area|Low,km2,11818.74979,11818.74979,11818.74979,11818.74979,11818.74979,11818.74979,11818.74979,11818.74979,11818.74979,11818.74979 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Land area|Low,km2,79906.28197,79906.28197,79906.28197,79906.28197,79906.28197,79906.28197,79906.28197,79906.28197,79906.28197,79906.28197 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Land area|Low,km2,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Land area|Low,km2,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Land area|Low,km2,1365681.031,1365681.031,1365681.031,1365681.031,1365681.031,1365681.031,1365681.031,1365681.031,1365681.031,1365681.031 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Land area|Low,km2,192402.727,192402.727,192402.727,192402.727,192402.727,192402.727,192402.727,192402.727,192402.727,192402.727 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Land area|Low,km2,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Land area|Low,km2,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Land area|Low,km2,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Land area|Low,km2,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Land area|Low,km2,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Land area|Low,km2,47833.66082,47833.66082,47833.66082,47833.66082,47833.66082,47833.66082,47833.66082,47833.66082,47833.66082,47833.66082 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Land area|Low,km2,769498.972,769498.972,769498.972,769498.972,769498.972,769498.972,769498.972,769498.972,769498.972,769498.972 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Land area|Low,km2,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Land area|Low,km2,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Land area|Low,km2,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Land area|Low,km2,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334,3195.242334 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Land area|Low,km2,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Land area|Low,km2,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001,392.7074001 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Land area|Low,km2,388539.1663,388539.1663,388539.1663,388539.1663,388539.1663,388539.1663,388539.1663,388539.1663,388539.1663,388539.1663 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Land area|Low,km2,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Land area|Low,km2,1814603.189,1814603.189,1814603.189,1814603.189,1814603.189,1814603.189,1814603.189,1814603.189,1814603.189,1814603.189 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Land area|Low,km2,64935.6414,64935.6414,64935.6414,64935.6414,64935.6414,64935.6414,64935.6414,64935.6414,64935.6414,64935.6414 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Land area|Low,km2,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Land area|Low,km2,2363.42499,2363.42499,2363.42499,2363.42499,2363.42499,2363.42499,2363.42499,2363.42499,2363.42499,2363.42499 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Land area|Low,km2,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861,24004.25861 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Land area|Low,km2,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Land area|Low,km2,386449.0806,386449.0806,386449.0806,386449.0806,386449.0806,386449.0806,386449.0806,386449.0806,386449.0806,386449.0806 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Land area|Low,km2,44100.13487,44100.13487,44100.13487,44100.13487,44100.13487,44100.13487,44100.13487,44100.13487,44100.13487,44100.13487 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Land area|Low,km2,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Land area|Low,km2,86411.05583,86411.05583,86411.05583,86411.05583,86411.05583,86411.05583,86411.05583,86411.05583,86411.05583,86411.05583 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Land area|Low,km2,658234.1701,658234.1701,658234.1701,658234.1701,658234.1701,658234.1701,658234.1701,658234.1701,658234.1701,658234.1701 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Land area|Low,km2,1899472.87,1899472.87,1899472.87,1899472.87,1899472.87,1899472.87,1899472.87,1899472.87,1899472.87,1899472.87 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Land area|Low,km2,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Land area|Low,km2,57957.90934,57957.90934,57957.90934,57957.90934,57957.90934,57957.90934,57957.90934,57957.90934,57957.90934,57957.90934 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Land area|Low,km2,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Land area|Low,km2,13433.39068,13433.39068,13433.39068,13433.39068,13433.39068,13433.39068,13433.39068,13433.39068,13433.39068,13433.39068 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Land area|Low,km2,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Land area|Low,km2,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134,128299.2134 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Land area|Low,km2,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411,25447.06411 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Land area|Low,km2,92.24800306,92.24800306,92.24800306,92.24800306,92.24800306,92.24800306,92.24800306,92.24800306,92.24800306,92.24800306 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Land area|Low,km2,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Land area|Low,km2,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Land area|Low,km2,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Land area|Low|%,%,7.527359997,7.527359997,7.527359997,7.527359997,7.527359997,7.527359997,7.527359997,7.527359997,7.527359997,7.527359997 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Land area|Low|%,%,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915,72.73220915 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Land area|Low|%,%,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Land area|Low|%,%,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Land area|Low|%,%,95.66311292,95.66311292,95.66311292,95.66311292,95.66311292,95.66311292,95.66311292,95.66311292,95.66311292,95.66311292 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Land area|Low|%,%,81.84794243,81.84794243,81.84794243,81.84794243,81.84794243,81.84794243,81.84794243,81.84794243,81.84794243,81.84794243 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Land area|Low|%,%,99.3036639,99.3036639,99.3036639,99.3036639,99.3036639,99.3036639,99.3036639,99.3036639,99.3036639,99.3036639 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Land area|Low|%,%,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Land area|Low|%,%,69.56798552,69.56798552,69.56798552,69.56798552,69.56798552,69.56798552,69.56798552,69.56798552,69.56798552,69.56798552 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Land area|Low|%,%,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Land area|Low|%,%,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Land area|Low|%,%,77.29689146,77.29689146,77.29689146,77.29689146,77.29689146,77.29689146,77.29689146,77.29689146,77.29689146,77.29689146 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Land area|Low|%,%,53.5954855,53.5954855,53.5954855,53.5954855,53.5954855,53.5954855,53.5954855,53.5954855,53.5954855,53.5954855 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Land area|Low|%,%,62.20458002,62.20458002,62.20458002,62.20458002,62.20458002,62.20458002,62.20458002,62.20458002,62.20458002,62.20458002 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Land area|Low|%,%,95.68374835,95.68374835,95.68374835,95.68374835,95.68374835,95.68374835,95.68374835,95.68374835,95.68374835,95.68374835 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Land area|Low|%,%,95.71249616,95.71249616,95.71249616,95.71249616,95.71249616,95.71249616,95.71249616,95.71249616,95.71249616,95.71249616 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Land area|Low|%,%,11.69581749,11.69581749,11.69581749,11.69581749,11.69581749,11.69581749,11.69581749,11.69581749,11.69581749,11.69581749 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Land area|Low|%,%,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Land area|Low|%,%,88.189786,88.189786,88.189786,88.189786,88.189786,88.189786,88.189786,88.189786,88.189786,88.189786 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Land area|Low|%,%,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788,93.94884788 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Land area|Low|%,%,77.55231536,77.55231536,77.55231536,77.55231536,77.55231536,77.55231536,77.55231536,77.55231536,77.55231536,77.55231536 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Land area|Low|%,%,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Land area|Low|%,%,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Land area|Low|%,%,98.57244766,98.57244766,98.57244766,98.57244766,98.57244766,98.57244766,98.57244766,98.57244766,98.57244766,98.57244766 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Land area|Low|%,%,1.276672328,1.276672328,1.276672328,1.276672328,1.276672328,1.276672328,1.276672328,1.276672328,1.276672328,1.276672328 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Land area|Low|%,%,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Land area|Low|%,%,99.96278474,99.96278474,99.96278474,99.96278474,99.96278474,99.96278474,99.96278474,99.96278474,99.96278474,99.96278474 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Land area|Low|%,%,94.83613908,94.83613908,94.83613908,94.83613908,94.83613908,94.83613908,94.83613908,94.83613908,94.83613908,94.83613908 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Land area|Low|%,%,67.56450966,67.56450966,67.56450966,67.56450966,67.56450966,67.56450966,67.56450966,67.56450966,67.56450966,67.56450966 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Land area|Low|%,%,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Land area|Low|%,%,77.06522201,77.06522201,77.06522201,77.06522201,77.06522201,77.06522201,77.06522201,77.06522201,77.06522201,77.06522201 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Land area|Low|%,%,12.78606095,12.78606095,12.78606095,12.78606095,12.78606095,12.78606095,12.78606095,12.78606095,12.78606095,12.78606095 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Land area|Low|%,%,0.256635906,0.256635906,0.256635906,0.256635906,0.256635906,0.256635906,0.256635906,0.256635906,0.256635906,0.256635906 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Land area|Low|%,%,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Land area|Low|%,%,97.63007816,97.63007816,97.63007816,97.63007816,97.63007816,97.63007816,97.63007816,97.63007816,97.63007816,97.63007816 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Land area|Low|%,%,98.39055766,98.39055766,98.39055766,98.39055766,98.39055766,98.39055766,98.39055766,98.39055766,98.39055766,98.39055766 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Land area|Low|%,%,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Land area|Low|%,%,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Land area|Low|%,%,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Land area|Low|%,%,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Land area|Low|%,%,66.21224736,66.21224736,66.21224736,66.21224736,66.21224736,66.21224736,66.21224736,66.21224736,66.21224736,66.21224736 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Land area|Low|%,%,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Land area|Low|%,%,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Land area|Low|%,%,58.38302918,58.38302918,58.38302918,58.38302918,58.38302918,58.38302918,58.38302918,58.38302918,58.38302918,58.38302918 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Land area|Low|%,%,89.07167028,89.07167028,89.07167028,89.07167028,89.07167028,89.07167028,89.07167028,89.07167028,89.07167028,89.07167028 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Land area|Low|%,%,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966,23.37074966 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Land area|Low|%,%,96.86853717,96.86853717,96.86853717,96.86853717,96.86853717,96.86853717,96.86853717,96.86853717,96.86853717,96.86853717 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Land area|Low|%,%,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Land area|Low|%,%,1.053099832,1.053099832,1.053099832,1.053099832,1.053099832,1.053099832,1.053099832,1.053099832,1.053099832,1.053099832 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Land area|Low|%,%,79.12535156,79.12535156,79.12535156,79.12535156,79.12535156,79.12535156,79.12535156,79.12535156,79.12535156,79.12535156 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Land area|Low|%,%,99.67551577,99.67551577,99.67551577,99.67551577,99.67551577,99.67551577,99.67551577,99.67551577,99.67551577,99.67551577 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Land area|Low|%,%,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Land area|Low|%,%,82.97429666,82.97429666,82.97429666,82.97429666,82.97429666,82.97429666,82.97429666,82.97429666,82.97429666,82.97429666 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Land area|Low|%,%,62.77474871,62.77474871,62.77474871,62.77474871,62.77474871,62.77474871,62.77474871,62.77474871,62.77474871,62.77474871 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Land area|Low|%,%,38.36384403,38.36384403,38.36384403,38.36384403,38.36384403,38.36384403,38.36384403,38.36384403,38.36384403,38.36384403 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Land area|Low|%,%,50.97516581,50.97516581,50.97516581,50.97516581,50.97516581,50.97516581,50.97516581,50.97516581,50.97516581,50.97516581 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Land area|Low|%,%,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Land area|Low|%,%,20.3933028,20.3933028,20.3933028,20.3933028,20.3933028,20.3933028,20.3933028,20.3933028,20.3933028,20.3933028 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Land area|Low|%,%,99.90570572,99.90570572,99.90570572,99.90570572,99.90570572,99.90570572,99.90570572,99.90570572,99.90570572,99.90570572 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Land area|Low|%,%,31.03521507,31.03521507,31.03521507,31.03521507,31.03521507,31.03521507,31.03521507,31.03521507,31.03521507,31.03521507 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Land area|Low|%,%,65.04389943,65.04389943,65.04389943,65.04389943,65.04389943,65.04389943,65.04389943,65.04389943,65.04389943,65.04389943 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Land area|Low|%,%,13.5879826,13.5879826,13.5879826,13.5879826,13.5879826,13.5879826,13.5879826,13.5879826,13.5879826,13.5879826 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Land area|Low|%,%,71.56356999,71.56356999,71.56356999,71.56356999,71.56356999,71.56356999,71.56356999,71.56356999,71.56356999,71.56356999 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Land area|Low|%,%,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Land area|Low|%,%,57.96711424,57.96711424,57.96711424,57.96711424,57.96711424,57.96711424,57.96711424,57.96711424,57.96711424,57.96711424 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Land area|Low|%,%,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Land area|Low|%,%,97.70425622,97.70425622,97.70425622,97.70425622,97.70425622,97.70425622,97.70425622,97.70425622,97.70425622,97.70425622 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Land area|Low|%,%,91.8703966,91.8703966,91.8703966,91.8703966,91.8703966,91.8703966,91.8703966,91.8703966,91.8703966,91.8703966 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Land area|Low|%,%,2.11064635,2.11064635,2.11064635,2.11064635,2.11064635,2.11064635,2.11064635,2.11064635,2.11064635,2.11064635 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Land area|Low|%,%,96.1900432,96.1900432,96.1900432,96.1900432,96.1900432,96.1900432,96.1900432,96.1900432,96.1900432,96.1900432 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Land area|Low|%,%,12.17542929,12.17542929,12.17542929,12.17542929,12.17542929,12.17542929,12.17542929,12.17542929,12.17542929,12.17542929 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Land area|Low|%,%,38.50377355,38.50377355,38.50377355,38.50377355,38.50377355,38.50377355,38.50377355,38.50377355,38.50377355,38.50377355 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Land area|Low|%,%,24.23035244,24.23035244,24.23035244,24.23035244,24.23035244,24.23035244,24.23035244,24.23035244,24.23035244,24.23035244 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Land area|Low|%,%,82.68715212,82.68715212,82.68715212,82.68715212,82.68715212,82.68715212,82.68715212,82.68715212,82.68715212,82.68715212 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Land area|Low|%,%,58.72041046,58.72041046,58.72041046,58.72041046,58.72041046,58.72041046,58.72041046,58.72041046,58.72041046,58.72041046 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Land area|Low|%,%,42.8827194,42.8827194,42.8827194,42.8827194,42.8827194,42.8827194,42.8827194,42.8827194,42.8827194,42.8827194 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Land area|Low|%,%,43.67841897,43.67841897,43.67841897,43.67841897,43.67841897,43.67841897,43.67841897,43.67841897,43.67841897,43.67841897 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Land area|Low|%,%,4.502252168,4.502252168,4.502252168,4.502252168,4.502252168,4.502252168,4.502252168,4.502252168,4.502252168,4.502252168 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Land area|Low|%,%,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Land area|Low|%,%,17.7429735,17.7429735,17.7429735,17.7429735,17.7429735,17.7429735,17.7429735,17.7429735,17.7429735,17.7429735 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Land area|Low|%,%,94.34324401,94.34324401,94.34324401,94.34324401,94.34324401,94.34324401,94.34324401,94.34324401,94.34324401,94.34324401 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Land area|Low|%,%,99.79686352,99.79686352,99.79686352,99.79686352,99.79686352,99.79686352,99.79686352,99.79686352,99.79686352,99.79686352 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Land area|Low|%,%,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Land area|Low|%,%,81.22212104,81.22212104,81.22212104,81.22212104,81.22212104,81.22212104,81.22212104,81.22212104,81.22212104,81.22212104 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Land area|Low|%,%,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Land area|Low|%,%,95.30860697,95.30860697,95.30860697,95.30860697,95.30860697,95.30860697,95.30860697,95.30860697,95.30860697,95.30860697 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Land area|Low|%,%,12.41875525,12.41875525,12.41875525,12.41875525,12.41875525,12.41875525,12.41875525,12.41875525,12.41875525,12.41875525 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Land area|Low|%,%,23.57043915,23.57043915,23.57043915,23.57043915,23.57043915,23.57043915,23.57043915,23.57043915,23.57043915,23.57043915 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Land area|Low|%,%,0.621753465,0.621753465,0.621753465,0.621753465,0.621753465,0.621753465,0.621753465,0.621753465,0.621753465,0.621753465 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Land area|Low|%,%,92.73565004,92.73565004,92.73565004,92.73565004,92.73565004,92.73565004,92.73565004,92.73565004,92.73565004,92.73565004 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Land area|Low|%,%,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Land area|Low|%,%,28.98864444,28.98864444,28.98864444,28.98864444,28.98864444,28.98864444,28.98864444,28.98864444,28.98864444,28.98864444 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Land area|Low|%,%,99.28495223,99.28495223,99.28495223,99.28495223,99.28495223,99.28495223,99.28495223,99.28495223,99.28495223,99.28495223 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Land area|Low|%,%,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939,7.1305939 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Land area|Low|%,%,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Land area|Low|%,%,80.97545324,80.97545324,80.97545324,80.97545324,80.97545324,80.97545324,80.97545324,80.97545324,80.97545324,80.97545324 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Land area|Low|%,%,99.66962803,99.66962803,99.66962803,99.66962803,99.66962803,99.66962803,99.66962803,99.66962803,99.66962803,99.66962803 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Land area|Low|%,%,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845,20.80637845 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Land area|Low|%,%,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Land area|Low|%,%,50.44461639,50.44461639,50.44461639,50.44461639,50.44461639,50.44461639,50.44461639,50.44461639,50.44461639,50.44461639 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Land area|Low|%,%,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488,94.19220488 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Land area|Low|%,%,32.80971065,32.80971065,32.80971065,32.80971065,32.80971065,32.80971065,32.80971065,32.80971065,32.80971065,32.80971065 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Land area|Low|%,%,62.03076746,62.03076746,62.03076746,62.03076746,62.03076746,62.03076746,62.03076746,62.03076746,62.03076746,62.03076746 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Land area|Low|%,%,58.68905981,58.68905981,58.68905981,58.68905981,58.68905981,58.68905981,58.68905981,58.68905981,58.68905981,58.68905981 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Land area|Low|%,%,63.82889821,63.82889821,63.82889821,63.82889821,63.82889821,63.82889821,63.82889821,63.82889821,63.82889821,63.82889821 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Land area|Low|%,%,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Land area|Low|%,%,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Land area|Low|%,%,33.1783435,33.1783435,33.1783435,33.1783435,33.1783435,33.1783435,33.1783435,33.1783435,33.1783435,33.1783435 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Land area|Low|%,%,84.47821914,84.47821914,84.47821914,84.47821914,84.47821914,84.47821914,84.47821914,84.47821914,84.47821914,84.47821914 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Land area|Low|%,%,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134,0.69674134 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Land area|Low|%,%,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187,8.211905187 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Land area|Low|%,%,99.53067601,99.53067601,99.53067601,99.53067601,99.53067601,99.53067601,99.53067601,99.53067601,99.53067601,99.53067601 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Land area|Low|%,%,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Land area|Low|%,%,66.62442239,66.62442239,66.62442239,66.62442239,66.62442239,66.62442239,66.62442239,66.62442239,66.62442239,66.62442239 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Land area|Low|%,%,22.2148053,22.2148053,22.2148053,22.2148053,22.2148053,22.2148053,22.2148053,22.2148053,22.2148053,22.2148053 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Land area|Low|%,%,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Land area|Low|%,%,13.0079846,13.0079846,13.0079846,13.0079846,13.0079846,13.0079846,13.0079846,13.0079846,13.0079846,13.0079846 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Land area|Low|%,%,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997,94.67539997 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Land area|Low|%,%,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Land area|Low|%,%,97.00088585,97.00088585,97.00088585,97.00088585,97.00088585,97.00088585,97.00088585,97.00088585,97.00088585,97.00088585 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Land area|Low|%,%,11.91949478,11.91949478,11.91949478,11.91949478,11.91949478,11.91949478,11.91949478,11.91949478,11.91949478,11.91949478 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Land area|Low|%,%,76.8813732,76.8813732,76.8813732,76.8813732,76.8813732,76.8813732,76.8813732,76.8813732,76.8813732,76.8813732 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Land area|Low|%,%,99.19532475,99.19532475,99.19532475,99.19532475,99.19532475,99.19532475,99.19532475,99.19532475,99.19532475,99.19532475 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Land area|Low|%,%,97.14585941,97.14585941,97.14585941,97.14585941,97.14585941,97.14585941,97.14585941,97.14585941,97.14585941,97.14585941 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Land area|Low|%,%,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Land area|Low|%,%,65.85691152,65.85691152,65.85691152,65.85691152,65.85691152,65.85691152,65.85691152,65.85691152,65.85691152,65.85691152 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Land area|Low|%,%,5.569723145,5.569723145,5.569723145,5.569723145,5.569723145,5.569723145,5.569723145,5.569723145,5.569723145,5.569723145 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Land area|Low|%,%,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633,99.80989633 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Land area|Low|%,%,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136,38.76552136 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Land area|Low|%,%,0.110967007,0.110967007,0.110967007,0.110967007,0.110967007,0.110967007,0.110967007,0.110967007,0.110967007,0.110967007 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Land area|Low|%,%,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Land area|Low|%,%,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Risk score|Population weighted,risk score,0.482478755,0.482480196,0.482582139,0.482692798,0.48283801,0.482924102,0.483069863,0.483253957,0.483420504,0.483624138 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Risk score|Population weighted,risk score,1.098659626,1.098769454,1.098872971,1.098969098,1.099053024,1.099123988,1.099184667,1.099236266,1.099279781,1.099318561 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Risk score|Population weighted,risk score,2.29967629,2.301887136,2.304785604,2.307950595,2.311112195,2.314569255,2.318092752,2.32172049,2.325171398,2.327931557 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Risk score|Population weighted,risk score,0.456186822,0.456060704,0.455935509,0.45584044,0.455760097,0.455694763,0.455635443,0.455568394,0.45549242,0.455402597 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Risk score|Population weighted,risk score,2.030848768,2.031205834,2.031540554,2.031944777,2.032469046,2.033019127,2.033595616,2.034203962,2.034824497,2.035430649 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Risk score|Population weighted,risk score,1.524738725,1.524789114,1.524751184,1.524808571,1.524817277,1.524817705,1.524851718,1.524902569,1.524956921,1.525013996 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Risk score|Population weighted,risk score,1.564123801,1.565133637,1.566130827,1.566984321,1.567557728,1.567955052,1.568238206,1.568402476,1.568458315,1.568441889 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Risk score|Population weighted,risk score,2.56719336,2.567896665,2.568963908,2.570086366,2.571183375,2.572197471,2.572692539,2.572547005,2.571905489,2.570856791 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Risk score|Population weighted,risk score,1.128976167,1.125980293,1.123285074,1.121106813,1.119296857,1.117851886,1.11671107,1.115842471,1.115196566,1.11460946 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Risk score|Population weighted,risk score,1.726224737,1.730282464,1.733284951,1.735514916,1.737275443,1.738498338,1.73940906,1.740009577,1.740495844,1.740849008 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Risk score|Population weighted,risk score,0.540674666,0.541508399,0.541911611,0.542334817,0.542602569,0.542946697,0.543099939,0.543411611,0.543673581,0.543814851 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Risk score|Population weighted,risk score,2.454280402,2.453744622,2.45355634,2.453551982,2.45366653,2.453826849,2.453971128,2.454107412,2.454233687,2.454351003 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Risk score|Population weighted,risk score,1.157286906,1.159866724,1.161547885,1.162593794,1.163063432,1.163144731,1.162964799,1.162609243,1.162141942,1.161596062 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Risk score|Population weighted,risk score,2.681611387,2.683036458,2.683576238,2.68389485,2.684048309,2.684141554,2.684028725,2.683797444,2.683524582,2.683249962 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Risk score|Population weighted,risk score,1.931715122,1.932307362,1.932824924,1.933259898,1.933620466,1.933875667,1.934069942,1.934244709,1.93438835,1.934510834 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Risk score|Population weighted,risk score,0.579917721,0.578840986,0.577896668,0.577015956,0.57624953,0.575620879,0.575036793,0.574412728,0.573783155,0.573270037 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Risk score|Population weighted,risk score,1.802817677,1.804186326,1.806494473,1.809295971,1.812536537,1.815932294,1.819246452,1.822456761,1.825543675,1.828481826 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Risk score|Population weighted,risk score,1.046242998,1.045989616,1.045798366,1.045698262,1.045688514,1.045743869,1.045829517,1.045934967,1.046026977,1.046088938 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Risk score|Population weighted,risk score,2.224381008,2.223249481,2.222309511,2.221427698,2.220546646,2.21970799,2.219118968,2.218766637,2.21866443,2.218801326 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Risk score|Population weighted,risk score,2.751409372,2.752200474,2.752739877,2.753046707,2.753165511,2.75314121,2.752875706,2.752417198,2.75184746,2.751171876 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Risk score|Population weighted,risk score,1.886532962,1.884696661,1.884055725,1.883780855,1.884039311,1.884741606,1.88550614,1.886389301,1.887497116,1.888574034 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Risk score|Population weighted,risk score,1.851669935,1.849307555,1.846296943,1.843578371,1.840986946,1.838291275,1.835594168,1.833213378,1.831180294,1.829452797 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Risk score|Population weighted,risk score,1.362704818,1.359146418,1.356797155,1.355124995,1.353825901,1.352834165,1.352121341,1.351621719,1.351329279,1.351241232 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Risk score|Population weighted,risk score,0.674306397,0.675523213,0.676676935,0.677733571,0.678693863,0.679596313,0.680432207,0.681187684,0.681873697,0.682492074 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Risk score|Population weighted,risk score,0.68556779,0.685340304,0.68515013,0.684984535,0.684836845,0.684710663,0.684610873,0.684530044,0.684463673,0.684411639 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Risk score|Population weighted,risk score,2.549809805,2.553077819,2.554397289,2.55541458,2.55587112,2.556255621,2.556320728,2.55610581,2.555757006,2.555225225 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Risk score|Population weighted,risk score,1.695614368,1.700769382,1.704463763,1.707002847,1.708623823,1.709540132,1.710127621,1.710478327,1.710713266,1.710782838 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Risk score|Population weighted,risk score,1.457799173,1.459342281,1.460288059,1.460800126,1.461009535,1.460961526,1.460859625,1.460733325,1.460591407,1.460570912 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Risk score|Population weighted,risk score,1.158171484,1.155931133,1.155118617,1.15499325,1.154812001,1.154541503,1.154093952,1.153539756,1.152986514,1.15275926 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Risk score|Population weighted,risk score,0.439398243,0.439673868,0.439874801,0.440106908,0.440274358,0.440437041,0.440592102,0.440754871,0.440925722,0.441113353 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Risk score|Population weighted,risk score,2.27770955,2.280031809,2.281696297,2.282961536,2.28383094,2.284454585,2.284891774,2.28518137,2.285366041,2.285464034 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Risk score|Population weighted,risk score,1.989151662,1.9937797,1.99721209,1.999833877,2.00220854,2.004278886,2.006106464,2.007742064,2.009182752,2.010419459 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Risk score|Population weighted,risk score,0.318590603,0.318640812,0.318779427,0.319041387,0.319412254,0.31988635,0.320340934,0.320758928,0.321133991,0.321451367 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Risk score|Population weighted,risk score,0.644894477,0.644586376,0.644480731,0.644521784,0.644521537,0.644534161,0.644635236,0.644749465,0.644810049,0.644829672 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Risk score|Population weighted,risk score,2.729810642,2.731920931,2.732399024,2.732495636,2.732385904,2.732142866,2.731737468,2.731295826,2.73093,2.730619229 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Risk score|Population weighted,risk score,0.532821308,0.533336151,0.533525245,0.533631069,0.533695273,0.533734035,0.533755282,0.533767196,0.533776102,0.533783167 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Risk score|Population weighted,risk score,2.332395356,2.332818122,2.333130017,2.333469381,2.333809445,2.334147378,2.33446496,2.334748032,2.334990524,2.335196613 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Risk score|Population weighted,risk score,1.760775954,1.765811033,1.770072367,1.773503604,1.776351043,1.778636142,1.78041901,1.781746889,1.782775688,1.783629463 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Risk score|Population weighted,risk score,1.302095685,1.30208789,1.302400292,1.302885813,1.303448111,1.304056031,1.304720396,1.305412836,1.306104535,1.306769552 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Risk score|Population weighted,risk score,1.719921936,1.720355591,1.720814392,1.721236491,1.721653886,1.721991774,1.722322986,1.722690833,1.723064257,1.723478403 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Risk score|Population weighted,risk score,2.346147826,2.348371781,2.350281421,2.35189882,2.353251103,2.354370699,2.355286796,2.356043171,2.356675688,2.357211653 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Risk score|Population weighted,risk score,0.841365555,0.840386993,0.839534011,0.838742687,0.838032776,0.837398203,0.836852938,0.836366839,0.835958658,0.835604803 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Risk score|Population weighted,risk score,0.782255211,0.782115708,0.782021977,0.781993982,0.781954678,0.781910243,0.78186792,0.781831819,0.781815901,0.781811446 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Risk score|Population weighted,risk score,0.570429465,0.568568166,0.566846957,0.565348565,0.564062164,0.562982207,0.562038059,0.561205457,0.560484015,0.559855643 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Risk score|Population weighted,risk score,2.049740015,2.056513253,2.063428369,2.07056152,2.077524462,2.084261645,2.090430272,2.095933157,2.100704192,2.104497521 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Risk score|Population weighted,risk score,1.968259529,1.970094317,1.971577088,1.972711621,1.973534931,1.974141037,1.974550396,1.974786555,1.974919557,1.974964363 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Risk score|Population weighted,risk score,1.931084787,1.940897524,1.948686846,1.954544782,1.958698734,1.961684904,1.963827815,1.965552391,1.967013602,1.968252972 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Risk score|Population weighted,risk score,2.404021872,2.404053483,2.40401473,2.403896635,2.40372255,2.4035118,2.4032887,2.403069706,2.40286385,2.402690774 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Risk score|Population weighted,risk score,3.057080825,3.056176088,3.055554226,3.055120137,3.054855979,3.054639816,3.054559749,3.054571337,3.054619224,3.054707602 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Risk score|Population weighted,risk score,0.502736183,0.5001539,0.498553374,0.497589115,0.49717543,0.497046358,0.497088431,0.497298837,0.497625748,0.498053872 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Risk score|Population weighted,risk score,0.335949285,0.324665296,0.317065418,0.311672782,0.308058427,0.306733773,0.308405805,0.313144712,0.319274116,0.325523997 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Risk score|Population weighted,risk score,2.131686461,2.131596656,2.13151424,2.131436923,2.131368597,2.131306811,2.13124724,2.131191086,2.131144206,2.131100513 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Risk score|Population weighted,risk score,0.308296186,0.308601595,0.308894372,0.309151907,0.309389114,0.309587277,0.309754318,0.309889237,0.310010441,0.310108037 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Risk score|Population weighted,risk score,1.109510205,1.109378041,1.109337297,1.109331766,1.109303291,1.109320581,1.109436239,1.109598489,1.109752781,1.109910142 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Risk score|Population weighted,risk score,2.915027567,2.914944018,2.914467331,2.914297054,2.913903268,2.913542399,2.913339984,2.91298382,2.91267689,2.912475051 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Risk score|Population weighted,risk score,2.046210081,2.04643783,2.046684573,2.046809061,2.046961101,2.047097251,2.04720493,2.047252631,2.047277953,2.047287721 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Risk score|Population weighted,risk score,1.983951237,1.996679979,2.009379355,2.021705577,2.033453625,2.044288898,2.053549831,2.061569639,2.068459212,2.074335699 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Risk score|Population weighted,risk score,1.591202472,1.590754209,1.591201219,1.591911952,1.592798895,1.594084082,1.595388557,1.596695689,1.597898515,1.598733915 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Risk score|Population weighted,risk score,0.659795708,0.660055328,0.660153551,0.660252009,0.660252009,0.66025557,0.660253845,0.660252497,0.660249635,0.660252005 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Risk score|Population weighted,risk score,0.46370276,0.465034422,0.466048816,0.466828569,0.467477647,0.468000196,0.468461838,0.468860553,0.469203175,0.469513661 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Risk score|Population weighted,risk score,1.380759105,1.382640283,1.384026229,1.385025974,1.38568455,1.386095632,1.386385582,1.386570723,1.386726301,1.386830437 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Risk score|Population weighted,risk score,1.89921542,1.901460305,1.90305426,1.904299331,1.905326435,1.906086266,1.906675905,1.907132547,1.907458647,1.90768554 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Risk score|Population weighted,risk score,2.941714867,2.942981387,2.943275088,2.944552354,2.944550862,2.945905677,2.946074426,2.946935465,2.947596367,2.947995746 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Risk score|Population weighted,risk score,0.682083858,0.682147962,0.682205968,0.682254242,0.682293637,0.682326663,0.682354199,0.682378581,0.682398573,0.682414442 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Risk score|Population weighted,risk score,1.708545494,1.713641637,1.718963175,1.724093523,1.729145188,1.733517775,1.7375405,1.741228358,1.744722402,1.747999956 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Risk score|Population weighted,risk score,1.267075562,1.268380832,1.269263015,1.269905705,1.270438175,1.270872287,1.271310303,1.271655275,1.271904495,1.272139714 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Risk score|Population weighted,risk score,1.70086787,1.70271189,1.703906163,1.704500145,1.704748825,1.704746057,1.704514203,1.704122172,1.703586348,1.702962419 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Risk score|Population weighted,risk score,1.169045198,1.169593042,1.170183853,1.170777349,1.171380294,1.171861811,1.17224834,1.172558921,1.172815331,1.173018386 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Risk score|Population weighted,risk score,1.537105156,1.548449356,1.559695672,1.569662539,1.577979161,1.58493931,1.590685885,1.595419939,1.599375683,1.602819917 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Risk score|Population weighted,risk score,1.187125456,1.187130162,1.187132776,1.187134056,1.187136223,1.187136343,1.187136438,1.187136438,1.187137494,1.187136172 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Risk score|Population weighted,risk score,0.801278071,0.800913873,0.800496896,0.800039638,0.799552411,0.799021261,0.798468654,0.797927983,0.79746105,0.797085272 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Risk score|Population weighted,risk score,1.034133129,1.035368317,1.036476914,1.037442347,1.038284013,1.039032954,1.039744911,1.040375661,1.040928213,1.041415922 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Risk score|Population weighted,risk score,2.717298652,2.717423583,2.717514128,2.717584926,2.717638141,2.717677723,2.717704624,2.717720628,2.717729022,2.717734314 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Risk score|Population weighted,risk score,0.615296327,0.616324159,0.618037983,0.620284394,0.623047253,0.62615474,0.628910853,0.631278468,0.633301103,0.634955756 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Risk score|Population weighted,risk score,0.470826984,0.471151701,0.471444301,0.471699926,0.471915667,0.472111114,0.472289656,0.472442184,0.472573196,0.472688369 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Risk score|Population weighted,risk score,2.833250172,2.833741799,2.833876414,2.833841648,2.834087166,2.833735391,2.833675911,2.833570161,2.833710966,2.833477112 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Risk score|Population weighted,risk score,0.936496227,0.937660405,0.93897293,0.940325864,0.941701116,0.943057913,0.944376567,0.945505117,0.946473952,0.947319067 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Risk score|Population weighted,risk score,1.694205454,1.695569444,1.696780262,1.698024726,1.698818856,1.699387235,1.699788873,1.700370732,1.700889058,1.701284724 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Risk score|Population weighted,risk score,0.889258127,0.891624491,0.893833507,0.895959955,0.897916871,0.899570754,0.901021683,0.902337843,0.90353417,0.9045711 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Risk score|Population weighted,risk score,0.481579157,0.481535845,0.481527243,0.481484471,0.481482792,0.481457061,0.481439331,0.481420935,0.481399149,0.481379469 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Risk score|Population weighted,risk score,1.395296934,1.396297257,1.398305107,1.401003371,1.404255979,1.407866991,1.411611993,1.41532312,1.418613017,1.421522512 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Risk score|Population weighted,risk score,2.655093207,2.655301624,2.655434958,2.655561019,2.655623283,2.65589568,2.655908622,2.656066137,2.656168124,2.65613091 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Risk score|Population weighted,risk score,0.696755563,0.694373575,0.692149421,0.690214201,0.688482254,0.686907793,0.685579476,0.68431843,0.683232702,0.682279886 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Risk score|Population weighted,risk score,1.137582308,1.137855558,1.13789388,1.137867723,1.137748577,1.137512595,1.137304314,1.137174145,1.137112531,1.137099426 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Risk score|Population weighted,risk score,0.833575328,0.830542217,0.827858804,0.825697237,0.824062033,0.82284407,0.822008327,0.821515385,0.821185075,0.820901844 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Risk score|Population weighted,risk score,1.091236769,1.09243272,1.093532916,1.094526454,1.095361324,1.096123112,1.096809678,1.097381456,1.097821797,1.098132067 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Risk score|Population weighted,risk score,2.426285319,2.425087128,2.424135938,2.423478378,2.423107988,2.422898795,2.422685054,2.422573457,2.422417262,2.422270199 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Risk score|Population weighted,risk score,2.101378397,2.103195327,2.104831682,2.106229493,2.107468895,2.108619623,2.109710991,2.11070412,2.111557292,2.112301822 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Risk score|Population weighted,risk score,1.812067057,1.814401035,1.816694671,1.818946227,1.821094215,1.823129834,1.825045598,1.826864354,1.828390863,1.829645513 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Risk score|Population weighted,risk score,0.469575769,0.470137211,0.470729145,0.471293117,0.471845683,0.472382442,0.472835676,0.473195814,0.473484346,0.473715199 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Risk score|Population weighted,risk score,0.404830008,0.405150232,0.405541012,0.405965826,0.406398787,0.406820063,0.407222286,0.407595487,0.407927335,0.408204038 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Risk score|Population weighted,risk score,0.518465532,0.517985855,0.517308326,0.516672695,0.516043176,0.515451667,0.514871775,0.514302163,0.513772234,0.51328143 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Risk score|Population weighted,risk score,0.479679484,0.480988026,0.482214916,0.483353477,0.48445014,0.485462537,0.4863522,0.487134108,0.487839778,0.488523603 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Risk score|Population weighted,risk score,1.738756171,1.741676137,1.744156218,1.746338512,1.748168617,1.749604902,1.750778377,1.751787139,1.752683449,1.753460739 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Risk score|Population weighted,risk score,0.589168818,0.59159653,0.593129724,0.594067361,0.594606869,0.594868165,0.59496393,0.594956669,0.594875068,0.594747323 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Risk score|Population weighted,risk score,1.24986482,1.252568263,1.255159385,1.255753488,1.25680984,1.25703942,1.25651504,1.256229464,1.256093403,1.256238165 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Risk score|Population weighted,risk score,0.867129929,0.86585437,0.864714612,0.863693819,0.862722293,0.861811904,0.861002278,0.860293192,0.859687326,0.859181521 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Risk score|Population weighted,risk score,2.820311929,2.82052485,2.820812356,2.821024442,2.821265102,2.821452002,2.821607228,2.821752407,2.821843725,2.821930425 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Risk score|Population weighted,risk score,1.490951768,1.489373368,1.488075101,1.486706787,1.485173231,1.483554962,1.482262386,1.481198438,1.48032251,1.479563823 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Risk score|Population weighted,risk score,2.693468765,2.69436832,2.694482735,2.694524821,2.694499042,2.694395228,2.694161501,2.693808548,2.693410981,2.692945456 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Risk score|Population weighted,risk score,1.002097337,1.00472957,1.006755539,1.008222661,1.009219536,1.009830188,1.010188577,1.010346434,1.010433444,1.010512794 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Risk score|Population weighted,risk score,0.776960976,0.776144865,0.776144523,0.777203915,0.778162751,0.779145506,0.776429221,0.777484177,0.778967494,0.778800805 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Risk score|Population weighted,risk score,0.945152428,0.9447833,0.94388962,0.942667478,0.941240953,0.939709209,0.938097118,0.936440321,0.934953102,0.933723347 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Risk score|Population weighted,risk score,0.856172808,0.859662798,0.862419759,0.864730018,0.866616593,0.868086753,0.869040671,0.869486236,0.869594091,0.86948479 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Risk score|Population weighted,risk score,0.739689128,0.74022006,0.740618172,0.740956743,0.741230752,0.741438946,0.741603417,0.741732766,0.741847438,0.741946706 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Risk score|Population weighted,risk score,2.072066245,2.075510122,2.078380241,2.080791407,2.082713339,2.084030684,2.084984181,2.085648232,2.086072277,2.086324995 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Risk score|Population weighted,risk score,0.912972226,0.914468535,0.914856012,0.91435194,0.913152562,0.911416315,0.909452146,0.907378425,0.905263222,0.903428127 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Risk score|Population weighted,risk score,0.486971776,0.487591396,0.488144376,0.488654781,0.489131066,0.489554692,0.489908774,0.490204656,0.490468084,0.490699565 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Risk score|Population weighted,risk score,0.990849679,0.990600724,0.989494903,0.988704461,0.988418014,0.987615924,0.986626068,0.985855351,0.9852281,0.98477022 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Risk score|Population weighted,risk score,2.322459117,2.323603025,2.324427409,2.325062781,2.325552963,2.325815262,2.326052784,2.326351373,2.326629081,2.326888737 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Risk score|Population weighted,risk score,2.242855962,2.243597392,2.243677669,2.244245403,2.244533163,2.2451888,2.245732159,2.246198802,2.246260191,2.246610497 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Risk score|Population weighted,risk score,2.23925215,2.238844488,2.238243991,2.237590819,2.236950394,2.236665531,2.236550317,2.236441492,2.236218707,2.235798147 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Risk score|Population weighted,risk score,2.68168197,2.683946285,2.685774859,2.687208815,2.688322766,2.68912584,2.689777561,2.690197104,2.690655611,2.690850687 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Risk score|Population weighted,risk score,0.437363845,0.437386951,0.437387683,0.437389186,0.437389129,0.437389224,0.437390285,0.437390551,0.437390114,0.437390703 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Risk score|Population weighted,risk score,0.714362805,0.714757075,0.715085277,0.715475879,0.715868251,0.716193582,0.716464835,0.716714672,0.716940138,0.717128017 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Risk score|Population weighted,risk score,1.833337098,1.832783282,1.831703328,1.830095601,1.828050261,1.825801346,1.823395853,1.821094663,1.819091271,1.81733784 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Risk score|Population weighted,risk score,0.764082906,0.765503862,0.766749414,0.76782065,0.768756681,0.769617352,0.770406394,0.771063432,0.771590972,0.772010468 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Risk score|Population weighted,risk score,2.50234277,2.503219341,2.503989665,2.504672907,2.50526008,2.505794016,2.506278555,2.506712966,2.507088903,2.507411246 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Risk score|Population weighted,risk score,1.950254136,1.949212017,1.94838982,1.947726029,1.947157204,1.946666816,1.946284771,1.945996131,1.945807991,1.945723692 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Risk score|Population weighted,risk score,0.893130854,0.89879887,0.90360265,0.907803801,0.911371309,0.914369058,0.916811635,0.91866642,0.920147213,0.921180817 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Risk score|Population weighted,risk score,1.466862786,1.466613678,1.467302977,1.468854092,1.470911577,1.473672687,1.476292995,1.478520074,1.480164786,1.480738053 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Risk score|Population weighted,risk score,0.610827455,0.610126063,0.609645322,0.609273642,0.608954977,0.608687802,0.608461936,0.608260704,0.608070717,0.607881761 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Risk score|Population weighted,risk score,0.61728025,0.616458086,0.615671423,0.614884623,0.614156816,0.613541201,0.613027492,0.612585461,0.612203388,0.611883549 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Risk score|Population weighted,risk score,1.073594926,1.075133903,1.076704088,1.078484593,1.080353789,1.082113341,1.083519464,1.084826775,1.085962192,1.086564318 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Risk score|Population weighted,risk score,2.33064472,2.331628556,2.332511149,2.333328883,2.334042846,2.334698184,2.335252828,2.33569431,2.336052957,2.336352891 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Risk score|Population weighted,risk score,0.888256897,0.886904965,0.88577203,0.884606437,0.883279274,0.881962612,0.880679708,0.879370196,0.878193184,0.877240062 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Risk score|Population weighted,risk score,1.616903545,1.619563452,1.619311912,1.61817025,1.619003747,1.619029733,1.618929759,1.618828103,1.619161711,1.617662834 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Risk score|Population weighted,risk score,3.009105055,3.008093334,3.007722758,3.00782158,3.008183365,3.008732698,3.009251418,3.00971468,3.010120748,3.010460646 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Risk score|Population weighted,risk score,0.56722548,0.573666254,0.579216753,0.582831889,0.585773383,0.588191051,0.589815784,0.590570261,0.591322051,0.591693689 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Risk score|Population weighted,risk score,0.401249181,0.400377252,0.399549138,0.398833097,0.398180431,0.397581609,0.397111482,0.396759802,0.396510287,0.396349259 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Risk score|Population weighted,risk score,1.173350473,1.175301069,1.176838897,1.178319773,1.179654332,1.180742868,1.181606023,1.182229378,1.182702192,1.183117143 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Risk score|Population weighted,risk score,1.133436413,1.132512133,1.131734641,1.13102376,1.130349453,1.129761709,1.12918969,1.128726673,1.128424877,1.128242016 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Risk score|Population weighted,risk score,2.618945511,2.618041201,2.616801977,2.61638129,2.615832039,2.615495904,2.615405801,2.615096919,2.614878433,2.614588039 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Risk score|Population weighted,risk score,0.4203262,0.420253172,0.420182501,0.420117204,0.420062927,0.420012153,0.41996451,0.419923511,0.41988708,0.419852328 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Risk score|Population weighted,risk score,0.507727195,0.507537926,0.50727554,0.507019749,0.506841499,0.506717504,0.506620057,0.506488838,0.506355617,0.506289611 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Risk score|Population weighted,risk score,0.727287141,0.728109539,0.728702258,0.729099061,0.729432783,0.729725599,0.729969943,0.730149591,0.730301912,0.730404297 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Risk score|Population weighted,risk score,2.315657266,2.317050736,2.318322249,2.31967668,2.321168898,2.32271055,2.324547635,2.326709827,2.329132854,2.331796714 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Risk score|Population weighted,risk score,2.163936054,2.16557507,2.167138821,2.168499329,2.169756878,2.170824304,2.171688776,2.172380596,2.172935894,2.17334942 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Risk score|Population weighted,risk score,2.262442964,2.262266943,2.262159921,2.26198709,2.261775592,2.261553872,2.261335417,2.261146158,2.260981475,2.260886573 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Risk score|Population weighted,risk score,2.084314355,2.085157333,2.085944869,2.086634061,2.087292008,2.087943722,2.088470454,2.088883302,2.089138395,2.089247351 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Risk score|Population weighted,risk score,0.936734771,0.938800795,0.939784451,0.940328773,0.940650443,0.940735061,0.940709741,0.940635253,0.940524574,0.940386882 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Risk score|Population weighted,risk score,1.34497834,1.344365697,1.343575659,1.342888642,1.342251563,1.341674274,1.341081714,1.340497124,1.339964829,1.339496283 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Risk score|Population weighted,risk score,0.800214603,0.803967628,0.80679289,0.808825854,0.810232625,0.811076561,0.811494142,0.811546391,0.811557739,0.811538816 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Risk score|Population weighted,risk score,0.477552757,0.483067926,0.484361733,0.484997878,0.485379603,0.485629361,0.485796284,0.485931219,0.486026602,0.486098308 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Risk score|Population weighted,risk score,1.319421076,1.320636301,1.320916796,1.320731361,1.320431852,1.320110397,1.319529602,1.318780493,1.317951588,1.317030672 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Risk score|Population weighted,risk score,0.888405654,0.903308997,0.914709499,0.922782116,0.929678923,0.933619344,0.937796415,0.94144352,0.944678206,0.947587051 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Risk score|Population weighted,risk score,2.114931395,2.1160651,2.117445276,2.118902814,2.120476169,2.122161995,2.123813308,2.125400088,2.126869007,2.128292002 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Risk score|Population weighted,risk score,2.207763829,2.207949036,2.20812896,2.208305842,2.208477847,2.208635579,2.208765113,2.208872384,2.208961964,2.20903735 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Risk score|Population weighted,risk score,2.871740295,2.871608016,2.871530071,2.871464194,2.871400737,2.871350267,2.871300065,2.871242503,2.871190566,2.871143235 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Risk score|Population weighted,risk score,1.336579489,1.337485168,1.338238503,1.338491718,1.338478181,1.338510104,1.338569588,1.33862564,1.338694403,1.338793442 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Risk score|Population weighted,risk score,1.188602299,1.187219587,1.18567304,1.184176569,1.182650662,1.181092333,1.179618284,1.178294346,1.177123446,1.176080719 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Risk score|Population weighted,risk score,2.300414863,2.300103877,2.299880956,2.299580851,2.299348526,2.299195617,2.299065776,2.298953439,2.298924194,2.298985225 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Risk score|Population weighted,risk score,2.839201504,2.838498167,2.838064772,2.837877636,2.837832792,2.83788671,2.838019011,2.8382062,2.838406116,2.838654484 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Risk score|Population weighted,risk score,2.306458055,2.310001821,2.312583354,2.314481413,2.315841647,2.317247446,2.318649337,2.319998013,2.321245479,2.322344002 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Risk score|Population weighted,risk score,2.490934338,2.491135708,2.491231904,2.491288103,2.49132349,2.491346698,2.49136255,2.491373753,2.491381607,2.491387366 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Risk score|Population weighted,risk score,0.953198108,0.959654262,0.965161254,0.969607119,0.973092729,0.975757834,0.977737054,0.979201099,0.980343459,0.981305724 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Risk score|Population weighted,risk score,0.65543795,0.652633034,0.649998648,0.647363121,0.644572822,0.641965434,0.639628909,0.637691521,0.63609964,0.63504098 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Risk score|Population weighted,risk score,1.733394955,1.73665466,1.738950558,1.740558062,1.741590613,1.742129545,1.742241916,1.742194917,1.742137689,1.742060962 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Risk score|Population weighted,risk score,2.58063918,2.580715306,2.580536543,2.580147877,2.579595669,2.578964116,2.578195683,2.577322825,2.576427631,2.57554299 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Risk score|Population weighted,risk score,0.514118983,0.514876911,0.515076624,0.51517259,0.5150304,0.515041899,0.514667198,0.514753193,0.514681037,0.514695218 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Risk score|Population weighted,risk score,2.835700033,2.833155393,2.831372003,2.830210839,2.829408559,2.82899513,2.828791924,2.828770013,2.828902565,2.829102297 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Risk score|Population weighted,risk score,3.065686089,3.067019252,3.067780223,3.068228034,3.068439206,3.068500889,3.068509158,3.068478381,3.068421936,3.068332632 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Risk score|Population weighted,risk score,0.282776336,0.283204909,0.283632417,0.284043903,0.284518486,0.285226149,0.285922685,0.286778043,0.287507349,0.288273646 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Risk score|Population weighted,risk score,2.145814996,2.15028297,2.153609836,2.155996283,2.157576006,2.158504096,2.158996313,2.159204021,2.159219541,2.159090282 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Risk score|Population weighted,risk score,0.590236454,0.590078905,0.589945602,0.589831246,0.589751318,0.589715699,0.589720685,0.589767577,0.589823009,0.589872954 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Risk score|Population weighted,risk score,2.492122051,2.492017781,2.492455342,2.493382497,2.494588981,2.495986289,2.497369259,2.498775603,2.500328328,2.501970142 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Risk score|Population weighted,risk score,0.496194296,0.49611244,0.496063866,0.496042469,0.496035679,0.496052111,0.496091905,0.496138039,0.4961874,0.49623661 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Risk score|Population weighted,risk score,0.469557746,0.470383973,0.471085461,0.471719072,0.472251244,0.472796712,0.473301453,0.473764114,0.474182179,0.474550465 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Risk score|Population weighted,risk score,0.44577188,0.447932907,0.449281744,0.450213822,0.450856622,0.451106167,0.450836801,0.450055514,0.449074113,0.448092939 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Risk score|Population weighted,risk score,1.136218286,1.13589104,1.13591294,1.13471874,1.133970219,1.132653767,1.131208829,1.130421964,1.12932967,1.12929764 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Risk score|Population weighted,risk score,0.976835855,0.97614135,0.976210987,0.976895966,0.977948227,0.979182065,0.980531942,0.981969609,0.983437994,0.98490768 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Risk score|Population weighted,risk score,2.076768727,2.07578922,2.07530067,2.074622659,2.074070944,2.073641006,2.073184445,2.072781518,2.072442262,2.072158821 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Risk score|Population weighted,risk score,0.771038986,0.771638469,0.77211359,0.772470856,0.772845266,0.773165303,0.773448192,0.773680263,0.773842376,0.774026161 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Risk score|Population weighted,risk score,1.306481686,1.306770199,1.306845385,1.306894573,1.306966365,1.306956505,1.306873601,1.306786155,1.306670255,1.306553286 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Risk score|Population weighted,risk score,0.736690791,0.736809413,0.73688489,0.736921443,0.73694147,0.736952038,0.736954049,0.736947126,0.736928327,0.736913545 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Risk score|Population weighted,risk score,1.421459227,1.421839706,1.422186931,1.422461318,1.422902519,1.423217157,1.423550126,1.423912206,1.424317085,1.424483054 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Risk score|Population weighted,risk score,0.434364421,0.43469639,0.434992749,0.435248414,0.435474464,0.435675803,0.435855662,0.436019668,0.436170263,0.436311415 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Risk score|Population weighted,risk score,0.736051928,0.739080305,0.742415186,0.745632967,0.748498037,0.75103625,0.753277951,0.755251987,0.756986081,0.758508534 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Risk score|Population weighted,risk score,2.440540465,2.442083286,2.443420382,2.444549612,2.445530237,2.446412627,2.447162454,2.447793684,2.448320103,2.448770028 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Risk score|Population weighted,risk score,1.577812016,1.573454797,1.569953548,1.567268901,1.565171078,1.5634981,1.562304725,1.5615053,1.561019744,1.56077646 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Risk score|Population weighted,risk score,2.482858349,2.484301636,2.485842143,2.487457034,2.489097656,2.490735965,2.492404558,2.494074793,2.495814927,2.497537528 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Risk score|Population weighted,risk score,2.214671052,2.216604268,2.218522619,2.220389243,2.222119996,2.223661067,2.224982716,2.226136391,2.227115003,2.22795954 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Risk score|Population weighted,risk score,3.099238367,3.099501259,3.099683248,3.099736514,3.099712726,3.099649362,3.099548724,3.099397571,3.099149779,3.098898361 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Risk score|Population weighted,risk score,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679,0.641239679 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Risk score|Population weighted,risk score,1.120757766,1.120716481,1.12071162,1.1207438,1.120800218,1.12085178,1.120883898,1.120906537,1.120915479,1.120912067 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Risk score|Population weighted,risk score,2.770539192,2.77018508,2.770070538,2.770139969,2.770103957,2.769966781,2.770442432,2.770497145,2.770383277,2.770238818 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Risk score|Population weighted,risk score,0.788655717,0.788707377,0.788730958,0.788740189,0.788737953,0.788736622,0.788743411,0.78875382,0.78877037,0.788796782 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Risk score|Population weighted,risk score,3.0864023,3.087724977,3.088694805,3.089427073,3.08993324,3.090318642,3.090688533,3.091055693,3.091393222,3.091693358 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Risk score|Population weighted,risk score,1.916372313,1.925116572,1.93284423,1.939311996,1.944962312,1.950088932,1.954775186,1.958908104,1.962575189,1.965817426 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Risk score|Population weighted,risk score,0.8799261,0.879825678,0.879759429,0.879692167,0.879626227,0.879563009,0.879502139,0.879446425,0.879394771,0.87934886 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Risk score|Population weighted,risk score,0.765169912,0.766374675,0.767100255,0.767794841,0.767983038,0.768345371,0.768625385,0.768574023,0.768763312,0.768789531 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Risk score|Population weighted,risk score,0.444764363,0.445858433,0.446461666,0.446853768,0.446998787,0.447030866,0.447018987,0.446954131,0.446843559,0.446712972 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Risk score|Population weighted,risk score,0.169515119,0.169739055,0.169948927,0.170122598,0.170260915,0.170368948,0.170460572,0.170538224,0.170614324,0.170693203 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Risk score|Population weighted,risk score,1.248730699,1.24405638,1.242344477,1.241304435,1.240981088,1.240958328,1.240931289,1.240919279,1.240909626,1.240901533 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Risk score|Population weighted,risk score,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934,1.251961934 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Risk score|Population weighted,risk score,0.86056265,0.86191411,0.862660076,0.863903274,0.864150717,0.864418508,0.864733784,0.865217612,0.86597869,0.866363173 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Population,people,9011.359825,10543.02428,10880.64078,11096.21551,11130.70099,11071.18355,10882.37404,10538.44687,10128.60562,9640.170236 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Population,people,5456.799909,5994.647007,6335.317077,6672.439457,6884.622618,6959.350035,6853.055191,6384.977684,6112.350793,5763.702606 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Population,people,5504342.819,7067451.047,8178894.872,9103414.042,9867715.692,10365185.34,10621800.84,10798203.38,10931214.71,10954934.21 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Population,people,39942.58983,59409.90709,73618.78668,87105.86315,98872.81085,108261.2377,114607.7855,117680.4563,117699.8985,114977.144 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Population,people,93714.43122,172082.7092,213390.7648,252206.3497,287000.8407,316285.5781,339446.4218,357531.9349,370709.6591,378407.8247 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Population,people,74194.20988,142938.7927,165949.3499,186373.5084,202469.7526,212087.0837,213821.3134,211449.9232,210490.9144,210228.1835 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Population,people,190298,294867.4263,388503.8522,487215.5881,581721.0803,665206.4543,735533.2685,789911.493,826159.1377,843516.6476 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Population,people,67210.79983,86842.08902,105490.0309,123100.554,137359.6002,149643.1623,157357.1494,160659.5185,160062.8805,156244.7553 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Population,people,339567.1901,423574.628,495644.6508,559713.865,614894.5132,653592.1759,677667.8987,687382.9092,684853.3316,671386.342 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Population,people,1056835.113,1822318.123,2136542.497,2425323.884,2644666.713,2765796.443,2807572.024,2822229.857,2887442.767,3004863.757 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Population,people,26344.77876,29321.07991,30523.24268,30794.53007,30219.69195,29011.61108,27354.3285,25407.74593,23344.69865,21303.40346 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Population,people,4415.759901,6422.946767,8004.955289,9518.741224,10872.90414,12023.3032,12940.70438,13587.58838,13951.70503,14040.1812 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Population,people,508469.226,646367.6976,697465.6277,732783.0715,749872.2836,750457.9444,739254.9887,719593.173,694602.1126,666740.919 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Population,people,36470.20004,45835.76042,62262.75645,80368.63584,98112.90875,114191.6681,127201.4703,136416.9788,141671.892,142751.5882 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Population,people,2255537.973,3202753.594,3859423.517,4452420.984,4965775.03,5376800.384,5662992.803,5831452.759,5881021.098,5826936.664 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Population,people,160.4099964,1412.13097,1355.769977,1273.6603,1172.345849,1066.47954,965.5815604,874.7960245,792.2275088,721.7610199 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Population,people,495782.3509,629658.5578,732284.7222,816398.7057,881288.4106,924330.899,945093.4888,943357.2108,923743.6296,890852.172 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Population,people,1328585.071,2073977.483,2305453.112,2485300.319,2607994.651,2664048.234,2659611.527,2605405.683,2513211.543,2394988.93 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Population,people,127998.6009,216297.1392,269113.0936,321002.4639,369529.2259,414758.1834,452069.6901,486033.9814,516431.7751,541218.2907 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Population,people,28601.54004,30715.90922,28715.74551,26829.37637,24124.77852,21865.70829,19286.13435,16900.5792,15271.42066,13034.12113 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Population,people,693965.6497,883140.6074,977791.5215,1050000.561,1108280.541,1121357.566,1113100.511,1094747.698,1074399.962,1036831.292 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Population,people,1031142.542,1353245.88,1735491.557,2119459.58,2451436.141,2744084.639,2946967.649,3089623.977,3145589.211,3114203.495 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Population,people,205614.93,348342.6917,436253.5951,522393.1601,600416.0382,667091.6484,718341.7418,752269.149,766081.1622,762641.7238 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Population,people,81496.99932,99048.96011,105822.754,110062.2065,112073.2311,111795.4451,109839.4109,106738.8236,103006.0316,98956.53517 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Population,people,62064.11058,85737.58451,103161.7975,118405.4983,130716.1168,139768.3407,145579.4255,147896.7611,146537.4468,142473.0301 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Population,people,782697.6649,1132748.447,1568185.266,2094484.215,2702228.475,3333815.938,3936054.008,4482231.377,4918689.696,5245164.521 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Population,people,85816.1599,102446.057,106948.8097,108450.0945,107191.1001,103512.1772,98463.38163,92725.91857,86907.97212,81270.07807 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Population,people,2071.559996,2482.733189,2329.610519,2162.000658,1856.236058,1582.654148,1361.558733,1139.047708,851.3692715,635.6106737 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Population,people,170,272.17445,265.2864499,318.658891,321.2338068,370.0192959,373.5044879,382.8697877,398.5983231,423.5098901 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Population,people,317264.61,374563.1673,406587.2034,427380.0089,440202.5073,438899.6226,425782.4141,405851.6739,384974.8293,368504.1179 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Population,people,1250869.074,1792715.131,1977322.3,2116903.708,2218863.407,2273566.145,2253041.666,2196179.073,2109414.536,2017782.963 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Population,people,1766608.389,2130909.923,2226830.76,2269086.292,2263003.187,2216787.956,2148747.561,2065411.941,1970534.493,1873728.322 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Population,people,197654.9202,265159.088,283609.891,293494.0871,296275.8947,291704.6011,280826.5703,265935.3354,248891.3944,230500.3854 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Population,people,759823.3315,1275982.244,1498109.131,1691715.621,1845975.66,1939388.924,1975416.36,1958517.091,1888046.967,1779102.946 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Population,people,748129.6891,1067799.902,1337044.553,1628592.519,1878109.153,2098241.938,2286610.222,2401579.46,2467782.748,2474092.757 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Population,people,75898.33962,103579.0223,110621.0901,113651.7871,114691.1366,112704.5913,108485.2958,103157.923,97866.12083,92990.74656 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Population,people,3401.279924,3710.044459,3832.764936,3838.039686,3752.622596,3588.409411,3366.995762,3102.747569,2870.634145,2626.540101 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Population,people,175119,209942.3827,226878.2967,237097.6107,240351.8875,236651.348,227132.5876,212949.7298,195800.6789,177509.5932 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Population,people,15288.00061,21646.48678,28208.00937,35059.90296,41408.51547,46878.84065,51388.5946,54700.21637,56545.27635,57137.21181 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Population,people,10631746.57,13103949.85,15667955.14,18111899.76,20228113.98,21874250.5,22981832.21,23476079.35,23387277.8,22863059.5 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Population,people,203855.0409,270754.649,301351.1977,325208.3226,341586.5421,350780.124,353328.5947,350227.2645,343080.819,333154.7785 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Population,people,66619.67158,117001.9552,140639.486,166467.3247,193944.7649,221442.5253,247438.3462,271273.7394,292457.6467,310456.4153 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Population,people,3465393.197,4742523.374,6089555.526,7551297.12,9005480.122,10312090.75,11419021.67,12274088.32,12838555.08,13103238.71 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Population,people,6224139.062,10662726.75,13384822.76,16042439.09,18493034.53,20528045.2,22093998.96,23194801.85,23767605.59,23786657.06 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Population,people,333596.4289,467908.4834,548958.227,617256.2937,668917.703,701032.4287,712294.1195,705509.1124,681125.1261,641446.4311 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Population,people,320.8199928,1942.176766,1867.743574,1777.751048,1651.009558,1516.094751,1415.118658,1350.985278,1306.666054,1265.557085 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Population,people,1316104.21,1605633.484,1738834.817,1824954.337,1864114.812,1856237.639,1807575.353,1731740.512,1638013.819,1531841.797 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Population,people,69896212.55,93100824.25,106615204.5,118935586.1,129239461.8,136673359.5,141641369,143982520.3,143936006.9,141525791.5 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Population,people,105534.5894,126477.5702,142672.7739,154675.255,161482.2995,162779.7425,162080.569,157549.6978,151531.9392,143570.6553 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Population,people,636699.8036,1602741.026,2007712.471,2379898.579,2703906.361,2961976.6,3145913.99,3253435.878,3279696.401,3236510.564 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Population,people,9719.519783,15646.08094,16888.43183,17887.74233,18608.21769,19012.87167,19346.93536,19750.88918,20275.82867,20972.54824 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Population|Low,people,1697518.257,2200030.547,2361181.246,2500964.741,2631796.611,2768702.467,2923066.504,3085546.944,3246477.8,3416640.011 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Population|Low,people,35911.1992,210699.1831,244406.7244,270375.4154,287612.1691,296108.6657,296156.9868,287754.9275,270998.4169,248048.6191 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Population|Low,people,6157658.982,6049265.617,6750645.211,7235840.519,7604642.655,7763655.206,7754474.586,7641996.766,7440820.568,7148146.84 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Population|Low,people,14763097.04,16809898.18,18951998.01,20670697.91,21928297.86,22591397.91,22711098,22338698.17,21662198.29,20764998.47 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Population|Low,people,76211345.05,103889986.5,128564948.4,150974033.4,169407086.1,182817622.1,190142976.4,190871925.8,185672880.9,175811778.3 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Population|Low,people,1242002.501,1430600,1612200,1753800,1852700,1898300,1892800,1845600,1769300,1670900 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Population|Low,people,3191404.461,5240500,6332600,7281500,8057700,8614300,8929900,9003800,8843200,8483400 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Population|Low,people,16217355.46,19616192.98,21067215.58,22312613.41,23298527.38,23958234.97,24259837.54,24256469.49,24033092.93,23624298.82 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Population|Low,people,9866850.262,11482361.16,12937778.23,14167715.16,15096275.52,15680910.42,15913838.88,15822978.41,15464507.37,14909580.68 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Population|Low,people,122.2499982,1595.248682,1581.957406,1623.451262,1615.293888,1661.332307,1591.374557,1590.77338,1594.878891,1570.566671 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Population|Low,people,16519559.58,20833900,26597000,32575600,38254900,43231100,47311700,50283000,52074500,52672000 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Population|Low,people,8676327.982,11715979.32,14119327.64,16453610.66,18569586.66,20288145.98,21617756.14,22552651.19,23030491.29,23084940.9 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Population|Low,people,27159016.37,34666568.03,40089184.78,44630059.27,48407878.33,50892671.18,52249122.35,53239586.01,54004254.78,54233250.21 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Population|Low,people,75453.69085,560592.464,609192.4019,639592.4987,651492.8178,646293.1761,623893.5989,585894.2352,538294.81,487795.3859 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Population|Low,people,12924709.29,16406697.54,19099056.89,21424962.09,23281789.08,24607618.25,25300875.67,25347835.71,24819175.09,23855637.68 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Population|Low,people,1934513.309,1791171.919,1584649.679,1355496.708,1119908.028,903121.2032,710362.4733,548001.1713,422971.8525,331760.0012 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Population|Low,people,9361680.805,13637600,16640400,19396100,21735500,23533600,24700000,25213500,25117700,24493000 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Population|Low,people,5716453.642,10368700,12769400,15039600,17107500,18883300,20326200,21411900,22120500,22468300 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Population|Low,people,7330115.994,5463330.74,6696481.244,7882618.003,8890914.811,9692373.756,10297768.65,10667785.89,10764684.24,10606160.03 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Population|Low,people,33877840.45,43783614.93,44118803.83,44546907.12,44855761.06,44536647.87,43966701.28,43949529.33,44879482.92,46128456.44 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Population|Low,people,3395460.342,4700748.202,5786238.519,6813528.368,7687180.42,8363738.781,8836761.96,9087161.959,9107719.947,8928894.126 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Population|Low,people,83736.71876,153034.0248,153786.1322,149515.7964,141829.9527,131294.331,118029.1017,103212.6375,88177.23622,74290.95228 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Population|Low,people,2350816.679,4637269.137,5340544.253,5889827.686,6377214.326,6642811.027,6651017.427,6543627.078,6468433.816,6439037.182 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Population|Low,people,33826705.47,51066615.98,66104143.51,81886036.92,96939688.81,110230012.9,121326575.7,129759399.7,135209596.1,137603456.2 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Population|Low,people,2894299.921,2747610.077,2598691.723,2364186.841,2085999.468,1797358.035,1517970.294,1258519.291,1027915.432,832385.4055 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Population|Low,people,624407.8683,1149885.843,1347891.332,1521833.963,1670010.019,1779994.087,1847577.525,1880996.963,1882437.333,1851895.44 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Population|Low,people,185.7000074,287.4230956,301.5027736,312.8129727,320.7953182,326.4521464,333.433669,341.4506414,345.3422329,348.6683702 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Population|Low,people,22800284.4,30565173.02,38231449.01,45877724.74,53036201.74,59129081.22,63761664.97,66945653.24,68679946.09,69054543.31 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Population|Low,people,164532233.9,206055153.5,242176690.5,274771204.9,303318875.2,324704940.3,339163077.2,346671505.4,347825296.1,343551864.9 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Population|Low,people,49424.60074,44518.34322,41543.62824,38451.45199,35506.90181,32813.30383,30244.50187,28049.73418,26384.8815,25131.76381 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Population|Low,people,5942006.976,10083260.42,11789108.94,13386762.65,14625828.54,15340711.39,15636806.81,15785106.33,16205696.66,16914777.89 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Population|Low,people,1171645473,1382139351,1506355187,1594130658,1642216673,1656721455,1639654771,1596892064,1535519771,1462176642 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Population|Low,people,6522939.163,9708307.294,10109571.6,10268943.19,10180745.11,9888185.043,9498231.111,9031773.32,8576560.307,8175139.207 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Population|Low,people,11479749.73,16469484.23,20373610.32,24146859.84,27570219.38,30521458.11,32921069.17,34664127.9,35713017.98,36078668.47 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Population|Low,people,2120633.85,2298900,2487400,2609900,2677300,2678000,2612400,2494700,2342500,2167600 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Population|Low,people,8201.790326,105383.403,97759.07987,87539.25598,75515.09185,63173.7226,51509.5893,41022.72742,32212.47753,24982.73989 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Population|Low,people,9406228.114,12869344.05,16032722.48,19175392,21962619.09,24214479.27,25894868.91,26949277,27370510.06,27191157.17 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Population|Low,people,7202881.2,9478256.168,9575481.395,9402196.826,8931158.173,8309485.244,7662570.946,7046381.249,6518315.521,6096849.874 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Population|Low,people,17681.72008,16716.49222,15369.76336,14241.57753,13470.60362,12834.78797,12271.46146,11846.61904,11547.79469,11312.53405 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Population|Low,people,6886357.372,9384107.116,10804273.71,11959921.75,12862911.45,13364849.69,13555327.27,13430121.35,13004180.58,12350711.76 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Population|Low,people,63938907.36,81367412.88,87900303.07,92442363.84,94673043.71,94823686.81,93472721.95,91039129.31,87912630.08,84400463.16 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Population|Low,people,32070355.59,38682055.91,50947893.09,64210529.5,76997899.57,88598977.71,97832206.86,104179139.1,107616596.2,107995243.1 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Population|Low,people,138761477,171046867.5,187828736.8,198757032.6,203855650.1,203158384.7,197492430.5,188393580.7,177011531.7,164603980 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Population|Low,people,3304258.005,4702200,5683800,6572000,7341200,7950900,8379800,8631800,8704700,8622900 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Population|Low,people,2859.889936,25247.92207,24340.23363,22944.77519,21167.30066,19246.80124,17347.9638,15578.47705,13961.79356,12590.85371 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Population|Low,people,606515.7237,1205001.029,1286095.433,1343493.475,1394592.275,1436091.983,1458293.667,1466196.395,1466499.699,1473201.633 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Population|Low,people,400.439991,3254.079649,3580.646078,3833.486783,4014.249509,4135.744558,4214.244836,4253.819805,4262.734629,4253.110348 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Population|Low,people,39052647.57,43674212.68,45637038.29,47628872.19,49304889.82,50868717.79,52587044.96,54494337.56,56410928.79,58258765.82 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Population|Low,people,2108541.638,2686599.155,3139799.119,3507199.091,3797899.067,3993299.199,4084499.194,4081899.194,4001099.294,3855499.448 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Population|Low,people,8620890.257,16144227.96,20864209.36,25630291.04,30032274.63,33761661.49,36639152.03,38496246.79,39298845.45,39157847.76 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Population|Low,people,18888110.41,28881838.44,31542732.4,33509893.08,34746563.67,35166376.47,34832785.53,33899037.47,32517559.18,30846664.09 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Population|Low,people,6336574.264,6619388.611,7396014.512,7970927.467,8330122.294,8454555.183,8355131.58,8077978.808,7676717.955,7196616.308 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Population|Low,people,16907300.68,24957322.29,30117442.98,34715937.11,38660741.13,41881152.48,44215372.08,45605785.54,46076670.55,45823820.67 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Population|Low,people,7306580.371,12021500,14929600,17731400,20192300,22210600,23754600,24726500,25101600,24972900 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Population|Low,people,357858.7824,597196.4436,737395.6716,870095.0417,993994.4697,1103293.769,1194893.374,1273593.218,1342192.835,1398592.515 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Population|Low,people,53514.0008,76044.57192,72993.30135,68223.21298,62039.96846,54666.1724,47211.43424,40808.23282,35205.74273,30202.10051 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Population|Low,people,16530392.69,21890107.52,26400600.61,30415958.28,33777689.23,36291586.51,37902049.22,38604370.02,38394528.31,37450066.09 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Population|Low,people,668456.8113,625863.4758,621404.5205,609820.4892,593382.9155,576060.7357,557523.9414,538262.6077,519672.0802,502646.5514 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Population|Low,people,5153074.179,7889725.2,9449989.393,10857373.96,12000279.88,12845503.1,13399248.92,13646311.22,13598703.56,13329038.62 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Population|Low,people,831012721.8,909800534.4,913487085.8,885991864.8,840680942.7,777829868.7,708045279.7,641302847.4,580120559.9,526731630.6 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Population|Low,people,2405669.887,2341269.863,2265724.358,2156611.303,2035760.451,1893830.028,1752395.846,1618890.584,1504989.873,1422252.185 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Population|Low,people,4312.110062,103300,108400,110700,109900,107200,104100,100900,97000,92800 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Population|Low,people,1604332.303,2136242.135,2320480.027,2451828.886,2525605.492,2542234.945,2506972.854,2425414.351,2311984.022,2175379.85 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Population|Low,people,23128305.87,23165675.91,22058864.33,21004660.4,20182240.42,19419107,18696564.63,18170134.05,17981930.87,17932521.9 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Population|Low,people,181070.7562,1505200,1740100,1949100,2121900,2231100,2285200,2314000,2354000,2405200 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Population|Low,people,5301566.711,6664496.09,7346196.16,7857396.298,8243696.456,8417296.636,8385696.849,8264497.035,8095297.206,7849697.38 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Population|Low,people,80868358.07,116671672.4,125810427.9,131445876.7,133578126.6,132784132.3,129951007.5,125532162.4,119859851.4,113317932.7 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Population|Low,people,3998303.382,4961993.425,5768383.722,6437313.877,6915409.186,7216075.395,7317908.681,7204125.818,6906428.281,6497984.216 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Population|Low,people,67619472.61,80610073.5,86692492.61,92194397.28,97091729.25,102142569.6,107597244.9,112921396.7,117812261.5,122658984 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Population|Low,people,51502554.93,66037495.71,70130146.02,71782510.48,71869470.92,70155495.02,66897451.46,62814150.59,58370286.74,54030555.35 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Population|Low,people,15456508.53,20121000,25746000,31415600,36468400,40637500,43830400,45851200,46638400,46342900 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Population|Low,people,24975441.13,25025121.66,24119063,23171796.99,22589930.96,22125291.69,21654358.48,21414286.45,21489591.08,21655926.16 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Population|Low,people,4742679.808,4177640.968,3776831.721,3376400.572,3021585.003,2685962.535,2363852.57,2101233.009,1902385.437,1740893.453 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Population|Low,people,90301.3572,267816.646,263046.9313,252378.2241,236230.148,219469.367,202902.4232,186349.1847,170733.9054,156624.7438 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Population|Low,people,13359747.52,12501575.53,11610066.99,10625322.46,9581133.453,8517299.902,7465007.082,6549293.81,5788799.819,5139436.826 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Population|Low,people,18517855.39,32364269.65,41592466.64,50755963.98,59105861.9,66183960.29,71761559.2,75536658.87,77283459.35,77204360.45 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Population|Low,people,7705602.425,10129308.64,9671831.042,9226221.165,8743996.367,8240427.325,7789603.169,7479183.468,7331314.694,7257922.372 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Population|Low,people,36142262.32,45161980.98,49450549.28,52674478.03,54838612.33,55814632.37,55798770.85,55041911.97,53757318.57,52128517.8 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Population|Low,people,1258593.775,1800360.635,2040560.557,2235530.576,2397041.204,2537696.7,2630920.19,2673673.362,2688600.681,2691017.907 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Population|Low,people,21060162.08,29753587.75,36573566.53,42774038.51,48023891.55,52134258.87,54992812.24,56431285.52,56423388.05,55268063.19 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Population|Low,people,821706.0395,1208756.531,1627617.445,2097167.892,2579363.987,3036417.095,3436252.796,3761012.911,3996900.4,4136208.475 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Population|Low,people,4123737.836,3747722.372,4140604.12,4411278.275,4594052.858,4656459.373,4612679.376,4485331.18,4299340.37,4056691.222 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Population|Low,people,1865652.248,1720686.379,1618451.332,1514209.067,1419217.924,1336339.112,1258557.094,1195084.98,1150610.784,1118534.095 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Population|Low,people,16040965.25,23836100,33344200,45169200,58617100,72551800,85861400,97693900,107383800,114481000 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Population|Low,people,139027069.9,167950305.4,176855032.8,180782561,180257659.7,175751749.7,168558222.7,159698982.8,150260856.7,141061341.1 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Population|Low,people,1635506.743,4319300,4921000,5409400,5785300,5972400,6056100,6178100,6347200,6477100 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Population|Low,people,963370.4312,1499101.077,1682272.03,1833262.443,1945193.549,2013775.882,2045177.905,2046317.64,2024021.606,1979799.518 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Population|Low,people,116344.3915,146212.1359,138286.6756,126353.532,112137.8934,96853.86929,80977.55321,66744.55013,53127.66029,40748.14933 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Population|Low,people,1273166.15,1500976.961,1615835.88,1689019.986,1723799.976,1722244.668,1690730.654,1638856.728,1579176.512,1520259.777 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Population|Low,people,120086.8213,159468.6005,167208.3637,174408.9617,180911.1511,184119.0506,185782.7008,188169.6558,191823.8924,195116.105 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Population|Low,people,153749668.8,205257369.1,258181427.9,318861506.5,382398245.1,442920013.3,496976586.7,542358194.1,577655653.2,603219315.6 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Population|Low,people,4723780.597,5996386.194,6719999.361,7300314.537,7719200.036,7974751.655,8079471.523,8044782.119,7896949.739,7653037.201 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Population|Low,people,7132462.748,10230971.45,11288480,12264830.7,13231103.01,14181391.99,15096635.26,15979409.36,16816314.07,17646957.14 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Population|Low,people,71277883.31,83584271.67,90327741.48,94677978.24,97366408.75,97086662.52,94287420.03,90003774.89,85516981.76,81943298.19 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Population|Low,people,30516119.68,43058700,47686800,50930400,53615900,54843500,54433800,53256900,51705800,49630900 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Population|Low,people,5492666.963,6491188.477,6699589.456,6715690.654,6572391.867,6278693.063,5851394.187,5321295.201,4726996.11,4122296.876 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Population|Low,people,15082514.91,18238427.48,19129476.81,19576036.85,19597586.26,19284018.92,18750644.05,18068115.96,17269487.76,16448089.23 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Population|Low,people,4922.610071,6051.85616,5883.794182,5619.567316,5271.069032,4886.415927,4486.115427,4093.960916,3732.290179,3413.556089 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Population|Low,people,62339976.81,67372182.65,67988925.18,66631708.56,63505514.92,59579205.32,55830975.67,52591805.78,49689201.69,47178150.7 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Population|Low,people,324652.6345,571671.8954,622529.8326,651859.8529,660926.4362,648887.8252,618939.6826,577709.5476,528421.8087,475176.3866 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Population|Low,people,31254386.94,41091900,50811500,60320100,68980000,76290900,82243000,86684900,89471000,90569700 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Population|Low,people,4782432.692,8047800,9621700,11018200,12108100,12862300,13271700,13334400,13096900,12628600 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Population|Low,people,777713.1464,666725.2331,592835.0846,526395.1725,465795.2302,408363.6655,359351.2642,320215.0823,288846.3002,263772.6249 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Population|Low,people,1846662.52,7486600,7874400,8108600,8283000,8488600,8689700,8905500,9202600,9584400 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Population|Low,people,133053,133723.9471,128987.7038,122172.9052,114935.5897,107902.722,100458.3091,93272.27403,87588.2287,83443.56865 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Population|Low,people,3405326.406,3873845.299,3760045.054,3575222.65,3376282.03,3168136.249,2936679.867,2714860.726,2555064.496,2453147.478 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Population|Low,people,27287140.32,36814850.26,39657349.09,41332750.98,42043654.89,41753160.66,40497368.48,38566177.55,36270386.94,33708996.57 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Population|Low,people,827084.376,963489.8985,911257.4775,859975.3873,812072.0827,769393.6726,732120.5415,702181.7918,680491.2758,665795.7915 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Population|Low,people,2802723.682,3166362.256,3469862.034,3671987.16,3835922.16,3907387.674,3879413.011,3816307.507,3725010.142,3576985.622 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Population|Low,people,1169316.173,1967800,2312100,2610100,2845500,2985600,3037600,3008800,2898400,2729700 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Population|Low,people,9378.180373,104155.4525,99470.70217,92305.96573,84027.48705,73838.68315,62828.51943,51890.52497,42221.1726,34421.83392 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Population|Low,people,210558.1181,314458.5599,358476.4495,394683.2833,423464.2644,444008.4109,455373.6025,458337.664,453879.4556,443831.5172 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Population|Low,people,11219570.2,16176700,20805200,25419500,29638900,33273000,36169800,38212100,39372800,39728400 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Population|Low,people,3369814.76,6294600,7111300,7731000,8198100,8571500,8800800,8840900,8778600,8717200 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Population|Low,people,24170560.71,33150792.98,36592740,39173717.7,40971944.7,41651449.62,41461829.83,40566540.02,39188178.91,37593228.78 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Population|Low,people,8769207.939,11838100,12562200,12877500,13001700,12855500,12431300,11894500,11349000,10764600 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Population|Low,people,568522.4823,1019200,1200800,1358600,1485400,1583200,1648600,1685900,1702100,1707000 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Population|Low,people,1976229.367,2667572.288,3329854.696,4000802.245,4610949.778,5104543.114,5459318.095,5670056.139,5732917.213,5653292.472 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Population|Low,people,749916.8389,1402252.808,1767472.485,2128209.259,2447744.825,2714407.43,2898144.263,2979782.457,2961907.461,2852896.215 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Population|Low,people,12387439.26,14149127,15170697.21,15752555.07,15901594.62,15687111.66,15178240.3,14454277.6,13624317.66,12795212.18 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Population|Low,people,7247318.703,10786919.18,12880611.63,14629023.93,16044829.33,16937756.27,17352404.08,17284336.46,16730605.6,15831199.85 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Population|Low,people,6404214.228,10245315,10415534.32,10227765.37,9665653.159,8879433.049,8051289.101,7219628.541,6511477.675,5977764.445 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Population|Low,people,4938616.14,5976506.626,6523692.569,6886942.044,7055294.521,7024887.346,6805099.184,6424208.487,5937132.434,5402215.544 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Population|Low,people,21641.80023,280100,269700,257800,243600,228100,214100,202100,191100,180800 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Population|Low,people,1174339.088,2757900,3277900,3768000,4203200,4519500,4697800,4775500,4860900,5038400 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Population|Low,people,38727609.87,53829697.81,69184815.64,84740071.79,98951386.03,111047812.6,120580519.8,127029116.5,130043793.3,129912287.9 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Population|Low,people,25642654.47,31101023.25,30428810.5,29749284.74,28920115.44,27852514.9,26850118.07,26337460.15,26245053.15,26282675.9 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Population|Low,people,2600771.104,836600,924000,988700,1031600,1052000,1048100,1025000,992800,955800 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Population|Low,people,34556192.72,43065995.17,51819510.91,60094407.05,67163451.11,72586815.56,76118184.01,77567868.63,77051781.23,75040018.3 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Population|Low,people,31945346.98,30596800,34239800,36879600,38881400,40094000,40352300,39713500,38215300,36226400 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Population|Low,people,25752.49942,429500,427700,415300,401000,389500,376200,360700,347400,338400 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Population|Low,people,628.5999859,224810.094,227474.8266,223980.523,219216.3134,211146.2716,201725.0476,192410.9737,181857.0197,173374.5833 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Population|Low,people,44839.26895,50559.10875,49740.40844,47694.42071,44619.64559,41017.59067,37389.11915,33840.1119,30375.49132,27093.01623 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Population|Low,people,22567976.96,29769436.65,32992380.13,35508722.67,37259680.02,38261214.07,38573431.42,38279852.85,37531725.35,36458784.25 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Population|Low,people,5103558.174,8818400,10401300,12115300,13943500,15798500,17653500,19503600,21289400,22944200 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Population|Low,people,13330258.58,18783500,24607300,30888700,37072900,42545700,47086800,50492600,52622800,53471500 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Population|Low,people,10123746.43,17132300,21366700,25521700,29389000,32638300,35163300,36966500,37942300,38044600 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Population|Low,people,4116.720093,6267.316788,7387.592611,8327.643068,9074.5316,9652.80445,9974.752326,10118.23779,9982.487783,9708.718581 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Population|Low,people,13664296.85,20473600,27173600,34728000,42576800,50012000,56427100,61529000,65195600,67286800 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Population|Low,people,11156.44026,21714.39837,20472.48341,18867.92281,17066.00511,15124.29083,13237.58533,11525.04016,10094.40463,8868.272988 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Population|Low,people,12421931.29,17419864.45,20422511.47,22931751.26,24825688.24,25958153.47,26344961.87,26081691.53,25215584.28,23858626.3 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Population|Low,people,3695.170043,22431.30029,21657.73682,20682.83539,19250.26513,17669.17733,16420.98182,15543.19179,14882.48972,14272.81856 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Population|Low,people,7767235.682,8342957.841,8582233.174,8642678.233,8676257.565,8516485.758,8223123.689,7913735.946,7568148.903,7159057.778 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Population|Low,people,18627713.55,30270629.43,34173629.59,37499742.27,40132224.06,42034644.15,43159468.98,43446121.96,42947985.86,41796639.9 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Population|Low,people,5246473.374,5407270.953,6467366.231,7475561.76,8322758.171,8934155.668,9320654.259,9470554.07,9384854.999,9094556.803 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Population|Low,people,5485.940053,16585.29822,18486.7802,20103.28898,21474.71132,22605.29125,23549.36875,24303.48006,24822.56671,25205.83054 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Population|Low,people,1925552.462,1976998.56,1907274.879,1797679.035,1672088.8,1542804.23,1407020.877,1280059.451,1177676.932,1098235.699 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Population|Low,people,277432.7254,327279.5596,330540.946,324374.4064,310241.8748,291245.8842,270765.376,249919.6714,229080.6623,209452.7821 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Population|Low,people,5586340.03,6839331.918,7622158.967,8222542.991,8645395.669,8885221.909,8920292.318,8764007.77,8455584.367,8053673.348 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Population|Low,people,16014962.48,20213065.63,19364841.76,18309151.09,17243975.77,16210233.53,15083694.21,14027050.32,13215520.29,12555483.33 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Population|Low,people,19517233.23,19773100,21879300,23704900,24679200,25057400,24979500,24287100,23021500,21269000 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Population|Low,people,5888255.994,7996792.583,9163311.901,10126591.81,10858570.81,11342614.49,11546597.66,11475084.3,11187289.81,10736690.95 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Population|Low,people,45913209.98,54219355.23,56792609.4,57429961.4,56325114.52,54170235.72,51395009.63,47960772.31,44144787.3,40553886.71 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Population|Low,people,104144791,127997358.9,140029619.4,148749711.5,153979465.9,155486375.7,153434769.9,148792181.4,142269684.8,134284372.8 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Population|Low,people,76849083.64,102360307.3,117185845,130665361.2,141904676.1,149973759.8,155335707.7,157823835.5,157704847,155012674 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Population|Low,people,6607249.164,6079635.223,5777829.436,5429237.788,5071551.535,4732897.622,4387547.453,4052464.228,3750010.058,3481989.851 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Population|Low,people,1974893.486,2402600,2726100,2970100,3133700,3198700,3176600,3101400,2988100,2845000 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Population|Low,people,5706468.499,6956396.362,7255498.622,7508714.931,7770894.69,8001839.823,8221775.866,8473017.677,8720752.94,8981841.581 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Population|Low,people,912781.7174,2265500,2811400,3310400,3745300,4091500,4335000,4473200,4500800,4434800 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Population|Low,people,7663433.893,11178906.04,11091714.08,11065019.9,10992525.33,10820031.25,10648636.24,10584939.27,10651139.81,10787739.21 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Population|Low,people,2841235.913,3553353.583,3661079.41,3701877.753,3661598.319,3553766.093,3413040.792,3244301.786,3055759.769,2846854.351 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Population|Low,people,34.52999923,47.93939781,51.24685321,55.24644885,57.92119346,56.9988195,57.65393957,58.9522066,56.07750322,55.01598285 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Population|Low,people,6209.439861,49744.27166,60681.41302,70615.15602,78785.2534,84607.15246,88100.65949,89309.55555,88081.85034,84799.44994 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Population|Low,people,62829.48027,312225.8349,309300.4399,303885.0968,292322.7098,280396.4821,272003.1133,266386.8202,262295.8091,256334.8412 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Population|Low,people,22452.75988,273700,343200,413300,478600,536500,586200,626500,656200,673600 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Population|%,%,0.024119949,0.023197892,0.022178413,0.021265673,0.020358158,0.01963808,0.019022934,0.018396135,0.017824772,0.017238477 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Population|%,%,0.055075046,0.052004364,0.048788001,0.046932493,0.045453854,0.044240562,0.042932217,0.040233764,0.039412145,0.0385501 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Population|%,%,20.26574085,20.38562352,20.40046911,20.39624232,20.383294,20.36554235,20.32794953,20.28109652,20.24021654,20.19849071 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Population|%,%,0.426660454,0.435633155,0.442409958,0.449089575,0.454890897,0.460028375,0.463999131,0.466735901,0.468593456,0.469428588 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Population|%,%,1.639380586,1.659636301,1.671110348,1.676948521,1.677631686,1.674948649,1.669994499,1.669781453,1.675864737,1.684185384 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Population|%,%,3.155935106,3.082238118,3.10720023,3.164182414,3.174751118,3.192592069,3.214729653,3.23125236,3.253990978,3.264767654 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Population|%,%,0.4586254,0.471278148,0.47998341,0.486052465,0.490214256,0.492869652,0.49494697,0.496749069,0.498335264,0.499658301 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Population|%,%,0.294779209,0.284119865,0.275923662,0.26832212,0.258991184,0.253077852,0.246788677,0.239984104,0.23305535,0.226261976 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Population|%,%,0.203354744,0.202802747,0.202103238,0.201291754,0.200445526,0.199137743,0.197769277,0.196345582,0.195049115,0.193657331 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Population|%,%,17.78521722,18.07209849,18.12241823,18.11673751,18.08158395,18.02855346,17.95432731,17.87850862,17.81690197,17.76417656 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Population|%,%,0.002248508,0.002121408,0.00202628,0.001931728,0.001840161,0.001751131,0.001668284,0.001591062,0.0015203,0.001456953 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Population|%,%,0.02313635,0.023376401,0.023513971,0.023581846,0.023600424,0.023593424,0.023570165,0.023536402,0.023493731,0.023440933 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Population|%,%,0.785919871,0.785476344,0.784919825,0.784428259,0.78404324,0.783601138,0.783212807,0.782881297,0.78266526,0.782613041 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Population|%,%,0.112781228,0.117664867,0.121479535,0.124514893,0.126834769,0.128348364,0.129522382,0.130480632,0.131211088,0.131775238 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Population|%,%,68.26155734,68.11181137,67.90216962,67.74834121,67.64255204,67.62505357,67.57909262,67.55778353,67.56144494,67.57513903 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Population|%,%,0.825952239,0.796015203,0.774283253,0.758582668,0.748146681,0.745268721,0.752596696,0.770745396,0.793815139,0.817396399 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Population|%,%,23.51303674,23.43700431,23.32265502,23.27779156,23.20462389,23.14704377,23.13853565,23.11073791,23.08724175,23.10600887 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Population|%,%,6.104421232,6.241505812,6.365507421,6.474513607,6.569123672,6.647954828,6.71537674,6.772864106,6.822056604,6.862806085 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Population|%,%,35.76768834,36.21854306,36.49485945,36.8925944,37.17597846,37.59251186,37.83326556,38.16221587,38.47651431,38.69714648 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Population|%,%,0.002206155,0.002168313,0.002022816,0.001952193,0.001853267,0.001818001,0.001763559,0.001707824,0.001707245,0.001605832 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Population|%,%,13.08981328,13.25141582,13.31016745,13.36320616,13.44396983,13.32205774,13.27379361,13.24638754,13.27189804,13.20854672 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Population|%,%,6.671251402,6.725539883,6.740820154,6.746519498,6.722083065,6.752592161,6.723570053,6.738371029,6.744633631,6.719915014 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Population|%,%,1.110359119,1.076317707,1.048875627,1.029224447,1.015830972,1.007934921,1.001011323,0.99589888,0.991260958,0.98782158 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Population|%,%,0.17364972,0.168817532,0.164620892,0.160622933,0.156995213,0.15376477,0.151012522,0.14865738,0.146794344,0.145352032 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Population|%,%,0.275745276,0.270010722,0.264618527,0.259961048,0.25583958,0.252165617,0.249138631,0.246768515,0.244631905,0.242901716 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Population|%,%,4.879367623,4.752239029,4.703022614,4.636974342,4.609966162,4.595083702,4.584195003,4.588036077,4.580476474,4.581689993 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Population|%,%,0.048402918,0.047814991,0.047389981,0.046996127,0.046568705,0.046105122,0.045713128,0.045426181,0.045240158,0.045055652 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Population|%,%,0.344000272,0.327494155,0.325410046,0.332155578,0.323048392,0.319728111,0.326669562,0.332762988,0.314390425,0.306170845 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Population|%,%,0.000969493,0.001083536,0.000956577,0.001057024,0.000987749,0.001060513,0.001004117,0.00097108,0.000959431,0.000970329 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Population|%,%,0.440901758,0.443886208,0.445849123,0.447096518,0.44777255,0.447706456,0.447197823,0.446536508,0.44577755,0.445303362 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Population|%,%,4.099043675,4.1634214,4.146477221,4.156463935,4.1384429,4.145552609,4.13904902,4.123745605,4.079647808,4.065578022 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Population|%,%,11.62658225,11.60158718,11.56242606,11.51557407,11.47398804,11.42385663,11.3893427,11.36165171,11.3421849,11.32367391 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Population|%,%,0.724348714,0.720247421,0.715148184,0.710073784,0.704683912,0.698638434,0.693441744,0.689553666,0.686208887,0.68379276 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Population|%,%,64.98014388,64.84308587,64.79430524,64.81420715,64.87350765,64.95809634,65.03214248,65.09296367,65.14100769,65.17576825 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Population|%,%,6.66807797,6.600851238,6.426492188,6.406862917,6.336635815,6.306139929,6.321876875,6.284866468,6.267734955,6.227516731 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Population|%,%,0.865509635,0.874963232,0.88058692,0.882560956,0.882124157,0.876703289,0.872678608,0.867274143,0.862332548,0.863856962 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Population|%,%,0.007656208,0.007369988,0.007143178,0.006918129,0.006720361,0.006525662,0.006333868,0.006129841,0.006017003,0.00586191 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Population|%,%,3.285110923,3.256384773,3.226094143,3.195773216,3.164606814,3.13180017,3.104982674,3.085244268,3.07066069,3.060351934 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Population|%,%,0.024001069,0.024483902,0.024843678,0.025203695,0.025475924,0.025683715,0.025911318,0.026161888,0.02639764,0.026682326 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Population|%,%,30.75945142,30.42081794,30.22863536,30.1322114,30.11081452,30.12849365,30.1854751,30.25852852,30.34597372,30.4610102 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Population|%,%,0.809088966,0.815717696,0.82000549,0.822841419,0.824102925,0.82443581,0.823882485,0.82300683,0.8223256,0.822029985 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Population|%,%,1.305357347,1.326793468,1.352133733,1.37402561,1.390933158,1.40166804,1.40163903,1.390890602,1.373724232,1.353093223 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Population|%,%,25.99644392,25.24834761,24.74694715,24.44679485,24.29127509,24.2376803,24.25100382,24.30868745,24.39732412,24.50508908 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Population|%,%,61.48059024,62.23756736,62.64337852,62.8580349,62.92502137,62.89557116,62.83255257,62.74546373,62.64144659,62.52308359 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Population|%,%,2.664257839,2.664293103,2.66577749,2.669054819,2.671449921,2.677259731,2.680084581,2.681178078,2.677357592,2.66485435 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Population|%,%,0.503380411,0.511099149,0.514813554,0.517088728,0.51869606,0.519922754,0.520838667,0.521615937,0.522248623,0.522741464 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Population|%,%,1.21314179,1.204547028,1.192793182,1.178930871,1.163784321,1.148082181,1.13333577,1.120023097,1.108283994,1.098347216 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Population|%,%,90.91503924,90.9152223,90.94191166,90.98590037,91.03768299,91.09486408,91.14836496,91.19565062,91.23501361,91.26603974 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Population|%,%,5.343811713,5.264195882,5.233585486,5.207745699,5.153087387,5.088934334,5.10232856,5.079954143,5.071180322,5.046420222 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Population|%,%,69.75378576,70.74557608,71.41326284,71.89157138,72.1946536,72.39341561,72.57010358,72.73173293,72.86918773,72.97985397 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Population|%,%,0.126827534,0.139958324,0.152259143,0.16165765,0.169277954,0.175716453,0.181681836,0.186591427,0.190360131,0.19440807 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Population|Low|%,%,5.889960744,5.897620201,5.90806359,5.924828108,5.942500087,5.958222256,5.975539288,5.995555999,6.017288912,6.042199066 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Population|Low|%,%,98.01056924,98.04522247,98.07653465,98.10428717,98.12765918,98.14672379,98.16274007,98.17636557,98.18783219,98.1981865 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Population|Low|%,%,99.99231488,99.99281977,99.99326349,99.99365033,99.99398633,99.99427115,99.99451426,99.99472373,99.99490093,99.99505967 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Population|Low|%,%,99.99998862,99.99998917,99.99998948,99.99998989,99.99999026,99.99999074,99.9999912,99.99999179,99.9999921,99.99999265 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Population|Low|%,%,91.95959815,91.89965474,91.85821994,91.83592325,91.82413762,91.81942751,91.81978243,91.82362162,91.829893,91.83783416 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Population|Low|%,%,43.4076323,43.16164992,42.94208591,42.76167311,42.61322919,42.49714857,42.40741023,42.34260518,42.2945081,42.24478709 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Population|Low|%,%,99.58533187,99.61101707,99.6332668,99.65263774,99.6690667,99.68348783,99.69515352,99.70559247,99.71440327,99.72163227 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Population|Low|%,%,0.452120692,0.390992324,0.354937717,0.342500266,0.325598446,0.323720247,0.302715343,0.297618967,0.294638627,0.286495197 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Population|Low|%,%,37.83601898,38.12020875,38.2822273,38.36547786,38.37801566,38.34275009,38.27913047,38.19498865,38.09778381,37.99202288 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Population|Low|%,%,99.99333356,99.99356203,99.99372634,99.99385938,99.99396484,99.99404898,99.99411001,99.99415133,99.99417631,99.99419248 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Population|Low|%,%,99.99852892,99.99865572,99.99875277,99.9988272,99.99889759,99.99894416,99.99897401,99.99901609,99.99903586,99.99905409 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Population|Low|%,%,92.36073907,92.3498944,92.37352131,92.41788958,92.47575707,92.54080596,92.60596491,92.6706628,92.73446905,92.79641225 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Population|Low|%,%,53.41124864,53.35314901,53.27269815,53.1734155,53.05860747,52.93793688,52.82683672,52.73298415,52.66083821,52.6185569 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Population|Low|%,%,96.53726114,96.43838132,96.40218306,96.37748357,96.38161469,96.41083194,96.43730825,96.47556762,96.52520793,96.57327591 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Population|Low|%,%,93.6819858,93.66360669,93.62616814,93.59321443,93.55982483,93.51821657,93.47079966,93.42654689,93.38802447,93.35382026 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Population|Low|%,%,92.38722245,92.14985106,91.99253595,91.88225161,91.79599747,91.72978987,91.68287226,91.65065012,91.63157047,91.62538867 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Population|Low|%,%,5.249384386,5.26487167,5.289472801,5.327102875,5.375400898,5.424488969,5.463551436,5.494710257,5.520047341,5.54079298 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Population|Low|%,%,99.99466129,99.99502183,99.99521145,99.99537675,99.99552059,99.99565003,99.99575162,99.99582937,99.99588505,99.99591853 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Population|Low|%,%,81.52364366,81.6183072,81.66944051,81.69055143,81.69072605,81.67243075,81.64174709,81.60137125,81.55778558,81.5096054 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Population|Low|%,%,95.4883671,95.57569488,95.61043868,95.60768524,95.58282021,95.53808722,95.49385343,95.45083737,95.40703842,95.38047502 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Population|Low|%,%,53.93143515,53.42342703,53.17125569,53.02003145,52.891937,52.78279177,52.66004061,52.52567544,52.40492562,52.3370857 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Population|Low|%,%,0.006169214,0.005991851,0.005854423,0.00574633,0.005639465,0.005526998,0.005439907,0.005370325,0.005279655,0.005204938 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Population|Low|%,%,99.99955075,99.99958458,99.99960507,99.99961799,99.99962619,99.99963,99.99963139,99.9996314,99.9996303,99.99962828 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Population|Low|%,%,98.53251814,98.65687966,98.74956441,98.81688008,98.87697842,98.9317364,98.98069061,99.02401921,99.06211014,99.09545848 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Population|Low|%,%,0.87653774,0.819934492,0.777883164,0.747123382,0.720162701,0.69785844,0.682011949,0.669716453,0.658436851,0.648227078 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Population|Low|%,%,99.99656845,99.99663233,99.99668299,99.9967331,99.99677661,99.99681507,99.99684608,99.99687267,99.99689416,99.99691338 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Population|Low|%,%,99.99909219,99.99911377,99.99912947,99.99914422,99.99915801,99.99917037,99.99918099,99.99918996,99.99919708,99.99920268 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Population|Low|%,%,96.89654465,96.97349289,97.02549646,97.06362422,97.08892915,97.10197129,97.10601976,97.1085329,97.10999237,97.11152141 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Population|Low|%,%,60.14808598,59.94090971,59.84599166,59.82172501,59.8431531,59.89250105,59.9623502,60.04515479,60.13831482,60.23552236 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Population|Low|%,%,98.6725425,98.76607593,98.84639016,98.91441354,98.97128683,99.01837399,99.0569025,99.08871358,99.11531548,99.13785673 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Population|Low|%,%,23.78918385,24.03526107,24.16663022,24.2241385,24.22785042,24.19263332,24.14104606,24.0774188,24.00755567,23.93223318 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Population|Low|%,%,18.50781894,18.48654733,18.4750708,18.47712678,18.47704772,18.4753763,18.47324074,18.47126505,18.47160538,18.47317543 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Population|Low|%,%,0.187233995,0.178214203,0.169451544,0.162783211,0.158267287,0.155095681,0.152440515,0.149923043,0.147345923,0.144397509 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Population|Low|%,%,99.77416509,99.78846359,99.80300127,99.81823737,99.8332204,99.84721811,99.85949484,99.87002401,99.87926618,99.88686955 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Population|Low|%,%,98.82772693,98.87897893,98.92199377,98.95752967,98.98720298,99.01147621,99.03082713,99.04600865,99.05838206,99.06832057 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Population|Low|%,%,99.17505466,99.30060946,99.40334666,99.48118611,99.53849022,99.58286852,99.61724833,99.64566017,99.67037549,99.6913522 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Population|Low|%,%,99.99961101,99.99963024,99.99964691,99.99966423,99.99968118,99.99969714,99.99971161,99.99972435,99.99973542,99.99974486 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Population|Low|%,%,14.72559409,14.23219959,13.90076164,13.66573865,13.50816889,13.44989604,13.52140592,13.72553044,13.98977311,14.25917747 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Population|Low|%,%,99.98280637,99.9834906,99.98409651,99.9846301,99.98510717,99.98551717,99.98585307,99.98611534,99.98634344,99.9865368 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Population|Low|%,%,1.1028825,1.111366,1.117903865,1.121230413,1.123810053,1.124454747,1.124098382,1.122676116,1.121477145,1.119828949 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Population|Low|%,%,66.152868,66.29680355,66.4243345,66.53749852,66.6358836,66.72829969,66.82310636,66.91635515,67.00478777,67.09072274 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Population|Low|%,%,99.99996348,99.99996856,99.99997194,99.99997408,99.99997543,99.99997994,99.99998026,99.99998024,99.99998237,99.99998569 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Population|Low|%,%,99.9995403,99.99955379,99.99956558,99.99957489,99.99958256,99.99958976,99.99959614,99.99960201,99.99960672,99.99961123 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Population|Low|%,%,86.78479442,86.91809044,87.09155528,87.29740107,87.52106677,87.75534888,87.9509189,88.12200558,88.26818817,88.39066908 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Population|Low|%,%,92.44040169,92.4392332,92.46983125,92.5055702,92.54971606,92.60800472,92.6659374,92.72563114,92.78346051,92.82842283 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Population|Low|%,%,96.02310192,96.00631761,95.99307396,95.98018549,95.96855669,95.96062809,95.95453961,95.95036785,95.94968639,95.95205031 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Population|Low|%,%,99.99938524,99.99940449,99.99941302,99.99943015,99.99944363,99.99943521,99.99944547,99.99946751,99.99946617,99.99946481 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Population|Low|%,%,0.670298804,0.667373773,0.664348527,0.661840814,0.659817162,0.658049816,0.656617213,0.655364438,0.654430492,0.653428106 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Population|Low|%,%,85.03474918,85.22160826,85.37943051,85.51326947,85.63302353,85.72903465,85.81472994,85.8911309,85.96283885,86.0298085 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Population|Low|%,%,99.55591471,99.54882707,99.55215003,99.56252885,99.57759951,99.59556288,99.61120983,99.62291462,99.63038347,99.63261673 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Population|Low|%,%,95.15419007,95.140608,95.14401894,95.15248202,95.16856247,95.18712931,95.20501429,95.22165932,95.23501872,95.24619755 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Population|Low|%,%,64.099448,64.22509339,64.34853362,64.46765886,64.58117141,64.67182791,64.7449509,64.80444539,64.85367802,64.89448911 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Population|Low|%,%,79.97223264,81.06890109,82.12716972,83.06799563,83.84170551,84.4818677,85.00998572,85.43859952,85.79840789,86.113598 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Population|Low|%,%,19.32518067,19.16582603,19.0066184,18.84891285,18.69268083,18.53251598,18.37188898,18.21907494,18.08781115,17.98280442 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Population|Low|%,%,52.86220266,53.07421906,53.26568371,53.43147383,53.5744369,53.70254007,53.82629805,53.93683783,54.03451728,54.12268065 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Population|Low|%,%,99.99993285,99.99994133,99.99994773,99.99995288,99.99995701,99.99996004,99.99996243,99.99996412,99.99996548,99.99996662 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Population|Low|%,%,42.83794331,42.95479718,43.07921259,43.20191151,43.32143201,43.43492659,43.54185263,43.6335686,43.71278751,43.7824579 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Population|Low|%,%,99.95896168,99.95957746,99.9598614,99.95984219,99.95965982,99.9594874,99.95914001,99.95873261,99.95843691,99.9582232 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Population|Low|%,%,24.18460136,24.32923344,24.46460146,24.59495812,24.71511035,24.81642517,24.90503437,24.98563912,25.05957656,25.12320201 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Population|Low|%,%,67.45412547,67.5076089,67.55931154,67.60926122,67.65758338,67.70014612,67.73677787,67.76842939,67.79824256,67.82594576 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Population|Low|%,%,17.68987967,17.47751097,17.27865201,17.10136106,16.94138515,16.79490724,16.66823834,16.55123553,16.44929638,16.36117257 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Population|Low|%,%,60.97253453,60.88346864,60.76766188,60.63828905,60.48129472,60.290966,60.10456838,59.94787621,59.82908567,59.7464978 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Population|Low|%,%,21.43304722,21.29415966,21.17077918,21.07014728,20.99263734,20.93374351,20.8919299,20.86543329,20.8466307,20.8305285 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Population|Low|%,%,64.67786473,65.03446668,65.34697858,65.61676317,65.82935486,66.00716003,66.15744022,66.27967788,66.37618469,66.44992858 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Population|Low|%,%,99.99988622,99.99990622,99.99991978,99.99992903,99.99993553,99.99993999,99.99994315,99.99994555,99.99994741,99.99994877 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Population|Low|%,%,99.25913596,99.26704596,99.27259427,99.27713393,99.28010954,99.28106077,99.27993741,99.27768223,99.27573792,99.27400317 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Population|Low|%,%,77.01012031,76.97338941,76.92668366,76.8722471,76.81941145,76.76810196,76.71484252,76.65801597,76.60978871,76.56882842 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Population|Low|%,%,5.493264206,5.457904146,5.448017912,5.449416736,5.459509231,5.475061974,5.495578316,5.520217867,5.546960543,5.57251554 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Population|Low|%,%,93.56841089,93.70205316,93.81421756,93.91104324,93.99309405,94.05897983,94.11243327,94.15665641,94.19408634,94.22630653 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Population|Low|%,%,2.546316098,2.557727694,2.558040855,2.553004247,2.544916004,2.5362274,2.527375654,2.518650682,2.509849631,2.501438421 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Population|Low|%,%,59.26688046,59.40938719,59.47263969,59.34641368,59.23300788,59.03892905,58.77896624,58.53154963,58.29060794,58.07468859 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Population|Low|%,%,18.33399141,17.9200831,17.54970486,17.21318056,16.90893837,16.64058865,16.40711652,16.20322388,16.02321135,15.86505673 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Population|Low|%,%,78.41548537,78.38800823,78.36605892,78.34091944,78.31215252,78.28118484,78.25572878,78.23610644,78.21865736,78.20357524 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Population|Low|%,%,34.94252415,35.30619588,35.57578256,35.76260081,35.88123568,35.94680356,35.97941531,35.98553837,35.98388576,35.98261606 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Population|Low|%,%,19.31998223,19.28665557,19.31647934,19.4121266,19.51581856,19.56643824,19.42839568,19.49884608,19.6187815,19.62820295 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Population|Low|%,%,29.74974232,29.6495133,29.51783635,29.37068506,29.21496807,29.05810235,28.89940267,28.74077949,28.59790858,28.47835035 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Population|Low|%,%,3.273892886,3.272291886,3.265979719,3.259310454,3.252218367,3.244045573,3.235448718,3.226779659,3.218629692,3.210889216 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Population|Low|%,%,99.9666925,99.96779187,99.96891829,99.96996668,99.97091447,99.97167633,99.97231756,99.97284712,99.97330491,99.97370066 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Population|Low|%,%,34.50313999,34.64056772,34.69550745,34.68346543,34.61773058,34.51003594,34.38292454,34.24521052,34.10178235,33.97740711 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Population|Low|%,%,40.67570779,40.7298488,40.70428983,40.68369016,40.68379675,40.64530844,40.58529854,40.52889721,40.47705534,40.4320147 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Population|Low|%,%,99.05467886,99.05380092,99.05020125,99.04579892,99.04079239,99.03477559,99.02975704,99.02625503,99.02348852,99.02094557 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Population|Low|%,%,99.99979937,99.99982248,99.99984262,99.99986084,99.99987625,99.99988952,99.99990065,99.99990981,99.9999177,99.99992422 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Population|Low|%,%,99.26257637,99.29781828,99.32643521,99.34805171,99.36462825,99.377059,99.38697071,99.3911367,99.40131669,99.4022435 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Population|Low|%,%,0.178623371,0.165600114,0.164655347,0.164223598,0.16396258,0.163797799,0.163685023,0.163607917,0.163531971,0.163468829 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Population|Low|%,%,96.64603448,96.67021938,96.69976118,96.73298079,96.76824405,96.80246269,96.83446447,96.86307354,96.88799437,96.9090804 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Population|Low|%,%,5.03416482,5.010007322,4.982072063,4.950746591,4.916766002,4.8787091,4.839965926,4.808235935,4.783093392,4.759331202 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Population|Low|%,%,17.69927161,17.69158927,17.56912796,17.51206536,17.50912417,17.53311002,17.54816213,17.52394693,17.48041032,17.38892642 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Population|Low|%,%,0.35500632,0.351646016,0.348274671,0.344743347,0.341528438,0.338771293,0.336438929,0.33438713,0.332692278,0.331310649 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Population|Low|%,%,95.81905661,96.13473544,96.41882849,96.64853617,96.82483595,96.95902827,97.06749083,97.15361888,97.22837612,97.30464789 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Population|Low|%,%,99.99955976,99.99959327,99.99961948,99.99963946,99.99965485,99.99966629,99.99967524,99.9996825,99.99968829,99.99969318 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Population|Low|%,%,23.43768113,23.28170062,23.13540869,22.97679243,22.79628562,22.61392801,22.44322803,22.27946162,22.13915723,22.03308596 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Population|Low|%,%,99.16962671,99.26522842,99.33474663,99.39332936,99.44578228,99.48537717,99.52061289,99.55151968,99.5752397,99.59586864 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Population|Low|%,%,98.09678332,98.2598609,98.38842945,98.51223664,98.62381109,98.71481704,98.78698024,98.83909519,98.87862436,98.91331587 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Population|Low|%,%,81.13572305,80.81690051,80.48416019,80.18758295,79.91399592,79.67134594,79.44410372,79.26974473,79.15581715,79.11435245 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Population|Low|%,%,99.89941132,99.90805959,99.91601021,99.92250224,99.92840398,99.93341912,99.93764376,99.94146391,99.94485794,99.94796659 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Population|Low|%,%,19.88117235,20.26599423,20.39414911,20.41777749,20.40649589,20.35864378,20.27586831,20.17727406,20.06923413,19.95655349 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Population|Low|%,%,99.76637711,99.77606432,99.78391491,99.78943402,99.79390185,99.79805984,99.80179288,99.80514661,99.80817701,99.8109441 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Population|Low|%,%,27.88385811,28.10718138,28.27384148,28.39423748,28.47727172,28.52762299,28.5527465,28.55611561,28.55730226,28.55634329 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Population|Low|%,%,93.56632266,93.69989383,93.73648515,93.73974067,93.73567561,93.72582542,93.70256975,93.67137864,93.63498562,93.59322166 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Population|Low|%,%,42.08541399,43.43701508,44.4724397,45.20679164,45.83419792,46.1926745,46.57262489,46.90446162,47.19864362,47.46329307 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Population|Low|%,%,92.64501184,92.70069685,92.76359482,92.82718987,92.89393708,92.96605984,93.02810876,93.0747948,93.10958103,93.13682989 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Population|Low|%,%,60.7995825,60.88567816,60.93323672,60.91753767,60.87825015,60.84024894,60.79948601,60.75517952,60.70974421,60.66732786 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Population|Low|%,%,52.76246817,52.6585304,52.54636279,52.43781738,52.32951438,52.22193142,52.12046485,52.02934024,51.94890264,51.87755913 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Population|Low|%,%,99.97694398,99.97770238,99.9768691,99.97721945,99.97700336,99.9774329,99.97738767,99.97791923,99.97791744,99.97764133 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Population|Low|%,%,54.7203482,49.6379099,44.88453564,40.86490111,37.5563326,35.02758321,33.26600389,32.1918979,31.41423729,30.77291149 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Population|Low|%,%,9.285841482,8.953268772,8.650505815,8.348402015,8.038127471,7.749403112,7.510871666,7.312038007,7.158965666,7.062830091 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Population|Low|%,%,89.57100623,89.68804916,89.77542831,89.84409595,89.89174784,89.92503525,89.9445304,89.9546767,89.95926577,89.95882938 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Population|Low|%,%,0.070236104,0.072153404,0.07317781,0.073650984,0.074079623,0.074814023,0.075156928,0.075792611,0.075900334,0.076119947 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Population|Low|%,%,1.626335608,1.610382555,1.593685459,1.57626757,1.559251267,1.543610005,1.52982611,1.518450614,1.508428665,1.499285374 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Population|Low|%,%,99.20738039,99.18953462,99.17306764,99.15832667,99.14610212,99.13481334,99.12580235,99.11942787,99.1170835,99.11936676 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Population|Low|%,%,5.797881228,5.902973762,5.969607724,6.015949794,6.047836986,6.059388658,6.043791615,6.001232351,5.948237299,5.895422785 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Population|Low|%,%,45.49540921,45.38927823,45.31896234,45.16072147,45.0688925,44.9295484,44.79191486,44.71820458,44.6040578,44.56640258 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Population|Low|%,%,27.68270445,27.67018541,27.67709564,27.69834907,27.72745831,27.76009694,27.79469858,27.83043631,27.86597354,27.90064163 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Population|Low|%,%,99.9994442,99.99946282,99.99947786,99.99948847,99.99949742,99.9995038,99.99950926,99.99951503,99.9995205,99.99952503 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Population|Low|%,%,5.716713456,5.850193375,5.951957566,6.024359898,6.090388918,6.141073418,6.174454312,6.190392271,6.188622963,6.185479887 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Population|Low|%,%,96.05018738,96.19494745,96.29783295,96.37996111,96.4518228,96.50971039,96.56309633,96.60826047,96.64179645,96.66716834 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Population|Low|%,%,1.27652161,1.274780744,1.270221871,1.263376357,1.252682587,1.240637619,1.228601656,1.216906173,1.207288943,1.201211129 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Population|Low|%,%,96.3577685,96.37069591,96.3976093,96.43175624,96.47371693,96.51660249,96.56190604,96.60821864,96.6540284,96.69320032 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Population|Low|%,%,15.99644355,16.02286271,16.05657679,16.09069481,16.12109326,16.14799914,16.17176275,16.19269354,16.21110566,16.22721535 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Population|Low|%,%,82.4394867,82.38680235,82.27145064,82.12969839,81.97436879,81.81461422,81.66314923,81.52117975,81.38874405,81.26530587 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Population|Low|%,%,99.78473382,99.78973459,99.79495338,99.80026275,99.80564213,99.81065303,99.81590457,99.82157349,99.82765497,99.83404447 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Population|Low|%,%,95.99726012,96.02368154,96.05649358,96.09315889,96.13082148,96.16825641,96.20241434,96.23305492,96.26000256,96.28335466 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Population|Low|%,%,99.95874168,99.95733304,99.95858294,99.95919574,99.95919778,99.95978234,99.96087923,99.96246306,99.96250536,99.96335453 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Population|Low|%,%,70.22603134,70.27505112,70.32925282,70.38800239,70.44995743,70.50766651,70.55295962,70.58812451,70.61234974,70.62573224 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Population|Low|%,%,10.3646939,10.38812327,10.40255124,10.41248677,10.41822925,10.42294373,10.42831305,10.43379997,10.44037699,10.44852143 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Population|Low|%,%,99.99819392,99.99826498,99.99832381,99.99837236,99.99841103,99.9984404,99.99846221,99.99848156,99.99849605,99.99850952 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Population|Low|%,%,16.74237824,16.72402496,16.71992971,16.72182561,16.73093378,16.74582784,16.76444973,16.78593603,16.80882185,16.83294122 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Population|Low|%,%,0.018859107,0.015837264,0.013854245,0.012645102,0.011602803,0.010283027,0.009553263,0.009124316,0.008258837,0.007852695 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Population|Low|%,%,5.526896327,5.71247952,5.827466919,5.910701935,5.956396265,5.984802466,6.004679627,6.014516502,6.015287191,6.010735039 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Population|Low|%,%,70.00191786,69.5690363,69.41212745,69.31685602,69.28720308,69.28502152,69.28250466,69.28135767,69.28045671,69.2796868 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,STP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TKM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LTU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KHM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ETH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PSE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BOL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BFA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GHA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SAU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CPV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GTM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BIH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NLD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,OMN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ALB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GAB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NZL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,YEM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,WSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SVK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LSO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VCT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TJK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AFG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LCA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CYP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PYF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LAO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CIV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ESH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CUB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ARM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ATG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UKR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BHR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TON,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,USA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VNM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BGR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ROU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MOZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KGZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KWT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LUX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ECU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,AUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BEL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,THA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HTI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,IRQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SLE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GEO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HKG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DNK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,POL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MAR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HRV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CHE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BLZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TCD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EST,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,URY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GNQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LBN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,UZB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,RWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TLS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,REU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BDI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TWN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NIC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,QAT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ITA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BTN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NPL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MLT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MDV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ISL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MWI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,TTO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ZWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,DEU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MTQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,KAZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,ERI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,NCL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MKD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,PRY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LVA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,JPN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SYR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,HND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MEX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,EGY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SGP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,SRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,BWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GRC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,LKA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GUF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,COM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,FSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,GLP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,MYT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,VIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Absolute,days/yr,30.7187254,30.7187254,30.7187254,30.7187254,30.7187254,30.7187254,30.7187254,30.7187254,30.7187254,30.7187254 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Absolute,days/yr,3.728238139,3.728238139,3.728238139,3.728238139,3.728238139,3.728238139,3.728238139,3.728238139,3.728238139,3.728238139 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Absolute,days/yr,101.2615574,101.2615574,101.2615574,101.2615574,101.2615574,101.2615574,101.2615574,101.2615574,101.2615574,101.2615574 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Absolute,days/yr,15.48189615,15.48189615,15.48189615,15.48189615,15.48189615,15.48189615,15.48189615,15.48189615,15.48189615,15.48189615 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Absolute,days/yr,60.26217512,60.26217512,60.26217512,60.26217512,60.26217512,60.26217512,60.26217512,60.26217512,60.26217512,60.26217512 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Absolute,days/yr,84.48283982,84.48283982,84.48283982,84.48283982,84.48283982,84.48283982,84.48283982,84.48283982,84.48283982,84.48283982 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Absolute,days/yr,28.75169025,28.75169025,28.75169025,28.75169025,28.75169025,28.75169025,28.75169025,28.75169025,28.75169025,28.75169025 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Absolute,days/yr,37.40702833,37.40702833,37.40702833,37.40702833,37.40702833,37.40702833,37.40702833,37.40702833,37.40702833,37.40702833 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Absolute,days/yr,55.66691154,55.66691154,55.66691154,55.66691154,55.66691154,55.66691154,55.66691154,55.66691154,55.66691154,55.66691154 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Absolute,days/yr,62.1614579,62.1614579,62.1614579,62.1614579,62.1614579,62.1614579,62.1614579,62.1614579,62.1614579,62.1614579 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Absolute,days/yr,3.369425578,3.369425578,3.369425578,3.369425578,3.369425578,3.369425578,3.369425578,3.369425578,3.369425578,3.369425578 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Absolute,days/yr,120.4486554,120.4486554,120.4486554,120.4486554,120.4486554,120.4486554,120.4486554,120.4486554,120.4486554,120.4486554 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Absolute,days/yr,57.75385334,57.75385334,57.75385334,57.75385334,57.75385334,57.75385334,57.75385334,57.75385334,57.75385334,57.75385334 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Absolute,days/yr,200.0890857,200.0890857,200.0890857,200.0890857,200.0890857,200.0890857,200.0890857,200.0890857,200.0890857,200.0890857 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Absolute,days/yr,10.03921584,10.03921584,10.03921584,10.03921584,10.03921584,10.03921584,10.03921584,10.03921584,10.03921584,10.03921584 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Absolute,days/yr,10.02350586,10.02350586,10.02350586,10.02350586,10.02350586,10.02350586,10.02350586,10.02350586,10.02350586,10.02350586 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Absolute,days/yr,28.23210509,28.23210509,28.23210509,28.23210509,28.23210509,28.23210509,28.23210509,28.23210509,28.23210509,28.23210509 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Absolute,days/yr,15.99916154,15.99916154,15.99916154,15.99916154,15.99916154,15.99916154,15.99916154,15.99916154,15.99916154,15.99916154 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Absolute,days/yr,92.07245967,92.07245967,92.07245967,92.07245967,92.07245967,92.07245967,92.07245967,92.07245967,92.07245967,92.07245967 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Absolute,days/yr,130.1772889,130.1772889,130.1772889,130.1772889,130.1772889,130.1772889,130.1772889,130.1772889,130.1772889,130.1772889 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Absolute,days/yr,36.51509286,36.51509286,36.51509286,36.51509286,36.51509286,36.51509286,36.51509286,36.51509286,36.51509286,36.51509286 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Absolute,days/yr,42.17985935,42.17985935,42.17985935,42.17985935,42.17985935,42.17985935,42.17985935,42.17985935,42.17985935,42.17985935 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Absolute,days/yr,39.02995243,39.02995243,39.02995243,39.02995243,39.02995243,39.02995243,39.02995243,39.02995243,39.02995243,39.02995243 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Absolute,days/yr,12.45589738,12.45589738,12.45589738,12.45589738,12.45589738,12.45589738,12.45589738,12.45589738,12.45589738,12.45589738 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Absolute,days/yr,11.43789823,11.43789823,11.43789823,11.43789823,11.43789823,11.43789823,11.43789823,11.43789823,11.43789823,11.43789823 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Absolute,days/yr,180.6042959,180.6042959,180.6042959,180.6042959,180.6042959,180.6042959,180.6042959,180.6042959,180.6042959,180.6042959 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Absolute,days/yr,82.05788085,82.05788085,82.05788085,82.05788085,82.05788085,82.05788085,82.05788085,82.05788085,82.05788085,82.05788085 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Absolute,days/yr,18.7920363,18.7920363,18.7920363,18.7920363,18.7920363,18.7920363,18.7920363,18.7920363,18.7920363,18.7920363 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Absolute,days/yr,37.56338727,37.56338727,37.56338727,37.56338727,37.56338727,37.56338727,37.56338727,37.56338727,37.56338727,37.56338727 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Absolute,days/yr,12.2551186,12.2551186,12.2551186,12.2551186,12.2551186,12.2551186,12.2551186,12.2551186,12.2551186,12.2551186 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Absolute,days/yr,153.1046973,153.1046973,153.1046973,153.1046973,153.1046973,153.1046973,153.1046973,153.1046973,153.1046973,153.1046973 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Absolute,days/yr,109.3265671,109.3265671,109.3265671,109.3265671,109.3265671,109.3265671,109.3265671,109.3265671,109.3265671,109.3265671 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Absolute,days/yr,2.687034768,2.687034768,2.687034768,2.687034768,2.687034768,2.687034768,2.687034768,2.687034768,2.687034768,2.687034768 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Absolute,days/yr,13.23350597,13.23350597,13.23350597,13.23350597,13.23350597,13.23350597,13.23350597,13.23350597,13.23350597,13.23350597 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Absolute,days/yr,149.8209572,149.8209572,149.8209572,149.8209572,149.8209572,149.8209572,149.8209572,149.8209572,149.8209572,149.8209572 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Absolute,days/yr,2.467692279,2.467692279,2.467692279,2.467692279,2.467692279,2.467692279,2.467692279,2.467692279,2.467692279,2.467692279 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Absolute,days/yr,113.5083492,113.5083492,113.5083492,113.5083492,113.5083492,113.5083492,113.5083492,113.5083492,113.5083492,113.5083492 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Absolute,days/yr,30.35835632,30.35835632,30.35835632,30.35835632,30.35835632,30.35835632,30.35835632,30.35835632,30.35835632,30.35835632 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Absolute,days/yr,55.6045951,55.6045951,55.6045951,55.6045951,55.6045951,55.6045951,55.6045951,55.6045951,55.6045951,55.6045951 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Absolute,days/yr,33.90899331,33.90899331,33.90899331,33.90899331,33.90899331,33.90899331,33.90899331,33.90899331,33.90899331,33.90899331 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Absolute,days/yr,4.102704878,4.102704878,4.102704878,4.102704878,4.102704878,4.102704878,4.102704878,4.102704878,4.102704878,4.102704878 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Absolute,days/yr,61.1609189,61.1609189,61.1609189,61.1609189,61.1609189,61.1609189,61.1609189,61.1609189,61.1609189,61.1609189 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Absolute,days/yr,22.0302506,22.0302506,22.0302506,22.0302506,22.0302506,22.0302506,22.0302506,22.0302506,22.0302506,22.0302506 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Absolute,days/yr,18.32355612,18.32355612,18.32355612,18.32355612,18.32355612,18.32355612,18.32355612,18.32355612,18.32355612,18.32355612 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Absolute,days/yr,49.96495255,49.96495255,49.96495255,49.96495255,49.96495255,49.96495255,49.96495255,49.96495255,49.96495255,49.96495255 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Absolute,days/yr,53.11572316,53.11572316,53.11572316,53.11572316,53.11572316,53.11572316,53.11572316,53.11572316,53.11572316,53.11572316 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Absolute,days/yr,117.1974541,117.1974541,117.1974541,117.1974541,117.1974541,117.1974541,117.1974541,117.1974541,117.1974541,117.1974541 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Absolute,days/yr,64.56759196,64.56759196,64.56759196,64.56759196,64.56759196,64.56759196,64.56759196,64.56759196,64.56759196,64.56759196 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Absolute,days/yr,212.0778563,212.0778563,212.0778563,212.0778563,212.0778563,212.0778563,212.0778563,212.0778563,212.0778563,212.0778563 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Absolute,days/yr,3.672235312,3.672235312,3.672235312,3.672235312,3.672235312,3.672235312,3.672235312,3.672235312,3.672235312,3.672235312 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Absolute,days/yr,1.213560767,1.213560767,1.213560767,1.213560767,1.213560767,1.213560767,1.213560767,1.213560767,1.213560767,1.213560767 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Absolute,days/yr,40.30554811,40.30554811,40.30554811,40.30554811,40.30554811,40.30554811,40.30554811,40.30554811,40.30554811,40.30554811 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Absolute,days/yr,3.129851103,3.129851103,3.129851103,3.129851103,3.129851103,3.129851103,3.129851103,3.129851103,3.129851103,3.129851103 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Absolute,days/yr,21.40220499,21.40220499,21.40220499,21.40220499,21.40220499,21.40220499,21.40220499,21.40220499,21.40220499,21.40220499 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Absolute,days/yr,153.3860804,153.3860804,153.3860804,153.3860804,153.3860804,153.3860804,153.3860804,153.3860804,153.3860804,153.3860804 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Absolute,days/yr,97.67976725,97.67976725,97.67976725,97.67976725,97.67976725,97.67976725,97.67976725,97.67976725,97.67976725,97.67976725 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Absolute,days/yr,52.08971462,52.08971462,52.08971462,52.08971462,52.08971462,52.08971462,52.08971462,52.08971462,52.08971462,52.08971462 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Absolute,days/yr,41.87814469,41.87814469,41.87814469,41.87814469,41.87814469,41.87814469,41.87814469,41.87814469,41.87814469,41.87814469 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Absolute,days/yr,1.160827104,1.160827104,1.160827104,1.160827104,1.160827104,1.160827104,1.160827104,1.160827104,1.160827104,1.160827104 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Absolute,days/yr,13.81724505,13.81724505,13.81724505,13.81724505,13.81724505,13.81724505,13.81724505,13.81724505,13.81724505,13.81724505 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Absolute,days/yr,61.83046898,61.83046898,61.83046898,61.83046898,61.83046898,61.83046898,61.83046898,61.83046898,61.83046898,61.83046898 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Absolute,days/yr,84.62904545,84.62904545,84.62904545,84.62904545,84.62904545,84.62904545,84.62904545,84.62904545,84.62904545,84.62904545 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Absolute,days/yr,167.5346748,167.5346748,167.5346748,167.5346748,167.5346748,167.5346748,167.5346748,167.5346748,167.5346748,167.5346748 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Absolute,days/yr,18.94699083,18.94699083,18.94699083,18.94699083,18.94699083,18.94699083,18.94699083,18.94699083,18.94699083,18.94699083 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Absolute,days/yr,69.85693651,69.85693651,69.85693651,69.85693651,69.85693651,69.85693651,69.85693651,69.85693651,69.85693651,69.85693651 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Absolute,days/yr,11.10188482,11.10188482,11.10188482,11.10188482,11.10188482,11.10188482,11.10188482,11.10188482,11.10188482,11.10188482 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Absolute,days/yr,54.0532127,54.0532127,54.0532127,54.0532127,54.0532127,54.0532127,54.0532127,54.0532127,54.0532127,54.0532127 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Absolute,days/yr,89.88332092,89.88332092,89.88332092,89.88332092,89.88332092,89.88332092,89.88332092,89.88332092,89.88332092,89.88332092 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Absolute,days/yr,18.50538084,18.50538084,18.50538084,18.50538084,18.50538084,18.50538084,18.50538084,18.50538084,18.50538084,18.50538084 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Absolute,days/yr,1.20508685,1.20508685,1.20508685,1.20508685,1.20508685,1.20508685,1.20508685,1.20508685,1.20508685,1.20508685 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Absolute,days/yr,16.66542941,16.66542941,16.66542941,16.66542941,16.66542941,16.66542941,16.66542941,16.66542941,16.66542941,16.66542941 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Absolute,days/yr,24.19470381,24.19470381,24.19470381,24.19470381,24.19470381,24.19470381,24.19470381,24.19470381,24.19470381,24.19470381 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Absolute,days/yr,16.37039676,16.37039676,16.37039676,16.37039676,16.37039676,16.37039676,16.37039676,16.37039676,16.37039676,16.37039676 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Absolute,days/yr,0.59102356,0.59102356,0.59102356,0.59102356,0.59102356,0.59102356,0.59102356,0.59102356,0.59102356,0.59102356 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Absolute,days/yr,18.49047882,18.49047882,18.49047882,18.49047882,18.49047882,18.49047882,18.49047882,18.49047882,18.49047882,18.49047882 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Absolute,days/yr,258.4345074,258.4345074,258.4345074,258.4345074,258.4345074,258.4345074,258.4345074,258.4345074,258.4345074,258.4345074 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Absolute,days/yr,15.7826218,15.7826218,15.7826218,15.7826218,15.7826218,15.7826218,15.7826218,15.7826218,15.7826218,15.7826218 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Absolute,days/yr,78.50721727,78.50721727,78.50721727,78.50721727,78.50721727,78.50721727,78.50721727,78.50721727,78.50721727,78.50721727 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Absolute,days/yr,36.87165234,36.87165234,36.87165234,36.87165234,36.87165234,36.87165234,36.87165234,36.87165234,36.87165234,36.87165234 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Absolute,days/yr,19.04245352,19.04245352,19.04245352,19.04245352,19.04245352,19.04245352,19.04245352,19.04245352,19.04245352,19.04245352 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Absolute,days/yr,33.04073412,33.04073412,33.04073412,33.04073412,33.04073412,33.04073412,33.04073412,33.04073412,33.04073412,33.04073412 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Absolute,days/yr,198.8975016,198.8975016,198.8975016,198.8975016,198.8975016,198.8975016,198.8975016,198.8975016,198.8975016,198.8975016 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Absolute,days/yr,31.94007634,31.94007634,31.94007634,31.94007634,31.94007634,31.94007634,31.94007634,31.94007634,31.94007634,31.94007634 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Absolute,days/yr,24.88689268,24.88689268,24.88689268,24.88689268,24.88689268,24.88689268,24.88689268,24.88689268,24.88689268,24.88689268 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Absolute,days/yr,5.233811323,5.233811323,5.233811323,5.233811323,5.233811323,5.233811323,5.233811323,5.233811323,5.233811323,5.233811323 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Absolute,days/yr,24.04363533,24.04363533,24.04363533,24.04363533,24.04363533,24.04363533,24.04363533,24.04363533,24.04363533,24.04363533 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Absolute,days/yr,122.290825,122.290825,122.290825,122.290825,122.290825,122.290825,122.290825,122.290825,122.290825,122.290825 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Absolute,days/yr,38.94489212,38.94489212,38.94489212,38.94489212,38.94489212,38.94489212,38.94489212,38.94489212,38.94489212,38.94489212 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Absolute,days/yr,75.04129517,75.04129517,75.04129517,75.04129517,75.04129517,75.04129517,75.04129517,75.04129517,75.04129517,75.04129517 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Absolute,days/yr,7.640148788,7.640148788,7.640148788,7.640148788,7.640148788,7.640148788,7.640148788,7.640148788,7.640148788,7.640148788 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Absolute,days/yr,4.512729537,4.512729537,4.512729537,4.512729537,4.512729537,4.512729537,4.512729537,4.512729537,4.512729537,4.512729537 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Absolute,days/yr,11.7150703,11.7150703,11.7150703,11.7150703,11.7150703,11.7150703,11.7150703,11.7150703,11.7150703,11.7150703 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Absolute,days/yr,12.44819398,12.44819398,12.44819398,12.44819398,12.44819398,12.44819398,12.44819398,12.44819398,12.44819398,12.44819398 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Absolute,days/yr,61.30021038,61.30021038,61.30021038,61.30021038,61.30021038,61.30021038,61.30021038,61.30021038,61.30021038,61.30021038 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Absolute,days/yr,28.53168298,28.53168298,28.53168298,28.53168298,28.53168298,28.53168298,28.53168298,28.53168298,28.53168298,28.53168298 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Absolute,days/yr,31.98987325,31.98987325,31.98987325,31.98987325,31.98987325,31.98987325,31.98987325,31.98987325,31.98987325,31.98987325 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Absolute,days/yr,19.34601657,19.34601657,19.34601657,19.34601657,19.34601657,19.34601657,19.34601657,19.34601657,19.34601657,19.34601657 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Absolute,days/yr,237.3967008,237.3967008,237.3967008,237.3967008,237.3967008,237.3967008,237.3967008,237.3967008,237.3967008,237.3967008 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Absolute,days/yr,52.04786453,52.04786453,52.04786453,52.04786453,52.04786453,52.04786453,52.04786453,52.04786453,52.04786453,52.04786453 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Absolute,days/yr,93.61676728,93.61676728,93.61676728,93.61676728,93.61676728,93.61676728,93.61676728,93.61676728,93.61676728,93.61676728 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Absolute,days/yr,25.76479256,25.76479256,25.76479256,25.76479256,25.76479256,25.76479256,25.76479256,25.76479256,25.76479256,25.76479256 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Absolute,days/yr,20.01261933,20.01261933,20.01261933,20.01261933,20.01261933,20.01261933,20.01261933,20.01261933,20.01261933,20.01261933 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Absolute,days/yr,24.18812133,24.18812133,24.18812133,24.18812133,24.18812133,24.18812133,24.18812133,24.18812133,24.18812133,24.18812133 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Absolute,days/yr,4.187697633,4.187697633,4.187697633,4.187697633,4.187697633,4.187697633,4.187697633,4.187697633,4.187697633,4.187697633 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Absolute,days/yr,12.58747611,12.58747611,12.58747611,12.58747611,12.58747611,12.58747611,12.58747611,12.58747611,12.58747611,12.58747611 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Absolute,days/yr,126.2544941,126.2544941,126.2544941,126.2544941,126.2544941,126.2544941,126.2544941,126.2544941,126.2544941,126.2544941 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Absolute,days/yr,20.25674703,20.25674703,20.25674703,20.25674703,20.25674703,20.25674703,20.25674703,20.25674703,20.25674703,20.25674703 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Absolute,days/yr,14.12486484,14.12486484,14.12486484,14.12486484,14.12486484,14.12486484,14.12486484,14.12486484,14.12486484,14.12486484 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Absolute,days/yr,94.92834884,94.92834884,94.92834884,94.92834884,94.92834884,94.92834884,94.92834884,94.92834884,94.92834884,94.92834884 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Absolute,days/yr,134.360029,134.360029,134.360029,134.360029,134.360029,134.360029,134.360029,134.360029,134.360029,134.360029 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Absolute,days/yr,201.5882042,201.5882042,201.5882042,201.5882042,201.5882042,201.5882042,201.5882042,201.5882042,201.5882042,201.5882042 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Absolute,days/yr,51.03407792,51.03407792,51.03407792,51.03407792,51.03407792,51.03407792,51.03407792,51.03407792,51.03407792,51.03407792 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Absolute,days/yr,87.78855418,87.78855418,87.78855418,87.78855418,87.78855418,87.78855418,87.78855418,87.78855418,87.78855418,87.78855418 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Absolute,days/yr,5.750672348,5.750672348,5.750672348,5.750672348,5.750672348,5.750672348,5.750672348,5.750672348,5.750672348,5.750672348 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Absolute,days/yr,12.81124472,12.81124472,12.81124472,12.81124472,12.81124472,12.81124472,12.81124472,12.81124472,12.81124472,12.81124472 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Absolute,days/yr,64.1151178,64.1151178,64.1151178,64.1151178,64.1151178,64.1151178,64.1151178,64.1151178,64.1151178,64.1151178 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Absolute,days/yr,14.04304801,14.04304801,14.04304801,14.04304801,14.04304801,14.04304801,14.04304801,14.04304801,14.04304801,14.04304801 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Absolute,days/yr,140.8116287,140.8116287,140.8116287,140.8116287,140.8116287,140.8116287,140.8116287,140.8116287,140.8116287,140.8116287 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Absolute,days/yr,55.25241176,55.25241176,55.25241176,55.25241176,55.25241176,55.25241176,55.25241176,55.25241176,55.25241176,55.25241176 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Absolute,days/yr,15.79757499,15.79757499,15.79757499,15.79757499,15.79757499,15.79757499,15.79757499,15.79757499,15.79757499,15.79757499 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Absolute,days/yr,5.034028167,5.034028167,5.034028167,5.034028167,5.034028167,5.034028167,5.034028167,5.034028167,5.034028167,5.034028167 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Absolute,days/yr,11.51524903,11.51524903,11.51524903,11.51524903,11.51524903,11.51524903,11.51524903,11.51524903,11.51524903,11.51524903 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Absolute,days/yr,18.68806941,18.68806941,18.68806941,18.68806941,18.68806941,18.68806941,18.68806941,18.68806941,18.68806941,18.68806941 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Absolute,days/yr,18.63482041,18.63482041,18.63482041,18.63482041,18.63482041,18.63482041,18.63482041,18.63482041,18.63482041,18.63482041 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Absolute,days/yr,94.1220551,94.1220551,94.1220551,94.1220551,94.1220551,94.1220551,94.1220551,94.1220551,94.1220551,94.1220551 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Absolute,days/yr,12.58635903,12.58635903,12.58635903,12.58635903,12.58635903,12.58635903,12.58635903,12.58635903,12.58635903,12.58635903 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Absolute,days/yr,92.46746087,92.46746087,92.46746087,92.46746087,92.46746087,92.46746087,92.46746087,92.46746087,92.46746087,92.46746087 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Absolute,days/yr,90.75499436,90.75499436,90.75499436,90.75499436,90.75499436,90.75499436,90.75499436,90.75499436,90.75499436,90.75499436 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Absolute,days/yr,0.660192775,0.660192775,0.660192775,0.660192775,0.660192775,0.660192775,0.660192775,0.660192775,0.660192775,0.660192775 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Absolute,days/yr,10.17894825,10.17894825,10.17894825,10.17894825,10.17894825,10.17894825,10.17894825,10.17894825,10.17894825,10.17894825 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Absolute,days/yr,2.661141545,2.661141545,2.661141545,2.661141545,2.661141545,2.661141545,2.661141545,2.661141545,2.661141545,2.661141545 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Absolute,days/yr,13.59653283,13.59653283,13.59653283,13.59653283,13.59653283,13.59653283,13.59653283,13.59653283,13.59653283,13.59653283 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Absolute,days/yr,227.0320828,227.0320828,227.0320828,227.0320828,227.0320828,227.0320828,227.0320828,227.0320828,227.0320828,227.0320828 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Absolute,days/yr,12.84832407,12.84832407,12.84832407,12.84832407,12.84832407,12.84832407,12.84832407,12.84832407,12.84832407,12.84832407 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Absolute,days/yr,20.65596007,20.65596007,20.65596007,20.65596007,20.65596007,20.65596007,20.65596007,20.65596007,20.65596007,20.65596007 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Absolute,days/yr,12.4769866,12.4769866,12.4769866,12.4769866,12.4769866,12.4769866,12.4769866,12.4769866,12.4769866,12.4769866 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Absolute,days/yr,52.05338713,52.05338713,52.05338713,52.05338713,52.05338713,52.05338713,52.05338713,52.05338713,52.05338713,52.05338713 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Absolute,days/yr,82.57786564,82.57786564,82.57786564,82.57786564,82.57786564,82.57786564,82.57786564,82.57786564,82.57786564,82.57786564 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Absolute,days/yr,78.4110611,78.4110611,78.4110611,78.4110611,78.4110611,78.4110611,78.4110611,78.4110611,78.4110611,78.4110611 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Absolute,days/yr,53.47947233,53.47947233,53.47947233,53.47947233,53.47947233,53.47947233,53.47947233,53.47947233,53.47947233,53.47947233 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Absolute,days/yr,23.23176412,23.23176412,23.23176412,23.23176412,23.23176412,23.23176412,23.23176412,23.23176412,23.23176412,23.23176412 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Absolute,days/yr,23.81019043,23.81019043,23.81019043,23.81019043,23.81019043,23.81019043,23.81019043,23.81019043,23.81019043,23.81019043 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Absolute,days/yr,27.93176693,27.93176693,27.93176693,27.93176693,27.93176693,27.93176693,27.93176693,27.93176693,27.93176693,27.93176693 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Absolute,days/yr,4.149683613,4.149683613,4.149683613,4.149683613,4.149683613,4.149683613,4.149683613,4.149683613,4.149683613,4.149683613 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Absolute,days/yr,31.59736683,31.59736683,31.59736683,31.59736683,31.59736683,31.59736683,31.59736683,31.59736683,31.59736683,31.59736683 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Absolute,days/yr,15.43296641,15.43296641,15.43296641,15.43296641,15.43296641,15.43296641,15.43296641,15.43296641,15.43296641,15.43296641 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Absolute,days/yr,34.36718074,34.36718074,34.36718074,34.36718074,34.36718074,34.36718074,34.36718074,34.36718074,34.36718074,34.36718074 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Absolute,days/yr,3.328610443,3.328610443,3.328610443,3.328610443,3.328610443,3.328610443,3.328610443,3.328610443,3.328610443,3.328610443 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Absolute,days/yr,90.89360653,90.89360653,90.89360653,90.89360653,90.89360653,90.89360653,90.89360653,90.89360653,90.89360653,90.89360653 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Absolute,days/yr,55.39722835,55.39722835,55.39722835,55.39722835,55.39722835,55.39722835,55.39722835,55.39722835,55.39722835,55.39722835 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Absolute,days/yr,25.56821496,25.56821496,25.56821496,25.56821496,25.56821496,25.56821496,25.56821496,25.56821496,25.56821496,25.56821496 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Absolute,days/yr,51.64156047,51.64156047,51.64156047,51.64156047,51.64156047,51.64156047,51.64156047,51.64156047,51.64156047,51.64156047 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Absolute,days/yr,234.0083112,234.0083112,234.0083112,234.0083112,234.0083112,234.0083112,234.0083112,234.0083112,234.0083112,234.0083112 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Absolute,days/yr,62.35020742,62.35020742,62.35020742,62.35020742,62.35020742,62.35020742,62.35020742,62.35020742,62.35020742,62.35020742 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Absolute,days/yr,4.561724464,4.561724464,4.561724464,4.561724464,4.561724464,4.561724464,4.561724464,4.561724464,4.561724464,4.561724464 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Absolute,days/yr,0.494330014,0.494330014,0.494330014,0.494330014,0.494330014,0.494330014,0.494330014,0.494330014,0.494330014,0.494330014 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Absolute,days/yr,20.19208933,20.19208933,20.19208933,20.19208933,20.19208933,20.19208933,20.19208933,20.19208933,20.19208933,20.19208933 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Absolute,days/yr,46.84268949,46.84268949,46.84268949,46.84268949,46.84268949,46.84268949,46.84268949,46.84268949,46.84268949,46.84268949 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Absolute,days/yr,70.1832224,70.1832224,70.1832224,70.1832224,70.1832224,70.1832224,70.1832224,70.1832224,70.1832224,70.1832224 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Absolute,days/yr,13.04701993,13.04701993,13.04701993,13.04701993,13.04701993,13.04701993,13.04701993,13.04701993,13.04701993,13.04701993 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Absolute,days/yr,138.8315604,138.8315604,138.8315604,138.8315604,138.8315604,138.8315604,138.8315604,138.8315604,138.8315604,138.8315604 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Absolute,days/yr,143.377147,143.377147,143.377147,143.377147,143.377147,143.377147,143.377147,143.377147,143.377147,143.377147 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Absolute,days/yr,11.99871375,11.99871375,11.99871375,11.99871375,11.99871375,11.99871375,11.99871375,11.99871375,11.99871375,11.99871375 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Absolute,days/yr,65.25583717,65.25583717,65.25583717,65.25583717,65.25583717,65.25583717,65.25583717,65.25583717,65.25583717,65.25583717 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Absolute,days/yr,8.500620135,8.500620135,8.500620135,8.500620135,8.500620135,8.500620135,8.500620135,8.500620135,8.500620135,8.500620135 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Absolute,days/yr,107.0340474,107.0340474,107.0340474,107.0340474,107.0340474,107.0340474,107.0340474,107.0340474,107.0340474,107.0340474 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Absolute,days/yr,17.26787802,17.26787802,17.26787802,17.26787802,17.26787802,17.26787802,17.26787802,17.26787802,17.26787802,17.26787802 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Absolute,days/yr,3.708422339,3.708422339,3.708422339,3.708422339,3.708422339,3.708422339,3.708422339,3.708422339,3.708422339,3.708422339 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Absolute,days/yr,2.681253124,2.681253124,2.681253124,2.681253124,2.681253124,2.681253124,2.681253124,2.681253124,2.681253124,2.681253124 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Absolute,days/yr,47.74125545,47.74125545,47.74125545,47.74125545,47.74125545,47.74125545,47.74125545,47.74125545,47.74125545,47.74125545 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Absolute,days/yr,17.83154594,17.83154594,17.83154594,17.83154594,17.83154594,17.83154594,17.83154594,17.83154594,17.83154594,17.83154594 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Absolute,days/yr,80.91840973,80.91840973,80.91840973,80.91840973,80.91840973,80.91840973,80.91840973,80.91840973,80.91840973,80.91840973 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Absolute,days/yr,9.212625042,9.212625042,9.212625042,9.212625042,9.212625042,9.212625042,9.212625042,9.212625042,9.212625042,9.212625042 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Absolute,days/yr,18.96382726,18.96382726,18.96382726,18.96382726,18.96382726,18.96382726,18.96382726,18.96382726,18.96382726,18.96382726 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Absolute,days/yr,23.52133453,23.52133453,23.52133453,23.52133453,23.52133453,23.52133453,23.52133453,23.52133453,23.52133453,23.52133453 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Absolute,days/yr,38.43162109,38.43162109,38.43162109,38.43162109,38.43162109,38.43162109,38.43162109,38.43162109,38.43162109,38.43162109 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Absolute,days/yr,14.09922343,14.09922343,14.09922343,14.09922343,14.09922343,14.09922343,14.09922343,14.09922343,14.09922343,14.09922343 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Absolute,days/yr,10.18274498,10.18274498,10.18274498,10.18274498,10.18274498,10.18274498,10.18274498,10.18274498,10.18274498,10.18274498 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Absolute,days/yr,108.470745,108.470745,108.470745,108.470745,108.470745,108.470745,108.470745,108.470745,108.470745,108.470745 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Absolute,days/yr,27.16861078,27.16861078,27.16861078,27.16861078,27.16861078,27.16861078,27.16861078,27.16861078,27.16861078,27.16861078 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Absolute,days/yr,79.00444206,79.00444206,79.00444206,79.00444206,79.00444206,79.00444206,79.00444206,79.00444206,79.00444206,79.00444206 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Absolute,days/yr,85.20812618,85.20812618,85.20812618,85.20812618,85.20812618,85.20812618,85.20812618,85.20812618,85.20812618,85.20812618 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Absolute,days/yr,284.8969414,284.8969414,284.8969414,284.8969414,284.8969414,284.8969414,284.8969414,284.8969414,284.8969414,284.8969414 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Absolute,days/yr,2.283225723,2.283225723,2.283225723,2.283225723,2.283225723,2.283225723,2.283225723,2.283225723,2.283225723,2.283225723 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Absolute,days/yr,19.75886386,19.75886386,19.75886386,19.75886386,19.75886386,19.75886386,19.75886386,19.75886386,19.75886386,19.75886386 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Absolute,days/yr,129.935611,129.935611,129.935611,129.935611,129.935611,129.935611,129.935611,129.935611,129.935611,129.935611 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Absolute,days/yr,14.1778027,14.1778027,14.1778027,14.1778027,14.1778027,14.1778027,14.1778027,14.1778027,14.1778027,14.1778027 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Absolute,days/yr,54.86802563,54.86802563,54.86802563,54.86802563,54.86802563,54.86802563,54.86802563,54.86802563,54.86802563,54.86802563 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Absolute,days/yr,25.50514593,25.50514593,25.50514593,25.50514593,25.50514593,25.50514593,25.50514593,25.50514593,25.50514593,25.50514593 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Absolute,days/yr,32.47923316,32.47923316,32.47923316,32.47923316,32.47923316,32.47923316,32.47923316,32.47923316,32.47923316,32.47923316 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Absolute,days/yr,19.98225609,19.98225609,19.98225609,19.98225609,19.98225609,19.98225609,19.98225609,19.98225609,19.98225609,19.98225609 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Absolute,days/yr,2.489012397,2.489012397,2.489012397,2.489012397,2.489012397,2.489012397,2.489012397,2.489012397,2.489012397,2.489012397 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Absolute,days/yr,0.304278623,0.304278623,0.304278623,0.304278623,0.304278623,0.304278623,0.304278623,0.304278623,0.304278623,0.304278623 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Absolute,days/yr,4.502419417,4.502419417,4.502419417,4.502419417,4.502419417,4.502419417,4.502419417,4.502419417,4.502419417,4.502419417 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Absolute,days/yr,4.682779131,4.682779131,4.682779131,4.682779131,4.682779131,4.682779131,4.682779131,4.682779131,4.682779131,4.682779131 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Absolute,days/yr,1.029007447,1.029007447,1.029007447,1.029007447,1.029007447,1.029007447,1.029007447,1.029007447,1.029007447,1.029007447 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Absolute|Land area weighted,days/yr,31.75805159,31.75805159,31.75805159,31.75805159,31.75805159,31.75805159,31.75805159,31.75805159,31.75805159,31.75805159 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Absolute|Land area weighted,days/yr,33.89438552,33.89438552,33.89438552,33.89438552,33.89438552,33.89438552,33.89438552,33.89438552,33.89438552,33.89438552 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Absolute|Land area weighted,days/yr,129.9201923,129.9201923,129.9201923,129.9201923,129.9201923,129.9201923,129.9201923,129.9201923,129.9201923,129.9201923 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Absolute|Land area weighted,days/yr,22.3899292,22.3899292,22.3899292,22.3899292,22.3899292,22.3899292,22.3899292,22.3899292,22.3899292,22.3899292 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Absolute|Land area weighted,days/yr,87.02364397,87.02364397,87.02364397,87.02364397,87.02364397,87.02364397,87.02364397,87.02364397,87.02364397,87.02364397 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Absolute|Land area weighted,days/yr,97.97989252,97.97989252,97.97989252,97.97989252,97.97989252,97.97989252,97.97989252,97.97989252,97.97989252,97.97989252 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Absolute|Land area weighted,days/yr,64.00962846,64.00962846,64.00962846,64.00962846,64.00962846,64.00962846,64.00962846,64.00962846,64.00962846,64.00962846 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Absolute|Land area weighted,days/yr,166.5194657,166.5194657,166.5194657,166.5194657,166.5194657,166.5194657,166.5194657,166.5194657,166.5194657,166.5194657 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Absolute|Land area weighted,days/yr,64.15179553,64.15179553,64.15179553,64.15179553,64.15179553,64.15179553,64.15179553,64.15179553,64.15179553,64.15179553 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Absolute|Land area weighted,days/yr,72.88317568,72.88317568,72.88317568,72.88317568,72.88317568,72.88317568,72.88317568,72.88317568,72.88317568,72.88317568 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Absolute|Land area weighted,days/yr,25.02372506,25.02372506,25.02372506,25.02372506,25.02372506,25.02372506,25.02372506,25.02372506,25.02372506,25.02372506 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Absolute|Land area weighted,days/yr,162.3135318,162.3135318,162.3135318,162.3135318,162.3135318,162.3135318,162.3135318,162.3135318,162.3135318,162.3135318 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Absolute|Land area weighted,days/yr,77.46466876,77.46466876,77.46466876,77.46466876,77.46466876,77.46466876,77.46466876,77.46466876,77.46466876,77.46466876 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Absolute|Land area weighted,days/yr,223.7733296,223.7733296,223.7733296,223.7733296,223.7733296,223.7733296,223.7733296,223.7733296,223.7733296,223.7733296 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Absolute|Land area weighted,days/yr,106.8332934,106.8332934,106.8332934,106.8332934,106.8332934,106.8332934,106.8332934,106.8332934,106.8332934,106.8332934 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.24000494,25.24000494,25.24000494,25.24000494,25.24000494,25.24000494,25.24000494,25.24000494,25.24000494,25.24000494 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Absolute|Land area weighted,days/yr,43.08503558,43.08503558,43.08503558,43.08503558,43.08503558,43.08503558,43.08503558,43.08503558,43.08503558,43.08503558 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Absolute|Land area weighted,days/yr,26.31052127,26.31052127,26.31052127,26.31052127,26.31052127,26.31052127,26.31052127,26.31052127,26.31052127,26.31052127 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Absolute|Land area weighted,days/yr,127.0416473,127.0416473,127.0416473,127.0416473,127.0416473,127.0416473,127.0416473,127.0416473,127.0416473,127.0416473 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Absolute|Land area weighted,days/yr,204.6021039,204.6021039,204.6021039,204.6021039,204.6021039,204.6021039,204.6021039,204.6021039,204.6021039,204.6021039 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Absolute|Land area weighted,days/yr,51.47450817,51.47450817,51.47450817,51.47450817,51.47450817,51.47450817,51.47450817,51.47450817,51.47450817,51.47450817 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Absolute|Land area weighted,days/yr,55.83373563,55.83373563,55.83373563,55.83373563,55.83373563,55.83373563,55.83373563,55.83373563,55.83373563,55.83373563 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Absolute|Land area weighted,days/yr,62.3097847,62.3097847,62.3097847,62.3097847,62.3097847,62.3097847,62.3097847,62.3097847,62.3097847,62.3097847 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Absolute|Land area weighted,days/yr,22.41697564,22.41697564,22.41697564,22.41697564,22.41697564,22.41697564,22.41697564,22.41697564,22.41697564,22.41697564 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Absolute|Land area weighted,days/yr,30.33931248,30.33931248,30.33931248,30.33931248,30.33931248,30.33931248,30.33931248,30.33931248,30.33931248,30.33931248 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Absolute|Land area weighted,days/yr,240.8365073,240.8365073,240.8365073,240.8365073,240.8365073,240.8365073,240.8365073,240.8365073,240.8365073,240.8365073 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Absolute|Land area weighted,days/yr,97.26657565,97.26657565,97.26657565,97.26657565,97.26657565,97.26657565,97.26657565,97.26657565,97.26657565,97.26657565 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Absolute|Land area weighted,days/yr,38.10447155,38.10447155,38.10447155,38.10447155,38.10447155,38.10447155,38.10447155,38.10447155,38.10447155,38.10447155 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Absolute|Land area weighted,days/yr,48.90843837,48.90843837,48.90843837,48.90843837,48.90843837,48.90843837,48.90843837,48.90843837,48.90843837,48.90843837 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Absolute|Land area weighted,days/yr,17.65043417,17.65043417,17.65043417,17.65043417,17.65043417,17.65043417,17.65043417,17.65043417,17.65043417,17.65043417 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Absolute|Land area weighted,days/yr,190.1939489,190.1939489,190.1939489,190.1939489,190.1939489,190.1939489,190.1939489,190.1939489,190.1939489,190.1939489 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Absolute|Land area weighted,days/yr,136.7328191,136.7328191,136.7328191,136.7328191,136.7328191,136.7328191,136.7328191,136.7328191,136.7328191,136.7328191 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.23486837,10.23486837,10.23486837,10.23486837,10.23486837,10.23486837,10.23486837,10.23486837,10.23486837,10.23486837 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Absolute|Land area weighted,days/yr,23.46371033,23.46371033,23.46371033,23.46371033,23.46371033,23.46371033,23.46371033,23.46371033,23.46371033,23.46371033 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Absolute|Land area weighted,days/yr,239.1202067,239.1202067,239.1202067,239.1202067,239.1202067,239.1202067,239.1202067,239.1202067,239.1202067,239.1202067 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Absolute|Land area weighted,days/yr,29.03083773,29.03083773,29.03083773,29.03083773,29.03083773,29.03083773,29.03083773,29.03083773,29.03083773,29.03083773 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Absolute|Land area weighted,days/yr,130.7169337,130.7169337,130.7169337,130.7169337,130.7169337,130.7169337,130.7169337,130.7169337,130.7169337,130.7169337 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Absolute|Land area weighted,days/yr,53.2002274,53.2002274,53.2002274,53.2002274,53.2002274,53.2002274,53.2002274,53.2002274,53.2002274,53.2002274 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Absolute|Land area weighted,days/yr,68.82107446,68.82107446,68.82107446,68.82107446,68.82107446,68.82107446,68.82107446,68.82107446,68.82107446,68.82107446 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Absolute|Land area weighted,days/yr,62.75317941,62.75317941,62.75317941,62.75317941,62.75317941,62.75317941,62.75317941,62.75317941,62.75317941,62.75317941 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01892786,41.01892786,41.01892786,41.01892786,41.01892786,41.01892786,41.01892786,41.01892786,41.01892786,41.01892786 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Absolute|Land area weighted,days/yr,74.10979653,74.10979653,74.10979653,74.10979653,74.10979653,74.10979653,74.10979653,74.10979653,74.10979653,74.10979653 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Absolute|Land area weighted,days/yr,34.70802604,34.70802604,34.70802604,34.70802604,34.70802604,34.70802604,34.70802604,34.70802604,34.70802604,34.70802604 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Absolute|Land area weighted,days/yr,23.82456934,23.82456934,23.82456934,23.82456934,23.82456934,23.82456934,23.82456934,23.82456934,23.82456934,23.82456934 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Absolute|Land area weighted,days/yr,82.4345889,82.4345889,82.4345889,82.4345889,82.4345889,82.4345889,82.4345889,82.4345889,82.4345889,82.4345889 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Absolute|Land area weighted,days/yr,64.55065604,64.55065604,64.55065604,64.55065604,64.55065604,64.55065604,64.55065604,64.55065604,64.55065604,64.55065604 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Absolute|Land area weighted,days/yr,144.5638656,144.5638656,144.5638656,144.5638656,144.5638656,144.5638656,144.5638656,144.5638656,144.5638656,144.5638656 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Absolute|Land area weighted,days/yr,106.8699284,106.8699284,106.8699284,106.8699284,106.8699284,106.8699284,106.8699284,106.8699284,106.8699284,106.8699284 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Absolute|Land area weighted,days/yr,245.5734767,245.5734767,245.5734767,245.5734767,245.5734767,245.5734767,245.5734767,245.5734767,245.5734767,245.5734767 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Absolute|Land area weighted,days/yr,15.33221684,15.33221684,15.33221684,15.33221684,15.33221684,15.33221684,15.33221684,15.33221684,15.33221684,15.33221684 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Absolute|Land area weighted,days/yr,9.318981792,9.318981792,9.318981792,9.318981792,9.318981792,9.318981792,9.318981792,9.318981792,9.318981792,9.318981792 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Absolute|Land area weighted,days/yr,106.081974,106.081974,106.081974,106.081974,106.081974,106.081974,106.081974,106.081974,106.081974,106.081974 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Absolute|Land area weighted,days/yr,31.5877545,31.5877545,31.5877545,31.5877545,31.5877545,31.5877545,31.5877545,31.5877545,31.5877545,31.5877545 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Absolute|Land area weighted,days/yr,26.81565,26.81565,26.81565,26.81565,26.81565,26.81565,26.81565,26.81565,26.81565,26.81565 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Absolute|Land area weighted,days/yr,179.8427367,179.8427367,179.8427367,179.8427367,179.8427367,179.8427367,179.8427367,179.8427367,179.8427367,179.8427367 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Absolute|Land area weighted,days/yr,123.2102158,123.2102158,123.2102158,123.2102158,123.2102158,123.2102158,123.2102158,123.2102158,123.2102158,123.2102158 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Absolute|Land area weighted,days/yr,60.99165469,60.99165469,60.99165469,60.99165469,60.99165469,60.99165469,60.99165469,60.99165469,60.99165469,60.99165469 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Absolute|Land area weighted,days/yr,63.95740921,63.95740921,63.95740921,63.95740921,63.95740921,63.95740921,63.95740921,63.95740921,63.95740921,63.95740921 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Absolute|Land area weighted,days/yr,20.4522955,20.4522955,20.4522955,20.4522955,20.4522955,20.4522955,20.4522955,20.4522955,20.4522955,20.4522955 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Absolute|Land area weighted,days/yr,20.66394638,20.66394638,20.66394638,20.66394638,20.66394638,20.66394638,20.66394638,20.66394638,20.66394638,20.66394638 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Absolute|Land area weighted,days/yr,78.68315567,78.68315567,78.68315567,78.68315567,78.68315567,78.68315567,78.68315567,78.68315567,78.68315567,78.68315567 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Absolute|Land area weighted,days/yr,127.3880299,127.3880299,127.3880299,127.3880299,127.3880299,127.3880299,127.3880299,127.3880299,127.3880299,127.3880299 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Absolute|Land area weighted,days/yr,221.6326985,221.6326985,221.6326985,221.6326985,221.6326985,221.6326985,221.6326985,221.6326985,221.6326985,221.6326985 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Absolute|Land area weighted,days/yr,35.33442946,35.33442946,35.33442946,35.33442946,35.33442946,35.33442946,35.33442946,35.33442946,35.33442946,35.33442946 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Absolute|Land area weighted,days/yr,92.0810805,92.0810805,92.0810805,92.0810805,92.0810805,92.0810805,92.0810805,92.0810805,92.0810805,92.0810805 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Absolute|Land area weighted,days/yr,29.29570674,29.29570674,29.29570674,29.29570674,29.29570674,29.29570674,29.29570674,29.29570674,29.29570674,29.29570674 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Absolute|Land area weighted,days/yr,98.03242868,98.03242868,98.03242868,98.03242868,98.03242868,98.03242868,98.03242868,98.03242868,98.03242868,98.03242868 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Absolute|Land area weighted,days/yr,95.89002486,95.89002486,95.89002486,95.89002486,95.89002486,95.89002486,95.89002486,95.89002486,95.89002486,95.89002486 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Absolute|Land area weighted,days/yr,38.73322008,38.73322008,38.73322008,38.73322008,38.73322008,38.73322008,38.73322008,38.73322008,38.73322008,38.73322008 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Absolute|Land area weighted,days/yr,30.1269605,30.1269605,30.1269605,30.1269605,30.1269605,30.1269605,30.1269605,30.1269605,30.1269605,30.1269605 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Absolute|Land area weighted,days/yr,30.03484643,30.03484643,30.03484643,30.03484643,30.03484643,30.03484643,30.03484643,30.03484643,30.03484643,30.03484643 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Absolute|Land area weighted,days/yr,30.30689535,30.30689535,30.30689535,30.30689535,30.30689535,30.30689535,30.30689535,30.30689535,30.30689535,30.30689535 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Absolute|Land area weighted,days/yr,211.2489456,211.2489456,211.2489456,211.2489456,211.2489456,211.2489456,211.2489456,211.2489456,211.2489456,211.2489456 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Absolute|Land area weighted,days/yr,14.76436754,14.76436754,14.76436754,14.76436754,14.76436754,14.76436754,14.76436754,14.76436754,14.76436754,14.76436754 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Absolute|Land area weighted,days/yr,23.26739161,23.26739161,23.26739161,23.26739161,23.26739161,23.26739161,23.26739161,23.26739161,23.26739161,23.26739161 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Absolute|Land area weighted,days/yr,287.9090951,287.9090951,287.9090951,287.9090951,287.9090951,287.9090951,287.9090951,287.9090951,287.9090951,287.9090951 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Absolute|Land area weighted,days/yr,24.47819984,24.47819984,24.47819984,24.47819984,24.47819984,24.47819984,24.47819984,24.47819984,24.47819984,24.47819984 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Absolute|Land area weighted,days/yr,99.43277475,99.43277475,99.43277475,99.43277475,99.43277475,99.43277475,99.43277475,99.43277475,99.43277475,99.43277475 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Absolute|Land area weighted,days/yr,41.26431041,41.26431041,41.26431041,41.26431041,41.26431041,41.26431041,41.26431041,41.26431041,41.26431041,41.26431041 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Absolute|Land area weighted,days/yr,23.58756302,23.58756302,23.58756302,23.58756302,23.58756302,23.58756302,23.58756302,23.58756302,23.58756302,23.58756302 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Absolute|Land area weighted,days/yr,52.3116922,52.3116922,52.3116922,52.3116922,52.3116922,52.3116922,52.3116922,52.3116922,52.3116922,52.3116922 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Absolute|Land area weighted,days/yr,231.7427231,231.7427231,231.7427231,231.7427231,231.7427231,231.7427231,231.7427231,231.7427231,231.7427231,231.7427231 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Absolute|Land area weighted,days/yr,34.72444986,34.72444986,34.72444986,34.72444986,34.72444986,34.72444986,34.72444986,34.72444986,34.72444986,34.72444986 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Absolute|Land area weighted,days/yr,39.48599656,39.48599656,39.48599656,39.48599656,39.48599656,39.48599656,39.48599656,39.48599656,39.48599656,39.48599656 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Absolute|Land area weighted,days/yr,35.33618393,35.33618393,35.33618393,35.33618393,35.33618393,35.33618393,35.33618393,35.33618393,35.33618393,35.33618393 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Absolute|Land area weighted,days/yr,30.81590149,30.81590149,30.81590149,30.81590149,30.81590149,30.81590149,30.81590149,30.81590149,30.81590149,30.81590149 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Absolute|Land area weighted,days/yr,142.4195935,142.4195935,142.4195935,142.4195935,142.4195935,142.4195935,142.4195935,142.4195935,142.4195935,142.4195935 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Absolute|Land area weighted,days/yr,67.73869065,67.73869065,67.73869065,67.73869065,67.73869065,67.73869065,67.73869065,67.73869065,67.73869065,67.73869065 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Absolute|Land area weighted,days/yr,88.67578847,88.67578847,88.67578847,88.67578847,88.67578847,88.67578847,88.67578847,88.67578847,88.67578847,88.67578847 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Absolute|Land area weighted,days/yr,22.75579064,22.75579064,22.75579064,22.75579064,22.75579064,22.75579064,22.75579064,22.75579064,22.75579064,22.75579064 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Absolute|Land area weighted,days/yr,17.07482033,17.07482033,17.07482033,17.07482033,17.07482033,17.07482033,17.07482033,17.07482033,17.07482033,17.07482033 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Absolute|Land area weighted,days/yr,17.67827777,17.67827777,17.67827777,17.67827777,17.67827777,17.67827777,17.67827777,17.67827777,17.67827777,17.67827777 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Absolute|Land area weighted,days/yr,20.98874543,20.98874543,20.98874543,20.98874543,20.98874543,20.98874543,20.98874543,20.98874543,20.98874543,20.98874543 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Absolute|Land area weighted,days/yr,78.50284505,78.50284505,78.50284505,78.50284505,78.50284505,78.50284505,78.50284505,78.50284505,78.50284505,78.50284505 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Absolute|Land area weighted,days/yr,35.95167328,35.95167328,35.95167328,35.95167328,35.95167328,35.95167328,35.95167328,35.95167328,35.95167328,35.95167328 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Absolute|Land area weighted,days/yr,45.68917473,45.68917473,45.68917473,45.68917473,45.68917473,45.68917473,45.68917473,45.68917473,45.68917473,45.68917473 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Absolute|Land area weighted,days/yr,29.21617167,29.21617167,29.21617167,29.21617167,29.21617167,29.21617167,29.21617167,29.21617167,29.21617167,29.21617167 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Absolute|Land area weighted,days/yr,274.1651947,274.1651947,274.1651947,274.1651947,274.1651947,274.1651947,274.1651947,274.1651947,274.1651947,274.1651947 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Absolute|Land area weighted,days/yr,55.69327003,55.69327003,55.69327003,55.69327003,55.69327003,55.69327003,55.69327003,55.69327003,55.69327003,55.69327003 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Absolute|Land area weighted,days/yr,197.2707339,197.2707339,197.2707339,197.2707339,197.2707339,197.2707339,197.2707339,197.2707339,197.2707339,197.2707339 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Absolute|Land area weighted,days/yr,46.33933142,46.33933142,46.33933142,46.33933142,46.33933142,46.33933142,46.33933142,46.33933142,46.33933142,46.33933142 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Absolute|Land area weighted,days/yr,28.44940619,28.44940619,28.44940619,28.44940619,28.44940619,28.44940619,28.44940619,28.44940619,28.44940619,28.44940619 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Absolute|Land area weighted,days/yr,44.01542846,44.01542846,44.01542846,44.01542846,44.01542846,44.01542846,44.01542846,44.01542846,44.01542846,44.01542846 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Absolute|Land area weighted,days/yr,22.22954322,22.22954322,22.22954322,22.22954322,22.22954322,22.22954322,22.22954322,22.22954322,22.22954322,22.22954322 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Absolute|Land area weighted,days/yr,19.96097199,19.96097199,19.96097199,19.96097199,19.96097199,19.96097199,19.96097199,19.96097199,19.96097199,19.96097199 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Absolute|Land area weighted,days/yr,148.0365269,148.0365269,148.0365269,148.0365269,148.0365269,148.0365269,148.0365269,148.0365269,148.0365269,148.0365269 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Absolute|Land area weighted,days/yr,27.64898586,27.64898586,27.64898586,27.64898586,27.64898586,27.64898586,27.64898586,27.64898586,27.64898586,27.64898586 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Absolute|Land area weighted,days/yr,21.53548998,21.53548998,21.53548998,21.53548998,21.53548998,21.53548998,21.53548998,21.53548998,21.53548998,21.53548998 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Absolute|Land area weighted,days/yr,104.5291005,104.5291005,104.5291005,104.5291005,104.5291005,104.5291005,104.5291005,104.5291005,104.5291005,104.5291005 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Absolute|Land area weighted,days/yr,152.2974935,152.2974935,152.2974935,152.2974935,152.2974935,152.2974935,152.2974935,152.2974935,152.2974935,152.2974935 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Absolute|Land area weighted,days/yr,224.7447707,224.7447707,224.7447707,224.7447707,224.7447707,224.7447707,224.7447707,224.7447707,224.7447707,224.7447707 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Absolute|Land area weighted,days/yr,95.99006818,95.99006818,95.99006818,95.99006818,95.99006818,95.99006818,95.99006818,95.99006818,95.99006818,95.99006818 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Absolute|Land area weighted,days/yr,151.1553984,151.1553984,151.1553984,151.1553984,151.1553984,151.1553984,151.1553984,151.1553984,151.1553984,151.1553984 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Absolute|Land area weighted,days/yr,19.30066653,19.30066653,19.30066653,19.30066653,19.30066653,19.30066653,19.30066653,19.30066653,19.30066653,19.30066653 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Absolute|Land area weighted,days/yr,22.3311122,22.3311122,22.3311122,22.3311122,22.3311122,22.3311122,22.3311122,22.3311122,22.3311122,22.3311122 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Absolute|Land area weighted,days/yr,87.16391813,87.16391813,87.16391813,87.16391813,87.16391813,87.16391813,87.16391813,87.16391813,87.16391813,87.16391813 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Absolute|Land area weighted,days/yr,30.15784783,30.15784783,30.15784783,30.15784783,30.15784783,30.15784783,30.15784783,30.15784783,30.15784783,30.15784783 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Absolute|Land area weighted,days/yr,173.7231174,173.7231174,173.7231174,173.7231174,173.7231174,173.7231174,173.7231174,173.7231174,173.7231174,173.7231174 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Absolute|Land area weighted,days/yr,89.54965453,89.54965453,89.54965453,89.54965453,89.54965453,89.54965453,89.54965453,89.54965453,89.54965453,89.54965453 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Absolute|Land area weighted,days/yr,26.44864209,26.44864209,26.44864209,26.44864209,26.44864209,26.44864209,26.44864209,26.44864209,26.44864209,26.44864209 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Absolute|Land area weighted,days/yr,50.34047889,50.34047889,50.34047889,50.34047889,50.34047889,50.34047889,50.34047889,50.34047889,50.34047889,50.34047889 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Absolute|Land area weighted,days/yr,24.57885902,24.57885902,24.57885902,24.57885902,24.57885902,24.57885902,24.57885902,24.57885902,24.57885902,24.57885902 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Absolute|Land area weighted,days/yr,22.77599496,22.77599496,22.77599496,22.77599496,22.77599496,22.77599496,22.77599496,22.77599496,22.77599496,22.77599496 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Absolute|Land area weighted,days/yr,32.95388532,32.95388532,32.95388532,32.95388532,32.95388532,32.95388532,32.95388532,32.95388532,32.95388532,32.95388532 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Absolute|Land area weighted,days/yr,115.4790108,115.4790108,115.4790108,115.4790108,115.4790108,115.4790108,115.4790108,115.4790108,115.4790108,115.4790108 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Absolute|Land area weighted,days/yr,28.24864242,28.24864242,28.24864242,28.24864242,28.24864242,28.24864242,28.24864242,28.24864242,28.24864242,28.24864242 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Absolute|Land area weighted,days/yr,105.2120964,105.2120964,105.2120964,105.2120964,105.2120964,105.2120964,105.2120964,105.2120964,105.2120964,105.2120964 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Absolute|Land area weighted,days/yr,195.2635808,195.2635808,195.2635808,195.2635808,195.2635808,195.2635808,195.2635808,195.2635808,195.2635808,195.2635808 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Absolute|Land area weighted,days/yr,30.65403615,30.65403615,30.65403615,30.65403615,30.65403615,30.65403615,30.65403615,30.65403615,30.65403615,30.65403615 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Absolute|Land area weighted,days/yr,19.59841432,19.59841432,19.59841432,19.59841432,19.59841432,19.59841432,19.59841432,19.59841432,19.59841432,19.59841432 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Absolute|Land area weighted,days/yr,24.19635975,24.19635975,24.19635975,24.19635975,24.19635975,24.19635975,24.19635975,24.19635975,24.19635975,24.19635975 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Absolute|Land area weighted,days/yr,30.840974,30.840974,30.840974,30.840974,30.840974,30.840974,30.840974,30.840974,30.840974,30.840974 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Absolute|Land area weighted,days/yr,253.0826005,253.0826005,253.0826005,253.0826005,253.0826005,253.0826005,253.0826005,253.0826005,253.0826005,253.0826005 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Absolute|Land area weighted,days/yr,22.82322615,22.82322615,22.82322615,22.82322615,22.82322615,22.82322615,22.82322615,22.82322615,22.82322615,22.82322615 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Absolute|Land area weighted,days/yr,26.87691078,26.87691078,26.87691078,26.87691078,26.87691078,26.87691078,26.87691078,26.87691078,26.87691078,26.87691078 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Absolute|Land area weighted,days/yr,27.35421706,27.35421706,27.35421706,27.35421706,27.35421706,27.35421706,27.35421706,27.35421706,27.35421706,27.35421706 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Absolute|Land area weighted,days/yr,129.2404232,129.2404232,129.2404232,129.2404232,129.2404232,129.2404232,129.2404232,129.2404232,129.2404232,129.2404232 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Absolute|Land area weighted,days/yr,110.7291538,110.7291538,110.7291538,110.7291538,110.7291538,110.7291538,110.7291538,110.7291538,110.7291538,110.7291538 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Absolute|Land area weighted,days/yr,118.0110538,118.0110538,118.0110538,118.0110538,118.0110538,118.0110538,118.0110538,118.0110538,118.0110538,118.0110538 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Absolute|Land area weighted,days/yr,124.3659032,124.3659032,124.3659032,124.3659032,124.3659032,124.3659032,124.3659032,124.3659032,124.3659032,124.3659032 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Absolute|Land area weighted,days/yr,45.56392799,45.56392799,45.56392799,45.56392799,45.56392799,45.56392799,45.56392799,45.56392799,45.56392799,45.56392799 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Absolute|Land area weighted,days/yr,63.55656826,63.55656826,63.55656826,63.55656826,63.55656826,63.55656826,63.55656826,63.55656826,63.55656826,63.55656826 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Absolute|Land area weighted,days/yr,33.24628345,33.24628345,33.24628345,33.24628345,33.24628345,33.24628345,33.24628345,33.24628345,33.24628345,33.24628345 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Absolute|Land area weighted,days/yr,19.0814451,19.0814451,19.0814451,19.0814451,19.0814451,19.0814451,19.0814451,19.0814451,19.0814451,19.0814451 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Absolute|Land area weighted,days/yr,64.72751034,64.72751034,64.72751034,64.72751034,64.72751034,64.72751034,64.72751034,64.72751034,64.72751034,64.72751034 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Absolute|Land area weighted,days/yr,26.61925121,26.61925121,26.61925121,26.61925121,26.61925121,26.61925121,26.61925121,26.61925121,26.61925121,26.61925121 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Absolute|Land area weighted,days/yr,52.10252513,52.10252513,52.10252513,52.10252513,52.10252513,52.10252513,52.10252513,52.10252513,52.10252513,52.10252513 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Absolute|Land area weighted,days/yr,51.2093911,51.2093911,51.2093911,51.2093911,51.2093911,51.2093911,51.2093911,51.2093911,51.2093911,51.2093911 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Absolute|Land area weighted,days/yr,233.0744069,233.0744069,233.0744069,233.0744069,233.0744069,233.0744069,233.0744069,233.0744069,233.0744069,233.0744069 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Absolute|Land area weighted,days/yr,61.76926489,61.76926489,61.76926489,61.76926489,61.76926489,61.76926489,61.76926489,61.76926489,61.76926489,61.76926489 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Absolute|Land area weighted,days/yr,41.4641362,41.4641362,41.4641362,41.4641362,41.4641362,41.4641362,41.4641362,41.4641362,41.4641362,41.4641362 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Absolute|Land area weighted,days/yr,100.0923505,100.0923505,100.0923505,100.0923505,100.0923505,100.0923505,100.0923505,100.0923505,100.0923505,100.0923505 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Absolute|Land area weighted,days/yr,259.4473786,259.4473786,259.4473786,259.4473786,259.4473786,259.4473786,259.4473786,259.4473786,259.4473786,259.4473786 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Absolute|Land area weighted,days/yr,94.17492078,94.17492078,94.17492078,94.17492078,94.17492078,94.17492078,94.17492078,94.17492078,94.17492078,94.17492078 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Absolute|Land area weighted,days/yr,82.94044665,82.94044665,82.94044665,82.94044665,82.94044665,82.94044665,82.94044665,82.94044665,82.94044665,82.94044665 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Absolute|Land area weighted,days/yr,24.7128123,24.7128123,24.7128123,24.7128123,24.7128123,24.7128123,24.7128123,24.7128123,24.7128123,24.7128123 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Absolute|Land area weighted,days/yr,28.37395981,28.37395981,28.37395981,28.37395981,28.37395981,28.37395981,28.37395981,28.37395981,28.37395981,28.37395981 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Absolute|Land area weighted,days/yr,57.5089979,57.5089979,57.5089979,57.5089979,57.5089979,57.5089979,57.5089979,57.5089979,57.5089979,57.5089979 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Absolute|Land area weighted,days/yr,179.9529666,179.9529666,179.9529666,179.9529666,179.9529666,179.9529666,179.9529666,179.9529666,179.9529666,179.9529666 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Absolute|Land area weighted,days/yr,18.98750353,18.98750353,18.98750353,18.98750353,18.98750353,18.98750353,18.98750353,18.98750353,18.98750353,18.98750353 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Absolute|Land area weighted,days/yr,168.8052575,168.8052575,168.8052575,168.8052575,168.8052575,168.8052575,168.8052575,168.8052575,168.8052575,168.8052575 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Absolute|Land area weighted,days/yr,213.5207874,213.5207874,213.5207874,213.5207874,213.5207874,213.5207874,213.5207874,213.5207874,213.5207874,213.5207874 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Absolute|Land area weighted,days/yr,17.97685222,17.97685222,17.97685222,17.97685222,17.97685222,17.97685222,17.97685222,17.97685222,17.97685222,17.97685222 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Absolute|Land area weighted,days/yr,112.0655078,112.0655078,112.0655078,112.0655078,112.0655078,112.0655078,112.0655078,112.0655078,112.0655078,112.0655078 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Absolute|Land area weighted,days/yr,26.90154774,26.90154774,26.90154774,26.90154774,26.90154774,26.90154774,26.90154774,26.90154774,26.90154774,26.90154774 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Absolute|Land area weighted,days/yr,134.2868756,134.2868756,134.2868756,134.2868756,134.2868756,134.2868756,134.2868756,134.2868756,134.2868756,134.2868756 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Absolute|Land area weighted,days/yr,21.55060148,21.55060148,21.55060148,21.55060148,21.55060148,21.55060148,21.55060148,21.55060148,21.55060148,21.55060148 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Absolute|Land area weighted,days/yr,18.88422807,18.88422807,18.88422807,18.88422807,18.88422807,18.88422807,18.88422807,18.88422807,18.88422807,18.88422807 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Absolute|Land area weighted,days/yr,26.1674827,26.1674827,26.1674827,26.1674827,26.1674827,26.1674827,26.1674827,26.1674827,26.1674827,26.1674827 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Absolute|Land area weighted,days/yr,54.40688844,54.40688844,54.40688844,54.40688844,54.40688844,54.40688844,54.40688844,54.40688844,54.40688844,54.40688844 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Absolute|Land area weighted,days/yr,34.79007216,34.79007216,34.79007216,34.79007216,34.79007216,34.79007216,34.79007216,34.79007216,34.79007216,34.79007216 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Absolute|Land area weighted,days/yr,143.5259177,143.5259177,143.5259177,143.5259177,143.5259177,143.5259177,143.5259177,143.5259177,143.5259177,143.5259177 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Absolute|Land area weighted,days/yr,27.66374099,27.66374099,27.66374099,27.66374099,27.66374099,27.66374099,27.66374099,27.66374099,27.66374099,27.66374099 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Absolute|Land area weighted,days/yr,36.31196806,36.31196806,36.31196806,36.31196806,36.31196806,36.31196806,36.31196806,36.31196806,36.31196806,36.31196806 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Absolute|Land area weighted,days/yr,35.61400794,35.61400794,35.61400794,35.61400794,35.61400794,35.61400794,35.61400794,35.61400794,35.61400794,35.61400794 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Absolute|Land area weighted,days/yr,48.50058998,48.50058998,48.50058998,48.50058998,48.50058998,48.50058998,48.50058998,48.50058998,48.50058998,48.50058998 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Absolute|Land area weighted,days/yr,22.45351581,22.45351581,22.45351581,22.45351581,22.45351581,22.45351581,22.45351581,22.45351581,22.45351581,22.45351581 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Absolute|Land area weighted,days/yr,16.80654676,16.80654676,16.80654676,16.80654676,16.80654676,16.80654676,16.80654676,16.80654676,16.80654676,16.80654676 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Absolute|Land area weighted,days/yr,149.01313,149.01313,149.01313,149.01313,149.01313,149.01313,149.01313,149.01313,149.01313,149.01313 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Absolute|Land area weighted,days/yr,41.05638262,41.05638262,41.05638262,41.05638262,41.05638262,41.05638262,41.05638262,41.05638262,41.05638262,41.05638262 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Absolute|Land area weighted,days/yr,105.5142387,105.5142387,105.5142387,105.5142387,105.5142387,105.5142387,105.5142387,105.5142387,105.5142387,105.5142387 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Absolute|Land area weighted,days/yr,101.9007005,101.9007005,101.9007005,101.9007005,101.9007005,101.9007005,101.9007005,101.9007005,101.9007005,101.9007005 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Absolute|Land area weighted,days/yr,313.9861199,313.9861199,313.9861199,313.9861199,313.9861199,313.9861199,313.9861199,313.9861199,313.9861199,313.9861199 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Absolute|Land area weighted,days/yr,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Absolute|Land area weighted,days/yr,30.44867969,30.44867969,30.44867969,30.44867969,30.44867969,30.44867969,30.44867969,30.44867969,30.44867969,30.44867969 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Absolute|Land area weighted,days/yr,158.6914255,158.6914255,158.6914255,158.6914255,158.6914255,158.6914255,158.6914255,158.6914255,158.6914255,158.6914255 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Absolute|Land area weighted,days/yr,22.25119881,22.25119881,22.25119881,22.25119881,22.25119881,22.25119881,22.25119881,22.25119881,22.25119881,22.25119881 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Absolute|Land area weighted,days/yr,209.8778283,209.8778283,209.8778283,209.8778283,209.8778283,209.8778283,209.8778283,209.8778283,209.8778283,209.8778283 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Absolute|Land area weighted,days/yr,59.34690267,59.34690267,59.34690267,59.34690267,59.34690267,59.34690267,59.34690267,59.34690267,59.34690267,59.34690267 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Absolute|Land area weighted,days/yr,49.78872736,49.78872736,49.78872736,49.78872736,49.78872736,49.78872736,49.78872736,49.78872736,49.78872736,49.78872736 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Absolute|Land area weighted,days/yr,28.77726905,28.77726905,28.77726905,28.77726905,28.77726905,28.77726905,28.77726905,28.77726905,28.77726905,28.77726905 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Absolute|Land area weighted,days/yr,23.93464846,23.93464846,23.93464846,23.93464846,23.93464846,23.93464846,23.93464846,23.93464846,23.93464846,23.93464846 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Absolute|Land area weighted,days/yr,9.676470334,9.676470334,9.676470334,9.676470334,9.676470334,9.676470334,9.676470334,9.676470334,9.676470334,9.676470334 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Absolute|Land area weighted,days/yr,19.5725967,19.5725967,19.5725967,19.5725967,19.5725967,19.5725967,19.5725967,19.5725967,19.5725967,19.5725967 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Absolute|Land area weighted,days/yr,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Absolute|Land area weighted,days/yr,25.72824102,25.72824102,25.72824102,25.72824102,25.72824102,25.72824102,25.72824102,25.72824102,25.72824102,25.72824102 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Absolute|Population weighted,days/yr,22.17505747,22.18039845,22.18761298,22.19061992,22.19610019,22.19791908,22.2001685,22.20254137,22.20202569,22.19902401 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Absolute|Population weighted,days/yr,36.66890743,36.67026872,36.67175059,36.67332167,36.67481975,36.67618923,36.67740219,36.67843277,36.67930548,36.68006331 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Absolute|Population weighted,days/yr,132.9991608,133.2653177,133.6163858,134.0034256,134.3891543,134.8110644,135.2381584,135.6792561,136.1002178,136.4289686 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Absolute|Population weighted,days/yr,22.33925827,22.3358693,22.33281219,22.3303176,22.32810182,22.32611246,22.32432151,22.32260255,22.32089198,22.31924292 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Absolute|Population weighted,days/yr,86.01932,86.01112218,86.01541479,86.02840849,86.05293281,86.08588641,86.1237508,86.16685721,86.21224644,86.25558154 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Absolute|Population weighted,days/yr,81.55179033,81.5824202,81.60057312,81.61899711,81.62950419,81.63656699,81.64505954,81.65384774,81.66200868,81.66952466 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Absolute|Population weighted,days/yr,62.68655945,62.61164355,62.53020456,62.4513916,62.38731783,62.33204662,62.28000472,62.22988852,62.18685003,62.1481267 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Absolute|Population weighted,days/yr,166.3385619,166.3517732,166.3929886,166.4463627,166.5062495,166.5675226,166.616092,166.646408,166.6610324,166.6616552 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Absolute|Population weighted,days/yr,47.84448985,47.71463988,47.59762877,47.50145414,47.42005214,47.35364554,47.3009418,47.25761219,47.22368306,47.19811484 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Absolute|Population weighted,days/yr,68.37825513,68.30304401,68.22107443,68.14592089,68.08653558,68.032446,67.97957993,67.93335362,67.89901382,67.87021271 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Absolute|Population weighted,days/yr,22.92762908,22.8967196,22.87415517,22.86164634,22.85347234,22.84426825,22.83728007,22.8339141,22.83011049,22.82458434 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Absolute|Population weighted,days/yr,162.2400991,162.1494311,162.1137706,162.1086214,162.1232974,162.14594,162.1668745,162.1870015,162.2056922,162.2232212 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Absolute|Population weighted,days/yr,59.7481379,59.92703252,60.04484202,60.11976467,60.15626269,60.16612847,60.15871257,60.13961128,60.11239983,60.07939324 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Absolute|Population weighted,days/yr,205.568389,205.7969494,205.8794675,205.9252528,205.9475357,205.9585501,205.9364018,205.8955703,205.850827,205.8044112 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Absolute|Population weighted,days/yr,99.42483039,99.46650613,99.50405014,99.53619016,99.56378205,99.58341532,99.59849098,99.61222293,99.62341242,99.6328562 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Absolute|Population weighted,days/yr,25.70203901,25.69430933,25.68829076,25.68161247,25.67467317,25.66806263,25.660844,25.65266376,25.6443715,25.63696213 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Absolute|Population weighted,days/yr,53.62397646,53.63549875,53.66368807,53.70011404,53.74823698,53.79981686,53.85322594,53.90825175,53.96259303,54.01618558 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Absolute|Population weighted,days/yr,26.28712648,26.29085266,26.2968159,26.30592632,26.31814319,26.33223518,26.34640637,26.35989123,26.3712185,26.3791334 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Absolute|Population weighted,days/yr,122.6748028,122.604386,122.5480283,122.4924882,122.4358418,122.3802923,122.3447528,122.3272094,122.3283823,122.3455964 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Absolute|Population weighted,days/yr,181.0481144,181.1199041,181.1823097,181.2282048,181.2570781,181.2723136,181.2600124,181.2247323,181.176091,181.1102073 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Absolute|Population weighted,days/yr,80.36130308,80.21539701,80.15415856,80.12557597,80.13627956,80.17544512,80.22306274,80.27877364,80.34904539,80.42053364 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Absolute|Population weighted,days/yr,57.03644321,56.96714656,56.87949035,56.80022181,56.72505983,56.64751995,56.57044976,56.50246447,56.44428901,56.39482884 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Absolute|Population weighted,days/yr,63.04119102,62.81778061,62.67179191,62.56827788,62.4865894,62.42321322,62.37789555,62.34659433,62.3288191,62.32428121 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Absolute|Population weighted,days/yr,22.88333696,22.89133438,22.89890515,22.90581413,22.9120242,22.91773322,22.92292451,22.92752449,22.93156981,22.93506747 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Absolute|Population weighted,days/yr,29.73424531,29.73864799,29.74323379,29.74832171,29.75372431,29.75875912,29.76279401,29.76601594,29.76862045,29.77075579 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Absolute|Population weighted,days/yr,185.6146405,186.0887689,186.2946529,186.4656419,186.5437344,186.6130714,186.6358834,186.6162901,186.5761348,186.5039626 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Absolute|Population weighted,days/yr,85.45077508,85.75070936,85.96859944,86.1198528,86.21809054,86.27570434,86.31567436,86.34264033,86.36391866,86.37556813 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Absolute|Population weighted,days/yr,38.7243426,38.79941538,38.8501508,38.88196537,38.89955745,38.90576172,38.90842826,38.90896713,38.90822988,38.91052336 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Absolute|Population weighted,days/yr,45.83059799,45.75054273,45.70314133,45.68605489,45.65950493,45.63451575,45.60341107,45.57709842,45.54756668,45.53937951 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Absolute|Population weighted,days/yr,19.35904625,19.36796211,19.37467028,19.38098975,19.38594985,19.39029992,19.39416508,19.39800243,19.4013595,19.40459753 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Absolute|Population weighted,days/yr,142.4597935,142.7569782,142.9789178,143.1534988,143.275931,143.3686852,143.4368449,143.4846763,143.5182506,143.5396518 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Absolute|Population weighted,days/yr,117.6490489,117.9365998,118.1550027,118.3304973,118.4939299,118.6383158,118.7684362,118.8872033,118.9937501,119.0864548 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.39286352,10.39326841,10.39151806,10.38645763,10.37871538,10.36809565,10.35808682,10.34899008,10.34121031,10.33466854 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Absolute|Population weighted,days/yr,23.77070314,23.77128443,23.77532091,23.78207925,23.78726707,23.79139163,23.79613401,23.80092344,23.80431773,23.80615314 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Absolute|Population weighted,days/yr,213.8602946,214.2293195,214.3062618,214.3152235,214.2874178,214.2363372,214.1575371,214.073316,214.0037583,213.9446975 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Absolute|Population weighted,days/yr,28.99049083,29.0073081,29.01348486,29.01694158,29.0190388,29.02030495,29.02099897,29.02138815,29.02167906,29.02190984 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Absolute|Population weighted,days/yr,130.4990923,130.5514828,130.5987533,130.6590002,130.7269394,130.7986332,130.8696434,130.9366457,130.9976111,131.0506348 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Absolute|Population weighted,days/yr,56.70662015,56.83795557,56.95444248,57.04991435,57.13204016,57.20093822,57.25675942,57.29813985,57.33007669,57.35636536 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Absolute|Population weighted,days/yr,52.32146315,52.34818926,52.37471084,52.39989328,52.42223143,52.44293596,52.4632019,52.48283065,52.50095563,52.51718447 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Absolute|Population weighted,days/yr,63.18719207,63.20514008,63.22518054,63.24587278,63.26618314,63.28498106,63.30266682,63.31952972,63.33445148,63.34787064 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Absolute|Population weighted,days/yr,44.98047837,45.02311615,45.05972788,45.09073675,45.11666279,45.13812776,45.15569121,45.17019249,45.18231913,45.19259469 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Absolute|Population weighted,days/yr,41.98886989,41.99299111,41.9831917,41.96404686,41.93896396,41.91089664,41.88387325,41.8575646,41.83303322,41.80986116 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Absolute|Population weighted,days/yr,35.54347465,35.54255383,35.54221631,35.54278409,35.54304353,35.5430918,35.54304814,35.54299442,35.54316688,35.54343278 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Absolute|Population weighted,days/yr,23.83729801,23.8372759,23.83738843,23.83776916,23.8380621,23.83845166,23.83880968,23.83901416,23.83911451,23.83905337 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Absolute|Population weighted,days/yr,96.02201036,96.74080858,97.47670154,98.23447027,98.9754828,99.69921895,100.3674309,100.9684497,101.4892181,101.895788 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Absolute|Population weighted,days/yr,63.77041633,63.87624422,63.97067163,64.04550155,64.10135767,64.1494016,64.18588996,64.21294852,64.22965938,64.23458579 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Absolute|Population weighted,days/yr,112.8826231,113.7558366,114.4511995,114.9793665,115.3583847,115.6328774,115.8313491,115.9940833,116.134467,116.2568649 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Absolute|Population weighted,days/yr,107.9175822,107.9296777,107.9377625,107.9458145,107.9535876,107.9600531,107.9643697,107.9663855,107.9659085,107.9635252 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Absolute|Population weighted,days/yr,235.069395,234.9657469,234.8324628,234.7286606,234.6552975,234.6575718,234.6260953,234.5974793,234.5845937,234.5760321 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Absolute|Population weighted,days/yr,17.41841063,17.35678873,17.31929678,17.29749118,17.28905086,17.28762077,17.29073439,17.2978681,17.30811356,17.32050805 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Absolute|Population weighted,days/yr,6.859313274,6.629177289,6.474362304,6.36454325,6.290928044,6.263837261,6.29759932,6.393595496,6.517806383,6.644451891 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Absolute|Population weighted,days/yr,108.7219181,108.7220106,108.7279278,108.738984,108.7507756,108.7648464,108.7842244,108.80795,108.8290906,108.8476089 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Absolute|Population weighted,days/yr,18.43440155,18.44636088,18.4583286,18.46964077,18.48022644,18.48954766,18.49769826,18.50464837,18.51087116,18.51609525 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Absolute|Population weighted,days/yr,26.7710988,26.77432006,26.77719696,26.78004353,26.78284157,26.78585264,26.7894957,26.79364632,26.7981488,26.8032166 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Absolute|Population weighted,days/yr,180.6613757,180.6278856,180.560853,180.5320723,180.4631783,180.405805,180.3574589,180.302501,180.2377786,180.1790456 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Absolute|Population weighted,days/yr,112.7973813,112.8490572,112.892833,112.9116696,112.9287774,112.9387769,112.9445403,112.9422987,112.9373731,112.9311273 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Absolute|Population weighted,days/yr,127.4372414,129.023696,130.564598,132.0241207,133.3864636,134.6167582,135.6703268,136.5816347,137.3645635,138.0355153 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Absolute|Population weighted,days/yr,71.55775973,71.5474639,71.58270338,71.63018393,71.68719996,71.76415889,71.84024547,71.91570311,71.98470014,72.03310482 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Absolute|Population weighted,days/yr,18.10692615,18.11491782,18.11796351,18.12100743,18.12100743,18.12109538,18.12104727,18.12102025,18.12093777,18.12099692 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Absolute|Population weighted,days/yr,22.62927725,22.6659057,22.69446119,22.71665997,22.73539294,22.75087112,22.76410005,22.77527802,22.78472053,22.79263896 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Absolute|Population weighted,days/yr,67.6157571,67.73735514,67.8272902,67.89297113,67.93697422,67.96491784,67.98487431,67.99788561,68.00834137,68.01503308 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Absolute|Population weighted,days/yr,102.9768777,103.1287899,103.2520122,103.3665078,103.4751389,103.5658651,103.6445635,103.7134955,103.7714825,103.8205245 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Absolute|Population weighted,days/yr,214.3563563,214.7260989,214.9079732,215.3506648,215.4562965,215.9397217,215.993846,216.3084235,216.5770446,216.784741 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Absolute|Population weighted,days/yr,35.0117713,35.01526159,35.01845207,35.02110639,35.02327542,35.02510803,35.02661678,35.02794724,35.0290282,35.02993705 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Absolute|Population weighted,days/yr,99.26140063,99.69673811,100.1657132,100.6235909,101.0789639,101.4776844,101.8460366,102.1844654,102.5062392,102.8074394 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Absolute|Population weighted,days/yr,28.72147339,28.74796223,28.76789596,28.78418874,28.79870567,28.81146025,28.82374858,28.83350659,28.84063924,28.846505 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Absolute|Population weighted,days/yr,89.22172177,89.35777783,89.44309487,89.48543243,89.50029887,89.49679836,89.47801167,89.44904335,89.41260608,89.3713403 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Absolute|Population weighted,days/yr,52.95559235,53.01408161,53.0698453,53.1189075,53.16229746,53.19668188,53.22399267,53.24618904,53.2643605,53.27906289 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Absolute|Population weighted,days/yr,37.93993839,38.01149195,38.07241151,38.12750763,38.18035145,38.22612082,38.26108986,38.28697261,38.3053396,38.31296047 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Absolute|Population weighted,days/yr,30.00624512,30.00625873,30.00626629,30.00627,30.00627626,30.00627661,30.00627688,30.00627688,30.00627994,30.00627611 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Absolute|Population weighted,days/yr,27.6902503,27.67041041,27.65139501,27.63363933,27.61686452,27.60015693,27.58352639,27.56806758,27.55500211,27.5453154 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Absolute|Population weighted,days/yr,30.28707225,30.31437889,30.33938515,30.36140429,30.38056074,30.39769539,30.41429345,30.42900963,30.4418888,30.45322761 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Absolute|Population weighted,days/yr,203.9301356,203.9595941,203.9806931,203.9971613,204.0095196,204.0186787,204.0248736,204.0285243,204.0303991,204.0315629 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Absolute|Population weighted,days/yr,20.3004721,20.34050494,20.40098336,20.47699078,20.56697318,20.66595737,20.75367739,20.82932475,20.89428872,20.94783851 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Absolute|Population weighted,days/yr,23.47736002,23.48108779,23.48465172,23.48760657,23.49009643,23.49240353,23.49437454,23.49614713,23.49766849,23.49894142 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Absolute|Population weighted,days/yr,170.6888107,170.9228473,171.0278386,171.2074513,171.3592023,171.1405159,171.0582223,171.0279156,171.0813431,171.0061561 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Absolute|Population weighted,days/yr,32.76719657,32.79506357,32.82594633,32.85701662,32.88797775,32.91793308,32.94682086,32.97191438,32.99397136,33.01373789 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Absolute|Population weighted,days/yr,89.09073481,89.20685577,89.32613545,89.44981374,89.54687447,89.62346174,89.68853058,89.77573529,89.85306227,89.91747765 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Absolute|Population weighted,days/yr,40.54760294,40.70670531,40.85696913,41.00382514,41.14084401,41.2583828,41.36215903,41.45710355,41.54337987,41.61904481 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Absolute|Population weighted,days/yr,24.4851346,24.48578175,24.48703746,24.48737649,24.48802515,24.48804344,24.48847835,24.48900601,24.48954817,24.49050287 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Absolute|Population weighted,days/yr,58.07612202,58.12430869,58.22504275,58.36190879,58.52701757,58.71104634,58.90220817,59.09131819,59.25800179,59.40464145 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Absolute|Population weighted,days/yr,184.7795661,184.8102777,184.826908,184.8454832,184.8489343,184.9040906,184.9000931,184.9330451,184.9531455,184.9440777 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Absolute|Population weighted,days/yr,28.54592741,28.50150203,28.46090797,28.41920056,28.37921959,28.34271021,28.30531148,28.27553222,28.24825812,28.22438824 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Absolute|Population weighted,days/yr,39.43785138,39.45688934,39.47026952,39.48175914,39.49151699,39.49914759,39.50727687,39.51625069,39.52515874,39.53377939 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Absolute|Population weighted,days/yr,28.52126183,28.44229088,28.3723272,28.31572062,28.27262886,28.24030182,28.21784417,28.20423463,28.19490799,28.18691416 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Absolute|Population weighted,days/yr,31.77277806,31.82568442,31.87231037,31.91320555,31.94580991,31.97311941,31.99650296,32.01611476,32.03197004,32.04436533 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Absolute|Population weighted,days/yr,134.1564154,134.0170425,133.9031838,133.8260055,133.7800651,133.7544169,133.7313453,133.7181497,133.7032595,133.6895756 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Absolute|Population weighted,days/yr,62.66491692,62.71028111,62.75337448,62.79002017,62.82266179,62.8542362,62.88488709,62.91281698,62.93688627,62.95813303 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Absolute|Population weighted,days/yr,74.95916822,75.03433004,75.10635309,75.17679659,75.2445184,75.30980268,75.36963946,75.42366225,75.46774566,75.50188927 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Absolute|Population weighted,days/yr,21.59037561,21.60738496,21.62564331,21.64311078,21.66036,21.67715715,21.69147064,21.70286684,21.71188769,21.71924626 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Absolute|Population weighted,days/yr,18.19207292,18.20413402,18.21841308,18.23422544,18.25091502,18.26738479,18.28227533,18.29551947,18.30706927,18.315982 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Absolute|Population weighted,days/yr,19.86453839,19.85313704,19.84701675,19.84136733,19.83665285,19.83299482,19.83094943,19.83048678,19.83114191,19.83256774 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Absolute|Population weighted,days/yr,21.82119909,21.85476299,21.88477841,21.91248735,21.93938362,21.96423023,21.98590172,22.00504299,22.02266442,22.04024269 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Absolute|Population weighted,days/yr,67.05900073,67.21763067,67.37510883,67.53158343,67.67708954,67.79807766,67.90254099,67.99731857,68.08687565,68.17005957 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Absolute|Population weighted,days/yr,30.9911308,31.12069477,31.20546528,31.25824634,31.28967537,31.30661305,31.3143802,31.31629457,31.31408022,31.30942975 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Absolute|Population weighted,days/yr,52.89715258,52.98157894,53.07097264,53.09350207,53.13786842,53.15682566,53.15104017,53.15538922,53.16620054,53.18516893 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Absolute|Population weighted,days/yr,29.07297473,29.06425015,29.05699513,29.05075351,29.04467167,29.03929833,29.03488217,29.0310031,29.02756035,29.02459416 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Absolute|Population weighted,days/yr,218.2698391,218.2238245,218.2277731,218.2176955,218.2288969,218.2437634,218.2561607,218.2749451,218.2817274,218.2925479 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Absolute|Population weighted,days/yr,44.08555241,43.99735336,43.92587807,43.85455894,43.77839524,43.69990729,43.63758943,43.58591476,43.54382334,43.50680539 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Absolute|Population weighted,days/yr,199.7306084,199.8353759,199.848313,199.8524796,199.8481669,199.8338109,199.8024246,199.7554303,199.7026041,199.6407948 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Absolute|Population weighted,days/yr,44.86598714,44.95866045,45.03618081,45.09911334,45.14928143,45.1877498,45.21808987,45.24185132,45.26146261,45.27844879 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Absolute|Population weighted,days/yr,23.22777182,23.21814922,23.22474546,23.24059375,23.25924629,23.26751888,23.24651591,23.26001571,23.27194884,23.27677021 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Absolute|Population weighted,days/yr,40.40822197,40.43616454,40.45128463,40.45723004,40.45629957,40.45024678,40.44041668,40.42772368,40.41598257,40.40737024 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Absolute|Population weighted,days/yr,22.62386122,22.63700901,22.64747434,22.65619119,22.66328002,22.66891294,22.67293408,22.6753951,22.67677555,22.67745861 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Absolute|Population weighted,days/yr,20.73705111,20.74687001,20.75583584,20.76375604,20.77059414,20.77674816,20.78241127,20.78749991,20.79220098,20.79657491 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Absolute|Population weighted,days/yr,127.6869369,128.0265876,128.3106058,128.5509407,128.743827,128.8771605,128.9746764,129.0436373,129.0886652,129.1164318 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Absolute|Population weighted,days/yr,41.97955234,42.05581353,42.08716754,42.08205321,42.04764867,41.98995278,41.92175901,41.84812228,41.7715513,41.70522238 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Absolute|Population weighted,days/yr,21.80348367,21.82326356,21.84132579,21.85882307,21.87568895,21.89059226,21.90301394,21.9135599,21.92266902,21.93008761 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Absolute|Population weighted,days/yr,38.93170053,38.91449664,38.85658442,38.82095203,38.81141721,38.77576504,38.72600769,38.69311278,38.66642587,38.64779569 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Absolute|Population weighted,days/yr,123.4772434,123.6564712,123.7657599,123.8392693,123.8840287,123.8840202,123.8902513,123.9223431,123.9568957,123.9863572 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Absolute|Population weighted,days/yr,86.88676393,87.04015458,87.00571205,87.05800795,87.02762065,87.05974284,87.06433677,87.05217015,86.96009438,86.95259692 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Absolute|Population weighted,days/yr,91.51305889,91.3932823,91.26131976,91.13092294,91.00529136,90.90305052,90.82174659,90.75490674,90.69701364,90.64415484 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Absolute|Population weighted,days/yr,136.4909468,136.5906741,136.6580815,136.7032903,136.7512426,136.7652052,136.7900529,136.8024702,136.8221249,136.8246332 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Absolute|Population weighted,days/yr,17.77842305,17.77582468,17.77563277,17.77555048,17.77549385,17.77545846,17.77544464,17.77542754,17.7754094,17.77539851 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Absolute|Population weighted,days/yr,22.7787471,22.78099757,22.78290774,22.78501739,22.78710067,22.78896184,22.79072386,22.79250813,22.79424332,22.79582767 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Absolute|Population weighted,days/yr,87.00043757,86.98034189,86.93835098,86.87391801,86.79032706,86.69763729,86.59775157,86.50182926,86.4183081,86.34491801 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Absolute|Population weighted,days/yr,30.81856394,30.85407732,30.89003108,30.92535888,30.96062577,30.99825364,31.03673599,31.06966015,31.09606633,31.11734015 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Absolute|Population weighted,days/yr,169.8713332,170.0312558,170.1679952,170.2869886,170.3867839,170.4756721,170.5554514,170.6262607,170.6866356,170.7377203 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Absolute|Population weighted,days/yr,89.18978196,89.14119329,89.10202103,89.06895845,89.04024806,89.01512418,88.99697322,88.98503491,88.97854465,88.97728055 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Absolute|Population weighted,days/yr,27.65507942,27.80200616,27.93073159,28.04279698,28.13838065,28.21939008,28.28487745,28.33378987,28.37172659,28.3972567 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Absolute|Population weighted,days/yr,50.45895152,50.45813269,50.46017579,50.46459896,50.47043766,50.47829,50.48570675,50.49199238,50.49657177,50.49800622 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Absolute|Population weighted,days/yr,25.06103758,25.07127386,25.07822064,25.08352105,25.0878635,25.0914657,25.09453443,25.09724677,25.09981815,25.10241286 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Absolute|Population weighted,days/yr,22.56743993,22.56605442,22.56471478,22.56320679,22.56124657,22.55920129,22.55739476,22.55560883,22.55403124,22.55301655 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Absolute|Population weighted,days/yr,32.84240228,32.8462921,32.84897058,32.84823738,32.84550024,32.84218227,32.83990729,32.8372036,32.8345927,32.83449744 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Absolute|Population weighted,days/yr,106.7005388,106.7758211,106.8457726,106.9082308,106.9640062,107.0150589,107.0594565,107.0955595,107.1252656,107.1499019 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Absolute|Population weighted,days/yr,28.19812054,28.18840582,28.18203109,28.17749588,28.17406995,28.17188296,28.16974989,28.16683307,28.16368669,28.1602637 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Absolute|Population weighted,days/yr,92.01983926,92.19146854,92.16272394,92.06465907,92.09868582,92.09472904,92.08074212,92.07227883,92.09212093,91.95733929 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Absolute|Population weighted,days/yr,198.3018493,198.3809655,198.4542653,198.527732,198.5926537,198.6548887,198.7144289,198.7712716,198.8280607,198.8780418 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Absolute|Population weighted,days/yr,30.46353732,30.76115089,31.01776254,31.1850293,31.32117127,31.4331964,31.50840732,31.54343653,31.57828371,31.59549698 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Absolute|Population weighted,days/yr,20.07314135,20.06869976,20.06119793,20.05542754,20.04916159,20.04182003,20.03564076,20.03163485,20.03018453,20.03018601 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Absolute|Population weighted,days/yr,29.00549057,29.05370974,29.09172519,29.1283328,29.1613234,29.18823226,29.20956964,29.22497911,29.23666719,29.24692486 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Absolute|Population weighted,days/yr,31.58015723,31.51835931,31.46503032,31.41710749,31.37399843,31.33645054,31.30102638,31.27261899,31.25364506,31.24289314 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Absolute|Population weighted,days/yr,189.3151403,189.2595658,189.0260806,188.9978821,188.9006833,188.8492537,188.8616613,188.80581,188.7737029,188.7145834 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Absolute|Population weighted,days/yr,22.5936426,22.59068726,22.58782494,22.58518207,22.58299368,22.58093557,22.57901302,22.57736771,22.57590127,22.57449729 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Absolute|Population weighted,days/yr,26.42310779,26.42496084,26.425449,26.42665194,26.42909528,26.43222336,26.4364039,26.43889971,26.4407996,26.44488891 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Absolute|Population weighted,days/yr,28.13744009,28.06658382,28.01716068,27.98250118,27.95579219,27.93554357,27.91923178,27.90720416,27.89828372,27.89433148 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Absolute|Population weighted,days/yr,134.7176231,134.7633202,134.7969727,134.8425855,134.9061274,134.9741795,135.0569625,135.1598395,135.2854414,135.4348182 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Absolute|Population weighted,days/yr,105.8415501,105.9733365,106.0781933,106.1521294,106.2099387,106.2472439,106.2656055,106.2704054,106.2673093,106.2535431 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Absolute|Population weighted,days/yr,84.59540694,84.61170209,84.60936418,84.58701696,84.55246203,84.50214754,84.45063496,84.40594847,84.36390474,84.33128593 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Absolute|Population weighted,days/yr,115.9571572,116.0666657,116.1726114,116.2642091,116.3513372,116.4377548,116.5092232,116.5666981,116.6050866,116.6254377 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Absolute|Population weighted,days/yr,44.97705683,45.05944619,45.08716647,45.09496563,45.09523227,45.08551933,45.07343982,45.06144961,45.04928139,45.0375412 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Absolute|Population weighted,days/yr,60.38547726,60.38301115,60.37123053,60.35827815,60.34410077,60.33081014,60.31625746,60.30165934,60.2886844,60.27776038 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Absolute|Population weighted,days/yr,33.86151759,34.01185577,34.12815415,34.21307694,34.27414373,34.31328607,34.33480739,34.34091134,34.3449979,34.34745711 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Absolute|Population weighted,days/yr,18.25628638,18.36614477,18.38961486,18.40024141,18.40633208,18.41027258,18.4128301,18.41493819,18.41651048,18.41774429 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Absolute|Population weighted,days/yr,62.6189429,62.66736667,62.67874468,62.67151771,62.65990301,62.64780741,62.62507246,62.59540324,62.56261992,62.52594627 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Absolute|Population weighted,days/yr,29.29146678,29.66028688,29.94042835,30.13723633,30.30538444,30.40145586,30.50329811,30.59220892,30.67106934,30.74199119 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Absolute|Population weighted,days/yr,80.23593466,80.34066887,80.46192539,80.58665408,80.71775715,80.85544769,80.98184278,81.09358229,81.19192224,81.28244052 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Absolute|Population weighted,days/yr,51.16192846,51.16045055,51.1590148,51.15760333,51.15623077,51.15497211,51.15393846,51.15308246,51.15236764,51.15176607 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Absolute|Population weighted,days/yr,232.5999151,232.5853862,232.5741437,232.5637613,232.5535797,232.5452438,232.537153,232.5286363,232.5211005,232.5141721 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Absolute|Population weighted,days/yr,62.59234092,62.60442385,62.62669279,62.64068667,62.64616762,62.6573103,62.67216281,62.68911568,62.70882488,62.73051519 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Absolute|Population weighted,days/yr,39.40445048,39.39794416,39.38935649,39.38110484,39.37207413,39.36216821,39.35275546,39.34433502,39.3371072,39.33064781 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Absolute|Population weighted,days/yr,94.11158736,94.12556097,94.13966512,94.15152798,94.16599724,94.18266428,94.19836523,94.21244625,94.227447,94.24399009 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Absolute|Population weighted,days/yr,227.9386416,227.8617545,227.8265455,227.8039804,227.808669,227.808609,227.8278502,227.844757,227.8548289,227.8905836 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Absolute|Population weighted,days/yr,107.1992635,107.4833364,107.6883781,107.8411663,107.9504134,108.0665306,108.1849908,108.3007169,108.4090129,108.5039428 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Absolute|Population weighted,days/yr,83.32571216,83.33725619,83.34277087,83.3459926,83.34802126,83.34935171,83.35026048,83.35090274,83.35135298,83.35168309 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Absolute|Population weighted,days/yr,31.59608054,31.72810911,31.83444138,31.9175461,31.98033906,32.02836559,32.06578162,32.09690034,32.12209015,32.14351523 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Absolute|Population weighted,days/yr,25.04694785,25.0239177,25.0041342,24.98639645,24.97105179,24.95739558,24.94592995,24.9391958,24.93428505,24.93290968 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Absolute|Population weighted,days/yr,65.76241779,65.9629771,66.10998816,66.21408296,66.28340641,66.32316004,66.33667098,66.34050566,66.34222397,66.34129037 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Absolute|Population weighted,days/yr,165.1020674,165.1306316,165.1113697,165.0714088,165.0188731,164.960523,164.9058416,164.858267,164.8189218,164.7876459 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Absolute|Population weighted,days/yr,18.69167792,18.68494892,18.68493184,18.68508763,18.6865131,18.68870787,18.6893506,18.68819559,18.69099232,18.691072 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Absolute|Population weighted,days/yr,169.6539534,169.38324,169.1958965,169.0779265,169.0013344,168.9653799,168.9521022,168.9568716,168.9774697,169.0048368 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Absolute|Population weighted,days/yr,216.3352751,216.3323279,216.3409352,216.3544713,216.3708793,216.3912642,216.4119981,216.4329607,216.4538826,216.4727422 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Absolute|Population weighted,days/yr,14.4938775,14.50409898,14.51914558,14.53640356,14.55834223,14.59134456,14.62541571,14.66682565,14.7035615,14.74181502 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Absolute|Population weighted,days/yr,105.5896481,105.9069327,106.158764,106.3511095,106.488601,106.5799164,106.6389529,106.6779997,106.7044862,106.7211764 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Absolute|Population weighted,days/yr,28.56633814,28.56843105,28.57019059,28.57166192,28.57265333,28.57297928,28.57267375,28.57171952,28.57062916,28.5696288 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Absolute|Population weighted,days/yr,128.2001019,128.2509804,128.3414473,128.4697822,128.6121773,128.765642,128.9131087,129.0570932,129.1983874,129.3322448 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Absolute|Population weighted,days/yr,21.50893641,21.51354049,21.51770313,21.52149662,21.52479922,21.52785345,21.53072447,21.53330326,21.53551058,21.53748349 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Absolute|Population weighted,days/yr,21.07311733,21.0748356,21.07658503,21.07818112,21.07940826,21.08074904,21.08201964,21.08338269,21.08449596,21.08544583 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Absolute|Population weighted,days/yr,22.72584203,22.76005149,22.78100808,22.79535638,22.80531271,22.80973526,22.80710161,22.79759485,22.7853442,22.77299805 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Absolute|Population weighted,days/yr,49.35556562,49.35707015,49.36288665,49.32136759,49.29037146,49.23629324,49.177164,49.14198511,49.10495231,49.10392895 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Absolute|Population weighted,days/yr,39.9864063,39.98551111,39.99791468,40.02100942,40.05016927,40.08175024,40.11449484,40.14786945,40.18082841,40.21287889 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Absolute|Population weighted,days/yr,114.9364063,114.9189051,114.9360742,114.9167617,114.8972931,114.8809466,114.8603581,114.8449783,114.8350644,114.8286337 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Absolute|Population weighted,days/yr,28.28180727,28.28798856,28.29499142,28.30231304,28.31102246,28.31974499,28.32983214,28.34099877,28.35215848,28.36432648 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Absolute|Population weighted,days/yr,35.12755272,35.11047472,35.09469005,35.08373682,35.07603463,35.06764632,35.05626794,35.04686222,35.03944691,35.0332194 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Absolute|Population weighted,days/yr,36.11670624,36.12510981,36.13099061,36.13479628,36.13622578,36.13637101,36.13577908,36.13469569,36.13377265,36.13355965 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Absolute|Population weighted,days/yr,34.79725916,34.80626562,34.81678002,34.82866,34.84833617,34.86626973,34.88579004,34.90696312,34.93060655,34.9458772 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Absolute|Population weighted,days/yr,22.48338146,22.48585043,22.4879286,22.48960758,22.4910725,22.49237073,22.49354601,22.49469645,22.4957855,22.49684088 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Absolute|Population weighted,days/yr,19.01598764,19.09863843,19.18790924,19.27346595,19.34963712,19.41712843,19.47672501,19.52920654,19.5753237,19.6158008 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Absolute|Population weighted,days/yr,135.5335065,135.763015,135.9630437,136.1351291,136.2853308,136.420043,136.5342088,136.6295645,136.708301,136.7755643 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Absolute|Population weighted,days/yr,46.67433047,46.41097389,46.1726918,45.96855074,45.78997127,45.63294906,45.50439608,45.40055422,45.31721818,45.25161716 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Absolute|Population weighted,days/yr,128.4050804,128.5423444,128.6863255,128.8339943,128.9807316,129.1266149,129.2744694,129.4225999,129.5777192,129.732629 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Absolute|Population weighted,days/yr,95.32481505,95.37079319,95.40170336,95.41989099,95.42609957,95.4219323,95.41243294,95.40249717,95.39194432,95.38385607 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Absolute|Population weighted,days/yr,264.4457177,264.0035888,263.9940232,264.2442469,264.6434486,265.1531953,265.7205842,266.3370816,266.9620397,267.5730069 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Absolute|Population weighted,days/yr,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543,17.56327543 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Absolute|Population weighted,days/yr,30.56991557,30.57524373,30.5799844,30.58476412,30.58977218,30.59425133,30.59789731,30.60101101,30.60345286,30.605206 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Absolute|Population weighted,days/yr,145.4614274,145.4294569,145.4457987,145.4773274,145.4759152,145.4551083,145.5250708,145.5406433,145.5411056,145.524025 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Absolute|Population weighted,days/yr,24.76874721,24.76958502,24.76998425,24.77004969,24.76999696,24.76994477,24.76994146,24.7699593,24.76998354,24.77008019 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Absolute|Population weighted,days/yr,211.3273457,211.2390584,211.1803635,211.1385804,211.1123554,211.0954878,211.0808491,211.0678888,211.0571719,211.048841 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Absolute|Population weighted,days/yr,61.11466062,61.40227126,61.65493964,61.86723064,62.05271199,62.22079125,62.37495969,62.51227606,62.6350683,62.74369974 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Absolute|Population weighted,days/yr,44.66903284,44.66409038,44.66037821,44.65624557,44.65177604,44.6471188,44.64238712,44.63779667,44.63337097,44.62921594 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Absolute|Population weighted,days/yr,31.73847114,31.74562768,31.75659237,31.78065382,31.79909376,31.82259633,31.84854339,31.86088647,31.88049661,31.89412876 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Absolute|Population weighted,days/yr,20.95898289,20.93685898,20.9186503,20.90280198,20.88969144,20.87793005,20.86757944,20.85874911,20.85141832,20.84539398 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.04909649,10.04779564,10.04506069,10.04042275,10.03451297,10.02806243,10.02167169,10.01570841,10.01066158,10.00652448 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Absolute|Population weighted,days/yr,21.20558629,21.17716702,21.16627332,21.15963822,21.1575853,21.15746892,21.15730836,21.15724573,21.15718912,21.157146 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Absolute|Population weighted,days/yr,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196,42.5707196 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Absolute|Population weighted,days/yr,25.28496677,25.26064093,25.2472138,25.22483665,25.22038276,25.21556262,25.20988775,25.20117901,25.18747986,25.18055929 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Difference,days/yr,-10.52848179,-10.52848179,-10.52848179,-10.52848179,-10.52848179,-10.52848179,-10.52848179,-10.52848179,-10.52848179,-10.52848179 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Difference,days/yr,1.019608773,1.019608773,1.019608773,1.019608773,1.019608773,1.019608773,1.019608773,1.019608773,1.019608773,1.019608773 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Difference,days/yr,0.049629939,0.049629939,0.049629939,0.049629939,0.049629939,0.049629939,0.049629939,0.049629939,0.049629939,0.049629939 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Difference,days/yr,-1.128257809,-1.128257809,-1.128257809,-1.128257809,-1.128257809,-1.128257809,-1.128257809,-1.128257809,-1.128257809,-1.128257809 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Difference,days/yr,2.182019666,2.182019666,2.182019666,2.182019666,2.182019666,2.182019666,2.182019666,2.182019666,2.182019666,2.182019666 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Difference,days/yr,-13.94109184,-13.94109184,-13.94109184,-13.94109184,-13.94109184,-13.94109184,-13.94109184,-13.94109184,-13.94109184,-13.94109184 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Difference,days/yr,3.265603531,3.265603531,3.265603531,3.265603531,3.265603531,3.265603531,3.265603531,3.265603531,3.265603531,3.265603531 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Difference,days/yr,0.035989375,0.035989375,0.035989375,0.035989375,0.035989375,0.035989375,0.035989375,0.035989375,0.035989375,0.035989375 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Difference,days/yr,4.869446907,4.869446907,4.869446907,4.869446907,4.869446907,4.869446907,4.869446907,4.869446907,4.869446907,4.869446907 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Difference,days/yr,6.920046761,6.920046761,6.920046761,6.920046761,6.920046761,6.920046761,6.920046761,6.920046761,6.920046761,6.920046761 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Difference,days/yr,0.125534345,0.125534345,0.125534345,0.125534345,0.125534345,0.125534345,0.125534345,0.125534345,0.125534345,0.125534345 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Difference,days/yr,-4.888066846,-4.888066846,-4.888066846,-4.888066846,-4.888066846,-4.888066846,-4.888066846,-4.888066846,-4.888066846,-4.888066846 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Difference,days/yr,-9.623489326,-9.623489326,-9.623489326,-9.623489326,-9.623489326,-9.623489326,-9.623489326,-9.623489326,-9.623489326,-9.623489326 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Difference,days/yr,-7.519681954,-7.519681954,-7.519681954,-7.519681954,-7.519681954,-7.519681954,-7.519681954,-7.519681954,-7.519681954,-7.519681954 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Difference,days/yr,-1.241328832,-1.241328832,-1.241328832,-1.241328832,-1.241328832,-1.241328832,-1.241328832,-1.241328832,-1.241328832,-1.241328832 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Difference,days/yr,0.502361383,0.502361383,0.502361383,0.502361383,0.502361383,0.502361383,0.502361383,0.502361383,0.502361383,0.502361383 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Difference,days/yr,7.083345313,7.083345313,7.083345313,7.083345313,7.083345313,7.083345313,7.083345313,7.083345313,7.083345313,7.083345313 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Difference,days/yr,7.38214336,7.38214336,7.38214336,7.38214336,7.38214336,7.38214336,7.38214336,7.38214336,7.38214336,7.38214336 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Difference,days/yr,-2.142343802,-2.142343802,-2.142343802,-2.142343802,-2.142343802,-2.142343802,-2.142343802,-2.142343802,-2.142343802,-2.142343802 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Difference,days/yr,0.334456552,0.334456552,0.334456552,0.334456552,0.334456552,0.334456552,0.334456552,0.334456552,0.334456552,0.334456552 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Difference,days/yr,1.928802309,1.928802309,1.928802309,1.928802309,1.928802309,1.928802309,1.928802309,1.928802309,1.928802309,1.928802309 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Difference,days/yr,17.44152797,17.44152797,17.44152797,17.44152797,17.44152797,17.44152797,17.44152797,17.44152797,17.44152797,17.44152797 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Difference,days/yr,-2.478306374,-2.478306374,-2.478306374,-2.478306374,-2.478306374,-2.478306374,-2.478306374,-2.478306374,-2.478306374,-2.478306374 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Difference,days/yr,4.909480159,4.909480159,4.909480159,4.909480159,4.909480159,4.909480159,4.909480159,4.909480159,4.909480159,4.909480159 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Difference,days/yr,3.167397451,3.167397451,3.167397451,3.167397451,3.167397451,3.167397451,3.167397451,3.167397451,3.167397451,3.167397451 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Difference,days/yr,-9.113241731,-9.113241731,-9.113241731,-9.113241731,-9.113241731,-9.113241731,-9.113241731,-9.113241731,-9.113241731,-9.113241731 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Difference,days/yr,1.96812572,1.96812572,1.96812572,1.96812572,1.96812572,1.96812572,1.96812572,1.96812572,1.96812572,1.96812572 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Difference,days/yr,6.697785877,6.697785877,6.697785877,6.697785877,6.697785877,6.697785877,6.697785877,6.697785877,6.697785877,6.697785877 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Difference,days/yr,7.319264436,7.319264436,7.319264436,7.319264436,7.319264436,7.319264436,7.319264436,7.319264436,7.319264436,7.319264436 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Difference,days/yr,-1.638179565,-1.638179565,-1.638179565,-1.638179565,-1.638179565,-1.638179565,-1.638179565,-1.638179565,-1.638179565,-1.638179565 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Difference,days/yr,-12.39910997,-12.39910997,-12.39910997,-12.39910997,-12.39910997,-12.39910997,-12.39910997,-12.39910997,-12.39910997,-12.39910997 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Difference,days/yr,-5.177954529,-5.177954529,-5.177954529,-5.177954529,-5.177954529,-5.177954529,-5.177954529,-5.177954529,-5.177954529,-5.177954529 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Difference,days/yr,1.389089516,1.389089516,1.389089516,1.389089516,1.389089516,1.389089516,1.389089516,1.389089516,1.389089516,1.389089516 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Difference,days/yr,2.509033918,2.509033918,2.509033918,2.509033918,2.509033918,2.509033918,2.509033918,2.509033918,2.509033918,2.509033918 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Difference,days/yr,-4.760040399,-4.760040399,-4.760040399,-4.760040399,-4.760040399,-4.760040399,-4.760040399,-4.760040399,-4.760040399,-4.760040399 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Difference,days/yr,-0.02902353,-0.02902353,-0.02902353,-0.02902353,-0.02902353,-0.02902353,-0.02902353,-0.02902353,-0.02902353,-0.02902353 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Difference,days/yr,-4.721148767,-4.721148767,-4.721148767,-4.721148767,-4.721148767,-4.721148767,-4.721148767,-4.721148767,-4.721148767,-4.721148767 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Difference,days/yr,8.256023148,8.256023148,8.256023148,8.256023148,8.256023148,8.256023148,8.256023148,8.256023148,8.256023148,8.256023148 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Difference,days/yr,6.535677045,6.535677045,6.535677045,6.535677045,6.535677045,6.535677045,6.535677045,6.535677045,6.535677045,6.535677045 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Difference,days/yr,5.058952109,5.058952109,5.058952109,5.058952109,5.058952109,5.058952109,5.058952109,5.058952109,5.058952109,5.058952109 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Difference,days/yr,6.767140033,6.767140033,6.767140033,6.767140033,6.767140033,6.767140033,6.767140033,6.767140033,6.767140033,6.767140033 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Difference,days/yr,-6.431960441,-6.431960441,-6.431960441,-6.431960441,-6.431960441,-6.431960441,-6.431960441,-6.431960441,-6.431960441,-6.431960441 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Difference,days/yr,2.878520366,2.878520366,2.878520366,2.878520366,2.878520366,2.878520366,2.878520366,2.878520366,2.878520366,2.878520366 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Difference,days/yr,1.10678276,1.10678276,1.10678276,1.10678276,1.10678276,1.10678276,1.10678276,1.10678276,1.10678276,1.10678276 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Difference,days/yr,4.478437544,4.478437544,4.478437544,4.478437544,4.478437544,4.478437544,4.478437544,4.478437544,4.478437544,4.478437544 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Difference,days/yr,12.23693296,12.23693296,12.23693296,12.23693296,12.23693296,12.23693296,12.23693296,12.23693296,12.23693296,12.23693296 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Difference,days/yr,-2.668715306,-2.668715306,-2.668715306,-2.668715306,-2.668715306,-2.668715306,-2.668715306,-2.668715306,-2.668715306,-2.668715306 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Difference,days/yr,2.267955733,2.267955733,2.267955733,2.267955733,2.267955733,2.267955733,2.267955733,2.267955733,2.267955733,2.267955733 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Difference,days/yr,-0.855071929,-0.855071929,-0.855071929,-0.855071929,-0.855071929,-0.855071929,-0.855071929,-0.855071929,-0.855071929,-0.855071929 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Difference,days/yr,1.081458919,1.081458919,1.081458919,1.081458919,1.081458919,1.081458919,1.081458919,1.081458919,1.081458919,1.081458919 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Difference,days/yr,2.151932748,2.151932748,2.151932748,2.151932748,2.151932748,2.151932748,2.151932748,2.151932748,2.151932748,2.151932748 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Difference,days/yr,0.485482001,0.485482001,0.485482001,0.485482001,0.485482001,0.485482001,0.485482001,0.485482001,0.485482001,0.485482001 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Difference,days/yr,1.515428038,1.515428038,1.515428038,1.515428038,1.515428038,1.515428038,1.515428038,1.515428038,1.515428038,1.515428038 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Difference,days/yr,14.59037762,14.59037762,14.59037762,14.59037762,14.59037762,14.59037762,14.59037762,14.59037762,14.59037762,14.59037762 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Difference,days/yr,5.336631443,5.336631443,5.336631443,5.336631443,5.336631443,5.336631443,5.336631443,5.336631443,5.336631443,5.336631443 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Difference,days/yr,-10.51112593,-10.51112593,-10.51112593,-10.51112593,-10.51112593,-10.51112593,-10.51112593,-10.51112593,-10.51112593,-10.51112593 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Difference,days/yr,0.839129273,0.839129273,0.839129273,0.839129273,0.839129273,0.839129273,0.839129273,0.839129273,0.839129273,0.839129273 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Difference,days/yr,3.195806035,3.195806035,3.195806035,3.195806035,3.195806035,3.195806035,3.195806035,3.195806035,3.195806035,3.195806035 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Difference,days/yr,0.453095401,0.453095401,0.453095401,0.453095401,0.453095401,0.453095401,0.453095401,0.453095401,0.453095401,0.453095401 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Difference,days/yr,-3.037234198,-3.037234198,-3.037234198,-3.037234198,-3.037234198,-3.037234198,-3.037234198,-3.037234198,-3.037234198,-3.037234198 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Difference,days/yr,-9.540791677,-9.540791677,-9.540791677,-9.540791677,-9.540791677,-9.540791677,-9.540791677,-9.540791677,-9.540791677,-9.540791677 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Difference,days/yr,-6.441659383,-6.441659383,-6.441659383,-6.441659383,-6.441659383,-6.441659383,-6.441659383,-6.441659383,-6.441659383,-6.441659383 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Difference,days/yr,-0.519023742,-0.519023742,-0.519023742,-0.519023742,-0.519023742,-0.519023742,-0.519023742,-0.519023742,-0.519023742,-0.519023742 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Difference,days/yr,-3.734212515,-3.734212515,-3.734212515,-3.734212515,-3.734212515,-3.734212515,-3.734212515,-3.734212515,-3.734212515,-3.734212515 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Difference,days/yr,-8.347204098,-8.347204098,-8.347204098,-8.347204098,-8.347204098,-8.347204098,-8.347204098,-8.347204098,-8.347204098,-8.347204098 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Difference,days/yr,6.56076594,6.56076594,6.56076594,6.56076594,6.56076594,6.56076594,6.56076594,6.56076594,6.56076594,6.56076594 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Difference,days/yr,-5.147905203,-5.147905203,-5.147905203,-5.147905203,-5.147905203,-5.147905203,-5.147905203,-5.147905203,-5.147905203,-5.147905203 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Difference,days/yr,-6.972114463,-6.972114463,-6.972114463,-6.972114463,-6.972114463,-6.972114463,-6.972114463,-6.972114463,-6.972114463,-6.972114463 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Difference,days/yr,5.448299041,5.448299041,5.448299041,5.448299041,5.448299041,5.448299041,5.448299041,5.448299041,5.448299041,5.448299041 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Difference,days/yr,2.825056699,2.825056699,2.825056699,2.825056699,2.825056699,2.825056699,2.825056699,2.825056699,2.825056699,2.825056699 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Difference,days/yr,8.283037484,8.283037484,8.283037484,8.283037484,8.283037484,8.283037484,8.283037484,8.283037484,8.283037484,8.283037484 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Difference,days/yr,4.12366675,4.12366675,4.12366675,4.12366675,4.12366675,4.12366675,4.12366675,4.12366675,4.12366675,4.12366675 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Difference,days/yr,-0.605077173,-0.605077173,-0.605077173,-0.605077173,-0.605077173,-0.605077173,-0.605077173,-0.605077173,-0.605077173,-0.605077173 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Difference,days/yr,0.321181263,0.321181263,0.321181263,0.321181263,0.321181263,0.321181263,0.321181263,0.321181263,0.321181263,0.321181263 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Difference,days/yr,-5.786636798,-5.786636798,-5.786636798,-5.786636798,-5.786636798,-5.786636798,-5.786636798,-5.786636798,-5.786636798,-5.786636798 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Difference,days/yr,0.112313405,0.112313405,0.112313405,0.112313405,0.112313405,0.112313405,0.112313405,0.112313405,0.112313405,0.112313405 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Difference,days/yr,0.664392826,0.664392826,0.664392826,0.664392826,0.664392826,0.664392826,0.664392826,0.664392826,0.664392826,0.664392826 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Difference,days/yr,-8.112570794,-8.112570794,-8.112570794,-8.112570794,-8.112570794,-8.112570794,-8.112570794,-8.112570794,-8.112570794,-8.112570794 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Difference,days/yr,-2.26561337,-2.26561337,-2.26561337,-2.26561337,-2.26561337,-2.26561337,-2.26561337,-2.26561337,-2.26561337,-2.26561337 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Difference,days/yr,-4.970482825,-4.970482825,-4.970482825,-4.970482825,-4.970482825,-4.970482825,-4.970482825,-4.970482825,-4.970482825,-4.970482825 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Difference,days/yr,5.146995367,5.146995367,5.146995367,5.146995367,5.146995367,5.146995367,5.146995367,5.146995367,5.146995367,5.146995367 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Difference,days/yr,-3.680800255,-3.680800255,-3.680800255,-3.680800255,-3.680800255,-3.680800255,-3.680800255,-3.680800255,-3.680800255,-3.680800255 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Difference,days/yr,-9.886156022,-9.886156022,-9.886156022,-9.886156022,-9.886156022,-9.886156022,-9.886156022,-9.886156022,-9.886156022,-9.886156022 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Difference,days/yr,6.356663196,6.356663196,6.356663196,6.356663196,6.356663196,6.356663196,6.356663196,6.356663196,6.356663196,6.356663196 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Difference,days/yr,3.094224963,3.094224963,3.094224963,3.094224963,3.094224963,3.094224963,3.094224963,3.094224963,3.094224963,3.094224963 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Difference,days/yr,7.309182489,7.309182489,7.309182489,7.309182489,7.309182489,7.309182489,7.309182489,7.309182489,7.309182489,7.309182489 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Difference,days/yr,3.010270644,3.010270644,3.010270644,3.010270644,3.010270644,3.010270644,3.010270644,3.010270644,3.010270644,3.010270644 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Difference,days/yr,12.82013303,12.82013303,12.82013303,12.82013303,12.82013303,12.82013303,12.82013303,12.82013303,12.82013303,12.82013303 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Difference,days/yr,8.408099676,8.408099676,8.408099676,8.408099676,8.408099676,8.408099676,8.408099676,8.408099676,8.408099676,8.408099676 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Difference,days/yr,1.421461947,1.421461947,1.421461947,1.421461947,1.421461947,1.421461947,1.421461947,1.421461947,1.421461947,1.421461947 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Difference,days/yr,-0.529128193,-0.529128193,-0.529128193,-0.529128193,-0.529128193,-0.529128193,-0.529128193,-0.529128193,-0.529128193,-0.529128193 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Difference,days/yr,0.741025773,0.741025773,0.741025773,0.741025773,0.741025773,0.741025773,0.741025773,0.741025773,0.741025773,0.741025773 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Difference,days/yr,-0.40474621,-0.40474621,-0.40474621,-0.40474621,-0.40474621,-0.40474621,-0.40474621,-0.40474621,-0.40474621,-0.40474621 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Difference,days/yr,7.505490968,7.505490968,7.505490968,7.505490968,7.505490968,7.505490968,7.505490968,7.505490968,7.505490968,7.505490968 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Difference,days/yr,-11.39815428,-11.39815428,-11.39815428,-11.39815428,-11.39815428,-11.39815428,-11.39815428,-11.39815428,-11.39815428,-11.39815428 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Difference,days/yr,-0.834830029,-0.834830029,-0.834830029,-0.834830029,-0.834830029,-0.834830029,-0.834830029,-0.834830029,-0.834830029,-0.834830029 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Difference,days/yr,3.732037524,3.732037524,3.732037524,3.732037524,3.732037524,3.732037524,3.732037524,3.732037524,3.732037524,3.732037524 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Difference,days/yr,-6.91263755,-6.91263755,-6.91263755,-6.91263755,-6.91263755,-6.91263755,-6.91263755,-6.91263755,-6.91263755,-6.91263755 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Difference,days/yr,12.96612485,12.96612485,12.96612485,12.96612485,12.96612485,12.96612485,12.96612485,12.96612485,12.96612485,12.96612485 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Difference,days/yr,-2.320692782,-2.320692782,-2.320692782,-2.320692782,-2.320692782,-2.320692782,-2.320692782,-2.320692782,-2.320692782,-2.320692782 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Difference,days/yr,6.677863665,6.677863665,6.677863665,6.677863665,6.677863665,6.677863665,6.677863665,6.677863665,6.677863665,6.677863665 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Difference,days/yr,12.64662661,12.64662661,12.64662661,12.64662661,12.64662661,12.64662661,12.64662661,12.64662661,12.64662661,12.64662661 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Difference,days/yr,3.699495061,3.699495061,3.699495061,3.699495061,3.699495061,3.699495061,3.699495061,3.699495061,3.699495061,3.699495061 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Difference,days/yr,1.933003917,1.933003917,1.933003917,1.933003917,1.933003917,1.933003917,1.933003917,1.933003917,1.933003917,1.933003917 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Difference,days/yr,7.339479508,7.339479508,7.339479508,7.339479508,7.339479508,7.339479508,7.339479508,7.339479508,7.339479508,7.339479508 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Difference,days/yr,-8.771498232,-8.771498232,-8.771498232,-8.771498232,-8.771498232,-8.771498232,-8.771498232,-8.771498232,-8.771498232,-8.771498232 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Difference,days/yr,-3.55029527,-3.55029527,-3.55029527,-3.55029527,-3.55029527,-3.55029527,-3.55029527,-3.55029527,-3.55029527,-3.55029527 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Difference,days/yr,1.454302514,1.454302514,1.454302514,1.454302514,1.454302514,1.454302514,1.454302514,1.454302514,1.454302514,1.454302514 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Difference,days/yr,1.108185281,1.108185281,1.108185281,1.108185281,1.108185281,1.108185281,1.108185281,1.108185281,1.108185281,1.108185281 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Difference,days/yr,-0.03119425,-0.03119425,-0.03119425,-0.03119425,-0.03119425,-0.03119425,-0.03119425,-0.03119425,-0.03119425,-0.03119425 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Difference,days/yr,3.073984521,3.073984521,3.073984521,3.073984521,3.073984521,3.073984521,3.073984521,3.073984521,3.073984521,3.073984521 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Difference,days/yr,3.47321465,3.47321465,3.47321465,3.47321465,3.47321465,3.47321465,3.47321465,3.47321465,3.47321465,3.47321465 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Difference,days/yr,4.247391646,4.247391646,4.247391646,4.247391646,4.247391646,4.247391646,4.247391646,4.247391646,4.247391646,4.247391646 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Difference,days/yr,5.851309916,5.851309916,5.851309916,5.851309916,5.851309916,5.851309916,5.851309916,5.851309916,5.851309916,5.851309916 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Difference,days/yr,4.766549489,4.766549489,4.766549489,4.766549489,4.766549489,4.766549489,4.766549489,4.766549489,4.766549489,4.766549489 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Difference,days/yr,-0.450037335,-0.450037335,-0.450037335,-0.450037335,-0.450037335,-0.450037335,-0.450037335,-0.450037335,-0.450037335,-0.450037335 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Difference,days/yr,2.45266172,2.45266172,2.45266172,2.45266172,2.45266172,2.45266172,2.45266172,2.45266172,2.45266172,2.45266172 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Difference,days/yr,-3.054403566,-3.054403566,-3.054403566,-3.054403566,-3.054403566,-3.054403566,-3.054403566,-3.054403566,-3.054403566,-3.054403566 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Difference,days/yr,-1.041234994,-1.041234994,-1.041234994,-1.041234994,-1.041234994,-1.041234994,-1.041234994,-1.041234994,-1.041234994,-1.041234994 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Difference,days/yr,5.634630923,5.634630923,5.634630923,5.634630923,5.634630923,5.634630923,5.634630923,5.634630923,5.634630923,5.634630923 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Difference,days/yr,2.326417697,2.326417697,2.326417697,2.326417697,2.326417697,2.326417697,2.326417697,2.326417697,2.326417697,2.326417697 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Difference,days/yr,2.93243062,2.93243062,2.93243062,2.93243062,2.93243062,2.93243062,2.93243062,2.93243062,2.93243062,2.93243062 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Difference,days/yr,3.787112388,3.787112388,3.787112388,3.787112388,3.787112388,3.787112388,3.787112388,3.787112388,3.787112388,3.787112388 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Difference,days/yr,4.996682461,4.996682461,4.996682461,4.996682461,4.996682461,4.996682461,4.996682461,4.996682461,4.996682461,4.996682461 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Difference,days/yr,5.717121255,5.717121255,5.717121255,5.717121255,5.717121255,5.717121255,5.717121255,5.717121255,5.717121255,5.717121255 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Difference,days/yr,4.075886728,4.075886728,4.075886728,4.075886728,4.075886728,4.075886728,4.075886728,4.075886728,4.075886728,4.075886728 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Difference,days/yr,-21.68257677,-21.68257677,-21.68257677,-21.68257677,-21.68257677,-21.68257677,-21.68257677,-21.68257677,-21.68257677,-21.68257677 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Difference,days/yr,0.921221294,0.921221294,0.921221294,0.921221294,0.921221294,0.921221294,0.921221294,0.921221294,0.921221294,0.921221294 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Difference,days/yr,-0.06271315,-0.06271315,-0.06271315,-0.06271315,-0.06271315,-0.06271315,-0.06271315,-0.06271315,-0.06271315,-0.06271315 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Difference,days/yr,-1.353298866,-1.353298866,-1.353298866,-1.353298866,-1.353298866,-1.353298866,-1.353298866,-1.353298866,-1.353298866,-1.353298866 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Difference,days/yr,4.730962952,4.730962952,4.730962952,4.730962952,4.730962952,4.730962952,4.730962952,4.730962952,4.730962952,4.730962952 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Difference,days/yr,5.399633153,5.399633153,5.399633153,5.399633153,5.399633153,5.399633153,5.399633153,5.399633153,5.399633153,5.399633153 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Difference,days/yr,-7.037052464,-7.037052464,-7.037052464,-7.037052464,-7.037052464,-7.037052464,-7.037052464,-7.037052464,-7.037052464,-7.037052464 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Difference,days/yr,-2.411640494,-2.411640494,-2.411640494,-2.411640494,-2.411640494,-2.411640494,-2.411640494,-2.411640494,-2.411640494,-2.411640494 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Difference,days/yr,-0.354351871,-0.354351871,-0.354351871,-0.354351871,-0.354351871,-0.354351871,-0.354351871,-0.354351871,-0.354351871,-0.354351871 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Difference,days/yr,1.027743028,1.027743028,1.027743028,1.027743028,1.027743028,1.027743028,1.027743028,1.027743028,1.027743028,1.027743028 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Difference,days/yr,0.0452428,0.0452428,0.0452428,0.0452428,0.0452428,0.0452428,0.0452428,0.0452428,0.0452428,0.0452428 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Difference,days/yr,-0.819464503,-0.819464503,-0.819464503,-0.819464503,-0.819464503,-0.819464503,-0.819464503,-0.819464503,-0.819464503,-0.819464503 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Difference,days/yr,8.156554535,8.156554535,8.156554535,8.156554535,8.156554535,8.156554535,8.156554535,8.156554535,8.156554535,8.156554535 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Difference,days/yr,-5.129620598,-5.129620598,-5.129620598,-5.129620598,-5.129620598,-5.129620598,-5.129620598,-5.129620598,-5.129620598,-5.129620598 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Difference,days/yr,-2.077198817,-2.077198817,-2.077198817,-2.077198817,-2.077198817,-2.077198817,-2.077198817,-2.077198817,-2.077198817,-2.077198817 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Difference,days/yr,2.059054865,2.059054865,2.059054865,2.059054865,2.059054865,2.059054865,2.059054865,2.059054865,2.059054865,2.059054865 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Difference,days/yr,6.217010499,6.217010499,6.217010499,6.217010499,6.217010499,6.217010499,6.217010499,6.217010499,6.217010499,6.217010499 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Difference,days/yr,2.458797206,2.458797206,2.458797206,2.458797206,2.458797206,2.458797206,2.458797206,2.458797206,2.458797206,2.458797206 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Difference,days/yr,0.516484313,0.516484313,0.516484313,0.516484313,0.516484313,0.516484313,0.516484313,0.516484313,0.516484313,0.516484313 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Difference,days/yr,7.655481352,7.655481352,7.655481352,7.655481352,7.655481352,7.655481352,7.655481352,7.655481352,7.655481352,7.655481352 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Difference,days/yr,8.833696683,8.833696683,8.833696683,8.833696683,8.833696683,8.833696683,8.833696683,8.833696683,8.833696683,8.833696683 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Difference,days/yr,4.29810619,4.29810619,4.29810619,4.29810619,4.29810619,4.29810619,4.29810619,4.29810619,4.29810619,4.29810619 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Difference,days/yr,-3.14448852,-3.14448852,-3.14448852,-3.14448852,-3.14448852,-3.14448852,-3.14448852,-3.14448852,-3.14448852,-3.14448852 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Difference,days/yr,-0.703350233,-0.703350233,-0.703350233,-0.703350233,-0.703350233,-0.703350233,-0.703350233,-0.703350233,-0.703350233,-0.703350233 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Difference,days/yr,6.394976594,6.394976594,6.394976594,6.394976594,6.394976594,6.394976594,6.394976594,6.394976594,6.394976594,6.394976594 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Difference,days/yr,1.937877512,1.937877512,1.937877512,1.937877512,1.937877512,1.937877512,1.937877512,1.937877512,1.937877512,1.937877512 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Difference,days/yr,-6.343983216,-6.343983216,-6.343983216,-6.343983216,-6.343983216,-6.343983216,-6.343983216,-6.343983216,-6.343983216,-6.343983216 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Difference,days/yr,0.58509007,0.58509007,0.58509007,0.58509007,0.58509007,0.58509007,0.58509007,0.58509007,0.58509007,0.58509007 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Difference,days/yr,0.784810401,0.784810401,0.784810401,0.784810401,0.784810401,0.784810401,0.784810401,0.784810401,0.784810401,0.784810401 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Difference,days/yr,0.238714838,0.238714838,0.238714838,0.238714838,0.238714838,0.238714838,0.238714838,0.238714838,0.238714838,0.238714838 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Difference,days/yr,4.639897537,4.639897537,4.639897537,4.639897537,4.639897537,4.639897537,4.639897537,4.639897537,4.639897537,4.639897537 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Difference,days/yr,11.20351411,11.20351411,11.20351411,11.20351411,11.20351411,11.20351411,11.20351411,11.20351411,11.20351411,11.20351411 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Difference,days/yr,0.225976307,0.225976307,0.225976307,0.225976307,0.225976307,0.225976307,0.225976307,0.225976307,0.225976307,0.225976307 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Difference,days/yr,-0.408294293,-0.408294293,-0.408294293,-0.408294293,-0.408294293,-0.408294293,-0.408294293,-0.408294293,-0.408294293,-0.408294293 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Difference,days/yr,4.336781908,4.336781908,4.336781908,4.336781908,4.336781908,4.336781908,4.336781908,4.336781908,4.336781908,4.336781908 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Difference,days/yr,1.684212216,1.684212216,1.684212216,1.684212216,1.684212216,1.684212216,1.684212216,1.684212216,1.684212216,1.684212216 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Difference,days/yr,-4.427548213,-4.427548213,-4.427548213,-4.427548213,-4.427548213,-4.427548213,-4.427548213,-4.427548213,-4.427548213,-4.427548213 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Difference,days/yr,3.780034332,3.780034332,3.780034332,3.780034332,3.780034332,3.780034332,3.780034332,3.780034332,3.780034332,3.780034332 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Difference,days/yr,3.821424611,3.821424611,3.821424611,3.821424611,3.821424611,3.821424611,3.821424611,3.821424611,3.821424611,3.821424611 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Difference,days/yr,7.070359198,7.070359198,7.070359198,7.070359198,7.070359198,7.070359198,7.070359198,7.070359198,7.070359198,7.070359198 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Difference,days/yr,3.204606863,3.204606863,3.204606863,3.204606863,3.204606863,3.204606863,3.204606863,3.204606863,3.204606863,3.204606863 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Difference,days/yr,0.654007204,0.654007204,0.654007204,0.654007204,0.654007204,0.654007204,0.654007204,0.654007204,0.654007204,0.654007204 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Difference,days/yr,2.518801467,2.518801467,2.518801467,2.518801467,2.518801467,2.518801467,2.518801467,2.518801467,2.518801467,2.518801467 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Difference,days/yr,-0.680983615,-0.680983615,-0.680983615,-0.680983615,-0.680983615,-0.680983615,-0.680983615,-0.680983615,-0.680983615,-0.680983615 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Difference,days/yr,1.078293018,1.078293018,1.078293018,1.078293018,1.078293018,1.078293018,1.078293018,1.078293018,1.078293018,1.078293018 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Difference,days/yr,-1.088682243,-1.088682243,-1.088682243,-1.088682243,-1.088682243,-1.088682243,-1.088682243,-1.088682243,-1.088682243,-1.088682243 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Difference,days/yr,2.278518838,2.278518838,2.278518838,2.278518838,2.278518838,2.278518838,2.278518838,2.278518838,2.278518838,2.278518838 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Difference,days/yr,7.99555797,7.99555797,7.99555797,7.99555797,7.99555797,7.99555797,7.99555797,7.99555797,7.99555797,7.99555797 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Difference,days/yr,-2.596882524,-2.596882524,-2.596882524,-2.596882524,-2.596882524,-2.596882524,-2.596882524,-2.596882524,-2.596882524,-2.596882524 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Difference,days/yr,11.92552874,11.92552874,11.92552874,11.92552874,11.92552874,11.92552874,11.92552874,11.92552874,11.92552874,11.92552874 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Difference,days/yr,-1.129696895,-1.129696895,-1.129696895,-1.129696895,-1.129696895,-1.129696895,-1.129696895,-1.129696895,-1.129696895,-1.129696895 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Difference,days/yr,6.390429793,6.390429793,6.390429793,6.390429793,6.390429793,6.390429793,6.390429793,6.390429793,6.390429793,6.390429793 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Difference,days/yr,1.064407047,1.064407047,1.064407047,1.064407047,1.064407047,1.064407047,1.064407047,1.064407047,1.064407047,1.064407047 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Difference,days/yr,10.12558355,10.12558355,10.12558355,10.12558355,10.12558355,10.12558355,10.12558355,10.12558355,10.12558355,10.12558355 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Difference,days/yr,3.621490746,3.621490746,3.621490746,3.621490746,3.621490746,3.621490746,3.621490746,3.621490746,3.621490746,3.621490746 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Difference,days/yr,5.167171829,5.167171829,5.167171829,5.167171829,5.167171829,5.167171829,5.167171829,5.167171829,5.167171829,5.167171829 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Difference,days/yr,-0.916438348,-0.916438348,-0.916438348,-0.916438348,-0.916438348,-0.916438348,-0.916438348,-0.916438348,-0.916438348,-0.916438348 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Difference,days/yr,1.891221453,1.891221453,1.891221453,1.891221453,1.891221453,1.891221453,1.891221453,1.891221453,1.891221453,1.891221453 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Difference,days/yr,7.972359068,7.972359068,7.972359068,7.972359068,7.972359068,7.972359068,7.972359068,7.972359068,7.972359068,7.972359068 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Difference,days/yr,7.148437017,7.148437017,7.148437017,7.148437017,7.148437017,7.148437017,7.148437017,7.148437017,7.148437017,7.148437017 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Difference,days/yr,5.380669514,5.380669514,5.380669514,5.380669514,5.380669514,5.380669514,5.380669514,5.380669514,5.380669514,5.380669514 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Difference,days/yr,0.807232839,0.807232839,0.807232839,0.807232839,0.807232839,0.807232839,0.807232839,0.807232839,0.807232839,0.807232839 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Difference,days/yr,5.375750133,5.375750133,5.375750133,5.375750133,5.375750133,5.375750133,5.375750133,5.375750133,5.375750133,5.375750133 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Difference,days/yr,-4.230259588,-4.230259588,-4.230259588,-4.230259588,-4.230259588,-4.230259588,-4.230259588,-4.230259588,-4.230259588,-4.230259588 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Difference,days/yr,4.154952992,4.154952992,4.154952992,4.154952992,4.154952992,4.154952992,4.154952992,4.154952992,4.154952992,4.154952992 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Difference,days/yr,2.040018677,2.040018677,2.040018677,2.040018677,2.040018677,2.040018677,2.040018677,2.040018677,2.040018677,2.040018677 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Difference,days/yr,-0.191202882,-0.191202882,-0.191202882,-0.191202882,-0.191202882,-0.191202882,-0.191202882,-0.191202882,-0.191202882,-0.191202882 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Difference,days/yr,19.83581231,19.83581231,19.83581231,19.83581231,19.83581231,19.83581231,19.83581231,19.83581231,19.83581231,19.83581231 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Difference,days/yr,2.16014408,2.16014408,2.16014408,2.16014408,2.16014408,2.16014408,2.16014408,2.16014408,2.16014408,2.16014408 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Difference,days/yr,1.568328517,1.568328517,1.568328517,1.568328517,1.568328517,1.568328517,1.568328517,1.568328517,1.568328517,1.568328517 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Difference|Land area weighted,days/yr,-10.1445853,-10.1445853,-10.1445853,-10.1445853,-10.1445853,-10.1445853,-10.1445853,-10.1445853,-10.1445853,-10.1445853 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Difference|Land area weighted,days/yr,9.269279339,9.269279339,9.269279339,9.269279339,9.269279339,9.269279339,9.269279339,9.269279339,9.269279339,9.269279339 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Difference|Land area weighted,days/yr,0.04870753,0.04870753,0.04870753,0.04870753,0.04870753,0.04870753,0.04870753,0.04870753,0.04870753,0.04870753 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.621128483,-1.621128483,-1.621128483,-1.621128483,-1.621128483,-1.621128483,-1.621128483,-1.621128483,-1.621128483,-1.621128483 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Difference|Land area weighted,days/yr,3.161388793,3.161388793,3.161388793,3.161388793,3.161388793,3.161388793,3.161388793,3.161388793,3.161388793,3.161388793 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Difference|Land area weighted,days/yr,-16.20125022,-16.20125022,-16.20125022,-16.20125022,-16.20125022,-16.20125022,-16.20125022,-16.20125022,-16.20125022,-16.20125022 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Difference|Land area weighted,days/yr,7.267892755,7.267892755,7.267892755,7.267892755,7.267892755,7.267892755,7.267892755,7.267892755,7.267892755,7.267892755 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Difference|Land area weighted,days/yr,0.161321058,0.161321058,0.161321058,0.161321058,0.161321058,0.161321058,0.161321058,0.161321058,0.161321058,0.161321058 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Difference|Land area weighted,days/yr,5.449478592,5.449478592,5.449478592,5.449478592,5.449478592,5.449478592,5.449478592,5.449478592,5.449478592,5.449478592 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Difference|Land area weighted,days/yr,8.187600798,8.187600798,8.187600798,8.187600798,8.187600798,8.187600798,8.187600798,8.187600798,8.187600798,8.187600798 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Difference|Land area weighted,days/yr,1.046101048,1.046101048,1.046101048,1.046101048,1.046101048,1.046101048,1.046101048,1.046101048,1.046101048,1.046101048 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Difference|Land area weighted,days/yr,-6.592504584,-6.592504584,-6.592504584,-6.592504584,-6.592504584,-6.592504584,-6.592504584,-6.592504584,-6.592504584,-6.592504584 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Difference|Land area weighted,days/yr,-12.9484059,-12.9484059,-12.9484059,-12.9484059,-12.9484059,-12.9484059,-12.9484059,-12.9484059,-12.9484059,-12.9484059 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Difference|Land area weighted,days/yr,-8.487490152,-8.487490152,-8.487490152,-8.487490152,-8.487490152,-8.487490152,-8.487490152,-8.487490152,-8.487490152,-8.487490152 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Difference|Land area weighted,days/yr,-13.21105197,-13.21105197,-13.21105197,-13.21105197,-13.21105197,-13.21105197,-13.21105197,-13.21105197,-13.21105197,-13.21105197 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Difference|Land area weighted,days/yr,1.270749509,1.270749509,1.270749509,1.270749509,1.270749509,1.270749509,1.270749509,1.270749509,1.270749509,1.270749509 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Difference|Land area weighted,days/yr,10.78891268,10.78891268,10.78891268,10.78891268,10.78891268,10.78891268,10.78891268,10.78891268,10.78891268,10.78891268 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Difference|Land area weighted,days/yr,12.16175796,12.16175796,12.16175796,12.16175796,12.16175796,12.16175796,12.16175796,12.16175796,12.16175796,12.16175796 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.963528788,-2.963528788,-2.963528788,-2.963528788,-2.963528788,-2.963528788,-2.963528788,-2.963528788,-2.963528788,-2.963528788 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Difference|Land area weighted,days/yr,0.513552007,0.513552007,0.513552007,0.513552007,0.513552007,0.513552007,0.513552007,0.513552007,0.513552007,0.513552007 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Difference|Land area weighted,days/yr,2.717393538,2.717393538,2.717393538,2.717393538,2.717393538,2.717393538,2.717393538,2.717393538,2.717393538,2.717393538 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Difference|Land area weighted,days/yr,22.69361002,22.69361002,22.69361002,22.69361002,22.69361002,22.69361002,22.69361002,22.69361002,22.69361002,22.69361002 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Difference|Land area weighted,days/yr,-3.954222696,-3.954222696,-3.954222696,-3.954222696,-3.954222696,-3.954222696,-3.954222696,-3.954222696,-3.954222696,-3.954222696 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Difference|Land area weighted,days/yr,8.834911376,8.834911376,8.834911376,8.834911376,8.834911376,8.834911376,8.834911376,8.834911376,8.834911376,8.834911376 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Difference|Land area weighted,days/yr,8.407963297,8.407963297,8.407963297,8.407963297,8.407963297,8.407963297,8.407963297,8.407963297,8.407963297,8.407963297 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Difference|Land area weighted,days/yr,-12.15180275,-12.15180275,-12.15180275,-12.15180275,-12.15180275,-12.15180275,-12.15180275,-12.15180275,-12.15180275,-12.15180275 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Difference|Land area weighted,days/yr,2.315791179,2.315791179,2.315791179,2.315791179,2.315791179,2.315791179,2.315791179,2.315791179,2.315791179,2.315791179 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Difference|Land area weighted,days/yr,13.5397879,13.5397879,13.5397879,13.5397879,13.5397879,13.5397879,13.5397879,13.5397879,13.5397879,13.5397879 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Difference|Land area weighted,days/yr,9.530714391,9.530714391,9.530714391,9.530714391,9.530714391,9.530714391,9.530714391,9.530714391,9.530714391,9.530714391 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Difference|Land area weighted,days/yr,-2.129940299,-2.129940299,-2.129940299,-2.129940299,-2.129940299,-2.129940299,-2.129940299,-2.129940299,-2.129940299,-2.129940299 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Difference|Land area weighted,days/yr,-15.40986186,-15.40986186,-15.40986186,-15.40986186,-15.40986186,-15.40986186,-15.40986186,-15.40986186,-15.40986186,-15.40986186 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Difference|Land area weighted,days/yr,-6.481024511,-6.481024511,-6.481024511,-6.481024511,-6.481024511,-6.481024511,-6.481024511,-6.481024511,-6.481024511,-6.481024511 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Difference|Land area weighted,days/yr,5.290530926,5.290530926,5.290530926,5.290530926,5.290530926,5.290530926,5.290530926,5.290530926,5.290530926,5.290530926 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Difference|Land area weighted,days/yr,4.438929839,4.438929839,4.438929839,4.438929839,4.438929839,4.438929839,4.438929839,4.438929839,4.438929839,4.438929839 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Difference|Land area weighted,days/yr,-7.607664072,-7.607664072,-7.607664072,-7.607664072,-7.607664072,-7.607664072,-7.607664072,-7.607664072,-7.607664072,-7.607664072 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Difference|Land area weighted,days/yr,-0.342578372,-0.342578372,-0.342578372,-0.342578372,-0.342578372,-0.342578372,-0.342578372,-0.342578372,-0.342578372,-0.342578372 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Difference|Land area weighted,days/yr,-5.428097921,-5.428097921,-5.428097921,-5.428097921,-5.428097921,-5.428097921,-5.428097921,-5.428097921,-5.428097921,-5.428097921 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Difference|Land area weighted,days/yr,14.45523753,14.45523753,14.45523753,14.45523753,14.45523753,14.45523753,14.45523753,14.45523753,14.45523753,14.45523753 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Difference|Land area weighted,days/yr,8.075202732,8.075202732,8.075202732,8.075202732,8.075202732,8.075202732,8.075202732,8.075202732,8.075202732,8.075202732 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Difference|Land area weighted,days/yr,9.361821925,9.361821925,9.361821925,9.361821925,9.361821925,9.361821925,9.361821925,9.361821925,9.361821925,9.361821925 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Difference|Land area weighted,days/yr,67.65800541,67.65800541,67.65800541,67.65800541,67.65800541,67.65800541,67.65800541,67.65800541,67.65800541,67.65800541 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Difference|Land area weighted,days/yr,-7.792513153,-7.792513153,-7.792513153,-7.792513153,-7.792513153,-7.792513153,-7.792513153,-7.792513153,-7.792513153,-7.792513153 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Difference|Land area weighted,days/yr,4.572464936,4.572464936,4.572464936,4.572464936,4.572464936,4.572464936,4.572464936,4.572464936,4.572464936,4.572464936 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Difference|Land area weighted,days/yr,1.510752944,1.510752944,1.510752944,1.510752944,1.510752944,1.510752944,1.510752944,1.510752944,1.510752944,1.510752944 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Difference|Land area weighted,days/yr,7.366473146,7.366473146,7.366473146,7.366473146,7.366473146,7.366473146,7.366473146,7.366473146,7.366473146,7.366473146 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Difference|Land area weighted,days/yr,14.70856946,14.70856946,14.70856946,14.70856946,14.70856946,14.70856946,14.70856946,14.70856946,14.70856946,14.70856946 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Difference|Land area weighted,days/yr,-3.372419063,-3.372419063,-3.372419063,-3.372419063,-3.372419063,-3.372419063,-3.372419063,-3.372419063,-3.372419063,-3.372419063 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Difference|Land area weighted,days/yr,3.766068341,3.766068341,3.766068341,3.766068341,3.766068341,3.766068341,3.766068341,3.766068341,3.766068341,3.766068341 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Difference|Land area weighted,days/yr,-0.966451186,-0.966451186,-0.966451186,-0.966451186,-0.966451186,-0.966451186,-0.966451186,-0.966451186,-0.966451186,-0.966451186 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Difference|Land area weighted,days/yr,4.503347733,4.503347733,4.503347733,4.503347733,4.503347733,4.503347733,4.503347733,4.503347733,4.503347733,4.503347733 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Difference|Land area weighted,days/yr,16.52477786,16.52477786,16.52477786,16.52477786,16.52477786,16.52477786,16.52477786,16.52477786,16.52477786,16.52477786 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Difference|Land area weighted,days/yr,1.274081516,1.274081516,1.274081516,1.274081516,1.274081516,1.274081516,1.274081516,1.274081516,1.274081516,1.274081516 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Difference|Land area weighted,days/yr,15.51215679,15.51215679,15.51215679,15.51215679,15.51215679,15.51215679,15.51215679,15.51215679,15.51215679,15.51215679 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Difference|Land area weighted,days/yr,18.29782141,18.29782141,18.29782141,18.29782141,18.29782141,18.29782141,18.29782141,18.29782141,18.29782141,18.29782141 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Difference|Land area weighted,days/yr,6.198032013,6.198032013,6.198032013,6.198032013,6.198032013,6.198032013,6.198032013,6.198032013,6.198032013,6.198032013 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Difference|Land area weighted,days/yr,-13.26264009,-13.26264009,-13.26264009,-13.26264009,-13.26264009,-13.26264009,-13.26264009,-13.26264009,-13.26264009,-13.26264009 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Difference|Land area weighted,days/yr,0.992365048,0.992365048,0.992365048,0.992365048,0.992365048,0.992365048,0.992365048,0.992365048,0.992365048,0.992365048 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Difference|Land area weighted,days/yr,4.848724791,4.848724791,4.848724791,4.848724791,4.848724791,4.848724791,4.848724791,4.848724791,4.848724791,4.848724791 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Difference|Land area weighted,days/yr,7.980165391,7.980165391,7.980165391,7.980165391,7.980165391,7.980165391,7.980165391,7.980165391,7.980165391,7.980165391 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Difference|Land area weighted,days/yr,-4.528451567,-4.528451567,-4.528451567,-4.528451567,-4.528451567,-4.528451567,-4.528451567,-4.528451567,-4.528451567,-4.528451567 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Difference|Land area weighted,days/yr,-12.16337653,-12.16337653,-12.16337653,-12.16337653,-12.16337653,-12.16337653,-12.16337653,-12.16337653,-12.16337653,-12.16337653 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Difference|Land area weighted,days/yr,-9.706654549,-9.706654549,-9.706654549,-9.706654549,-9.706654549,-9.706654549,-9.706654549,-9.706654549,-9.706654549,-9.706654549 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Difference|Land area weighted,days/yr,-0.685158419,-0.685158419,-0.685158419,-0.685158419,-0.685158419,-0.685158419,-0.685158419,-0.685158419,-0.685158419,-0.685158419 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Difference|Land area weighted,days/yr,-6.939583711,-6.939583711,-6.939583711,-6.939583711,-6.939583711,-6.939583711,-6.939583711,-6.939583711,-6.939583711,-6.939583711 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Difference|Land area weighted,days/yr,-11.03987194,-11.03987194,-11.03987194,-11.03987194,-11.03987194,-11.03987194,-11.03987194,-11.03987194,-11.03987194,-11.03987194 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Difference|Land area weighted,days/yr,17.315619,17.315619,17.315619,17.315619,17.315619,17.315619,17.315619,17.315619,17.315619,17.315619 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Difference|Land area weighted,days/yr,-9.351567097,-9.351567097,-9.351567097,-9.351567097,-9.351567097,-9.351567097,-9.351567097,-9.351567097,-9.351567097,-9.351567097 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Difference|Land area weighted,days/yr,-6.576293414,-6.576293414,-6.576293414,-6.576293414,-6.576293414,-6.576293414,-6.576293414,-6.576293414,-6.576293414,-6.576293414 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Difference|Land area weighted,days/yr,11.41756149,11.41756149,11.41756149,11.41756149,11.41756149,11.41756149,11.41756149,11.41756149,11.41756149,11.41756149 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Difference|Land area weighted,days/yr,70.62680564,70.62680564,70.62680564,70.62680564,70.62680564,70.62680564,70.62680564,70.62680564,70.62680564,70.62680564 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Difference|Land area weighted,days/yr,14.92737305,14.92737305,14.92737305,14.92737305,14.92737305,14.92737305,14.92737305,14.92737305,14.92737305,14.92737305 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Difference|Land area weighted,days/yr,5.157692495,5.157692495,5.157692495,5.157692495,5.157692495,5.157692495,5.157692495,5.157692495,5.157692495,5.157692495 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Difference|Land area weighted,days/yr,-7.808259791,-7.808259791,-7.808259791,-7.808259791,-7.808259791,-7.808259791,-7.808259791,-7.808259791,-7.808259791,-7.808259791 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Difference|Land area weighted,days/yr,8.037828321,8.037828321,8.037828321,8.037828321,8.037828321,8.037828321,8.037828321,8.037828321,8.037828321,8.037828321 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Difference|Land area weighted,days/yr,-7.232293905,-7.232293905,-7.232293905,-7.232293905,-7.232293905,-7.232293905,-7.232293905,-7.232293905,-7.232293905,-7.232293905 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Difference|Land area weighted,days/yr,0.033938596,0.033938596,0.033938596,0.033938596,0.033938596,0.033938596,0.033938596,0.033938596,0.033938596,0.033938596 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Difference|Land area weighted,days/yr,1.027643474,1.027643474,1.027643474,1.027643474,1.027643474,1.027643474,1.027643474,1.027643474,1.027643474,1.027643474 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Difference|Land area weighted,days/yr,-10.28455484,-10.28455484,-10.28455484,-10.28455484,-10.28455484,-10.28455484,-10.28455484,-10.28455484,-10.28455484,-10.28455484 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Difference|Land area weighted,days/yr,-0.772588837,-0.772588837,-0.772588837,-0.772588837,-0.772588837,-0.772588837,-0.772588837,-0.772588837,-0.772588837,-0.772588837 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Difference|Land area weighted,days/yr,-5.947801432,-5.947801432,-5.947801432,-5.947801432,-5.947801432,-5.947801432,-5.947801432,-5.947801432,-5.947801432,-5.947801432 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Difference|Land area weighted,days/yr,8.028182212,8.028182212,8.028182212,8.028182212,8.028182212,8.028182212,8.028182212,8.028182212,8.028182212,8.028182212 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Difference|Land area weighted,days/yr,-4.291481593,-4.291481593,-4.291481593,-4.291481593,-4.291481593,-4.291481593,-4.291481593,-4.291481593,-4.291481593,-4.291481593 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Difference|Land area weighted,days/yr,-10.10778845,-10.10778845,-10.10778845,-10.10778845,-10.10778845,-10.10778845,-10.10778845,-10.10778845,-10.10778845,-10.10778845 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Difference|Land area weighted,days/yr,10.08707354,10.08707354,10.08707354,10.08707354,10.08707354,10.08707354,10.08707354,10.08707354,10.08707354,10.08707354 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Difference|Land area weighted,days/yr,20.88939378,20.88939378,20.88939378,20.88939378,20.88939378,20.88939378,20.88939378,20.88939378,20.88939378,20.88939378 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Difference|Land area weighted,days/yr,9.377259533,9.377259533,9.377259533,9.377259533,9.377259533,9.377259533,9.377259533,9.377259533,9.377259533,9.377259533 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Difference|Land area weighted,days/yr,3.507422518,3.507422518,3.507422518,3.507422518,3.507422518,3.507422518,3.507422518,3.507422518,3.507422518,3.507422518 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Difference|Land area weighted,days/yr,22.03589509,22.03589509,22.03589509,22.03589509,22.03589509,22.03589509,22.03589509,22.03589509,22.03589509,22.03589509 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Difference|Land area weighted,days/yr,9.932152341,9.932152341,9.932152341,9.932152341,9.932152341,9.932152341,9.932152341,9.932152341,9.932152341,9.932152341 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Difference|Land area weighted,days/yr,4.243106654,4.243106654,4.243106654,4.243106654,4.243106654,4.243106654,4.243106654,4.243106654,4.243106654,4.243106654 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Difference|Land area weighted,days/yr,-2.002822898,-2.002822898,-2.002822898,-2.002822898,-2.002822898,-2.002822898,-2.002822898,-2.002822898,-2.002822898,-2.002822898 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Difference|Land area weighted,days/yr,1.120849932,1.120849932,1.120849932,1.120849932,1.120849932,1.120849932,1.120849932,1.120849932,1.120849932,1.120849932 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Difference|Land area weighted,days/yr,-0.702330024,-0.702330024,-0.702330024,-0.702330024,-0.702330024,-0.702330024,-0.702330024,-0.702330024,-0.702330024,-0.702330024 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Difference|Land area weighted,days/yr,9.52401873,9.52401873,9.52401873,9.52401873,9.52401873,9.52401873,9.52401873,9.52401873,9.52401873,9.52401873 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Difference|Land area weighted,days/yr,-14.36126382,-14.36126382,-14.36126382,-14.36126382,-14.36126382,-14.36126382,-14.36126382,-14.36126382,-14.36126382,-14.36126382 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.142542563,-1.142542563,-1.142542563,-1.142542563,-1.142542563,-1.142542563,-1.142542563,-1.142542563,-1.142542563,-1.142542563 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Difference|Land area weighted,days/yr,5.633471139,5.633471139,5.633471139,5.633471139,5.633471139,5.633471139,5.633471139,5.633471139,5.633471139,5.633471139 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Difference|Land area weighted,days/yr,-8.006517739,-8.006517739,-8.006517739,-8.006517739,-8.006517739,-8.006517739,-8.006517739,-8.006517739,-8.006517739,-8.006517739 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Difference|Land area weighted,days/yr,13.84423173,13.84423173,13.84423173,13.84423173,13.84423173,13.84423173,13.84423173,13.84423173,13.84423173,13.84423173 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Difference|Land area weighted,days/yr,-4.891071943,-4.891071943,-4.891071943,-4.891071943,-4.891071943,-4.891071943,-4.891071943,-4.891071943,-4.891071943,-4.891071943 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Difference|Land area weighted,days/yr,12.01268407,12.01268407,12.01268407,12.01268407,12.01268407,12.01268407,12.01268407,12.01268407,12.01268407,12.01268407 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Difference|Land area weighted,days/yr,17.98738585,17.98738585,17.98738585,17.98738585,17.98738585,17.98738585,17.98738585,17.98738585,17.98738585,17.98738585 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Difference|Land area weighted,days/yr,6.730134052,6.730134052,6.730134052,6.730134052,6.730134052,6.730134052,6.730134052,6.730134052,6.730134052,6.730134052 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Difference|Land area weighted,days/yr,10.2708614,10.2708614,10.2708614,10.2708614,10.2708614,10.2708614,10.2708614,10.2708614,10.2708614,10.2708614 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Difference|Land area weighted,days/yr,11.66619329,11.66619329,11.66619329,11.66619329,11.66619329,11.66619329,11.66619329,11.66619329,11.66619329,11.66619329 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Difference|Land area weighted,days/yr,-10.32292366,-10.32292366,-10.32292366,-10.32292366,-10.32292366,-10.32292366,-10.32292366,-10.32292366,-10.32292366,-10.32292366 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Difference|Land area weighted,days/yr,-4.847603164,-4.847603164,-4.847603164,-4.847603164,-4.847603164,-4.847603164,-4.847603164,-4.847603164,-4.847603164,-4.847603164 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Difference|Land area weighted,days/yr,2.214008253,2.214008253,2.214008253,2.214008253,2.214008253,2.214008253,2.214008253,2.214008253,2.214008253,2.214008253 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Difference|Land area weighted,days/yr,1.156269045,1.156269045,1.156269045,1.156269045,1.156269045,1.156269045,1.156269045,1.156269045,1.156269045,1.156269045 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Difference|Land area weighted,days/yr,-0.201595826,-0.201595826,-0.201595826,-0.201595826,-0.201595826,-0.201595826,-0.201595826,-0.201595826,-0.201595826,-0.201595826 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Difference|Land area weighted,days/yr,3.120115118,3.120115118,3.120115118,3.120115118,3.120115118,3.120115118,3.120115118,3.120115118,3.120115118,3.120115118 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Difference|Land area weighted,days/yr,6.527212515,6.527212515,6.527212515,6.527212515,6.527212515,6.527212515,6.527212515,6.527212515,6.527212515,6.527212515 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Difference|Land area weighted,days/yr,6.719247432,6.719247432,6.719247432,6.719247432,6.719247432,6.719247432,6.719247432,6.719247432,6.719247432,6.719247432 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Difference|Land area weighted,days/yr,19.63457631,19.63457631,19.63457631,19.63457631,19.63457631,19.63457631,19.63457631,19.63457631,19.63457631,19.63457631 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Difference|Land area weighted,days/yr,8.301420878,8.301420878,8.301420878,8.301420878,8.301420878,8.301420878,8.301420878,8.301420878,8.301420878,8.301420878 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Difference|Land area weighted,days/yr,-0.595948662,-0.595948662,-0.595948662,-0.595948662,-0.595948662,-0.595948662,-0.595948662,-0.595948662,-0.595948662,-0.595948662 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Difference|Land area weighted,days/yr,5.262558549,5.262558549,5.262558549,5.262558549,5.262558549,5.262558549,5.262558549,5.262558549,5.262558549,5.262558549 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Difference|Land area weighted,days/yr,-3.792767078,-3.792767078,-3.792767078,-3.792767078,-3.792767078,-3.792767078,-3.792767078,-3.792767078,-3.792767078,-3.792767078 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Difference|Land area weighted,days/yr,-1.687944868,-1.687944868,-1.687944868,-1.687944868,-1.687944868,-1.687944868,-1.687944868,-1.687944868,-1.687944868,-1.687944868 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Difference|Land area weighted,days/yr,9.413394732,9.413394732,9.413394732,9.413394732,9.413394732,9.413394732,9.413394732,9.413394732,9.413394732,9.413394732 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Difference|Land area weighted,days/yr,23.26681784,23.26681784,23.26681784,23.26681784,23.26681784,23.26681784,23.26681784,23.26681784,23.26681784,23.26681784 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Difference|Land area weighted,days/yr,6.259218193,6.259218193,6.259218193,6.259218193,6.259218193,6.259218193,6.259218193,6.259218193,6.259218193,6.259218193 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Difference|Land area weighted,days/yr,4.6544459,4.6544459,4.6544459,4.6544459,4.6544459,4.6544459,4.6544459,4.6544459,4.6544459,4.6544459 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Difference|Land area weighted,days/yr,8.822674247,8.822674247,8.822674247,8.822674247,8.822674247,8.822674247,8.822674247,8.822674247,8.822674247,8.822674247 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Difference|Land area weighted,days/yr,6.952814547,6.952814547,6.952814547,6.952814547,6.952814547,6.952814547,6.952814547,6.952814547,6.952814547,6.952814547 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Difference|Land area weighted,days/yr,9.219439079,9.219439079,9.219439079,9.219439079,9.219439079,9.219439079,9.219439079,9.219439079,9.219439079,9.219439079 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Difference|Land area weighted,days/yr,-24.3985406,-24.3985406,-24.3985406,-24.3985406,-24.3985406,-24.3985406,-24.3985406,-24.3985406,-24.3985406,-24.3985406 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Difference|Land area weighted,days/yr,1.981980553,1.981980553,1.981980553,1.981980553,1.981980553,1.981980553,1.981980553,1.981980553,1.981980553,1.981980553 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Difference|Land area weighted,days/yr,-2.912335816,-2.912335816,-2.912335816,-2.912335816,-2.912335816,-2.912335816,-2.912335816,-2.912335816,-2.912335816,-2.912335816 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.609122516,-2.609122516,-2.609122516,-2.609122516,-2.609122516,-2.609122516,-2.609122516,-2.609122516,-2.609122516,-2.609122516 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Difference|Land area weighted,days/yr,43.01615665,43.01615665,43.01615665,43.01615665,43.01615665,43.01615665,43.01615665,43.01615665,43.01615665,43.01615665 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Difference|Land area weighted,days/yr,12.25552129,12.25552129,12.25552129,12.25552129,12.25552129,12.25552129,12.25552129,12.25552129,12.25552129,12.25552129 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Difference|Land area weighted,days/yr,-7.880461389,-7.880461389,-7.880461389,-7.880461389,-7.880461389,-7.880461389,-7.880461389,-7.880461389,-7.880461389,-7.880461389 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Difference|Land area weighted,days/yr,-4.293439499,-4.293439499,-4.293439499,-4.293439499,-4.293439499,-4.293439499,-4.293439499,-4.293439499,-4.293439499,-4.293439499 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.463448297,-0.463448297,-0.463448297,-0.463448297,-0.463448297,-0.463448297,-0.463448297,-0.463448297,-0.463448297,-0.463448297 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Difference|Land area weighted,days/yr,2.256179025,2.256179025,2.256179025,2.256179025,2.256179025,2.256179025,2.256179025,2.256179025,2.256179025,2.256179025 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Difference|Land area weighted,days/yr,0.112148536,0.112148536,0.112148536,0.112148536,0.112148536,0.112148536,0.112148536,0.112148536,0.112148536,0.112148536 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Difference|Land area weighted,days/yr,-1.093380472,-1.093380472,-1.093380472,-1.093380472,-1.093380472,-1.093380472,-1.093380472,-1.093380472,-1.093380472,-1.093380472 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Difference|Land area weighted,days/yr,12.13702642,12.13702642,12.13702642,12.13702642,12.13702642,12.13702642,12.13702642,12.13702642,12.13702642,12.13702642 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Difference|Land area weighted,days/yr,-11.93531542,-11.93531542,-11.93531542,-11.93531542,-11.93531542,-11.93531542,-11.93531542,-11.93531542,-11.93531542,-11.93531542 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.074729519,-4.074729519,-4.074729519,-4.074729519,-4.074729519,-4.074729519,-4.074729519,-4.074729519,-4.074729519,-4.074729519 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Difference|Land area weighted,days/yr,5.498098546,5.498098546,5.498098546,5.498098546,5.498098546,5.498098546,5.498098546,5.498098546,5.498098546,5.498098546 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Difference|Land area weighted,days/yr,7.422567373,7.422567373,7.422567373,7.422567373,7.422567373,7.422567373,7.422567373,7.422567373,7.422567373,7.422567373 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Difference|Land area weighted,days/yr,11.30388192,11.30388192,11.30388192,11.30388192,11.30388192,11.30388192,11.30388192,11.30388192,11.30388192,11.30388192 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Difference|Land area weighted,days/yr,1.058426397,1.058426397,1.058426397,1.058426397,1.058426397,1.058426397,1.058426397,1.058426397,1.058426397,1.058426397 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Difference|Land area weighted,days/yr,13.19433404,13.19433404,13.19433404,13.19433404,13.19433404,13.19433404,13.19433404,13.19433404,13.19433404,13.19433404 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Difference|Land area weighted,days/yr,13.37824754,13.37824754,13.37824754,13.37824754,13.37824754,13.37824754,13.37824754,13.37824754,13.37824754,13.37824754 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Difference|Land area weighted,days/yr,66.1247102,66.1247102,66.1247102,66.1247102,66.1247102,66.1247102,66.1247102,66.1247102,66.1247102,66.1247102 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Difference|Land area weighted,days/yr,-8.060905887,-8.060905887,-8.060905887,-8.060905887,-8.060905887,-8.060905887,-8.060905887,-8.060905887,-8.060905887,-8.060905887 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Difference|Land area weighted,days/yr,-0.795147986,-0.795147986,-0.795147986,-0.795147986,-0.795147986,-0.795147986,-0.795147986,-0.795147986,-0.795147986,-0.795147986 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Difference|Land area weighted,days/yr,10.5310012,10.5310012,10.5310012,10.5310012,10.5310012,10.5310012,10.5310012,10.5310012,10.5310012,10.5310012 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Difference|Land area weighted,days/yr,3.757620752,3.757620752,3.757620752,3.757620752,3.757620752,3.757620752,3.757620752,3.757620752,3.757620752,3.757620752 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Difference|Land area weighted,days/yr,-7.081865842,-7.081865842,-7.081865842,-7.081865842,-7.081865842,-7.081865842,-7.081865842,-7.081865842,-7.081865842,-7.081865842 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Difference|Land area weighted,days/yr,0.873464233,0.873464233,0.873464233,0.873464233,0.873464233,0.873464233,0.873464233,0.873464233,0.873464233,0.873464233 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Difference|Land area weighted,days/yr,14.26928033,14.26928033,14.26928033,14.26928033,14.26928033,14.26928033,14.26928033,14.26928033,14.26928033,14.26928033 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Difference|Land area weighted,days/yr,11.93396073,11.93396073,11.93396073,11.93396073,11.93396073,11.93396073,11.93396073,11.93396073,11.93396073,11.93396073 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Difference|Land area weighted,days/yr,6.513154467,6.513154467,6.513154467,6.513154467,6.513154467,6.513154467,6.513154467,6.513154467,6.513154467,6.513154467 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Difference|Land area weighted,days/yr,13.78827613,13.78827613,13.78827613,13.78827613,13.78827613,13.78827613,13.78827613,13.78827613,13.78827613,13.78827613 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Difference|Land area weighted,days/yr,0.573184107,0.573184107,0.573184107,0.573184107,0.573184107,0.573184107,0.573184107,0.573184107,0.573184107,0.573184107 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Difference|Land area weighted,days/yr,-0.521433915,-0.521433915,-0.521433915,-0.521433915,-0.521433915,-0.521433915,-0.521433915,-0.521433915,-0.521433915,-0.521433915 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Difference|Land area weighted,days/yr,5.268248059,5.268248059,5.268248059,5.268248059,5.268248059,5.268248059,5.268248059,5.268248059,5.268248059,5.268248059 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Difference|Land area weighted,days/yr,2.505761172,2.505761172,2.505761172,2.505761172,2.505761172,2.505761172,2.505761172,2.505761172,2.505761172,2.505761172 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Difference|Land area weighted,days/yr,-6.648284484,-6.648284484,-6.648284484,-6.648284484,-6.648284484,-6.648284484,-6.648284484,-6.648284484,-6.648284484,-6.648284484 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Difference|Land area weighted,days/yr,6.457137148,6.457137148,6.457137148,6.457137148,6.457137148,6.457137148,6.457137148,6.457137148,6.457137148,6.457137148 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Difference|Land area weighted,days/yr,12.08391068,12.08391068,12.08391068,12.08391068,12.08391068,12.08391068,12.08391068,12.08391068,12.08391068,12.08391068 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Difference|Land area weighted,days/yr,8.844345539,8.844345539,8.844345539,8.844345539,8.844345539,8.844345539,8.844345539,8.844345539,8.844345539,8.844345539 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Difference|Land area weighted,days/yr,3.956183344,3.956183344,3.956183344,3.956183344,3.956183344,3.956183344,3.956183344,3.956183344,3.956183344,3.956183344 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Difference|Land area weighted,days/yr,3.316036837,3.316036837,3.316036837,3.316036837,3.316036837,3.316036837,3.316036837,3.316036837,3.316036837,3.316036837 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Difference|Land area weighted,days/yr,24.59744333,24.59744333,24.59744333,24.59744333,24.59744333,24.59744333,24.59744333,24.59744333,24.59744333,24.59744333 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Difference|Land area weighted,days/yr,-0.673476875,-0.673476875,-0.673476875,-0.673476875,-0.673476875,-0.673476875,-0.673476875,-0.673476875,-0.673476875,-0.673476875 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Difference|Land area weighted,days/yr,2.032103013,2.032103013,2.032103013,2.032103013,2.032103013,2.032103013,2.032103013,2.032103013,2.032103013,2.032103013 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.951869508,-1.951869508,-1.951869508,-1.951869508,-1.951869508,-1.951869508,-1.951869508,-1.951869508,-1.951869508,-1.951869508 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Difference|Land area weighted,days/yr,6.846134368,6.846134368,6.846134368,6.846134368,6.846134368,6.846134368,6.846134368,6.846134368,6.846134368,6.846134368 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Difference|Land area weighted,days/yr,15.31598557,15.31598557,15.31598557,15.31598557,15.31598557,15.31598557,15.31598557,15.31598557,15.31598557,15.31598557 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Difference|Land area weighted,days/yr,-3.87477646,-3.87477646,-3.87477646,-3.87477646,-3.87477646,-3.87477646,-3.87477646,-3.87477646,-3.87477646,-3.87477646 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Difference|Land area weighted,days/yr,15.07319776,15.07319776,15.07319776,15.07319776,15.07319776,15.07319776,15.07319776,15.07319776,15.07319776,15.07319776 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Difference|Land area weighted,days/yr,-1.800044452,-1.800044452,-1.800044452,-1.800044452,-1.800044452,-1.800044452,-1.800044452,-1.800044452,-1.800044452,-1.800044452 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Difference|Land area weighted,days/yr,10.79062568,10.79062568,10.79062568,10.79062568,10.79062568,10.79062568,10.79062568,10.79062568,10.79062568,10.79062568 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Difference|Land area weighted,days/yr,1.450510912,1.450510912,1.450510912,1.450510912,1.450510912,1.450510912,1.450510912,1.450510912,1.450510912,1.450510912 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Difference|Land area weighted,days/yr,15.28873318,15.28873318,15.28873318,15.28873318,15.28873318,15.28873318,15.28873318,15.28873318,15.28873318,15.28873318 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Difference|Land area weighted,days/yr,4.718129742,4.718129742,4.718129742,4.718129742,4.718129742,4.718129742,4.718129742,4.718129742,4.718129742,4.718129742 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Difference|Land area weighted,days/yr,6.22497993,6.22497993,6.22497993,6.22497993,6.22497993,6.22497993,6.22497993,6.22497993,6.22497993,6.22497993 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Difference|Land area weighted,days/yr,-1.038900248,-1.038900248,-1.038900248,-1.038900248,-1.038900248,-1.038900248,-1.038900248,-1.038900248,-1.038900248,-1.038900248 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Difference|Land area weighted,days/yr,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Difference|Land area weighted,days/yr,12.31860728,12.31860728,12.31860728,12.31860728,12.31860728,12.31860728,12.31860728,12.31860728,12.31860728,12.31860728 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Difference|Land area weighted,days/yr,8.695064497,8.695064497,8.695064497,8.695064497,8.695064497,8.695064497,8.695064497,8.695064497,8.695064497,8.695064497 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Difference|Land area weighted,days/yr,8.523948399,8.523948399,8.523948399,8.523948399,8.523948399,8.523948399,8.523948399,8.523948399,8.523948399,8.523948399 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Difference|Land area weighted,days/yr,3.087082143,3.087082143,3.087082143,3.087082143,3.087082143,3.087082143,3.087082143,3.087082143,3.087082143,3.087082143 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Difference|Land area weighted,days/yr,12.40672332,12.40672332,12.40672332,12.40672332,12.40672332,12.40672332,12.40672332,12.40672332,12.40672332,12.40672332 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Difference|Land area weighted,days/yr,-6.482280834,-6.482280834,-6.482280834,-6.482280834,-6.482280834,-6.482280834,-6.482280834,-6.482280834,-6.482280834,-6.482280834 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Difference|Land area weighted,days/yr,5.984233675,5.984233675,5.984233675,5.984233675,5.984233675,5.984233675,5.984233675,5.984233675,5.984233675,5.984233675 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Difference|Land area weighted,days/yr,19.62058833,19.62058833,19.62058833,19.62058833,19.62058833,19.62058833,19.62058833,19.62058833,19.62058833,19.62058833 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Difference|Land area weighted,days/yr,-6.071159452,-6.071159452,-6.071159452,-6.071159452,-6.071159452,-6.071159452,-6.071159452,-6.071159452,-6.071159452,-6.071159452 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Difference|Land area weighted,days/yr,86.22882912,86.22882912,86.22882912,86.22882912,86.22882912,86.22882912,86.22882912,86.22882912,86.22882912,86.22882912 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Difference|Land area weighted,days/yr,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Difference|Land area weighted,days/yr,39.21169656,39.21169656,39.21169656,39.21169656,39.21169656,39.21169656,39.21169656,39.21169656,39.21169656,39.21169656 +Climate Solutions,ssp2_3p5,CAN,cdd|Hazard|Difference|Population weighted,days/yr,3.09031755,3.093128682,3.097383958,3.106250065,3.113812352,3.121824411,3.130916465,3.141189206,3.152749501,3.167262636 +Climate Solutions,ssp2_3p5,STP,cdd|Hazard|Difference|Population weighted,days/yr,10.64678339,10.64918144,10.65129572,10.65311588,10.65461222,10.655802,10.65678852,10.65762805,10.65833343,10.65897669 +Climate Solutions,ssp2_3p5,TKM,cdd|Hazard|Difference|Population weighted,days/yr,-0.423384266,-0.419515601,-0.414654445,-0.408382866,-0.401396124,-0.393658826,-0.385794478,-0.380082908,-0.374863765,-0.366606664 +Climate Solutions,ssp2_3p5,LTU,cdd|Hazard|Difference|Population weighted,days/yr,-2.354830541,-2.385292719,-2.414613473,-2.439564789,-2.461118892,-2.479368201,-2.495174656,-2.510265688,-2.524774731,-2.539078861 +Climate Solutions,ssp2_3p5,KHM,cdd|Hazard|Difference|Population weighted,days/yr,4.816769817,4.818112253,4.820347726,4.825999833,4.831806549,4.838279445,4.845950179,4.853123986,4.860078213,4.867501171 +Climate Solutions,ssp2_3p5,ETH,cdd|Hazard|Difference|Population weighted,days/yr,-18.90549347,-18.87670233,-18.86288061,-18.85843543,-18.86120805,-18.869181,-18.88129973,-18.89627445,-18.91315138,-18.93102776 +Climate Solutions,ssp2_3p5,SWZ,cdd|Hazard|Difference|Population weighted,days/yr,6.86727295,6.928029585,6.989990678,7.046071572,7.087475078,7.119794109,7.147109751,7.169712468,7.186223145,7.198893958 +Climate Solutions,ssp2_3p5,PSE,cdd|Hazard|Difference|Population weighted,days/yr,0.152726661,0.156149953,0.164515144,0.176101957,0.190254902,0.205688214,0.221715264,0.237413642,0.252132871,0.265670918 +Climate Solutions,ssp2_3p5,ARG,cdd|Hazard|Difference|Population weighted,days/yr,3.184903003,3.173336375,3.162564124,3.154988751,3.148724402,3.144045317,3.140499984,3.137794416,3.136882128,3.134746401 +Climate Solutions,ssp2_3p5,BOL,cdd|Hazard|Difference|Population weighted,days/yr,4.049881143,4.168048119,4.264782329,4.340535153,4.399997198,4.445795582,4.482314496,4.50896269,4.52992893,4.546333588 +Climate Solutions,ssp2_3p5,BHS,cdd|Hazard|Difference|Population weighted,days/yr,-2.589097556,-2.531486489,-2.500154196,-2.475392369,-2.458711969,-2.438248204,-2.424682602,-2.406840643,-2.391836665,-2.380253903 +Climate Solutions,ssp2_3p5,BFA,cdd|Hazard|Difference|Population weighted,days/yr,-6.080948884,-6.080208792,-6.079123164,-6.07845264,-6.078188071,-6.077842573,-6.077587403,-6.077256739,-6.076718599,-6.076125142 +Climate Solutions,ssp2_3p5,GHA,cdd|Hazard|Difference|Population weighted,days/yr,-14.79371168,-14.80930416,-14.81723801,-14.82139415,-14.82235628,-14.82056673,-14.81829302,-14.81529706,-14.81114882,-14.8062998 +Climate Solutions,ssp2_3p5,SAU,cdd|Hazard|Difference|Population weighted,days/yr,-8.5894686,-8.59251706,-8.595547945,-8.597302448,-8.599213701,-8.600280687,-8.600719729,-8.600548751,-8.600208317,-8.60004633 +Climate Solutions,ssp2_3p5,CPV,cdd|Hazard|Difference|Population weighted,days/yr,-15.73758333,-15.74458628,-15.74961674,-15.75307391,-15.75518238,-15.75615345,-15.75669987,-15.75710054,-15.75746577,-15.75784132 +Climate Solutions,ssp2_3p5,SVN,cdd|Hazard|Difference|Population weighted,days/yr,1.134967954,1.074763152,1.021011162,0.971461674,0.929630768,0.89626515,0.865919025,0.833407149,0.799984627,0.772978911 +Climate Solutions,ssp2_3p5,GTM,cdd|Hazard|Difference|Population weighted,days/yr,13.85452339,13.85303854,13.87896851,13.92128087,13.97240586,14.02837374,14.0828862,14.13540822,14.18634337,14.23485904 +Climate Solutions,ssp2_3p5,BIH,cdd|Hazard|Difference|Population weighted,days/yr,12.09951213,12.09298432,12.08485145,12.07553549,12.06517844,12.05409687,12.04364007,12.03460726,12.02753666,12.02329993 +Climate Solutions,ssp2_3p5,GIN,cdd|Hazard|Difference|Population weighted,days/yr,-2.5175764,-2.534460391,-2.548912245,-2.561734592,-2.573852018,-2.584985524,-2.593888984,-2.600301266,-2.604417925,-2.605822237 +Climate Solutions,ssp2_3p5,JOR,cdd|Hazard|Difference|Population weighted,days/yr,-0.078441135,-0.07753028,-0.078401321,-0.080041533,-0.082400018,-0.08495173,-0.087624384,-0.090213402,-0.092627034,-0.09467551 +Climate Solutions,ssp2_3p5,COG,cdd|Hazard|Difference|Population weighted,days/yr,6.975255548,6.999909035,7.014532635,7.022092373,7.024377472,7.025402559,7.022781682,7.01980915,7.015797374,7.009459773 +Climate Solutions,ssp2_3p5,ESP,cdd|Hazard|Difference|Population weighted,days/yr,20.94841533,20.93615133,20.91899167,20.90372161,20.88884112,20.87227208,20.85464486,20.83877994,20.82523091,20.8136387 +Climate Solutions,ssp2_3p5,LBR,cdd|Hazard|Difference|Population weighted,days/yr,-3.516062953,-3.465177633,-3.433389964,-3.411318472,-3.392820466,-3.377531589,-3.367366134,-3.361237302,-3.358744774,-3.359291676 +Climate Solutions,ssp2_3p5,NLD,cdd|Hazard|Difference|Population weighted,days/yr,8.80496187,8.802813366,8.800882049,8.79824502,8.795460061,8.793592031,8.792699971,8.792435633,8.792635056,8.793257308 +Climate Solutions,ssp2_3p5,JAM,cdd|Hazard|Difference|Population weighted,days/yr,6.830595464,6.821190348,6.812867796,6.805140793,6.797823307,6.791382745,6.786279704,6.782166352,6.778816569,6.77612931 +Climate Solutions,ssp2_3p5,OMN,cdd|Hazard|Difference|Population weighted,days/yr,-9.59300337,-9.45025018,-9.432183068,-9.425624255,-9.423402534,-9.427396722,-9.440775163,-9.46423562,-9.492892611,-9.527943551 +Climate Solutions,ssp2_3p5,TZA,cdd|Hazard|Difference|Population weighted,days/yr,0.570689918,0.551989138,0.538612585,0.529160137,0.522763293,0.51841656,0.51464777,0.511118681,0.50757347,0.504495981 +Climate Solutions,ssp2_3p5,ALB,cdd|Hazard|Difference|Population weighted,days/yr,12.82610183,12.78313469,12.75285764,12.73336702,12.72227629,12.71750927,12.71521816,12.71464295,12.71512151,12.71436421 +Climate Solutions,ssp2_3p5,GAB,cdd|Hazard|Difference|Population weighted,days/yr,7.932575025,7.910479882,7.900552267,7.898677125,7.901309131,7.896946474,7.892906538,7.881037585,7.871272405,7.86630846 +Climate Solutions,ssp2_3p5,NZL,cdd|Hazard|Difference|Population weighted,days/yr,1.087022079,1.090936213,1.093660219,1.097800418,1.099994143,1.102220196,1.104263173,1.10660334,1.108867903,1.111708672 +Climate Solutions,ssp2_3p5,YEM,cdd|Hazard|Difference|Population weighted,days/yr,-9.328480121,-9.349085103,-9.36894111,-9.3873636,-9.40213722,-9.415300529,-9.426788598,-9.436683436,-9.445455485,-9.453055972 +Climate Solutions,ssp2_3p5,PAK,cdd|Hazard|Difference|Population weighted,days/yr,-7.008398178,-7.071483429,-7.117160862,-7.15285222,-7.184383519,-7.211607048,-7.235583604,-7.256980747,-7.275821619,-7.291846948 +Climate Solutions,ssp2_3p5,WSM,cdd|Hazard|Difference|Population weighted,days/yr,7.074704047,7.075490881,7.080717206,7.09247422,7.109708351,7.132521906,7.15422815,7.1740919,7.191527396,7.206141727 +Climate Solutions,ssp2_3p5,SVK,cdd|Hazard|Difference|Population weighted,days/yr,4.394873187,4.397695106,4.400282332,4.402219102,4.40328893,4.40437135,4.405488875,4.406069335,4.406349225,4.406725074 +Climate Solutions,ssp2_3p5,ARE,cdd|Hazard|Difference|Population weighted,days/yr,-3.603344766,-3.645578974,-3.648873588,-3.642664676,-3.631607976,-3.617938637,-3.601536768,-3.585640405,-3.572805563,-3.56243456 +Climate Solutions,ssp2_3p5,GUM,cdd|Hazard|Difference|Population weighted,days/yr,-0.396845891,-0.374226266,-0.365918388,-0.361269015,-0.358448212,-0.35674521,-0.35581173,-0.355288278,-0.354897,-0.354586593 +Climate Solutions,ssp2_3p5,IND,cdd|Hazard|Difference|Population weighted,days/yr,-5.998147622,-6.014423511,-6.028029279,-6.043992687,-6.061349136,-6.078889994,-6.09554288,-6.110700066,-6.12391231,-6.134865389 +Climate Solutions,ssp2_3p5,AZE,cdd|Hazard|Difference|Population weighted,days/yr,15.91679723,15.98307429,16.03793256,16.0823177,16.11878699,16.14863789,16.17294268,16.1918669,16.20695788,16.21880219 +Climate Solutions,ssp2_3p5,MDG,cdd|Hazard|Difference|Population weighted,days/yr,8.745666079,8.702127277,8.677891648,8.66617286,8.663052666,8.664949441,8.67024802,8.677939274,8.68760411,8.698409341 +Climate Solutions,ssp2_3p5,LSO,cdd|Hazard|Difference|Population weighted,days/yr,9.649656301,9.656098047,9.662482717,9.6678979,9.67327271,9.677250838,9.681618907,9.687342471,9.6934748,9.700713326 +Climate Solutions,ssp2_3p5,VCT,cdd|Hazard|Difference|Population weighted,days/yr,74.19232066,74.26264887,74.32303749,74.37418457,74.41694784,74.45235289,74.48132265,74.50524154,74.52524363,74.54219249 +Climate Solutions,ssp2_3p5,KEN,cdd|Hazard|Difference|Population weighted,days/yr,-10.94343177,-10.96272874,-10.97840665,-10.99223117,-11.00417429,-11.01491749,-11.02422954,-11.0326749,-11.03952471,-11.04569426 +Climate Solutions,ssp2_3p5,KOR,cdd|Hazard|Difference|Population weighted,days/yr,5.120904567,5.124437351,5.129112342,5.135208279,5.13985449,5.143373642,5.146102544,5.14830834,5.150619612,5.152817085 +Climate Solutions,ssp2_3p5,BLR,cdd|Hazard|Difference|Population weighted,days/yr,0.244059512,0.173433401,0.10742155,0.049384608,-0.00061675,-0.043235028,-0.080368347,-0.112597037,-0.140368251,-0.164110998 +Climate Solutions,ssp2_3p5,TJK,cdd|Hazard|Difference|Population weighted,days/yr,4.724774644,4.621053573,4.515813431,4.409561628,4.304420125,4.206165216,4.120697954,4.047727578,3.987286635,3.940037423 +Climate Solutions,ssp2_3p5,TUR,cdd|Hazard|Difference|Population weighted,days/yr,15.31017689,15.30652025,15.30208065,15.29972344,15.29950215,15.29854948,15.29831111,15.29827756,15.2997397,15.30357499 +Climate Solutions,ssp2_3p5,AFG,cdd|Hazard|Difference|Population weighted,days/yr,-4.197005355,-4.213048012,-4.221899961,-4.226479726,-4.229591893,-4.230828412,-4.230704568,-4.23044621,-4.230210076,-4.230144764 +Climate Solutions,ssp2_3p5,BGD,cdd|Hazard|Difference|Population weighted,days/yr,3.392679034,3.390373277,3.386422314,3.379146028,3.369533941,3.358729397,3.348069142,3.338332744,3.330014344,3.323759714 +Climate Solutions,ssp2_3p5,MRT,cdd|Hazard|Difference|Population weighted,days/yr,1.852096181,1.827944955,1.824510012,1.821943042,1.822664999,1.81441573,1.816683083,1.820579667,1.823744235,1.82754334 +Climate Solutions,ssp2_3p5,SLB,cdd|Hazard|Difference|Population weighted,days/yr,4.03804737,4.012923086,3.991132608,3.973020047,3.957817965,3.942187208,3.924664359,3.907074886,3.888902326,3.87220895 +Climate Solutions,ssp2_3p5,LCA,cdd|Hazard|Difference|Population weighted,days/yr,12.35671503,11.94235172,11.66375912,11.46616515,11.33370305,11.28486317,11.3453682,11.51766305,11.7406379,11.96797747 +Climate Solutions,ssp2_3p5,CYP,cdd|Hazard|Difference|Population weighted,days/yr,1.50714526,1.520128755,1.534213542,1.549044976,1.562936408,1.576604788,1.590974083,1.605669542,1.618526468,1.629760368 +Climate Solutions,ssp2_3p5,PYF,cdd|Hazard|Difference|Population weighted,days/yr,-0.089750837,-0.086967577,-0.08529406,-0.08536353,-0.085768705,-0.087015848,-0.088649167,-0.090682585,-0.092489605,-0.094343818 +Climate Solutions,ssp2_3p5,FRA,cdd|Hazard|Difference|Population weighted,days/yr,16.92502123,16.927858,16.93179048,16.93574238,16.93846275,16.94166918,16.94674572,16.95241873,16.95749139,16.96227589 +Climate Solutions,ssp2_3p5,NAM,cdd|Hazard|Difference|Population weighted,days/yr,4.263743192,4.273876851,4.273879439,4.271596619,4.266212769,4.254543657,4.249311626,4.238964476,4.232287642,4.230275704 +Climate Solutions,ssp2_3p5,SOM,cdd|Hazard|Difference|Population weighted,days/yr,-14.44769107,-14.45224227,-14.45538571,-14.45459323,-14.44909519,-14.44203973,-14.43629851,-14.43182101,-14.42864712,-14.42657072 +Climate Solutions,ssp2_3p5,PER,cdd|Hazard|Difference|Population weighted,days/yr,-3.350494814,-3.424534913,-3.489531003,-3.5460043,-3.595093455,-3.636078511,-3.670751774,-3.700820838,-3.726566357,-3.749122343 +Climate Solutions,ssp2_3p5,LAO,cdd|Hazard|Difference|Population weighted,days/yr,4.526124011,4.523448023,4.509304325,4.493989865,4.474877541,4.450622961,4.427184418,4.402876106,4.379549046,4.361430046 +Climate Solutions,ssp2_3p5,SYC,cdd|Hazard|Difference|Population weighted,days/yr,6.95006032,6.955115725,6.957087704,6.95904024,6.95904024,6.959051563,6.959031331,6.959043833,6.959003157,6.959012372 +Climate Solutions,ssp2_3p5,NOR,cdd|Hazard|Difference|Population weighted,days/yr,-3.799469502,-3.792191199,-3.787845488,-3.78431163,-3.781981005,-3.780414703,-3.778704659,-3.77678618,-3.774994288,-3.772387414 +Climate Solutions,ssp2_3p5,CIV,cdd|Hazard|Difference|Population weighted,days/yr,-14.22090065,-14.20418527,-14.18731489,-14.17224947,-14.15761568,-14.14401625,-14.1325433,-14.12300627,-14.11557756,-14.11051174 +Climate Solutions,ssp2_3p5,BEN,cdd|Hazard|Difference|Population weighted,days/yr,-10.35743254,-10.34720268,-10.34527457,-10.34953853,-10.35724124,-10.36559009,-10.37452389,-10.38383937,-10.39335546,-10.40306003 +Climate Solutions,ssp2_3p5,ESH,cdd|Hazard|Difference|Population weighted,days/yr,-1.040699469,-1.04430814,-1.05103733,-1.076644286,-1.075407929,-1.096921099,-1.100845689,-1.114552485,-1.120995569,-1.126500021 +Climate Solutions,ssp2_3p5,CUB,cdd|Hazard|Difference|Population weighted,days/yr,-6.271970158,-6.2702136,-6.268227669,-6.266518001,-6.265067486,-6.263918682,-6.262951997,-6.262116062,-6.261391136,-6.260786935 +Climate Solutions,ssp2_3p5,CMR,cdd|Hazard|Difference|Population weighted,days/yr,-13.65633214,-13.58941421,-13.52805898,-13.47451137,-13.42514533,-13.38325658,-13.34647914,-13.31465093,-13.28648832,-13.26151393 +Climate Solutions,ssp2_3p5,MNE,cdd|Hazard|Difference|Population weighted,days/yr,17.36835078,17.38980182,17.39909513,17.40204468,17.40317013,17.40264808,17.40467458,17.40591024,17.4060214,17.40795792 +Climate Solutions,ssp2_3p5,TGO,cdd|Hazard|Difference|Population weighted,days/yr,-10.57392597,-10.55067695,-10.53847451,-10.53433521,-10.5356558,-10.54068109,-10.54822691,-10.55743439,-10.56808935,-10.57958934 +Climate Solutions,ssp2_3p5,CHN,cdd|Hazard|Difference|Population weighted,days/yr,1.999180277,1.95427385,1.914976939,1.883499403,1.859771858,1.840996481,1.82592799,1.813530662,1.803354173,1.794586751 +Climate Solutions,ssp2_3p5,ARM,cdd|Hazard|Difference|Population weighted,days/yr,16.01208346,16.19116305,16.37403887,16.53559753,16.66512309,16.77130404,16.85965293,16.93294157,16.99598336,17.05685849 +Climate Solutions,ssp2_3p5,ATG,cdd|Hazard|Difference|Population weighted,days/yr,70.84922433,70.84919925,70.84918532,70.8491785,70.84916695,70.84916631,70.84916581,70.84916581,70.84916017,70.84916722 +Climate Solutions,ssp2_3p5,DOM,cdd|Hazard|Difference|Population weighted,days/yr,13.87246464,13.88120853,13.88897645,13.89543295,13.9009092,13.90610954,13.91133429,13.91588382,13.91952202,13.92141606 +Climate Solutions,ssp2_3p5,UKR,cdd|Hazard|Difference|Population weighted,days/yr,5.500604163,5.503363597,5.504465759,5.50399844,5.502742485,5.500900182,5.499237414,5.497990243,5.497466771,5.497756761 +Climate Solutions,ssp2_3p5,BHR,cdd|Hazard|Difference|Population weighted,days/yr,-7.26111778,-7.262113543,-7.263247734,-7.264170351,-7.264881047,-7.265450349,-7.265870566,-7.266157993,-7.266351081,-7.266495699 +Climate Solutions,ssp2_3p5,TON,cdd|Hazard|Difference|Population weighted,days/yr,8.799192468,8.804594541,8.806874146,8.806334461,8.802049139,8.794986935,8.788398527,8.783612085,8.779412499,8.776199234 +Climate Solutions,ssp2_3p5,FIN,cdd|Hazard|Difference|Population weighted,days/yr,-5.269370305,-5.249107227,-5.231593695,-5.21540144,-5.201612549,-5.189309336,-5.178156938,-5.168568711,-5.160255534,-5.152884007 +Climate Solutions,ssp2_3p5,LBY,cdd|Hazard|Difference|Population weighted,days/yr,6.414054531,6.400328682,6.393915045,6.386879793,6.380903221,6.391318978,6.398344667,6.401063467,6.402122715,6.406321204 +Climate Solutions,ssp2_3p5,IDN,cdd|Hazard|Difference|Population weighted,days/yr,9.659987815,9.701604634,9.748043354,9.796264859,9.845558467,9.894490711,9.941924779,9.982003097,10.01579284,10.04460072 +Climate Solutions,ssp2_3p5,CAF,cdd|Hazard|Difference|Population weighted,days/yr,-9.647603199,-9.641675797,-9.638810995,-9.638673476,-9.639288804,-9.642062074,-9.645483752,-9.649646649,-9.653929245,-9.658382093 +Climate Solutions,ssp2_3p5,USA,cdd|Hazard|Difference|Population weighted,days/yr,2.823558628,2.815565009,2.807509721,2.798993102,2.790660657,2.783242723,2.776842347,2.770362097,2.764056202,2.75840055 +Climate Solutions,ssp2_3p5,SWE,cdd|Hazard|Difference|Population weighted,days/yr,-4.627463621,-4.632296952,-4.634515954,-4.63836625,-4.6402565,-4.643069979,-4.644861603,-4.646977275,-4.648787763,-4.650512888 +Climate Solutions,ssp2_3p5,VNM,cdd|Hazard|Difference|Population weighted,days/yr,8.285425668,8.279238104,8.266198194,8.248303213,8.22699118,8.203266374,8.178654381,8.154567763,8.133779015,8.115797134 +Climate Solutions,ssp2_3p5,MLI,cdd|Hazard|Difference|Population weighted,days/yr,-3.664637035,-3.661979099,-3.660926573,-3.661587751,-3.66299257,-3.66578365,-3.667345433,-3.669633866,-3.671459262,-3.673079952 +Climate Solutions,ssp2_3p5,RUS,cdd|Hazard|Difference|Population weighted,days/yr,-0.569367173,-0.588330415,-0.609532541,-0.623893518,-0.635192069,-0.646456964,-0.647521965,-0.656080355,-0.662397476,-0.667399146 +Climate Solutions,ssp2_3p5,BGR,cdd|Hazard|Difference|Population weighted,days/yr,9.338524239,9.326100403,9.315139338,9.30547556,9.296891037,9.28889447,9.281684243,9.275111987,9.269130324,9.263716162 +Climate Solutions,ssp2_3p5,MUS,cdd|Hazard|Difference|Population weighted,days/yr,19.06304238,19.03541148,19.01105612,18.9916681,18.97725811,18.96674246,18.95979018,18.95603572,18.95371794,18.95172723 +Climate Solutions,ssp2_3p5,ROU,cdd|Hazard|Difference|Population weighted,days/yr,9.384336369,9.376425911,9.371591081,9.369099754,9.369692562,9.373482333,9.378813558,9.383628209,9.386762022,9.387798305 +Climate Solutions,ssp2_3p5,AGO,cdd|Hazard|Difference|Population weighted,days/yr,3.210448331,3.20771397,3.205655204,3.203844982,3.20254324,3.201536465,3.200250053,3.199874048,3.198831372,3.198228119 +Climate Solutions,ssp2_3p5,PRT,cdd|Hazard|Difference|Population weighted,days/yr,23.57081687,23.53753857,23.50443744,23.47605512,23.45005868,23.42404197,23.39810249,23.37403686,23.35335491,23.33515622 +Climate Solutions,ssp2_3p5,ZAF,cdd|Hazard|Difference|Population weighted,days/yr,8.341326908,8.378787771,8.41708466,8.455741734,8.492679448,8.527595654,8.561708166,8.595932292,8.625283954,8.650322571 +Climate Solutions,ssp2_3p5,FJI,cdd|Hazard|Difference|Population weighted,days/yr,2.541570747,2.546683123,2.551784694,2.55666556,2.561439222,2.56606525,2.569895377,2.572845301,2.575312274,2.577092141 +Climate Solutions,ssp2_3p5,BRN,cdd|Hazard|Difference|Population weighted,days/yr,-0.218449837,-0.197029391,-0.171261321,-0.143270999,-0.114664224,-0.086671373,-0.060295961,-0.035972635,-0.014501143,0.002877854 +Climate Solutions,ssp2_3p5,MYS,cdd|Hazard|Difference|Population weighted,days/yr,4.531946786,4.52029934,4.499480321,4.487469037,4.479399578,4.473904721,4.467768946,4.459872883,4.452026393,4.442624111 +Climate Solutions,ssp2_3p5,AUT,cdd|Hazard|Difference|Population weighted,days/yr,1.027716556,1.077419665,1.12551572,1.170247002,1.212558728,1.250961187,1.28497881,1.314840591,1.340419533,1.363316711 +Climate Solutions,ssp2_3p5,MOZ,cdd|Hazard|Difference|Population weighted,days/yr,9.945547629,9.948487855,9.948848877,9.947629708,9.94549623,9.94355449,9.941297787,9.938884264,9.936118383,9.933152463 +Climate Solutions,ssp2_3p5,UGA,cdd|Hazard|Difference|Population weighted,days/yr,-11.65803323,-11.74646931,-11.80459873,-11.84285279,-11.86580207,-11.87891411,-11.88638957,-11.89003207,-11.89093983,-11.89000256 +Climate Solutions,ssp2_3p5,KGZ,cdd|Hazard|Difference|Population weighted,days/yr,5.905444522,5.935583374,5.963173676,5.981802953,6.000518247,6.013955414,6.021101705,6.028655496,6.033978568,6.041679321 +Climate Solutions,ssp2_3p5,HUN,cdd|Hazard|Difference|Population weighted,days/yr,5.171484772,5.146271222,5.122858549,5.100934042,5.079522589,5.059017907,5.040223783,5.023213829,5.007985241,4.99451325 +Climate Solutions,ssp2_3p5,NER,cdd|Hazard|Difference|Population weighted,days/yr,-8.845484942,-8.83444536,-8.824970045,-8.817277636,-8.810681437,-8.805481677,-8.80133041,-8.797742328,-8.795104506,-8.79293597 +Climate Solutions,ssp2_3p5,BRA,cdd|Hazard|Difference|Population weighted,days/yr,16.19980339,16.19764618,16.19474333,16.19019644,16.18335906,16.17523124,16.16908192,16.16346104,16.1584055,16.15462159 +Climate Solutions,ssp2_3p5,KWT,cdd|Hazard|Difference|Population weighted,days/yr,-4.884184968,-4.881991198,-4.880952526,-4.880645223,-4.881190732,-4.882918685,-4.886314386,-4.891327009,-4.896950624,-4.903458894 +Climate Solutions,ssp2_3p5,PAN,cdd|Hazard|Difference|Population weighted,days/yr,9.891153681,9.921309913,9.945163409,9.962290698,9.973158102,9.978917464,9.982404708,9.984348392,9.985727626,9.987351251 +Climate Solutions,ssp2_3p5,GUY,cdd|Hazard|Difference|Population weighted,days/yr,18.0816571,18.08629821,18.08775168,18.09835263,18.09867919,18.14038183,18.11509056,18.12310892,18.15128127,18.12930229 +Climate Solutions,ssp2_3p5,CRI,cdd|Hazard|Difference|Population weighted,days/yr,0.909916051,0.829343398,0.734883485,0.634062095,0.531342988,0.430953473,0.331480181,0.23381449,0.146571128,0.071842716 +Climate Solutions,ssp2_3p5,LUX,cdd|Hazard|Difference|Population weighted,days/yr,11.6921039,11.76308346,11.81905049,11.86585711,11.90405163,11.93381511,11.95317807,11.96237355,11.96482863,11.96292319 +Climate Solutions,ssp2_3p5,IRL,cdd|Hazard|Difference|Population weighted,days/yr,11.19072845,11.19267633,11.18952374,11.18578008,11.18152527,11.17565171,11.16875391,11.16159701,11.1546401,11.14768955 +Climate Solutions,ssp2_3p5,NGA,cdd|Hazard|Difference|Population weighted,days/yr,-13.01745582,-12.99585794,-12.97843495,-12.96435038,-12.95350678,-12.94631559,-12.94137014,-12.93820657,-12.93655506,-12.93594615 +Climate Solutions,ssp2_3p5,ECU,cdd|Hazard|Difference|Population weighted,days/yr,-8.256675025,-8.267610624,-8.282006669,-8.298740089,-8.316709617,-8.335296666,-8.352884917,-8.369335186,-8.384547536,-8.39732072 +Climate Solutions,ssp2_3p5,CZE,cdd|Hazard|Difference|Population weighted,days/yr,2.913852202,2.935149258,2.954772177,2.973041527,2.989772226,3.005353638,3.019630318,3.032054078,3.04331041,3.053625135 +Climate Solutions,ssp2_3p5,AUS,cdd|Hazard|Difference|Population weighted,days/yr,3.493345722,3.493585596,3.494499148,3.495750533,3.496923178,3.499060666,3.502113192,3.504474872,3.506850522,3.509213078 +Climate Solutions,ssp2_3p5,IRN,cdd|Hazard|Difference|Population weighted,days/yr,4.000828385,3.980305984,3.973491129,3.973096607,3.977837015,3.990259049,4.000908959,4.006142519,4.009655872,4.013172597 +Climate Solutions,ssp2_3p5,DZA,cdd|Hazard|Difference|Population weighted,days/yr,15.30799107,15.293629,15.30672566,15.31471824,15.3347812,15.35191686,15.37321417,15.39458756,15.42181932,15.43684527 +Climate Solutions,ssp2_3p5,SLV,cdd|Hazard|Difference|Population weighted,days/yr,3.051694765,3.036034965,3.011878816,2.984997389,2.957425547,2.942804806,2.933179504,2.923166572,2.909099264,2.88831244 +Climate Solutions,ssp2_3p5,CHL,cdd|Hazard|Difference|Population weighted,days/yr,9.68349632,9.692901277,9.697549376,9.696836545,9.69113863,9.684501752,9.678045424,9.672481264,9.668717803,9.665535199 +Climate Solutions,ssp2_3p5,PRI,cdd|Hazard|Difference|Population weighted,days/yr,16.75645893,16.76237211,16.76275535,16.76298842,16.76307986,16.76313968,16.76323923,16.76327804,16.76328413,16.76333758 +Climate Solutions,ssp2_3p5,BEL,cdd|Hazard|Difference|Population weighted,days/yr,9.370611687,9.378076531,9.384978628,9.391932189,9.398212095,9.403862356,9.409683464,9.415747192,9.42153425,9.427008308 +Climate Solutions,ssp2_3p5,THA,cdd|Hazard|Difference|Population weighted,days/yr,-1.503219351,-1.530261411,-1.572604711,-1.62930269,-1.696668413,-1.768136371,-1.842190647,-1.911774217,-1.972087101,-2.024181414 +Climate Solutions,ssp2_3p5,HTI,cdd|Hazard|Difference|Population weighted,days/yr,5.780708896,5.807777885,5.830437544,5.848974823,5.864175177,5.876925379,5.887616074,5.896229534,5.903138615,5.908692537 +Climate Solutions,ssp2_3p5,IRQ,cdd|Hazard|Difference|Population weighted,days/yr,-4.571781212,-4.588766376,-4.603678049,-4.617083012,-4.6286403,-4.639078832,-4.648749531,-4.657609244,-4.665367728,-4.672057867 +Climate Solutions,ssp2_3p5,SLE,cdd|Hazard|Difference|Population weighted,days/yr,-2.089664882,-2.0978983,-2.104061109,-2.108767066,-2.112116789,-2.115038445,-2.117615133,-2.119930492,-2.121944272,-2.12379006 +Climate Solutions,ssp2_3p5,GEO,cdd|Hazard|Difference|Population weighted,days/yr,8.685307166,8.633999213,8.58348925,8.542847648,8.511472861,8.486789657,8.466790953,8.450548059,8.436667823,8.423595305 +Climate Solutions,ssp2_3p5,HKG,cdd|Hazard|Difference|Population weighted,days/yr,23.19256186,23.18759005,23.20148946,23.23287829,23.27453231,23.33042054,23.3834812,23.42859059,23.46194411,23.47367273 +Climate Solutions,ssp2_3p5,DNK,cdd|Hazard|Difference|Population weighted,days/yr,4.666857901,4.63452125,4.612916092,4.596446404,4.58251521,4.571074506,4.561496469,4.552899352,4.544787247,4.536711015 +Climate Solutions,ssp2_3p5,POL,cdd|Hazard|Difference|Population weighted,days/yr,4.70191506,4.693978197,4.686335166,4.678512444,4.671222583,4.665136957,4.660144224,4.655932463,4.652226676,4.648952234 +Climate Solutions,ssp2_3p5,MDA,cdd|Hazard|Difference|Population weighted,days/yr,9.102494714,9.132744469,9.161337495,9.188287902,9.21290584,9.234148452,9.251002063,9.265757578,9.27851147,9.287170029 +Climate Solutions,ssp2_3p5,MAR,cdd|Hazard|Difference|Population weighted,days/yr,4.784799299,4.76129103,4.738003707,4.716397064,4.695905524,4.676401948,4.659468422,4.645740297,4.634501787,4.625256744 +Climate Solutions,ssp2_3p5,HRV,cdd|Hazard|Difference|Population weighted,days/yr,7.897454283,7.869599018,7.845656545,7.822111106,7.796647241,7.771992302,7.748771285,7.72582206,7.705249197,7.688800409 +Climate Solutions,ssp2_3p5,MNG,cdd|Hazard|Difference|Population weighted,days/yr,-24.65920586,-24.67541989,-24.68860282,-24.7242188,-24.72665825,-24.73285431,-24.73944655,-24.7443268,-24.74190368,-24.74932895 +Climate Solutions,ssp2_3p5,GNB,cdd|Hazard|Difference|Population weighted,days/yr,2.131416665,2.106793586,2.092895247,2.086210234,2.084698254,2.086517709,2.088290174,2.089599093,2.090027131,2.090222912 +Climate Solutions,ssp2_3p5,KIR,cdd|Hazard|Difference|Population weighted,days/yr,-2.810309367,-2.576767545,-2.370796157,-2.232947465,-2.119963703,-2.025751045,-1.961813733,-1.931892897,-1.901991372,-1.886831613 +Climate Solutions,ssp2_3p5,CHE,cdd|Hazard|Difference|Population weighted,days/yr,-2.399774996,-2.422114516,-2.440124258,-2.455849011,-2.469283171,-2.47995382,-2.486161967,-2.489783794,-2.492240402,-2.492451255 +Climate Solutions,ssp2_3p5,GRD,cdd|Hazard|Difference|Population weighted,days/yr,51.56580324,51.65152701,51.71911068,51.78419148,51.84284199,51.89068041,51.9286139,51.95600878,51.97678778,51.99502381 +Climate Solutions,ssp2_3p5,BLZ,cdd|Hazard|Difference|Population weighted,days/yr,12.54762624,12.56303074,12.57617951,12.58814972,12.59822327,12.60682938,12.61452874,12.62112166,12.62551529,12.62775302 +Climate Solutions,ssp2_3p5,TCD,cdd|Hazard|Difference|Population weighted,days/yr,-7.997933127,-7.998562209,-8.000876011,-8.001896201,-8.003018935,-8.004117689,-8.004852432,-8.005864132,-8.006582946,-8.007476357 +Climate Solutions,ssp2_3p5,EST,cdd|Hazard|Difference|Population weighted,days/yr,-3.828330125,-3.816875184,-3.804961987,-3.794257756,-3.785350838,-3.776862039,-3.768690831,-3.761329201,-3.754735041,-3.749027312 +Climate Solutions,ssp2_3p5,URY,cdd|Hazard|Difference|Population weighted,days/yr,-2.677493835,-2.692514354,-2.707734493,-2.723209049,-2.735264812,-2.74552913,-2.75406105,-2.763362441,-2.77027141,-2.776425192 +Climate Solutions,ssp2_3p5,GNQ,cdd|Hazard|Difference|Population weighted,days/yr,1.780281689,1.906121386,1.990018747,2.046809042,2.084805538,2.109740921,2.128396609,2.142033489,2.152115636,2.157881698 +Climate Solutions,ssp2_3p5,LBN,cdd|Hazard|Difference|Population weighted,days/yr,-0.686541813,-0.665307841,-0.644306834,-0.623965,-0.604545159,-0.585019523,-0.56305043,-0.53925095,-0.515694403,-0.49307839 +Climate Solutions,ssp2_3p5,UZB,cdd|Hazard|Difference|Population weighted,days/yr,2.487680982,2.486028002,2.492290966,2.50433471,2.518796935,2.535668618,2.553634007,2.571655984,2.588451284,2.604071467 +Climate Solutions,ssp2_3p5,TUN,cdd|Hazard|Difference|Population weighted,days/yr,13.70301528,13.69891178,13.69195772,13.68148948,13.66961676,13.65715779,13.64368761,13.63157688,13.62103554,13.61167054 +Climate Solutions,ssp2_3p5,DJI,cdd|Hazard|Difference|Population weighted,days/yr,-14.35900657,-14.34354294,-14.33408441,-14.32399688,-14.31846905,-14.31409534,-14.31046532,-14.30636678,-14.30411144,-14.30197184 +Climate Solutions,ssp2_3p5,RWA,cdd|Hazard|Difference|Population weighted,days/yr,-4.468247702,-4.427343607,-4.402053734,-4.387612226,-4.379865327,-4.378202871,-4.380366518,-4.384778324,-4.39089499,-4.39807079 +Climate Solutions,ssp2_3p5,TLS,cdd|Hazard|Difference|Population weighted,days/yr,7.150145416,7.153836029,7.161271927,7.168160095,7.175074745,7.18117662,7.187726815,7.194381598,7.200234888,7.20509621 +Climate Solutions,ssp2_3p5,COL,cdd|Hazard|Difference|Population weighted,days/yr,-0.441529126,-0.411000347,-0.391201095,-0.378191044,-0.371430818,-0.369249765,-0.369849954,-0.372667538,-0.375378378,-0.377909973 +Climate Solutions,ssp2_3p5,REU,cdd|Hazard|Difference|Population weighted,days/yr,11.14109565,11.26889243,11.29992067,11.31561458,11.3251834,11.33148425,11.3357402,11.33915143,11.34153696,11.34329787 +Climate Solutions,ssp2_3p5,BDI,cdd|Hazard|Difference|Population weighted,days/yr,0.321793727,0.340559179,0.341830416,0.334396348,0.325594501,0.316748134,0.302753859,0.285401723,0.266019937,0.244937944 +Climate Solutions,ssp2_3p5,TWN,cdd|Hazard|Difference|Population weighted,days/yr,15.77345978,15.97852706,16.13920035,16.25690788,16.35746949,16.41491727,16.47582278,16.52900399,16.57616875,16.61858116 +Climate Solutions,ssp2_3p5,NIC,cdd|Hazard|Difference|Population weighted,days/yr,14.34959992,14.30693072,14.26595439,14.22824067,14.19234995,14.15755985,14.12918562,14.1086795,14.09336468,14.08251276 +Climate Solutions,ssp2_3p5,BRB,cdd|Hazard|Difference|Population weighted,days/yr,65.41163185,65.38942781,65.36785715,65.34665114,65.32602985,65.30711975,65.29159013,65.27872973,65.26799015,65.25895231 +Climate Solutions,ssp2_3p5,QAT,cdd|Hazard|Difference|Population weighted,days/yr,-7.56728754,-7.572427132,-7.573535875,-7.573985449,-7.574005108,-7.573680284,-7.5731943,-7.572871188,-7.572651325,-7.572498635 +Climate Solutions,ssp2_3p5,COD,cdd|Hazard|Difference|Population weighted,days/yr,-0.100878892,-0.09303029,-0.090505424,-0.095691377,-0.10317027,-0.110578489,-0.118425436,-0.126268177,-0.134488908,-0.142398284 +Climate Solutions,ssp2_3p5,ITA,cdd|Hazard|Difference|Population weighted,days/yr,7.981127187,7.952541884,7.919379797,7.886854303,7.852988959,7.817624985,7.783769559,7.75335356,7.726350937,7.702335444 +Climate Solutions,ssp2_3p5,BTN,cdd|Hazard|Difference|Population weighted,days/yr,1.621451026,1.586051963,1.557982575,1.530252307,1.505243847,1.483696899,1.464770762,1.448412875,1.435923146,1.426939263 +Climate Solutions,ssp2_3p5,SDN,cdd|Hazard|Difference|Population weighted,days/yr,-8.84631304,-8.827994113,-8.817350564,-8.812435644,-8.811168199,-8.813092986,-8.816333285,-8.821390114,-8.82764909,-8.833872221 +Climate Solutions,ssp2_3p5,NPL,cdd|Hazard|Difference|Population weighted,days/yr,-1.136829552,-1.182143057,-1.213503459,-1.235247079,-1.249111816,-1.262845633,-1.276011382,-1.288162923,-1.298791766,-1.307274742 +Climate Solutions,ssp2_3p5,MLT,cdd|Hazard|Difference|Population weighted,days/yr,14.49938029,14.50627497,14.50956861,14.5114928,14.51270442,14.51349902,14.51404179,14.51442538,14.51469429,14.51489145 +Climate Solutions,ssp2_3p5,MDV,cdd|Hazard|Difference|Population weighted,days/yr,13.74193118,14.15308663,14.52818558,14.84163405,15.09654666,15.2913957,15.42931053,15.51797259,15.58362809,15.6381317 +Climate Solutions,ssp2_3p5,SUR,cdd|Hazard|Difference|Population weighted,days/yr,15.52166922,15.51786996,15.50823783,15.50051147,15.47625908,15.46123523,15.44910036,15.42856239,15.40850507,15.38776459 +Climate Solutions,ssp2_3p5,VEN,cdd|Hazard|Difference|Population weighted,days/yr,12.06701226,12.06826468,12.06802941,12.06789311,12.06768919,12.06744193,12.06810112,12.06791614,12.06756519,12.06696781 +Climate Solutions,ssp2_3p5,ISR,cdd|Hazard|Difference|Population weighted,days/yr,1.163796942,1.166460182,1.172923348,1.182087808,1.193105118,1.204481184,1.216927179,1.229965479,1.242758255,1.255041345 +Climate Solutions,ssp2_3p5,ISL,cdd|Hazard|Difference|Population weighted,days/yr,2.355660632,2.376814012,2.382650949,2.383140455,2.380963641,2.380756885,2.369889633,2.373452561,2.369817234,2.370101324 +Climate Solutions,ssp2_3p5,ZMB,cdd|Hazard|Difference|Population weighted,days/yr,5.587263891,5.571371374,5.561832316,5.558068949,5.557083359,5.558388419,5.56099501,5.564613817,5.568829554,5.573308762 +Climate Solutions,ssp2_3p5,SEN,cdd|Hazard|Difference|Population weighted,days/yr,0.801314334,0.805003129,0.804109165,0.801382089,0.797355614,0.792015721,0.785959492,0.779421253,0.772646832,0.766000624 +Climate Solutions,ssp2_3p5,PNG,cdd|Hazard|Difference|Population weighted,days/yr,-6.110135054,-6.134521534,-6.156607338,-6.175263802,-6.18980026,-6.205153237,-6.222232117,-6.239463212,-6.256037286,-6.271279442 +Climate Solutions,ssp2_3p5,MWI,cdd|Hazard|Difference|Population weighted,days/yr,8.187747585,8.184102951,8.182336719,8.181866885,8.182433736,8.183709976,8.185257712,8.187048966,8.1889712,8.191191043 +Climate Solutions,ssp2_3p5,TTO,cdd|Hazard|Difference|Population weighted,days/yr,8.064899773,8.051473686,8.039590241,8.028919286,8.02069447,8.015817871,8.014129028,8.01581448,8.018337594,8.020614751 +Climate Solutions,ssp2_3p5,ZWE,cdd|Hazard|Difference|Population weighted,days/yr,8.555597095,8.541949977,8.528407551,8.514801855,8.502232742,8.490767166,8.480344497,8.470972821,8.464278096,8.46038837 +Climate Solutions,ssp2_3p5,DEU,cdd|Hazard|Difference|Population weighted,days/yr,4.519949576,4.524894414,4.530265305,4.53589429,4.541467511,4.54755539,4.553823506,4.559815838,4.5653968,4.570494815 +Climate Solutions,ssp2_3p5,VUT,cdd|Hazard|Difference|Population weighted,days/yr,4.360780563,4.378355264,4.393070841,4.407292291,4.41974293,4.432934152,4.445220774,4.45623254,4.466820284,4.476478616 +Climate Solutions,ssp2_3p5,MTQ,cdd|Hazard|Difference|Population weighted,days/yr,16.06030518,16.11653844,16.15356338,16.17976488,16.19758986,16.20217876,16.18830384,16.15581659,16.11630408,16.07722537 +Climate Solutions,ssp2_3p5,KAZ,cdd|Hazard|Difference|Population weighted,days/yr,-0.680344465,-0.664492558,-0.649089171,-0.637416239,-0.626301396,-0.618887122,-0.613013137,-0.606377025,-0.601598701,-0.59376113 +Climate Solutions,ssp2_3p5,PHL,cdd|Hazard|Difference|Population weighted,days/yr,4.568353874,4.537245884,4.53367517,4.552702779,4.585553162,4.625606215,4.670517157,4.719310768,4.769918459,4.821233458 +Climate Solutions,ssp2_3p5,ERI,cdd|Hazard|Difference|Population weighted,days/yr,1.337450932,1.291331854,1.252802993,1.226978324,1.20799378,1.193845433,1.181100747,1.168504018,1.155945924,1.144228912 +Climate Solutions,ssp2_3p5,NCL,cdd|Hazard|Difference|Population weighted,days/yr,4.99916596,5.036652532,5.062358117,5.078190409,5.08992279,5.096563797,5.096181925,5.088902798,5.076651433,5.062074334 +Climate Solutions,ssp2_3p5,MKD,cdd|Hazard|Difference|Population weighted,days/yr,15.31774721,15.32307698,15.32676904,15.32883758,15.33037724,15.33135785,15.33206918,15.33206385,15.33126577,15.33036888 +Climate Solutions,ssp2_3p5,PRK,cdd|Hazard|Difference|Population weighted,days/yr,-1.350406051,-1.332699241,-1.316051159,-1.30067876,-1.286647027,-1.274524571,-1.264104147,-1.254888538,-1.246969452,-1.240936879 +Climate Solutions,ssp2_3p5,PRY,cdd|Hazard|Difference|Population weighted,days/yr,8.757209282,8.760551299,8.759957136,8.754752203,8.749875559,8.741077584,8.731532937,8.721819387,8.713249809,8.701375509 +Climate Solutions,ssp2_3p5,LVA,cdd|Hazard|Difference|Population weighted,days/yr,-0.617635079,-0.583493293,-0.55114767,-0.521777374,-0.4956057,-0.472213169,-0.45158169,-0.433805314,-0.418193113,-0.404134831 +Climate Solutions,ssp2_3p5,JPN,cdd|Hazard|Difference|Population weighted,days/yr,12.4460648,12.45431185,12.46566211,12.47739488,12.48784731,12.49709423,12.5052792,12.51247683,12.51878682,12.52434294 +Climate Solutions,ssp2_3p5,SYR,cdd|Hazard|Difference|Population weighted,days/yr,1.959630622,1.945844303,1.933818606,1.922790122,1.912680375,1.903603475,1.89560015,1.888627654,1.882466468,1.876739609 +Climate Solutions,ssp2_3p5,HND,cdd|Hazard|Difference|Population weighted,days/yr,16.46278759,16.49811408,16.55910488,16.63086742,16.70860551,16.78759517,16.86232095,16.93224171,16.99750245,17.05756701 +Climate Solutions,ssp2_3p5,MMR,cdd|Hazard|Difference|Population weighted,days/yr,2.943197774,2.926875211,2.908652892,2.888781417,2.867869119,2.846514337,2.826072802,2.807734553,2.790993089,2.775928556 +Climate Solutions,ssp2_3p5,MEX,cdd|Hazard|Difference|Population weighted,days/yr,8.374809938,8.395784199,8.420404556,8.447722956,8.475931129,8.503487143,8.528626065,8.551084715,8.570700914,8.587444145 +Climate Solutions,ssp2_3p5,EGY,cdd|Hazard|Difference|Population weighted,days/yr,2.28075702,2.30408688,2.306723947,2.296975756,2.279803148,2.257275785,2.231415591,2.20250284,2.172398278,2.142411865 +Climate Solutions,ssp2_3p5,SGP,cdd|Hazard|Difference|Population weighted,days/yr,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786,14.54785786 +Climate Solutions,ssp2_3p5,SRB,cdd|Hazard|Difference|Population weighted,days/yr,12.85278106,12.85291028,12.85447747,12.85715408,12.8606141,12.86413631,12.8667956,12.868607,12.86931592,12.86913242 +Climate Solutions,ssp2_3p5,BWA,cdd|Hazard|Difference|Population weighted,days/yr,10.23985917,10.24261728,10.23757638,10.23335061,10.23454798,10.23984405,10.23376652,10.23312647,10.23153901,10.23325372 +Climate Solutions,ssp2_3p5,GBR,cdd|Hazard|Difference|Population weighted,days/yr,9.858273765,9.853120646,9.848954983,9.845542875,9.842661867,9.840254181,9.838306271,9.836700406,9.83542732,9.834508185 +Climate Solutions,ssp2_3p5,GMB,cdd|Hazard|Difference|Population weighted,days/yr,2.411864825,2.450946101,2.477935936,2.497576059,2.510518014,2.519635901,2.527874612,2.535556909,2.542270409,2.547918375 +Climate Solutions,ssp2_3p5,GRC,cdd|Hazard|Difference|Population weighted,days/yr,14.10113003,14.18619373,14.26315981,14.32747025,14.38406791,14.43577483,14.48226073,14.52198662,14.55620401,14.58611262 +Climate Solutions,ssp2_3p5,LKA,cdd|Hazard|Difference|Population weighted,days/yr,-4.430373726,-4.426225839,-4.418521267,-4.40680305,-4.390757046,-4.371346538,-4.349976888,-4.327575544,-4.304942885,-4.282452606 +Climate Solutions,ssp2_3p5,GUF,cdd|Hazard|Difference|Population weighted,days/yr,7.351668816,7.36810184,7.377981978,7.385160827,7.38601967,7.394020081,7.393827658,7.392735375,7.397211545,7.398271276 +Climate Solutions,ssp2_3p5,COM,cdd|Hazard|Difference|Population weighted,days/yr,18.71536737,18.79696357,18.85136403,18.89301673,18.91979104,18.9395887,18.95528808,18.966328,18.97305399,18.97686694 +Climate Solutions,ssp2_3p5,FSM,cdd|Hazard|Difference|Population weighted,days/yr,-5.033050251,-4.969149107,-4.89999041,-4.828022482,-4.757081613,-4.690251828,-4.6279554,-4.571777823,-4.521563713,-4.476302406 +Climate Solutions,ssp2_3p5,GLP,cdd|Hazard|Difference|Population weighted,days/yr,95.77941233,95.45448155,95.33516016,95.2626571,95.24012258,95.23855492,95.23667788,95.23584989,95.23518023,95.23462163 +Climate Solutions,ssp2_3p5,MYT,cdd|Hazard|Difference|Population weighted,days/yr,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356,19.63767356 +Climate Solutions,ssp2_3p5,VIR,cdd|Hazard|Difference|Population weighted,days/yr,38.70620082,38.67846041,38.66314854,38.63763035,38.63255128,38.62705455,38.62058311,38.61065194,38.59502987,38.58713787 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Absolute,days/yr,29.00894988,29.00894988,29.00894988,29.00894988,29.00894988,29.00894988,29.00894988,29.00894988,29.00894988,29.00894988 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Absolute,days/yr,3.842463266,3.842463266,3.842463266,3.842463266,3.842463266,3.842463266,3.842463266,3.842463266,3.842463266,3.842463266 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Absolute,days/yr,103.6022024,103.6022024,103.6022024,103.6022024,103.6022024,103.6022024,103.6022024,103.6022024,103.6022024,103.6022024 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Absolute,days/yr,16.0879624,16.0879624,16.0879624,16.0879624,16.0879624,16.0879624,16.0879624,16.0879624,16.0879624,16.0879624 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Absolute,days/yr,64.08745184,64.08745184,64.08745184,64.08745184,64.08745184,64.08745184,64.08745184,64.08745184,64.08745184,64.08745184 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Absolute,days/yr,80.66999341,80.66999341,80.66999341,80.66999341,80.66999341,80.66999341,80.66999341,80.66999341,80.66999341,80.66999341 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Absolute,days/yr,28.86326334,28.86326334,28.86326334,28.86326334,28.86326334,28.86326334,28.86326334,28.86326334,28.86326334,28.86326334 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Absolute,days/yr,38.04710083,38.04710083,38.04710083,38.04710083,38.04710083,38.04710083,38.04710083,38.04710083,38.04710083,38.04710083 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Absolute,days/yr,56.32906608,56.32906608,56.32906608,56.32906608,56.32906608,56.32906608,56.32906608,56.32906608,56.32906608,56.32906608 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Absolute,days/yr,64.05642627,64.05642627,64.05642627,64.05642627,64.05642627,64.05642627,64.05642627,64.05642627,64.05642627,64.05642627 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Absolute,days/yr,3.384173658,3.384173658,3.384173658,3.384173658,3.384173658,3.384173658,3.384173658,3.384173658,3.384173658,3.384173658 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Absolute,days/yr,121.1388329,121.1388329,121.1388329,121.1388329,121.1388329,121.1388329,121.1388329,121.1388329,121.1388329,121.1388329 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Absolute,days/yr,57.12767164,57.12767164,57.12767164,57.12767164,57.12767164,57.12767164,57.12767164,57.12767164,57.12767164,57.12767164 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Absolute,days/yr,195.6911654,195.6911654,195.6911654,195.6911654,195.6911654,195.6911654,195.6911654,195.6911654,195.6911654,195.6911654 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Absolute,days/yr,9.809257048,9.809257048,9.809257048,9.809257048,9.809257048,9.809257048,9.809257048,9.809257048,9.809257048,9.809257048 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Absolute,days/yr,10.17552593,10.17552593,10.17552593,10.17552593,10.17552593,10.17552593,10.17552593,10.17552593,10.17552593,10.17552593 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Absolute,days/yr,30.41868967,30.41868967,30.41868967,30.41868967,30.41868967,30.41868967,30.41868967,30.41868967,30.41868967,30.41868967 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Absolute,days/yr,17.44229741,17.44229741,17.44229741,17.44229741,17.44229741,17.44229741,17.44229741,17.44229741,17.44229741,17.44229741 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Absolute,days/yr,94.53692135,94.53692135,94.53692135,94.53692135,94.53692135,94.53692135,94.53692135,94.53692135,94.53692135,94.53692135 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Absolute,days/yr,133.0356867,133.0356867,133.0356867,133.0356867,133.0356867,133.0356867,133.0356867,133.0356867,133.0356867,133.0356867 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Absolute,days/yr,37.76820046,37.76820046,37.76820046,37.76820046,37.76820046,37.76820046,37.76820046,37.76820046,37.76820046,37.76820046 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Absolute,days/yr,45.34638839,45.34638839,45.34638839,45.34638839,45.34638839,45.34638839,45.34638839,45.34638839,45.34638839,45.34638839 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Absolute,days/yr,38.97679831,38.97679831,38.97679831,38.97679831,38.97679831,38.97679831,38.97679831,38.97679831,38.97679831,38.97679831 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Absolute,days/yr,12.70754295,12.70754295,12.70754295,12.70754295,12.70754295,12.70754295,12.70754295,12.70754295,12.70754295,12.70754295 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Absolute,days/yr,11.5756246,11.5756246,11.5756246,11.5756246,11.5756246,11.5756246,11.5756246,11.5756246,11.5756246,11.5756246 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Absolute,days/yr,175.5811442,175.5811442,175.5811442,175.5811442,175.5811442,175.5811442,175.5811442,175.5811442,175.5811442,175.5811442 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Absolute,days/yr,83.6455283,83.6455283,83.6455283,83.6455283,83.6455283,83.6455283,83.6455283,83.6455283,83.6455283,83.6455283 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Absolute,days/yr,21.13980768,21.13980768,21.13980768,21.13980768,21.13980768,21.13980768,21.13980768,21.13980768,21.13980768,21.13980768 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Absolute,days/yr,38.90240352,38.90240352,38.90240352,38.90240352,38.90240352,38.90240352,38.90240352,38.90240352,38.90240352,38.90240352 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Absolute,days/yr,12.01268101,12.01268101,12.01268101,12.01268101,12.01268101,12.01268101,12.01268101,12.01268101,12.01268101,12.01268101 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Absolute,days/yr,147.3299402,147.3299402,147.3299402,147.3299402,147.3299402,147.3299402,147.3299402,147.3299402,147.3299402,147.3299402 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Absolute,days/yr,109.0610812,109.0610812,109.0610812,109.0610812,109.0610812,109.0610812,109.0610812,109.0610812,109.0610812,109.0610812 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Absolute,days/yr,2.817954576,2.817954576,2.817954576,2.817954576,2.817954576,2.817954576,2.817954576,2.817954576,2.817954576,2.817954576 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Absolute,days/yr,14.25430237,14.25430237,14.25430237,14.25430237,14.25430237,14.25430237,14.25430237,14.25430237,14.25430237,14.25430237 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Absolute,days/yr,144.4160034,144.4160034,144.4160034,144.4160034,144.4160034,144.4160034,144.4160034,144.4160034,144.4160034,144.4160034 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Absolute,days/yr,2.379604078,2.379604078,2.379604078,2.379604078,2.379604078,2.379604078,2.379604078,2.379604078,2.379604078,2.379604078 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Absolute,days/yr,113.731092,113.731092,113.731092,113.731092,113.731092,113.731092,113.731092,113.731092,113.731092,113.731092 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Absolute,days/yr,32.09604006,32.09604006,32.09604006,32.09604006,32.09604006,32.09604006,32.09604006,32.09604006,32.09604006,32.09604006 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Absolute,days/yr,57.02042479,57.02042479,57.02042479,57.02042479,57.02042479,57.02042479,57.02042479,57.02042479,57.02042479,57.02042479 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Absolute,days/yr,35.58509431,35.58509431,35.58509431,35.58509431,35.58509431,35.58509431,35.58509431,35.58509431,35.58509431,35.58509431 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Absolute,days/yr,4.463050031,4.463050031,4.463050031,4.463050031,4.463050031,4.463050031,4.463050031,4.463050031,4.463050031,4.463050031 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Absolute,days/yr,60.39427384,60.39427384,60.39427384,60.39427384,60.39427384,60.39427384,60.39427384,60.39427384,60.39427384,60.39427384 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Absolute,days/yr,22.05341236,22.05341236,22.05341236,22.05341236,22.05341236,22.05341236,22.05341236,22.05341236,22.05341236,22.05341236 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Absolute,days/yr,18.94910279,18.94910279,18.94910279,18.94910279,18.94910279,18.94910279,18.94910279,18.94910279,18.94910279,18.94910279 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Absolute,days/yr,51.12934073,51.12934073,51.12934073,51.12934073,51.12934073,51.12934073,51.12934073,51.12934073,51.12934073,51.12934073 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Absolute,days/yr,56.99918626,56.99918626,56.99918626,56.99918626,56.99918626,56.99918626,56.99918626,56.99918626,56.99918626,56.99918626 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Absolute,days/yr,117.1789861,117.1789861,117.1789861,117.1789861,117.1789861,117.1789861,117.1789861,117.1789861,117.1789861,117.1789861 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Absolute,days/yr,66.49483177,66.49483177,66.49483177,66.49483177,66.49483177,66.49483177,66.49483177,66.49483177,66.49483177,66.49483177 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Absolute,days/yr,214.0162754,214.0162754,214.0162754,214.0162754,214.0162754,214.0162754,214.0162754,214.0162754,214.0162754,214.0162754 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Absolute,days/yr,4.016456494,4.016456494,4.016456494,4.016456494,4.016456494,4.016456494,4.016456494,4.016456494,4.016456494,4.016456494 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Absolute,days/yr,1.451656859,1.451656859,1.451656859,1.451656859,1.451656859,1.451656859,1.451656859,1.451656859,1.451656859,1.451656859 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Absolute,days/yr,40.70124313,40.70124313,40.70124313,40.70124313,40.70124313,40.70124313,40.70124313,40.70124313,40.70124313,40.70124313 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Absolute,days/yr,3.238234585,3.238234585,3.238234585,3.238234585,3.238234585,3.238234585,3.238234585,3.238234585,3.238234585,3.238234585 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Absolute,days/yr,22.65700803,22.65700803,22.65700803,22.65700803,22.65700803,22.65700803,22.65700803,22.65700803,22.65700803,22.65700803 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Absolute,days/yr,158.966739,158.966739,158.966739,158.966739,158.966739,158.966739,158.966739,158.966739,158.966739,158.966739 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Absolute,days/yr,94.2807626,94.2807626,94.2807626,94.2807626,94.2807626,94.2807626,94.2807626,94.2807626,94.2807626,94.2807626 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Absolute,days/yr,52.57105693,52.57105693,52.57105693,52.57105693,52.57105693,52.57105693,52.57105693,52.57105693,52.57105693,52.57105693 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Absolute,days/yr,42.30839763,42.30839763,42.30839763,42.30839763,42.30839763,42.30839763,42.30839763,42.30839763,42.30839763,42.30839763 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Absolute,days/yr,1.199042006,1.199042006,1.199042006,1.199042006,1.199042006,1.199042006,1.199042006,1.199042006,1.199042006,1.199042006 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Absolute,days/yr,13.78629038,13.78629038,13.78629038,13.78629038,13.78629038,13.78629038,13.78629038,13.78629038,13.78629038,13.78629038 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Absolute,days/yr,61.96764921,61.96764921,61.96764921,61.96764921,61.96764921,61.96764921,61.96764921,61.96764921,61.96764921,61.96764921 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Absolute,days/yr,84.63608184,84.63608184,84.63608184,84.63608184,84.63608184,84.63608184,84.63608184,84.63608184,84.63608184,84.63608184 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Absolute,days/yr,171.6104347,171.6104347,171.6104347,171.6104347,171.6104347,171.6104347,171.6104347,171.6104347,171.6104347,171.6104347 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Absolute,days/yr,18.39919949,18.39919949,18.39919949,18.39919949,18.39919949,18.39919949,18.39919949,18.39919949,18.39919949,18.39919949 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Absolute,days/yr,70.42834235,70.42834235,70.42834235,70.42834235,70.42834235,70.42834235,70.42834235,70.42834235,70.42834235,70.42834235 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Absolute,days/yr,12.285794,12.285794,12.285794,12.285794,12.285794,12.285794,12.285794,12.285794,12.285794,12.285794 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Absolute,days/yr,53.69165433,53.69165433,53.69165433,53.69165433,53.69165433,53.69165433,53.69165433,53.69165433,53.69165433,53.69165433 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Absolute,days/yr,85.46122348,85.46122348,85.46122348,85.46122348,85.46122348,85.46122348,85.46122348,85.46122348,85.46122348,85.46122348 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Absolute,days/yr,19.70593846,19.70593846,19.70593846,19.70593846,19.70593846,19.70593846,19.70593846,19.70593846,19.70593846,19.70593846 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Absolute,days/yr,1.395029326,1.395029326,1.395029326,1.395029326,1.395029326,1.395029326,1.395029326,1.395029326,1.395029326,1.395029326 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Absolute,days/yr,17.07131196,17.07131196,17.07131196,17.07131196,17.07131196,17.07131196,17.07131196,17.07131196,17.07131196,17.07131196 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Absolute,days/yr,26.73063978,26.73063978,26.73063978,26.73063978,26.73063978,26.73063978,26.73063978,26.73063978,26.73063978,26.73063978 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Absolute,days/yr,15.9984015,15.9984015,15.9984015,15.9984015,15.9984015,15.9984015,15.9984015,15.9984015,15.9984015,15.9984015 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Absolute,days/yr,0.601854825,0.601854825,0.601854825,0.601854825,0.601854825,0.601854825,0.601854825,0.601854825,0.601854825,0.601854825 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Absolute,days/yr,18.35755037,18.35755037,18.35755037,18.35755037,18.35755037,18.35755037,18.35755037,18.35755037,18.35755037,18.35755037 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Absolute,days/yr,262.131166,262.131166,262.131166,262.131166,262.131166,262.131166,262.131166,262.131166,262.131166,262.131166 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Absolute,days/yr,16.76343864,16.76343864,16.76343864,16.76343864,16.76343864,16.76343864,16.76343864,16.76343864,16.76343864,16.76343864 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Absolute,days/yr,78.16502081,78.16502081,78.16502081,78.16502081,78.16502081,78.16502081,78.16502081,78.16502081,78.16502081,78.16502081 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Absolute,days/yr,36.23155191,36.23155191,36.23155191,36.23155191,36.23155191,36.23155191,36.23155191,36.23155191,36.23155191,36.23155191 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Absolute,days/yr,19.05006325,19.05006325,19.05006325,19.05006325,19.05006325,19.05006325,19.05006325,19.05006325,19.05006325,19.05006325 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Absolute,days/yr,34.03918083,34.03918083,34.03918083,34.03918083,34.03918083,34.03918083,34.03918083,34.03918083,34.03918083,34.03918083 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Absolute,days/yr,198.91398,198.91398,198.91398,198.91398,198.91398,198.91398,198.91398,198.91398,198.91398,198.91398 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Absolute,days/yr,30.35452507,30.35452507,30.35452507,30.35452507,30.35452507,30.35452507,30.35452507,30.35452507,30.35452507,30.35452507 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Absolute,days/yr,26.65914714,26.65914714,26.65914714,26.65914714,26.65914714,26.65914714,26.65914714,26.65914714,26.65914714,26.65914714 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Absolute,days/yr,5.469935386,5.469935386,5.469935386,5.469935386,5.469935386,5.469935386,5.469935386,5.469935386,5.469935386,5.469935386 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Absolute,days/yr,26.20635271,26.20635271,26.20635271,26.20635271,26.20635271,26.20635271,26.20635271,26.20635271,26.20635271,26.20635271 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Absolute,days/yr,124.7122587,124.7122587,124.7122587,124.7122587,124.7122587,124.7122587,124.7122587,124.7122587,124.7122587,124.7122587 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Absolute,days/yr,41.3302892,41.3302892,41.3302892,41.3302892,41.3302892,41.3302892,41.3302892,41.3302892,41.3302892,41.3302892 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Absolute,days/yr,78.66752668,78.66752668,78.66752668,78.66752668,78.66752668,78.66752668,78.66752668,78.66752668,78.66752668,78.66752668 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Absolute,days/yr,7.746491191,7.746491191,7.746491191,7.746491191,7.746491191,7.746491191,7.746491191,7.746491191,7.746491191,7.746491191 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Absolute,days/yr,4.842522002,4.842522002,4.842522002,4.842522002,4.842522002,4.842522002,4.842522002,4.842522002,4.842522002,4.842522002 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Absolute,days/yr,12.48167444,12.48167444,12.48167444,12.48167444,12.48167444,12.48167444,12.48167444,12.48167444,12.48167444,12.48167444 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Absolute,days/yr,12.93425123,12.93425123,12.93425123,12.93425123,12.93425123,12.93425123,12.93425123,12.93425123,12.93425123,12.93425123 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Absolute,days/yr,63.964514,63.964514,63.964514,63.964514,63.964514,63.964514,63.964514,63.964514,63.964514,63.964514 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Absolute,days/yr,26.4404051,26.4404051,26.4404051,26.4404051,26.4404051,26.4404051,26.4404051,26.4404051,26.4404051,26.4404051 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Absolute,days/yr,31.57407098,31.57407098,31.57407098,31.57407098,31.57407098,31.57407098,31.57407098,31.57407098,31.57407098,31.57407098 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Absolute,days/yr,20.71681178,20.71681178,20.71681178,20.71681178,20.71681178,20.71681178,20.71681178,20.71681178,20.71681178,20.71681178 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Absolute,days/yr,236.3495871,236.3495871,236.3495871,236.3495871,236.3495871,236.3495871,236.3495871,236.3495871,236.3495871,236.3495871 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Absolute,days/yr,54.96080886,54.96080886,54.96080886,54.96080886,54.96080886,54.96080886,54.96080886,54.96080886,54.96080886,54.96080886 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Absolute,days/yr,92.46562445,92.46562445,92.46562445,92.46562445,92.46562445,92.46562445,92.46562445,92.46562445,92.46562445,92.46562445 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Absolute,days/yr,26.71950556,26.71950556,26.71950556,26.71950556,26.71950556,26.71950556,26.71950556,26.71950556,26.71950556,26.71950556 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Absolute,days/yr,22.44365202,22.44365202,22.44365202,22.44365202,22.44365202,22.44365202,22.44365202,22.44365202,22.44365202,22.44365202 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Absolute,days/yr,25.17033487,25.17033487,25.17033487,25.17033487,25.17033487,25.17033487,25.17033487,25.17033487,25.17033487,25.17033487 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Absolute,days/yr,4.350713452,4.350713452,4.350713452,4.350713452,4.350713452,4.350713452,4.350713452,4.350713452,4.350713452,4.350713452 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Absolute,days/yr,12.93635467,12.93635467,12.93635467,12.93635467,12.93635467,12.93635467,12.93635467,12.93635467,12.93635467,12.93635467 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Absolute,days/yr,126.587656,126.587656,126.587656,126.587656,126.587656,126.587656,126.587656,126.587656,126.587656,126.587656 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Absolute,days/yr,20.57079274,20.57079274,20.57079274,20.57079274,20.57079274,20.57079274,20.57079274,20.57079274,20.57079274,20.57079274 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Absolute,days/yr,14.86833188,14.86833188,14.86833188,14.86833188,14.86833188,14.86833188,14.86833188,14.86833188,14.86833188,14.86833188 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Absolute,days/yr,96.65792471,96.65792471,96.65792471,96.65792471,96.65792471,96.65792471,96.65792471,96.65792471,96.65792471,96.65792471 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Absolute,days/yr,135.5977878,135.5977878,135.5977878,135.5977878,135.5977878,135.5977878,135.5977878,135.5977878,135.5977878,135.5977878 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Absolute,days/yr,201.8910504,201.8910504,201.8910504,201.8910504,201.8910504,201.8910504,201.8910504,201.8910504,201.8910504,201.8910504 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Absolute,days/yr,53.55906386,53.55906386,53.55906386,53.55906386,53.55906386,53.55906386,53.55906386,53.55906386,53.55906386,53.55906386 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Absolute,days/yr,88.92909178,88.92909178,88.92909178,88.92909178,88.92909178,88.92909178,88.92909178,88.92909178,88.92909178,88.92909178 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Absolute,days/yr,5.819301943,5.819301943,5.819301943,5.819301943,5.819301943,5.819301943,5.819301943,5.819301943,5.819301943,5.819301943 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Absolute,days/yr,13.18147996,13.18147996,13.18147996,13.18147996,13.18147996,13.18147996,13.18147996,13.18147996,13.18147996,13.18147996 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Absolute,days/yr,65.67578836,65.67578836,65.67578836,65.67578836,65.67578836,65.67578836,65.67578836,65.67578836,65.67578836,65.67578836 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Absolute,days/yr,14.14391246,14.14391246,14.14391246,14.14391246,14.14391246,14.14391246,14.14391246,14.14391246,14.14391246,14.14391246 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Absolute,days/yr,140.2484024,140.2484024,140.2484024,140.2484024,140.2484024,140.2484024,140.2484024,140.2484024,140.2484024,140.2484024 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Absolute,days/yr,56.36546674,56.36546674,56.36546674,56.36546674,56.36546674,56.36546674,56.36546674,56.36546674,56.36546674,56.36546674 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Absolute,days/yr,16.31875044,16.31875044,16.31875044,16.31875044,16.31875044,16.31875044,16.31875044,16.31875044,16.31875044,16.31875044 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Absolute,days/yr,5.138445793,5.138445793,5.138445793,5.138445793,5.138445793,5.138445793,5.138445793,5.138445793,5.138445793,5.138445793 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Absolute,days/yr,11.45759745,11.45759745,11.45759745,11.45759745,11.45759745,11.45759745,11.45759745,11.45759745,11.45759745,11.45759745 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Absolute,days/yr,19.58223678,19.58223678,19.58223678,19.58223678,19.58223678,19.58223678,19.58223678,19.58223678,19.58223678,19.58223678 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Absolute,days/yr,20.34050184,20.34050184,20.34050184,20.34050184,20.34050184,20.34050184,20.34050184,20.34050184,20.34050184,20.34050184 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Absolute,days/yr,98.30582324,98.30582324,98.30582324,98.30582324,98.30582324,98.30582324,98.30582324,98.30582324,98.30582324,98.30582324 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Absolute,days/yr,13.34668519,13.34668519,13.34668519,13.34668519,13.34668519,13.34668519,13.34668519,13.34668519,13.34668519,13.34668519 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Absolute,days/yr,82.29957204,82.29957204,82.29957204,82.29957204,82.29957204,82.29957204,82.29957204,82.29957204,82.29957204,82.29957204 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Absolute,days/yr,92.61837262,92.61837262,92.61837262,92.61837262,92.61837262,92.61837262,92.61837262,92.61837262,92.61837262,92.61837262 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Absolute,days/yr,0.633365657,0.633365657,0.633365657,0.633365657,0.633365657,0.633365657,0.633365657,0.633365657,0.633365657,0.633365657 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Absolute,days/yr,10.34418077,10.34418077,10.34418077,10.34418077,10.34418077,10.34418077,10.34418077,10.34418077,10.34418077,10.34418077 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Absolute,days/yr,2.826950259,2.826950259,2.826950259,2.826950259,2.826950259,2.826950259,2.826950259,2.826950259,2.826950259,2.826950259 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Absolute,days/yr,14.54233893,14.54233893,14.54233893,14.54233893,14.54233893,14.54233893,14.54233893,14.54233893,14.54233893,14.54233893 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Absolute,days/yr,225.5554447,225.5554447,225.5554447,225.5554447,225.5554447,225.5554447,225.5554447,225.5554447,225.5554447,225.5554447 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Absolute,days/yr,13.0130217,13.0130217,13.0130217,13.0130217,13.0130217,13.0130217,13.0130217,13.0130217,13.0130217,13.0130217 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Absolute,days/yr,20.31315262,20.31315262,20.31315262,20.31315262,20.31315262,20.31315262,20.31315262,20.31315262,20.31315262,20.31315262 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Absolute,days/yr,12.88586328,12.88586328,12.88586328,12.88586328,12.88586328,12.88586328,12.88586328,12.88586328,12.88586328,12.88586328 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Absolute,days/yr,52.86971264,52.86971264,52.86971264,52.86971264,52.86971264,52.86971264,52.86971264,52.86971264,52.86971264,52.86971264 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Absolute,days/yr,84.69074091,84.69074091,84.69074091,84.69074091,84.69074091,84.69074091,84.69074091,84.69074091,84.69074091,84.69074091 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Absolute,days/yr,82.28403531,82.28403531,82.28403531,82.28403531,82.28403531,82.28403531,82.28403531,82.28403531,82.28403531,82.28403531 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Absolute,days/yr,52.28958009,52.28958009,52.28958009,52.28958009,52.28958009,52.28958009,52.28958009,52.28958009,52.28958009,52.28958009 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Absolute,days/yr,22.82187172,22.82187172,22.82187172,22.82187172,22.82187172,22.82187172,22.82187172,22.82187172,22.82187172,22.82187172 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Absolute,days/yr,23.88989804,23.88989804,23.88989804,23.88989804,23.88989804,23.88989804,23.88989804,23.88989804,23.88989804,23.88989804 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Absolute,days/yr,29.27469869,29.27469869,29.27469869,29.27469869,29.27469869,29.27469869,29.27469869,29.27469869,29.27469869,29.27469869 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Absolute,days/yr,4.117969199,4.117969199,4.117969199,4.117969199,4.117969199,4.117969199,4.117969199,4.117969199,4.117969199,4.117969199 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Absolute,days/yr,30.92473452,30.92473452,30.92473452,30.92473452,30.92473452,30.92473452,30.92473452,30.92473452,30.92473452,30.92473452 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Absolute,days/yr,15.8870848,15.8870848,15.8870848,15.8870848,15.8870848,15.8870848,15.8870848,15.8870848,15.8870848,15.8870848 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Absolute,days/yr,36.17346716,36.17346716,36.17346716,36.17346716,36.17346716,36.17346716,36.17346716,36.17346716,36.17346716,36.17346716 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Absolute,days/yr,3.84551322,3.84551322,3.84551322,3.84551322,3.84551322,3.84551322,3.84551322,3.84551322,3.84551322,3.84551322 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Absolute,days/yr,87.25853058,87.25853058,87.25853058,87.25853058,87.25853058,87.25853058,87.25853058,87.25853058,87.25853058,87.25853058 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Absolute,days/yr,56.26979445,56.26979445,56.26979445,56.26979445,56.26979445,56.26979445,56.26979445,56.26979445,56.26979445,56.26979445 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Absolute,days/yr,27.32882303,27.32882303,27.32882303,27.32882303,27.32882303,27.32882303,27.32882303,27.32882303,27.32882303,27.32882303 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Absolute,days/yr,52.71398218,52.71398218,52.71398218,52.71398218,52.71398218,52.71398218,52.71398218,52.71398218,52.71398218,52.71398218 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Absolute,days/yr,232.4237604,232.4237604,232.4237604,232.4237604,232.4237604,232.4237604,232.4237604,232.4237604,232.4237604,232.4237604 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Absolute,days/yr,64.09943877,64.09943877,64.09943877,64.09943877,64.09943877,64.09943877,64.09943877,64.09943877,64.09943877,64.09943877 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Absolute,days/yr,4.920645051,4.920645051,4.920645051,4.920645051,4.920645051,4.920645051,4.920645051,4.920645051,4.920645051,4.920645051 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Absolute,days/yr,0.498137819,0.498137819,0.498137819,0.498137819,0.498137819,0.498137819,0.498137819,0.498137819,0.498137819,0.498137819 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Absolute,days/yr,21.69906862,21.69906862,21.69906862,21.69906862,21.69906862,21.69906862,21.69906862,21.69906862,21.69906862,21.69906862 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Absolute,days/yr,50.35068605,50.35068605,50.35068605,50.35068605,50.35068605,50.35068605,50.35068605,50.35068605,50.35068605,50.35068605 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Absolute,days/yr,71.56682699,71.56682699,71.56682699,71.56682699,71.56682699,71.56682699,71.56682699,71.56682699,71.56682699,71.56682699 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Absolute,days/yr,13.52251787,13.52251787,13.52251787,13.52251787,13.52251787,13.52251787,13.52251787,13.52251787,13.52251787,13.52251787 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Absolute,days/yr,141.9763345,141.9763345,141.9763345,141.9763345,141.9763345,141.9763345,141.9763345,141.9763345,141.9763345,141.9763345 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Absolute,days/yr,146.4950193,146.4950193,146.4950193,146.4950193,146.4950193,146.4950193,146.4950193,146.4950193,146.4950193,146.4950193 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Absolute,days/yr,12.26772798,12.26772798,12.26772798,12.26772798,12.26772798,12.26772798,12.26772798,12.26772798,12.26772798,12.26772798 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Absolute,days/yr,67.72212789,67.72212789,67.72212789,67.72212789,67.72212789,67.72212789,67.72212789,67.72212789,67.72212789,67.72212789 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Absolute,days/yr,8.64268014,8.64268014,8.64268014,8.64268014,8.64268014,8.64268014,8.64268014,8.64268014,8.64268014,8.64268014 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Absolute,days/yr,110.9433283,110.9433283,110.9433283,110.9433283,110.9433283,110.9433283,110.9433283,110.9433283,110.9433283,110.9433283 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Absolute,days/yr,17.8636591,17.8636591,17.8636591,17.8636591,17.8636591,17.8636591,17.8636591,17.8636591,17.8636591,17.8636591 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Absolute,days/yr,3.633622454,3.633622454,3.633622454,3.633622454,3.633622454,3.633622454,3.633622454,3.633622454,3.633622454,3.633622454 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Absolute,days/yr,2.654706764,2.654706764,2.654706764,2.654706764,2.654706764,2.654706764,2.654706764,2.654706764,2.654706764,2.654706764 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Absolute,days/yr,49.46055609,49.46055609,49.46055609,49.46055609,49.46055609,49.46055609,49.46055609,49.46055609,49.46055609,49.46055609 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Absolute,days/yr,18.16279167,18.16279167,18.16279167,18.16279167,18.16279167,18.16279167,18.16279167,18.16279167,18.16279167,18.16279167 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Absolute,days/yr,80.2664278,80.2664278,80.2664278,80.2664278,80.2664278,80.2664278,80.2664278,80.2664278,80.2664278,80.2664278 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Absolute,days/yr,9.38910325,9.38910325,9.38910325,9.38910325,9.38910325,9.38910325,9.38910325,9.38910325,9.38910325,9.38910325 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Absolute,days/yr,20.90543501,20.90543501,20.90543501,20.90543501,20.90543501,20.90543501,20.90543501,20.90543501,20.90543501,20.90543501 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Absolute,days/yr,23.66190239,23.66190239,23.66190239,23.66190239,23.66190239,23.66190239,23.66190239,23.66190239,23.66190239,23.66190239 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Absolute,days/yr,41.37980886,41.37980886,41.37980886,41.37980886,41.37980886,41.37980886,41.37980886,41.37980886,41.37980886,41.37980886 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Absolute,days/yr,14.3161343,14.3161343,14.3161343,14.3161343,14.3161343,14.3161343,14.3161343,14.3161343,14.3161343,14.3161343 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Absolute,days/yr,10.4475104,10.4475104,10.4475104,10.4475104,10.4475104,10.4475104,10.4475104,10.4475104,10.4475104,10.4475104 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Absolute,days/yr,110.6909398,110.6909398,110.6909398,110.6909398,110.6909398,110.6909398,110.6909398,110.6909398,110.6909398,110.6909398 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Absolute,days/yr,28.98159993,28.98159993,28.98159993,28.98159993,28.98159993,28.98159993,28.98159993,28.98159993,28.98159993,28.98159993 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Absolute,days/yr,81.90533435,81.90533435,81.90533435,81.90533435,81.90533435,81.90533435,81.90533435,81.90533435,81.90533435,81.90533435 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Absolute,days/yr,86.69283561,86.69283561,86.69283561,86.69283561,86.69283561,86.69283561,86.69283561,86.69283561,86.69283561,86.69283561 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Absolute,days/yr,286.3248282,286.3248282,286.3248282,286.3248282,286.3248282,286.3248282,286.3248282,286.3248282,286.3248282,286.3248282 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Absolute,days/yr,2.511935392,2.511935392,2.511935392,2.511935392,2.511935392,2.511935392,2.511935392,2.511935392,2.511935392,2.511935392 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Absolute,days/yr,21.43194591,21.43194591,21.43194591,21.43194591,21.43194591,21.43194591,21.43194591,21.43194591,21.43194591,21.43194591 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Absolute,days/yr,134.6098908,134.6098908,134.6098908,134.6098908,134.6098908,134.6098908,134.6098908,134.6098908,134.6098908,134.6098908 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Absolute,days/yr,14.4322735,14.4322735,14.4322735,14.4322735,14.4322735,14.4322735,14.4322735,14.4322735,14.4322735,14.4322735 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Absolute,days/yr,56.35785935,56.35785935,56.35785935,56.35785935,56.35785935,56.35785935,56.35785935,56.35785935,56.35785935,56.35785935 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Absolute,days/yr,28.00453919,28.00453919,28.00453919,28.00453919,28.00453919,28.00453919,28.00453919,28.00453919,28.00453919,28.00453919 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Absolute,days/yr,31.80969266,31.80969266,31.80969266,31.80969266,31.80969266,31.80969266,31.80969266,31.80969266,31.80969266,31.80969266 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Absolute,days/yr,19.59255426,19.59255426,19.59255426,19.59255426,19.59255426,19.59255426,19.59255426,19.59255426,19.59255426,19.59255426 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Absolute,days/yr,2.51574779,2.51574779,2.51574779,2.51574779,2.51574779,2.51574779,2.51574779,2.51574779,2.51574779,2.51574779 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Absolute,days/yr,0.314972767,0.314972767,0.314972767,0.314972767,0.314972767,0.314972767,0.314972767,0.314972767,0.314972767,0.314972767 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Absolute,days/yr,5.271481006,5.271481006,5.271481006,5.271481006,5.271481006,5.271481006,5.271481006,5.271481006,5.271481006,5.271481006 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Absolute,days/yr,4.772258039,4.772258039,4.772258039,4.772258039,4.772258039,4.772258039,4.772258039,4.772258039,4.772258039,4.772258039 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Absolute,days/yr,1.070029328,1.070029328,1.070029328,1.070029328,1.070029328,1.070029328,1.070029328,1.070029328,1.070029328,1.070029328 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Absolute|Land area weighted,days/yr,30.32975384,30.32975384,30.32975384,30.32975384,30.32975384,30.32975384,30.32975384,30.32975384,30.32975384,30.32975384 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Absolute|Land area weighted,days/yr,34.93286786,34.93286786,34.93286786,34.93286786,34.93286786,34.93286786,34.93286786,34.93286786,34.93286786,34.93286786 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Absolute|Land area weighted,days/yr,132.9368494,132.9368494,132.9368494,132.9368494,132.9368494,132.9368494,132.9368494,132.9368494,132.9368494,132.9368494 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Absolute|Land area weighted,days/yr,23.26578988,23.26578988,23.26578988,23.26578988,23.26578988,23.26578988,23.26578988,23.26578988,23.26578988,23.26578988 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Absolute|Land area weighted,days/yr,92.54887937,92.54887937,92.54887937,92.54887937,92.54887937,92.54887937,92.54887937,92.54887937,92.54887937,92.54887937 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Absolute|Land area weighted,days/yr,93.55104413,93.55104413,93.55104413,93.55104413,93.55104413,93.55104413,93.55104413,93.55104413,93.55104413,93.55104413 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Absolute|Land area weighted,days/yr,64.2578488,64.2578488,64.2578488,64.2578488,64.2578488,64.2578488,64.2578488,64.2578488,64.2578488,64.2578488 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Absolute|Land area weighted,days/yr,169.3659727,169.3659727,169.3659727,169.3659727,169.3659727,169.3659727,169.3659727,169.3659727,169.3659727,169.3659727 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Absolute|Land area weighted,days/yr,64.88902811,64.88902811,64.88902811,64.88902811,64.88902811,64.88902811,64.88902811,64.88902811,64.88902811,64.88902811 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Absolute|Land area weighted,days/yr,75.11901056,75.11901056,75.11901056,75.11901056,75.11901056,75.11901056,75.11901056,75.11901056,75.11901056,75.11901056 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Absolute|Land area weighted,days/yr,25.13664799,25.13664799,25.13664799,25.13664799,25.13664799,25.13664799,25.13664799,25.13664799,25.13664799,25.13664799 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Absolute|Land area weighted,days/yr,163.2476913,163.2476913,163.2476913,163.2476913,163.2476913,163.2476913,163.2476913,163.2476913,163.2476913,163.2476913 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Absolute|Land area weighted,days/yr,76.62374137,76.62374137,76.62374137,76.62374137,76.62374137,76.62374137,76.62374137,76.62374137,76.62374137,76.62374137 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Absolute|Land area weighted,days/yr,218.8030028,218.8030028,218.8030028,218.8030028,218.8030028,218.8030028,218.8030028,218.8030028,218.8030028,218.8030028 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Absolute|Land area weighted,days/yr,104.3833342,104.3833342,104.3833342,104.3833342,104.3833342,104.3833342,104.3833342,104.3833342,104.3833342,104.3833342 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Absolute|Land area weighted,days/yr,25.62337704,25.62337704,25.62337704,25.62337704,25.62337704,25.62337704,25.62337704,25.62337704,25.62337704,25.62337704 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Absolute|Land area weighted,days/yr,46.42246566,46.42246566,46.42246566,46.42246566,46.42246566,46.42246566,46.42246566,46.42246566,46.42246566,46.42246566 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Absolute|Land area weighted,days/yr,28.68656175,28.68656175,28.68656175,28.68656175,28.68656175,28.68656175,28.68656175,28.68656175,28.68656175,28.68656175 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Absolute|Land area weighted,days/yr,130.4368239,130.4368239,130.4368239,130.4368239,130.4368239,130.4368239,130.4368239,130.4368239,130.4368239,130.4368239 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Absolute|Land area weighted,days/yr,209.094323,209.094323,209.094323,209.094323,209.094323,209.094323,209.094323,209.094323,209.094323,209.094323 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Absolute|Land area weighted,days/yr,53.24104265,53.24104265,53.24104265,53.24104265,53.24104265,53.24104265,53.24104265,53.24104265,53.24104265,53.24104265 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Absolute|Land area weighted,days/yr,60.01014291,60.01014291,60.01014291,60.01014291,60.01014291,60.01014291,60.01014291,60.01014291,60.01014291,60.01014291 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Absolute|Land area weighted,days/yr,62.2259165,62.2259165,62.2259165,62.2259165,62.2259165,62.2259165,62.2259165,62.2259165,62.2259165,62.2259165 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Absolute|Land area weighted,days/yr,22.87047568,22.87047568,22.87047568,22.87047568,22.87047568,22.87047568,22.87047568,22.87047568,22.87047568,22.87047568 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Absolute|Land area weighted,days/yr,30.70482118,30.70482118,30.70482118,30.70482118,30.70482118,30.70482118,30.70482118,30.70482118,30.70482118,30.70482118 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Absolute|Land area weighted,days/yr,234.1582249,234.1582249,234.1582249,234.1582249,234.1582249,234.1582249,234.1582249,234.1582249,234.1582249,234.1582249 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Absolute|Land area weighted,days/yr,99.14190509,99.14190509,99.14190509,99.14190509,99.14190509,99.14190509,99.14190509,99.14190509,99.14190509,99.14190509 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Absolute|Land area weighted,days/yr,42.86883827,42.86883827,42.86883827,42.86883827,42.86883827,42.86883827,42.86883827,42.86883827,42.86883827,42.86883827 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Absolute|Land area weighted,days/yr,50.65211831,50.65211831,50.65211831,50.65211831,50.65211831,50.65211831,50.65211831,50.65211831,50.65211831,50.65211831 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Absolute|Land area weighted,days/yr,17.30965906,17.30965906,17.30965906,17.30965906,17.30965906,17.30965906,17.30965906,17.30965906,17.30965906,17.30965906 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Absolute|Land area weighted,days/yr,183.0156641,183.0156641,183.0156641,183.0156641,183.0156641,183.0156641,183.0156641,183.0156641,183.0156641,183.0156641 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Absolute|Land area weighted,days/yr,136.4185958,136.4185958,136.4185958,136.4185958,136.4185958,136.4185958,136.4185958,136.4185958,136.4185958,136.4185958 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.73355759,10.73355759,10.73355759,10.73355759,10.73355759,10.73355759,10.73355759,10.73355759,10.73355759,10.73355759 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Absolute|Land area weighted,days/yr,25.274084,25.274084,25.274084,25.274084,25.274084,25.274084,25.274084,25.274084,25.274084,25.274084 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Absolute|Land area weighted,days/yr,230.4918136,230.4918136,230.4918136,230.4918136,230.4918136,230.4918136,230.4918136,230.4918136,230.4918136,230.4918136 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Absolute|Land area weighted,days/yr,27.99419162,27.99419162,27.99419162,27.99419162,27.99419162,27.99419162,27.99419162,27.99419162,27.99419162,27.99419162 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0007794,131.0007794,131.0007794,131.0007794,131.0007794,131.0007794,131.0007794,131.0007794,131.0007794,131.0007794 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Absolute|Land area weighted,days/yr,56.24100675,56.24100675,56.24100675,56.24100675,56.24100675,56.24100675,56.24100675,56.24100675,56.24100675,56.24100675 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Absolute|Land area weighted,days/yr,70.5653705,70.5653705,70.5653705,70.5653705,70.5653705,70.5653705,70.5653705,70.5653705,70.5653705,70.5653705 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Absolute|Land area weighted,days/yr,65.8531534,65.8531534,65.8531534,65.8531534,65.8531534,65.8531534,65.8531534,65.8531534,65.8531534,65.8531534 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Absolute|Land area weighted,days/yr,44.62166612,44.62166612,44.62166612,44.62166612,44.62166612,44.62166612,44.62166612,44.62166612,44.62166612,44.62166612 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Absolute|Land area weighted,days/yr,73.1815185,73.1815185,73.1815185,73.1815185,73.1815185,73.1815185,73.1815185,73.1815185,73.1815185,73.1815185 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Absolute|Land area weighted,days/yr,34.74418721,34.74418721,34.74418721,34.74418721,34.74418721,34.74418721,34.74418721,34.74418721,34.74418721,34.74418721 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Absolute|Land area weighted,days/yr,24.64831992,24.64831992,24.64831992,24.64831992,24.64831992,24.64831992,24.64831992,24.64831992,24.64831992,24.64831992 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Absolute|Land area weighted,days/yr,84.34756716,84.34756716,84.34756716,84.34756716,84.34756716,84.34756716,84.34756716,84.34756716,84.34756716,84.34756716 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Absolute|Land area weighted,days/yr,69.24620107,69.24620107,69.24620107,69.24620107,69.24620107,69.24620107,69.24620107,69.24620107,69.24620107,69.24620107 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Absolute|Land area weighted,days/yr,144.4900574,144.4900574,144.4900574,144.4900574,144.4900574,144.4900574,144.4900574,144.4900574,144.4900574,144.4900574 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Absolute|Land area weighted,days/yr,110.0597588,110.0597588,110.0597588,110.0597588,110.0597588,110.0597588,110.0597588,110.0597588,110.0597588,110.0597588 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Absolute|Land area weighted,days/yr,247.8193051,247.8193051,247.8193051,247.8193051,247.8193051,247.8193051,247.8193051,247.8193051,247.8193051,247.8193051 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Absolute|Land area weighted,days/yr,16.76970473,16.76970473,16.76970473,16.76970473,16.76970473,16.76970473,16.76970473,16.76970473,16.76970473,16.76970473 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Absolute|Land area weighted,days/yr,11.14733123,11.14733123,11.14733123,11.14733123,11.14733123,11.14733123,11.14733123,11.14733123,11.14733123,11.14733123 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Absolute|Land area weighted,days/yr,107.1195131,107.1195131,107.1195131,107.1195131,107.1195131,107.1195131,107.1195131,107.1195131,107.1195131,107.1195131 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Absolute|Land area weighted,days/yr,32.7163666,32.7163666,32.7163666,32.7163666,32.7163666,32.7163666,32.7163666,32.7163666,32.7163666,32.7163666 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Absolute|Land area weighted,days/yr,28.40202672,28.40202672,28.40202672,28.40202672,28.40202672,28.40202672,28.40202672,28.40202672,28.40202672,28.40202672 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Absolute|Land area weighted,days/yr,186.3405394,186.3405394,186.3405394,186.3405394,186.3405394,186.3405394,186.3405394,186.3405394,186.3405394,186.3405394 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Absolute|Land area weighted,days/yr,118.9285546,118.9285546,118.9285546,118.9285546,118.9285546,118.9285546,118.9285546,118.9285546,118.9285546,118.9285546 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Absolute|Land area weighted,days/yr,61.56503733,61.56503733,61.56503733,61.56503733,61.56503733,61.56503733,61.56503733,61.56503733,61.56503733,61.56503733 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Absolute|Land area weighted,days/yr,64.61569202,64.61569202,64.61569202,64.61569202,64.61569202,64.61569202,64.61569202,64.61569202,64.61569202,64.61569202 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Absolute|Land area weighted,days/yr,21.1274843,21.1274843,21.1274843,21.1274843,21.1274843,21.1274843,21.1274843,21.1274843,21.1274843,21.1274843 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Absolute|Land area weighted,days/yr,20.61757035,20.61757035,20.61757035,20.61757035,20.61757035,20.61757035,20.61757035,20.61757035,20.61757035,20.61757035 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Absolute|Land area weighted,days/yr,78.85546401,78.85546401,78.85546401,78.85546401,78.85546401,78.85546401,78.85546401,78.85546401,78.85546401,78.85546401 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Absolute|Land area weighted,days/yr,127.4015402,127.4015402,127.4015402,127.4015402,127.4015402,127.4015402,127.4015402,127.4015402,127.4015402,127.4015402 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Absolute|Land area weighted,days/yr,226.9905763,226.9905763,226.9905763,226.9905763,226.9905763,226.9905763,226.9905763,226.9905763,226.9905763,226.9905763 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Absolute|Land area weighted,days/yr,34.31425532,34.31425532,34.31425532,34.31425532,34.31425532,34.31425532,34.31425532,34.31425532,34.31425532,34.31425532 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Absolute|Land area weighted,days/yr,92.83796542,92.83796542,92.83796542,92.83796542,92.83796542,92.83796542,92.83796542,92.83796542,92.83796542,92.83796542 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Absolute|Land area weighted,days/yr,32.42150184,32.42150184,32.42150184,32.42150184,32.42150184,32.42150184,32.42150184,32.42150184,32.42150184,32.42150184 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Absolute|Land area weighted,days/yr,97.3775853,97.3775853,97.3775853,97.3775853,97.3775853,97.3775853,97.3775853,97.3775853,97.3775853,97.3775853 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Absolute|Land area weighted,days/yr,91.41178931,91.41178931,91.41178931,91.41178931,91.41178931,91.41178931,91.41178931,91.41178931,91.41178931,91.41178931 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Absolute|Land area weighted,days/yr,41.25013655,41.25013655,41.25013655,41.25013655,41.25013655,41.25013655,41.25013655,41.25013655,41.25013655,41.25013655 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Absolute|Land area weighted,days/yr,34.87389148,34.87389148,34.87389148,34.87389148,34.87389148,34.87389148,34.87389148,34.87389148,34.87389148,34.87389148 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Absolute|Land area weighted,days/yr,30.76591474,30.76591474,30.76591474,30.76591474,30.76591474,30.76591474,30.76591474,30.76591474,30.76591474,30.76591474 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Absolute|Land area weighted,days/yr,33.4854055,33.4854055,33.4854055,33.4854055,33.4854055,33.4854055,33.4854055,33.4854055,33.4854055,33.4854055 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Absolute|Land area weighted,days/yr,206.4418483,206.4418483,206.4418483,206.4418483,206.4418483,206.4418483,206.4418483,206.4418483,206.4418483,206.4418483 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Absolute|Land area weighted,days/yr,15.03583497,15.03583497,15.03583497,15.03583497,15.03583497,15.03583497,15.03583497,15.03583497,15.03583497,15.03583497 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Absolute|Land area weighted,days/yr,23.13145462,23.13145462,23.13145462,23.13145462,23.13145462,23.13145462,23.13145462,23.13145462,23.13145462,23.13145462 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Absolute|Land area weighted,days/yr,291.9204145,291.9204145,291.9204145,291.9204145,291.9204145,291.9204145,291.9204145,291.9204145,291.9204145,291.9204145 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Absolute|Land area weighted,days/yr,26.00315254,26.00315254,26.00315254,26.00315254,26.00315254,26.00315254,26.00315254,26.00315254,26.00315254,26.00315254 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Absolute|Land area weighted,days/yr,99.00142394,99.00142394,99.00142394,99.00142394,99.00142394,99.00142394,99.00142394,99.00142394,99.00142394,99.00142394 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Absolute|Land area weighted,days/yr,40.79658407,40.79658407,40.79658407,40.79658407,40.79658407,40.79658407,40.79658407,40.79658407,40.79658407,40.79658407 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Absolute|Land area weighted,days/yr,23.6007935,23.6007935,23.6007935,23.6007935,23.6007935,23.6007935,23.6007935,23.6007935,23.6007935,23.6007935 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Absolute|Land area weighted,days/yr,53.93007116,53.93007116,53.93007116,53.93007116,53.93007116,53.93007116,53.93007116,53.93007116,53.93007116,53.93007116 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Absolute|Land area weighted,days/yr,231.7972389,231.7972389,231.7972389,231.7972389,231.7972389,231.7972389,231.7972389,231.7972389,231.7972389,231.7972389 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Absolute|Land area weighted,days/yr,33.07438346,33.07438346,33.07438346,33.07438346,33.07438346,33.07438346,33.07438346,33.07438346,33.07438346,33.07438346 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Absolute|Land area weighted,days/yr,42.29848596,42.29848596,42.29848596,42.29848596,42.29848596,42.29848596,42.29848596,42.29848596,42.29848596,42.29848596 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Absolute|Land area weighted,days/yr,36.92975245,36.92975245,36.92975245,36.92975245,36.92975245,36.92975245,36.92975245,36.92975245,36.92975245,36.92975245 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Absolute|Land area weighted,days/yr,33.5915732,33.5915732,33.5915732,33.5915732,33.5915732,33.5915732,33.5915732,33.5915732,33.5915732,33.5915732 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Absolute|Land area weighted,days/yr,145.2390583,145.2390583,145.2390583,145.2390583,145.2390583,145.2390583,145.2390583,145.2390583,145.2390583,145.2390583 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Absolute|Land area weighted,days/yr,71.86434882,71.86434882,71.86434882,71.86434882,71.86434882,71.86434882,71.86434882,71.86434882,71.86434882,71.86434882 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Absolute|Land area weighted,days/yr,92.9678268,92.9678268,92.9678268,92.9678268,92.9678268,92.9678268,92.9678268,92.9678268,92.9678268,92.9678268 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Absolute|Land area weighted,days/yr,23.07458452,23.07458452,23.07458452,23.07458452,23.07458452,23.07458452,23.07458452,23.07458452,23.07458452,23.07458452 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Absolute|Land area weighted,days/yr,18.3227515,18.3227515,18.3227515,18.3227515,18.3227515,18.3227515,18.3227515,18.3227515,18.3227515,18.3227515 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Absolute|Land area weighted,days/yr,18.83591808,18.83591808,18.83591808,18.83591808,18.83591808,18.83591808,18.83591808,18.83591808,18.83591808,18.83591808 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Absolute|Land area weighted,days/yr,21.80070424,21.80070424,21.80070424,21.80070424,21.80070424,21.80070424,21.80070424,21.80070424,21.80070424,21.80070424 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Absolute|Land area weighted,days/yr,81.91106046,81.91106046,81.91106046,81.91106046,81.91106046,81.91106046,81.91106046,81.91106046,81.91106046,81.91106046 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Absolute|Land area weighted,days/yr,33.31715095,33.31715095,33.31715095,33.31715095,33.31715095,33.31715095,33.31715095,33.31715095,33.31715095,33.31715095 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Absolute|Land area weighted,days/yr,45.10933252,45.10933252,45.10933252,45.10933252,45.10933252,45.10933252,45.10933252,45.10933252,45.10933252,45.10933252 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Absolute|Land area weighted,days/yr,31.28356354,31.28356354,31.28356354,31.28356354,31.28356354,31.28356354,31.28356354,31.28356354,31.28356354,31.28356354 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Absolute|Land area weighted,days/yr,272.9562719,272.9562719,272.9562719,272.9562719,272.9562719,272.9562719,272.9562719,272.9562719,272.9562719,272.9562719 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Absolute|Land area weighted,days/yr,58.80836798,58.80836798,58.80836798,58.80836798,58.80836798,58.80836798,58.80836798,58.80836798,58.80836798,58.80836798 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Absolute|Land area weighted,days/yr,194.8456792,194.8456792,194.8456792,194.8456792,194.8456792,194.8456792,194.8456792,194.8456792,194.8456792,194.8456792 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Absolute|Land area weighted,days/yr,48.05800411,48.05800411,48.05800411,48.05800411,48.05800411,48.05800411,48.05800411,48.05800411,48.05800411,48.05800411 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Absolute|Land area weighted,days/yr,31.9111578,31.9111578,31.9111578,31.9111578,31.9111578,31.9111578,31.9111578,31.9111578,31.9111578,31.9111578 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Absolute|Land area weighted,days/yr,45.80244769,45.80244769,45.80244769,45.80244769,45.80244769,45.80244769,45.80244769,45.80244769,45.80244769,45.80244769 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Absolute|Land area weighted,days/yr,23.09527587,23.09527587,23.09527587,23.09527587,23.09527587,23.09527587,23.09527587,23.09527587,23.09527587,23.09527587 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Absolute|Land area weighted,days/yr,20.51523561,20.51523561,20.51523561,20.51523561,20.51523561,20.51523561,20.51523561,20.51523561,20.51523561,20.51523561 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Absolute|Land area weighted,days/yr,148.4253926,148.4253926,148.4253926,148.4253926,148.4253926,148.4253926,148.4253926,148.4253926,148.4253926,148.4253926 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Absolute|Land area weighted,days/yr,28.07752838,28.07752838,28.07752838,28.07752838,28.07752838,28.07752838,28.07752838,28.07752838,28.07752838,28.07752838 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Absolute|Land area weighted,days/yr,22.66992369,22.66992369,22.66992369,22.66992369,22.66992369,22.66992369,22.66992369,22.66992369,22.66992369,22.66992369 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Absolute|Land area weighted,days/yr,106.3876281,106.3876281,106.3876281,106.3876281,106.3876281,106.3876281,106.3876281,106.3876281,106.3876281,106.3876281 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Absolute|Land area weighted,days/yr,153.6597985,153.6597985,153.6597985,153.6597985,153.6597985,153.6597985,153.6597985,153.6597985,153.6597985,153.6597985 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Absolute|Land area weighted,days/yr,224.9637798,224.9637798,224.9637798,224.9637798,224.9637798,224.9637798,224.9637798,224.9637798,224.9637798,224.9637798 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Absolute|Land area weighted,days/yr,100.7372724,100.7372724,100.7372724,100.7372724,100.7372724,100.7372724,100.7372724,100.7372724,100.7372724,100.7372724 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Absolute|Land area weighted,days/yr,152.906738,152.906738,152.906738,152.906738,152.906738,152.906738,152.906738,152.906738,152.906738,152.906738 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Absolute|Land area weighted,days/yr,19.53113132,19.53113132,19.53113132,19.53113132,19.53113132,19.53113132,19.53113132,19.53113132,19.53113132,19.53113132 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Absolute|Land area weighted,days/yr,22.97701676,22.97701676,22.97701676,22.97701676,22.97701676,22.97701676,22.97701676,22.97701676,22.97701676,22.97701676 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Absolute|Land area weighted,days/yr,89.29571391,89.29571391,89.29571391,89.29571391,89.29571391,89.29571391,89.29571391,89.29571391,89.29571391,89.29571391 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Absolute|Land area weighted,days/yr,30.37370937,30.37370937,30.37370937,30.37370937,30.37370937,30.37370937,30.37370937,30.37370937,30.37370937,30.37370937 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Absolute|Land area weighted,days/yr,172.9981876,172.9981876,172.9981876,172.9981876,172.9981876,172.9981876,172.9981876,172.9981876,172.9981876,172.9981876 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Absolute|Land area weighted,days/yr,91.35278727,91.35278727,91.35278727,91.35278727,91.35278727,91.35278727,91.35278727,91.35278727,91.35278727,91.35278727 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Absolute|Land area weighted,days/yr,27.32300425,27.32300425,27.32300425,27.32300425,27.32300425,27.32300425,27.32300425,27.32300425,27.32300425,27.32300425 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Absolute|Land area weighted,days/yr,51.38504578,51.38504578,51.38504578,51.38504578,51.38504578,51.38504578,51.38504578,51.38504578,51.38504578,51.38504578 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Absolute|Land area weighted,days/yr,24.45812485,24.45812485,24.45812485,24.45812485,24.45812485,24.45812485,24.45812485,24.45812485,24.45812485,24.45812485 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Absolute|Land area weighted,days/yr,23.87745424,23.87745424,23.87745424,23.87745424,23.87745424,23.87745424,23.87745424,23.87745424,23.87745424,23.87745424 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Absolute|Land area weighted,days/yr,35.96736716,35.96736716,35.96736716,35.96736716,35.96736716,35.96736716,35.96736716,35.96736716,35.96736716,35.96736716 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Absolute|Land area weighted,days/yr,120.5898592,120.5898592,120.5898592,120.5898592,120.5898592,120.5898592,120.5898592,120.5898592,120.5898592,120.5898592 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Absolute|Land area weighted,days/yr,29.9706078,29.9706078,29.9706078,29.9706078,29.9706078,29.9706078,29.9706078,29.9706078,29.9706078,29.9706078 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Absolute|Land area weighted,days/yr,93.68198951,93.68198951,93.68198951,93.68198951,93.68198951,93.68198951,93.68198951,93.68198951,93.68198951,93.68198951 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Absolute|Land area weighted,days/yr,199.2734548,199.2734548,199.2734548,199.2734548,199.2734548,199.2734548,199.2734548,199.2734548,199.2734548,199.2734548 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Absolute|Land area weighted,days/yr,29.40861022,29.40861022,29.40861022,29.40861022,29.40861022,29.40861022,29.40861022,29.40861022,29.40861022,29.40861022 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Absolute|Land area weighted,days/yr,19.91523171,19.91523171,19.91523171,19.91523171,19.91523171,19.91523171,19.91523171,19.91523171,19.91523171,19.91523171 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Absolute|Land area weighted,days/yr,25.70397114,25.70397114,25.70397114,25.70397114,25.70397114,25.70397114,25.70397114,25.70397114,25.70397114,25.70397114 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Absolute|Land area weighted,days/yr,32.98589896,32.98589896,32.98589896,32.98589896,32.98589896,32.98589896,32.98589896,32.98589896,32.98589896,32.98589896 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Absolute|Land area weighted,days/yr,251.4574317,251.4574317,251.4574317,251.4574317,251.4574317,251.4574317,251.4574317,251.4574317,251.4574317,251.4574317 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Absolute|Land area weighted,days/yr,23.11541442,23.11541442,23.11541442,23.11541442,23.11541442,23.11541442,23.11541442,23.11541442,23.11541442,23.11541442 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Absolute|Land area weighted,days/yr,26.43426921,26.43426921,26.43426921,26.43426921,26.43426921,26.43426921,26.43426921,26.43426921,26.43426921,26.43426921 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Absolute|Land area weighted,days/yr,28.25091111,28.25091111,28.25091111,28.25091111,28.25091111,28.25091111,28.25091111,28.25091111,28.25091111,28.25091111 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Absolute|Land area weighted,days/yr,131.2614732,131.2614732,131.2614732,131.2614732,131.2614732,131.2614732,131.2614732,131.2614732,131.2614732,131.2614732 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Absolute|Land area weighted,days/yr,113.545645,113.545645,113.545645,113.545645,113.545645,113.545645,113.545645,113.545645,113.545645,113.545645 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Absolute|Land area weighted,days/yr,123.8280724,123.8280724,123.8280724,123.8280724,123.8280724,123.8280724,123.8280724,123.8280724,123.8280724,123.8280724 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Absolute|Land area weighted,days/yr,121.5969639,121.5969639,121.5969639,121.5969639,121.5969639,121.5969639,121.5969639,121.5969639,121.5969639,121.5969639 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Absolute|Land area weighted,days/yr,44.7600995,44.7600995,44.7600995,44.7600995,44.7600995,44.7600995,44.7600995,44.7600995,44.7600995,44.7600995 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Absolute|Land area weighted,days/yr,63.76969774,63.76969774,63.76969774,63.76969774,63.76969774,63.76969774,63.76969774,63.76969774,63.76969774,63.76969774 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Absolute|Land area weighted,days/yr,34.84855014,34.84855014,34.84855014,34.84855014,34.84855014,34.84855014,34.84855014,34.84855014,34.84855014,34.84855014 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Absolute|Land area weighted,days/yr,18.93548577,18.93548577,18.93548577,18.93548577,18.93548577,18.93548577,18.93548577,18.93548577,18.93548577,18.93548577 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Absolute|Land area weighted,days/yr,63.34951318,63.34951318,63.34951318,63.34951318,63.34951318,63.34951318,63.34951318,63.34951318,63.34951318,63.34951318 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Absolute|Land area weighted,days/yr,27.40288189,27.40288189,27.40288189,27.40288189,27.40288189,27.40288189,27.40288189,27.40288189,27.40288189,27.40288189 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Absolute|Land area weighted,days/yr,54.83988597,54.83988597,54.83988597,54.83988597,54.83988597,54.83988597,54.83988597,54.83988597,54.83988597,54.83988597 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Absolute|Land area weighted,days/yr,59.16174148,59.16174148,59.16174148,59.16174148,59.16174148,59.16174148,59.16174148,59.16174148,59.16174148,59.16174148 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Absolute|Land area weighted,days/yr,223.7540357,223.7540357,223.7540357,223.7540357,223.7540357,223.7540357,223.7540357,223.7540357,223.7540357,223.7540357 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Absolute|Land area weighted,days/yr,62.74160414,62.74160414,62.74160414,62.74160414,62.74160414,62.74160414,62.74160414,62.74160414,62.74160414,62.74160414 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Absolute|Land area weighted,days/yr,44.37994352,44.37994352,44.37994352,44.37994352,44.37994352,44.37994352,44.37994352,44.37994352,44.37994352,44.37994352 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Absolute|Land area weighted,days/yr,102.1710933,102.1710933,102.1710933,102.1710933,102.1710933,102.1710933,102.1710933,102.1710933,102.1710933,102.1710933 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Absolute|Land area weighted,days/yr,257.6985353,257.6985353,257.6985353,257.6985353,257.6985353,257.6985353,257.6985353,257.6985353,257.6985353,257.6985353 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Absolute|Land area weighted,days/yr,96.82547236,96.82547236,96.82547236,96.82547236,96.82547236,96.82547236,96.82547236,96.82547236,96.82547236,96.82547236 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Absolute|Land area weighted,days/yr,89.46627566,89.46627566,89.46627566,89.46627566,89.46627566,89.46627566,89.46627566,89.46627566,89.46627566,89.46627566 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Absolute|Land area weighted,days/yr,24.90317414,24.90317414,24.90317414,24.90317414,24.90317414,24.90317414,24.90317414,24.90317414,24.90317414,24.90317414 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Absolute|Land area weighted,days/yr,30.49217895,30.49217895,30.49217895,30.49217895,30.49217895,30.49217895,30.49217895,30.49217895,30.49217895,30.49217895 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Absolute|Land area weighted,days/yr,61.82006485,61.82006485,61.82006485,61.82006485,61.82006485,61.82006485,61.82006485,61.82006485,61.82006485,61.82006485 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Absolute|Land area weighted,days/yr,183.5079727,183.5079727,183.5079727,183.5079727,183.5079727,183.5079727,183.5079727,183.5079727,183.5079727,183.5079727 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Absolute|Land area weighted,days/yr,19.6816557,19.6816557,19.6816557,19.6816557,19.6816557,19.6816557,19.6816557,19.6816557,19.6816557,19.6816557 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Absolute|Land area weighted,days/yr,172.6296477,172.6296477,172.6296477,172.6296477,172.6296477,172.6296477,172.6296477,172.6296477,172.6296477,172.6296477 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Absolute|Land area weighted,days/yr,218.1614163,218.1614163,218.1614163,218.1614163,218.1614163,218.1614163,218.1614163,218.1614163,218.1614163,218.1614163 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Absolute|Land area weighted,days/yr,18.38064827,18.38064827,18.38064827,18.38064827,18.38064827,18.38064827,18.38064827,18.38064827,18.38064827,18.38064827 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Absolute|Land area weighted,days/yr,116.3016571,116.3016571,116.3016571,116.3016571,116.3016571,116.3016571,116.3016571,116.3016571,116.3016571,116.3016571 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Absolute|Land area weighted,days/yr,27.3503889,27.3503889,27.3503889,27.3503889,27.3503889,27.3503889,27.3503889,27.3503889,27.3503889,27.3503889 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Absolute|Land area weighted,days/yr,139.1858802,139.1858802,139.1858802,139.1858802,139.1858802,139.1858802,139.1858802,139.1858802,139.1858802,139.1858802 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Absolute|Land area weighted,days/yr,22.30605164,22.30605164,22.30605164,22.30605164,22.30605164,22.30605164,22.30605164,22.30605164,22.30605164,22.30605164 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Absolute|Land area weighted,days/yr,18.50266544,18.50266544,18.50266544,18.50266544,18.50266544,18.50266544,18.50266544,18.50266544,18.50266544,18.50266544 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Absolute|Land area weighted,days/yr,25.91247078,25.91247078,25.91247078,25.91247078,25.91247078,25.91247078,25.91247078,25.91247078,25.91247078,25.91247078 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Absolute|Land area weighted,days/yr,56.38535783,56.38535783,56.38535783,56.38535783,56.38535783,56.38535783,56.38535783,56.38535783,56.38535783,56.38535783 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Absolute|Land area weighted,days/yr,35.43942513,35.43942513,35.43942513,35.43942513,35.43942513,35.43942513,35.43942513,35.43942513,35.43942513,35.43942513 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Absolute|Land area weighted,days/yr,142.3623651,142.3623651,142.3623651,142.3623651,142.3623651,142.3623651,142.3623651,142.3623651,142.3623651,142.3623651 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Absolute|Land area weighted,days/yr,28.19436077,28.19436077,28.19436077,28.19436077,28.19436077,28.19436077,28.19436077,28.19436077,28.19436077,28.19436077 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Absolute|Land area weighted,days/yr,40.03204538,40.03204538,40.03204538,40.03204538,40.03204538,40.03204538,40.03204538,40.03204538,40.03204538,40.03204538 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Absolute|Land area weighted,days/yr,35.83157313,35.83157313,35.83157313,35.83157313,35.83157313,35.83157313,35.83157313,35.83157313,35.83157313,35.83157313 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Absolute|Land area weighted,days/yr,52.2230816,52.2230816,52.2230816,52.2230816,52.2230816,52.2230816,52.2230816,52.2230816,52.2230816,52.2230816 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Absolute|Land area weighted,days/yr,22.80095202,22.80095202,22.80095202,22.80095202,22.80095202,22.80095202,22.80095202,22.80095202,22.80095202,22.80095202 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Absolute|Land area weighted,days/yr,17.25231165,17.25231165,17.25231165,17.25231165,17.25231165,17.25231165,17.25231165,17.25231165,17.25231165,17.25231165 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Absolute|Land area weighted,days/yr,152.0612062,152.0612062,152.0612062,152.0612062,152.0612062,152.0612062,152.0612062,152.0612062,152.0612062,152.0612062 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Absolute|Land area weighted,days/yr,43.79560601,43.79560601,43.79560601,43.79560601,43.79560601,43.79560601,43.79560601,43.79560601,43.79560601,43.79560601 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Absolute|Land area weighted,days/yr,109.3810589,109.3810589,109.3810589,109.3810589,109.3810589,109.3810589,109.3810589,109.3810589,109.3810589,109.3810589 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Absolute|Land area weighted,days/yr,103.7213495,103.7213495,103.7213495,103.7213495,103.7213495,103.7213495,103.7213495,103.7213495,103.7213495,103.7213495 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Absolute|Land area weighted,days/yr,315.4825743,315.4825743,315.4825743,315.4825743,315.4825743,315.4825743,315.4825743,315.4825743,315.4825743,315.4825743 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Absolute|Land area weighted,days/yr,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Absolute|Land area weighted,days/yr,33.03307871,33.03307871,33.03307871,33.03307871,33.03307871,33.03307871,33.03307871,33.03307871,33.03307871,33.03307871 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Absolute|Land area weighted,days/yr,164.3987562,164.3987562,164.3987562,164.3987562,164.3987562,164.3987562,164.3987562,164.3987562,164.3987562,164.3987562 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Absolute|Land area weighted,days/yr,22.66095523,22.66095523,22.66095523,22.66095523,22.66095523,22.66095523,22.66095523,22.66095523,22.66095523,22.66095523 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Absolute|Land area weighted,days/yr,215.5753992,215.5753992,215.5753992,215.5753992,215.5753992,215.5753992,215.5753992,215.5753992,215.5753992,215.5753992 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Absolute|Land area weighted,days/yr,65.15263475,65.15263475,65.15263475,65.15263475,65.15263475,65.15263475,65.15263475,65.15263475,65.15263475,65.15263475 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Absolute|Land area weighted,days/yr,48.76115674,48.76115674,48.76115674,48.76115674,48.76115674,48.76115674,48.76115674,48.76115674,48.76115674,48.76115674 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Absolute|Land area weighted,days/yr,28.21665175,28.21665175,28.21665175,28.21665175,28.21665175,28.21665175,28.21665175,28.21665175,28.21665175,28.21665175 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Absolute|Land area weighted,days/yr,24.1919234,24.1919234,24.1919234,24.1919234,24.1919234,24.1919234,24.1919234,24.1919234,24.1919234,24.1919234 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Absolute|Land area weighted,days/yr,10.01829963,10.01829963,10.01829963,10.01829963,10.01829963,10.01829963,10.01829963,10.01829963,10.01829963,10.01829963 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Absolute|Land area weighted,days/yr,22.91580641,22.91580641,22.91580641,22.91580641,22.91580641,22.91580641,22.91580641,22.91580641,22.91580641,22.91580641 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Absolute|Land area weighted,days/yr,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Absolute|Land area weighted,days/yr,26.7529643,26.7529643,26.7529643,26.7529643,26.7529643,26.7529643,26.7529643,26.7529643,26.7529643,26.7529643 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Absolute|Population weighted,days/yr,22.20969849,22.21480642,22.22188263,22.22506831,22.23072837,22.23274264,22.2352905,22.2380518,22.2380166,22.23577305 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Absolute|Population weighted,days/yr,38.00482884,38.00655345,38.00836819,38.01023899,38.01199266,38.01357331,38.01496481,38.01614726,38.01714787,38.01802065 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Absolute|Population weighted,days/yr,136.0920425,136.3789696,136.7555853,137.171005,137.5848245,138.0365369,138.4927365,138.9625507,139.4105453,139.7607108 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Absolute|Population weighted,days/yr,23.23416528,23.2320191,23.23019237,23.22867033,23.22726207,23.22591352,23.2246403,23.22342554,23.22226839,23.22121411 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Absolute|Population weighted,days/yr,92.28161153,92.29014683,92.30009257,92.31077176,92.32826293,92.34779821,92.36803733,92.39122236,92.41573654,92.43888244 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Absolute|Population weighted,days/yr,77.14608672,77.17907316,77.19806367,77.2162666,77.22582724,77.23126848,77.23744862,77.24348031,77.24858243,77.25289177 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Absolute|Population weighted,days/yr,63.12541426,63.06034638,62.99174858,62.92527507,62.87003782,62.821619,62.77524622,62.72953555,62.68962768,62.65341229 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Absolute|Population weighted,days/yr,168.8814666,168.8944316,168.9297432,168.9732932,169.0202538,169.0668763,169.0988769,169.1114401,169.1082077,169.0913496 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Absolute|Population weighted,days/yr,47.53748506,47.40286315,47.28157002,47.18200077,47.09783122,47.02944155,46.97519294,46.93099381,46.89642192,46.86954692 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Absolute|Population weighted,days/yr,69.560514,69.51533747,69.45629015,69.39810451,69.35107419,69.30525144,69.25862426,69.21596099,69.18411416,69.15683075 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Absolute|Population weighted,days/yr,23.03983239,23.00918739,22.98711558,22.97495557,22.96678971,22.95796518,22.95065378,22.94706355,22.94316131,22.93759576 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Absolute|Population weighted,days/yr,163.2847816,163.1998484,163.1675969,163.1639193,163.1787885,163.2010792,163.2214695,163.2409601,163.2591137,163.2761082 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Absolute|Population weighted,days/yr,59.35436812,59.5259318,59.63970006,59.71237663,59.74825955,59.7588128,59.75258499,59.7351141,59.71004576,59.67952118 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Absolute|Population weighted,days/yr,199.7816988,199.9977944,200.0786217,200.1240413,200.145975,200.1576447,200.1373549,200.0990603,200.0559557,200.0120276 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Absolute|Population weighted,days/yr,97.92932949,97.96565186,97.99788544,98.02509333,98.04815512,98.06407981,98.07610784,98.08716661,98.09609324,98.10362298 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Absolute|Population weighted,days/yr,26.00969986,26.00245,25.99681894,25.99065452,25.98440762,25.9786165,25.97239778,25.96533692,25.95820095,25.95197906 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Absolute|Population weighted,days/yr,58.74557009,58.75962419,58.7977544,58.84842547,58.91362118,58.98358836,59.05507328,59.1276112,59.19888388,59.2686116 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Absolute|Population weighted,days/yr,28.67081541,28.6728087,28.67751216,28.68581529,28.69767311,28.71171986,28.72593135,28.73945993,28.75077025,28.75851809 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Absolute|Population weighted,days/yr,125.5354083,125.4589516,125.3971014,125.3357516,125.2731266,125.2117772,125.1723082,125.1524161,125.1530158,125.1711952 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Absolute|Population weighted,days/yr,184.1813346,184.2572072,184.3203342,184.365049,184.3915179,184.4037564,184.3877147,184.348539,184.2961023,184.2264022 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Absolute|Population weighted,days/yr,82.98370714,82.84055458,82.78150236,82.75421676,82.76560248,82.80531993,82.85336368,82.90914048,82.97958023,83.05113279 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Absolute|Population weighted,days/yr,61.19872382,61.1244055,61.02944976,60.94362715,60.86211606,60.77761656,60.69330159,60.61887616,60.55518356,60.50100161 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Absolute|Population weighted,days/yr,62.9968486,62.7851108,62.64652929,62.54815697,62.47075295,62.41082497,62.3679969,62.33837341,62.32149219,62.31705496 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Absolute|Population weighted,days/yr,23.34764048,23.35621201,23.36429162,23.37176286,23.37852385,23.38464652,23.39010231,23.39486567,23.39899562,23.40250056 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Absolute|Population weighted,days/yr,29.88530946,29.89046542,29.89586746,29.90186669,29.90827464,29.91426156,29.91904356,29.92286453,29.925952,29.92849254 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Absolute|Population weighted,days/yr,178.2056503,178.6739088,178.8757642,179.041877,179.1126504,179.1740476,179.1892822,179.1622328,179.1157942,179.0383619 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Absolute|Population weighted,days/yr,86.61069562,86.92709732,87.15796739,87.31883162,87.42351781,87.48551668,87.52919547,87.55932927,87.58347472,87.59755546 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Absolute|Population weighted,days/yr,43.58188106,43.66919055,43.72785755,43.76422525,43.78390989,43.79023658,43.79246695,43.79223953,43.79052896,43.79260084 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Absolute|Population weighted,days/yr,47.10501825,47.02455306,46.98019428,46.96600714,46.94250747,46.92029235,46.89142982,46.86667627,46.83865798,46.83092344 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Absolute|Population weighted,days/yr,19.13902921,19.14944418,19.15736004,19.16470191,19.1704402,19.17545909,19.17983412,19.18409375,19.18775505,19.19121506 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Absolute|Population weighted,days/yr,136.5177021,136.8211704,137.0418109,137.2118204,137.3286186,137.4145065,137.4755163,137.5163876,137.5431366,137.5582217 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Absolute|Population weighted,days/yr,117.1570587,117.4431848,117.6614095,117.8374037,118.0020462,118.1483837,118.2809311,118.4023518,118.5117024,118.607307 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.81037366,10.81077694,10.8086667,10.80270809,10.79362364,10.78119838,10.7694787,10.75882209,10.74968971,10.74201 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Absolute|Population weighted,days/yr,25.63411834,25.63615493,25.64185661,25.65048738,25.65728653,25.66278345,25.66890929,25.67500491,25.67936239,25.68177646 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Absolute|Population weighted,days/yr,205.2431682,205.592915,205.6680639,205.6789907,205.6553582,205.6097493,205.5375174,205.4599945,205.3959672,205.3416678 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Absolute|Population weighted,days/yr,27.93868338,27.96182016,27.97031798,27.97507365,27.97795894,27.97970088,27.9806557,27.98119112,27.98159135,27.98190885 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Absolute|Population weighted,days/yr,131.1363001,131.1912943,131.2376571,131.294129,131.3560856,131.4201039,131.4822235,131.539679,131.5907938,131.6343981 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Absolute|Population weighted,days/yr,60.2008538,60.34803749,60.47901691,60.58647583,60.67887357,60.756374,60.8192037,60.86600392,60.90224759,60.93218484 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Absolute|Population weighted,days/yr,53.43576332,53.46644318,53.49569189,53.52272155,53.54627018,53.56777387,53.58859971,53.60863286,53.62697153,53.64324852 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Absolute|Population weighted,days/yr,66.45780519,66.47610308,66.49600812,66.51568081,66.53495697,66.55197969,66.56808098,66.58398695,66.59869616,66.61306516 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Absolute|Population weighted,days/yr,48.93116404,48.97754674,49.01737412,49.05110654,49.07930968,49.10265995,49.12176602,49.13754096,49.15073269,49.16191077 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Absolute|Population weighted,days/yr,41.21465978,41.20057393,41.17957217,41.15350011,41.12489707,41.09571018,41.06881464,41.04349743,41.02075388,40.99986915 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Absolute|Population weighted,days/yr,35.68155543,35.68313133,35.6852801,35.68825852,35.6905722,35.69233944,35.6937203,35.69483747,35.69599335,35.69707066 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Absolute|Population weighted,days/yr,24.53329352,24.52653926,24.52043073,24.51548365,24.51124688,24.50785197,24.50492609,24.50225695,24.49988266,24.4976267 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Absolute|Population weighted,days/yr,99.27266574,99.99769567,100.7361438,101.4942182,102.2340956,102.9546808,103.6185822,104.2146959,104.7305378,105.1331992 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Absolute|Population weighted,days/yr,68.46148471,68.57315957,68.67153491,68.74906042,68.80666193,68.85531327,68.89175554,68.91814264,68.93422583,68.93880264 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Absolute|Population weighted,days/yr,112.9542866,113.8400303,114.546677,115.0839376,115.4694582,115.748822,115.9511206,116.1168244,116.259614,116.3837555 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Absolute|Population weighted,days/yr,111.2886291,111.3014858,111.3099479,111.3179278,111.3252923,111.331105,111.3346538,111.3358738,111.3346201,111.3316109 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Absolute|Population weighted,days/yr,239.1887992,239.0389927,238.8855798,238.7706461,238.6926825,238.6853344,238.6556346,238.630111,238.6211808,238.6173044 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Absolute|Population weighted,days/yr,19.06875947,18.99905224,18.95726565,18.9336067,18.92541601,18.92559922,18.93136215,18.94194879,18.95623176,18.9730224 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Absolute|Population weighted,days/yr,8.083082351,7.811752085,7.629128091,7.499565153,7.412720397,7.380819782,7.420804331,7.534329106,7.68119531,7.830943815 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Absolute|Population weighted,days/yr,109.0469192,109.0422325,109.0423249,109.0466402,109.0519691,109.0594022,109.0712173,109.0867316,109.1006969,109.112853 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Absolute|Population weighted,days/yr,17.61828217,17.63015704,17.64185492,17.65265945,17.66272251,17.671446,17.67899075,17.68532767,17.69100133,17.69571175 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Absolute|Population weighted,days/yr,28.2001229,28.20279628,28.20533896,28.20794383,28.21051382,28.21341766,28.21715338,28.2214961,28.22620835,28.23154753 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Absolute|Population weighted,days/yr,186.1783869,186.1338582,186.0618418,186.0322385,185.9658519,185.911553,185.8712774,185.8234571,185.7680452,185.7216448 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Absolute|Population weighted,days/yr,109.061305,109.1057525,109.1440556,109.160654,109.1776526,109.1881822,109.1949051,109.1940034,109.1903494,109.1850374 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Absolute|Population weighted,days/yr,124.9660989,126.4577172,127.9083411,129.2840502,130.5697453,131.7323276,132.72771,133.5885162,134.3278887,134.9611234 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Absolute|Population weighted,days/yr,72.41153681,72.39956572,72.43551204,72.48416403,72.54322619,72.62340001,72.70279514,72.78196757,72.85471333,72.90607064 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Absolute|Population weighted,days/yr,19.03465788,19.04309357,19.04630927,19.04952279,19.04952279,19.04961485,19.04956425,19.04953624,19.04944938,19.04951133 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Absolute|Population weighted,days/yr,22.57832446,22.61500878,22.64354469,22.6657243,22.68436539,22.6996987,22.71289561,22.72406857,22.7335257,22.74152719 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Absolute|Population weighted,days/yr,67.58054406,67.69875056,67.78807111,67.85436317,67.90004846,67.9304338,67.9529083,67.96864447,67.98202878,67.99166842 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Absolute|Population weighted,days/yr,103.6170181,103.7704225,103.8929082,104.0045709,104.1093728,104.1962431,104.2710686,104.3361534,104.3901303,104.4351459 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Absolute|Population weighted,days/yr,220.5851671,220.9250981,221.0961143,221.5079834,221.6113937,222.0532494,222.1178648,222.4120219,222.6564333,222.8445546 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Absolute|Population weighted,days/yr,34.03632965,34.03945581,34.04234723,34.0447555,34.04672231,34.04837687,34.04974911,34.05095647,34.05194233,34.05276081 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Absolute|Population weighted,days/yr,99.3459157,99.78390406,100.255352,100.7146249,101.1710732,101.5706826,101.9396757,102.2785573,102.6006283,102.9019305 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Absolute|Population weighted,days/yr,31.81535862,31.84945668,31.87429066,31.89385536,31.91074733,31.92517977,31.93914286,31.95028884,31.95852929,31.96561277 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Absolute|Population weighted,days/yr,89.09635063,89.23343292,89.32113356,89.36648334,89.38539593,89.38612788,89.37165287,89.34690655,89.31417071,89.27622825 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Absolute|Population weighted,days/yr,51.75041699,51.80472552,51.85749058,51.90501872,51.94835153,51.98274628,52.0101372,52.03234265,52.05059961,52.06518576 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Absolute|Population weighted,days/yr,41.89153334,42.01598686,42.13004846,42.23226584,42.32370757,42.40154721,42.46329692,42.51155411,42.54900886,42.5741564 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Absolute|Population weighted,days/yr,33.81881939,33.81893836,33.81900443,33.8190368,33.81909158,33.8190946,33.81909699,33.81909699,33.81912371,33.81909027 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Absolute|Population weighted,days/yr,28.16202924,28.1395147,28.11798168,28.09782431,28.07878487,28.05992368,28.04130825,28.02400716,28.00932919,27.9982081 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Absolute|Population weighted,days/yr,33.60083659,33.63766166,33.67135294,33.70113973,33.72723,33.75064072,33.77310705,33.79298831,33.81031619,33.82548095 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Absolute|Population weighted,days/yr,201.907941,201.9259907,201.9390725,201.9493011,201.9569895,201.9627082,201.9665949,201.9689071,201.9701199,201.9708845 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Absolute|Population weighted,days/yr,20.43063148,20.46955792,20.52825065,20.60195917,20.68914822,20.78503646,20.86998978,20.94329485,21.00623204,21.05808854 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Absolute|Population weighted,days/yr,23.90954783,23.91829651,23.92630438,23.93332902,23.93924271,23.94455123,23.94931596,23.9534176,23.95702321,23.96024146 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Absolute|Population weighted,days/yr,177.6782043,177.911236,178.0152855,178.1821291,178.3342614,178.1205895,178.0408653,178.012495,178.0660248,177.9909148 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Absolute|Population weighted,days/yr,33.51377078,33.53873359,33.56529968,33.5912266,33.61632093,33.63998482,33.66238278,33.68191794,33.69923064,33.71491305 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Absolute|Population weighted,days/yr,89.24550467,89.36169736,89.48164137,89.60599861,89.70437563,89.78277216,89.85010101,89.93968354,90.01920207,90.0861206 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Absolute|Population weighted,days/yr,40.48140565,40.63884429,40.78750249,40.93275891,41.06827134,41.18450487,41.28715529,41.38103481,41.46633467,41.54113033 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Absolute|Population weighted,days/yr,24.58231049,24.5839264,24.58602299,24.58699601,24.58843574,24.58901093,24.58991921,24.5908437,24.59177524,24.59301719 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Absolute|Population weighted,days/yr,60.42392821,60.47724104,60.58277087,60.72425015,60.89392704,61.0820527,61.27689679,61.46939767,61.63931324,61.78901703 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Absolute|Population weighted,days/yr,187.1719621,187.2070299,187.2272223,187.2476752,187.2529271,187.3062803,187.3035948,187.3354413,187.3552215,187.3468947 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Absolute|Population weighted,days/yr,29.24415704,29.20032187,29.15976434,29.12002047,29.08194103,29.04687245,29.01333178,28.984765,28.95900917,28.93640535 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Absolute|Population weighted,days/yr,42.27986412,42.30388392,42.32071842,42.33494216,42.34664497,42.35543329,42.36459758,42.37475802,42.38495697,42.39492027 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Absolute|Population weighted,days/yr,29.50981414,29.42553669,29.35088299,29.29051307,29.24458964,29.21016705,29.18628783,29.17186197,29.16200099,29.15354875 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Absolute|Population weighted,days/yr,34.61274382,34.66980189,34.72015655,34.76437563,34.79962908,34.82916997,34.85448964,34.875721,34.89288205,34.90630263 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Absolute|Population weighted,days/yr,136.5313773,136.3893603,136.2737271,136.1952593,136.1488629,136.1230105,136.0995527,136.0863836,136.0712519,136.0574185 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Absolute|Population weighted,days/yr,66.64811427,66.69921046,66.74724504,66.78808616,66.824428,66.85934251,66.89315946,66.9239914,66.9505544,66.97398548 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Absolute|Population weighted,days/yr,77.8641905,77.9471093,78.02690165,78.10503667,78.18017472,78.25253825,78.31902004,78.379308,78.42852657,78.46682563 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Absolute|Population weighted,days/yr,21.68464262,21.70456128,21.72596927,21.74646256,21.76672885,21.78648056,21.80331037,21.8166957,21.827318,21.83595308 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Absolute|Population weighted,days/yr,19.45809134,19.46939627,19.48288779,19.49768047,19.5130632,19.52817764,19.54210791,19.55469585,19.56574411,19.57449201 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Absolute|Population weighted,days/yr,21.25646166,21.2460783,21.24109205,21.23725742,21.23464164,21.23313859,21.23307634,21.23434158,21.23649148,21.23910801 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Absolute|Population weighted,days/yr,23.0835773,23.12853682,23.16960212,23.20760343,23.24425046,23.27806876,23.30766162,23.3337375,23.35740626,23.38029848 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Absolute|Population weighted,days/yr,69.85256948,70.02317099,70.19082381,70.35634636,70.50936561,70.63622244,70.74546765,70.84435895,70.93758915,71.02388539 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Absolute|Population weighted,days/yr,29.16698513,29.26427819,29.32688805,29.36533559,29.38782322,29.39937841,29.40415706,29.40466377,29.40212906,29.39780838 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Absolute|Population weighted,days/yr,54.4937068,54.59489842,54.7005748,54.72936423,54.78296471,54.80684518,54.80118545,54.806102,54.81700404,54.83663277 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Absolute|Population weighted,days/yr,31.31258602,31.3064375,31.30181557,31.29831094,31.29479649,31.29166676,31.2892601,31.28728349,31.28580738,31.28482014 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Absolute|Population weighted,days/yr,217.9025964,217.8583382,217.8629354,217.8534544,217.8644421,217.8790627,217.8911266,217.9095062,217.9160468,217.9265287 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Absolute|Population weighted,days/yr,46.66789253,46.57727196,46.50375792,46.43003935,46.35090373,46.26913841,46.2041577,46.15034728,46.10647469,46.06794237 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Absolute|Population weighted,days/yr,198.4650507,198.5950165,198.6115469,198.6176274,198.613903,198.5989042,198.5651357,198.5141419,198.4567022,198.3894442 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Absolute|Population weighted,days/yr,45.7443096,45.85168049,45.93969749,46.00950763,46.06348535,46.10344441,46.13367266,46.15596522,46.17381005,46.18925347 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Absolute|Population weighted,days/yr,24.83642176,24.82333973,24.82970006,24.85083097,24.87424907,24.88729665,24.8523615,24.87083676,24.89060594,24.89419828 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Absolute|Population weighted,days/yr,41.27130171,41.30227106,41.31779006,41.32223252,41.31851292,41.30885441,41.29466129,41.27701799,41.26067414,41.24822632 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Absolute|Population weighted,days/yr,23.55259451,23.56619197,23.57706217,23.58610542,23.59343267,23.59927865,23.60355822,23.60630457,23.60796333,23.60893476 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Absolute|Population weighted,days/yr,21.15639277,21.16463243,21.17127206,21.17696553,21.18169314,21.18557909,21.18885576,21.19162072,21.19408797,21.19626708 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Absolute|Population weighted,days/yr,127.9466299,128.2939923,128.5841853,128.8293072,129.0257163,129.1611223,129.2598928,129.3294698,129.3746325,129.4022298 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Absolute|Population weighted,days/yr,42.21720723,42.29149463,42.31846853,42.30721409,42.26549127,42.19978122,42.12353733,42.04205497,41.95803223,41.88523706 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Absolute|Population weighted,days/yr,23.00104465,23.02305216,23.04320331,23.06257761,23.08101297,23.09727926,23.11094742,23.122558,23.13256841,23.14074127 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Absolute|Population weighted,days/yr,40.42440474,40.40674667,40.34760846,40.3106501,40.30034622,40.2634929,40.21211704,40.17798306,40.15017784,40.13049051 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Absolute|Population weighted,days/yr,125.5067984,125.6829453,125.7905041,125.8626884,125.9067584,125.9065783,125.9117303,125.9413413,125.9733006,126.0008939 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Absolute|Population weighted,days/yr,90.75488335,90.90580209,90.8712326,90.91904841,90.88670685,90.91477337,90.91385906,90.89771227,90.80573903,90.79561621 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Absolute|Population weighted,days/yr,98.19001373,98.11977823,98.04417719,97.97041883,97.90071439,97.84442213,97.80164029,97.76818542,97.74021405,97.71509981 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Absolute|Population weighted,days/yr,142.7094376,142.832612,142.92084,142.9837734,143.0455917,143.0713863,143.1050375,143.1239725,143.1489179,143.1551779 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Absolute|Population weighted,days/yr,17.86411473,17.86141045,17.8612096,17.8611246,17.86106548,17.86102888,17.8610145,17.86099732,17.86097788,17.86096708 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Absolute|Population weighted,days/yr,23.37273351,23.37504628,23.37695963,23.37919142,23.38145205,23.38342649,23.38520523,23.38695398,23.38862955,23.39010954 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Absolute|Population weighted,days/yr,89.1836814,89.16274616,89.11807075,89.04919301,88.95955742,88.86006636,88.75288156,88.64978615,88.5597274,88.48046829 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Absolute|Population weighted,days/yr,30.61604908,30.64319469,30.67079147,30.69797522,30.72518977,30.75433096,30.78423149,30.80986634,30.83043109,30.84692405 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Absolute|Population weighted,days/yr,169.9439138,170.0952306,170.2271247,170.3432825,170.4421602,170.5314559,170.6123717,170.6848034,170.7472239,170.800451 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Absolute|Population weighted,days/yr,90.94655321,90.89162783,90.84775331,90.81129976,90.77981983,90.75239702,90.73206641,90.71803196,90.70978301,90.70720152 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Absolute|Population weighted,days/yr,28.74848409,28.92909258,29.08709757,29.22461241,29.34170329,29.44072337,29.52084579,29.58093032,29.62778065,29.65965957 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Absolute|Population weighted,days/yr,51.51997174,51.51831874,51.52263948,51.53216402,51.54476555,51.56169581,51.57772273,51.59132392,51.6012973,51.60458961 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Absolute|Population weighted,days/yr,24.81733407,24.82482258,24.82986095,24.83367496,24.83671682,24.83921535,24.84135101,24.84323338,24.8450326,24.84688476 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Absolute|Population weighted,days/yr,23.7384364,23.7353909,23.73239905,23.72915082,23.72561496,23.72227913,23.71937634,23.71664995,23.71427365,23.71257344 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Absolute|Population weighted,days/yr,35.76029629,35.75844101,35.75652033,35.75352651,35.75046491,35.74789702,35.74626384,35.74460304,35.74284284,35.74203672 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Absolute|Population weighted,days/yr,111.2352142,111.3174683,111.3943562,111.4641142,111.5268149,111.5847266,111.6349891,111.6757548,111.7091725,111.7369816 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Absolute|Population weighted,days/yr,29.60431439,29.58879751,29.57758458,29.56786683,29.55836618,29.55005669,29.54187497,29.53277047,29.52413026,29.51629035 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Absolute|Population weighted,days/yr,81.36863148,81.51675656,81.47649964,81.37070656,81.39776391,81.38864301,81.37088439,81.35806197,81.374559,81.24681468 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Absolute|Population weighted,days/yr,201.9849435,202.0579751,202.129011,202.2019875,202.267512,202.3311533,202.3931666,202.4532664,202.5141014,202.5682582 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Absolute|Population weighted,days/yr,29.36447198,29.66140938,29.91726886,30.08380686,30.21933971,30.33074627,30.40557738,30.44030607,30.4749476,30.49205746 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Absolute|Population weighted,days/yr,20.35724616,20.35082002,20.34200351,20.33494295,20.32765102,20.31961358,20.31291878,20.30836755,20.30623282,20.30559436 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Absolute|Population weighted,days/yr,30.81274622,30.8639698,30.9043539,30.94324242,30.97828858,31.00687406,31.02954092,31.04591051,31.05832685,31.06922364 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Absolute|Population weighted,days/yr,33.8120988,33.75263673,33.70086296,33.65377582,33.6112638,33.57424067,33.53912119,33.51084236,33.49225826,33.48195835 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Absolute|Population weighted,days/yr,189.2652073,189.2042223,188.971616,188.9405698,188.8432104,188.7909474,188.8014769,188.7453784,188.7127173,188.6539992 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Absolute|Population weighted,days/yr,22.88078242,22.87769225,22.87468811,22.8719045,22.86960444,22.86744313,22.86540833,22.86366486,22.86211259,22.86062798 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Absolute|Population weighted,days/yr,25.40538689,25.40394586,25.40092342,25.39865057,25.3979571,25.39837282,25.40022481,25.40048666,25.40040658,25.40231088 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Absolute|Population weighted,days/yr,28.95543331,28.8994376,28.86021716,28.83241507,28.81062543,28.79384145,28.78023646,28.77019753,28.76274654,28.75962015 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Absolute|Population weighted,days/yr,135.7722105,135.83654,135.8890092,135.9528327,136.0336218,136.1190202,136.2212855,136.3451568,136.4913182,136.6601566 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Absolute|Population weighted,days/yr,109.5154375,109.6510224,109.7621513,109.8435131,109.9094621,109.9551755,109.9817809,109.994742,109.9990683,109.992406 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Absolute|Population weighted,days/yr,89.27104306,89.28669391,89.28342297,89.25881635,89.22134287,89.1676688,89.11243442,89.0646392,89.0197561,88.9850606 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Absolute|Population weighted,days/yr,112.099218,112.2124117,112.3222015,112.418407,112.5077207,112.5967054,112.6711497,112.732229,112.7742448,112.7982387 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Absolute|Population weighted,days/yr,44.2187631,44.29799154,44.32580203,44.33503703,44.3370547,44.32959985,44.31967401,44.30963301,44.2992789,44.28915495 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Absolute|Population weighted,days/yr,60.84574331,60.84750871,60.84018331,60.83072323,60.81950545,60.80882899,60.79683391,60.78471996,60.77406109,60.76519667 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Absolute|Population weighted,days/yr,34.76408223,34.91793618,35.03702752,35.1242315,35.18710958,35.22752332,35.25000283,35.25673427,35.26131242,35.26414755 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Absolute|Population weighted,days/yr,18.12031409,18.24012744,18.26640676,18.27861122,18.28571601,18.29033703,18.29336906,18.29584816,18.29767039,18.29907792 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Absolute|Population weighted,days/yr,61.21598854,61.25554579,61.26398198,61.25560612,61.24366267,61.23209189,61.21076107,61.18302666,61.15260437,61.11862922 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Absolute|Population weighted,days/yr,30.56641857,30.97330538,31.28241539,31.49947795,31.68492978,31.79088816,31.90320802,32.00127401,32.08824976,32.16647043 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Absolute|Population weighted,days/yr,83.08161318,83.17708796,83.28872306,83.40419939,83.52611605,83.65444046,83.77334231,83.87982226,83.97437073,84.06208873 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Absolute|Population weighted,days/yr,59.05198078,59.04856302,59.04524275,59.04197862,59.03880448,59.03589374,59.03350334,59.0315238,59.02987071,59.02847956 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Absolute|Population weighted,days/yr,224.2213332,224.2022219,224.1909605,224.1814427,224.1722746,224.1649829,224.1577297,224.1494133,224.1419096,224.1350713 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Absolute|Population weighted,days/yr,63.50314205,63.51605606,63.53811559,63.54905223,63.55067556,63.55810496,63.56928834,63.58256978,63.59867671,63.61702215 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Absolute|Population weighted,days/yr,41.54511801,41.53121714,41.51462195,41.49863469,41.48186173,41.46421669,41.44753658,41.43258196,41.41954989,41.40792208 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Absolute|Population weighted,days/yr,96.23299224,96.25865384,96.28221115,96.30317638,96.32675064,96.35235476,96.37648748,96.39838801,96.42057076,96.44371445 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Absolute|Population weighted,days/yr,227.023568,226.93791,226.8974627,226.8727697,226.8767295,226.877537,226.8982281,226.9173472,226.9305456,226.9690949 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Absolute|Population weighted,days/yr,111.1286517,111.4531415,111.6850568,111.8557934,111.9754527,112.1008449,112.2272539,112.3494468,112.462405,112.5598119 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Absolute|Population weighted,days/yr,89.54216129,89.54443512,89.54552134,89.54615592,89.54655551,89.54681756,89.54699657,89.54712307,89.54721176,89.54727678 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Absolute|Population weighted,days/yr,31.7187954,31.87949271,32.01241351,32.11791348,32.19906671,32.26112649,32.30837011,32.34558962,32.37523118,32.40033607 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Absolute|Population weighted,days/yr,25.6659647,25.62675404,25.59212074,25.55974792,25.52937441,25.50171388,25.47751189,25.4610263,25.44829142,25.44201538 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Absolute|Population weighted,days/yr,69.93224428,70.13506206,70.28330226,70.38823809,70.45815447,70.498107,70.51161564,70.51531709,70.51684418,70.51559765 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Absolute|Population weighted,days/yr,167.5192881,167.546081,167.5212183,167.4737616,167.4127224,167.3458707,167.2821383,167.2250309,167.1761911,167.1356014 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Absolute|Population weighted,days/yr,19.52845234,19.5225942,19.52276521,19.52322183,19.52424962,19.52647828,19.52620869,19.52512928,19.52783178,19.5279334 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Absolute|Population weighted,days/yr,173.4369681,173.1818816,173.0059084,172.8958032,172.8243705,172.7914412,172.779746,172.7852166,172.805627,172.8323606 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Absolute|Population weighted,days/yr,222.1984787,222.1630571,222.1544029,222.1589794,222.1732783,222.1958918,222.2206324,222.2468936,222.2742219,222.3000663 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Absolute|Population weighted,days/yr,14.79075514,14.80495407,14.82266186,14.84173197,14.86498237,14.89948795,14.93476603,14.97754418,15.01518388,15.05437224 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Absolute|Population weighted,days/yr,109.570385,109.8976247,110.1565414,110.3536844,110.4940548,110.5866789,110.6460113,110.6846116,110.71006,110.7253027 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Absolute|Population weighted,days/yr,28.63686594,28.63741561,28.63796982,28.63851185,28.63901274,28.63940207,28.63965389,28.63975334,28.6397928,28.63982035 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Absolute|Population weighted,days/yr,133.4963495,133.561474,133.6734005,133.8285869,134.0006216,134.1851481,134.3615767,134.5330011,134.7010305,134.8601326 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Absolute|Population weighted,days/yr,22.25577638,22.25870708,22.26135681,22.26376424,22.26579954,22.2676675,22.26950612,22.27118974,22.27262291,22.27391731 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Absolute|Population weighted,days/yr,20.63074031,20.63622638,20.64123412,20.64566697,20.64928799,20.65299771,20.65651185,20.65988823,20.66280321,20.66533163 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Absolute|Population weighted,days/yr,20.97470812,21.01696594,21.04318817,21.06125692,21.07374118,21.07880108,21.0741581,21.0599769,21.04204518,21.02407987 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Absolute|Population weighted,days/yr,50.31736712,50.31627871,50.32241648,50.27817353,50.24678416,50.19128922,50.13042157,50.09566071,50.05692361,50.05767771 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Absolute|Population weighted,days/yr,41.19497983,41.18604987,41.19642692,41.22233296,41.25726414,41.29621309,41.33743258,41.38017604,41.42296419,41.46506957 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Absolute|Population weighted,days/yr,114.6703341,114.6524814,114.6660902,114.6472683,114.6280091,114.611586,114.591025,114.5752023,114.5640131,114.5556284 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Absolute|Population weighted,days/yr,29.29066416,29.28959893,29.29152583,29.29560293,29.30214022,29.30968327,29.32010072,29.33294738,29.34673143,29.36212949 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Absolute|Population weighted,days/yr,38.85013673,38.83528214,38.82067928,38.81027518,38.80276289,38.79425511,38.78270911,38.77306635,38.76527656,38.75876238 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Absolute|Population weighted,days/yr,36.35547679,36.36463349,36.37125867,36.37570975,36.37816572,36.37944565,36.3799594,36.37989068,36.37963094,36.37974526 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Absolute|Population weighted,days/yr,37.55937851,37.56929348,37.58076497,37.59330454,37.61420891,37.63289036,37.65322113,37.6752297,37.69991807,37.71545231 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Absolute|Population weighted,days/yr,23.11232356,23.12434298,23.13504032,23.1442591,23.15244487,23.15970882,23.16623639,23.17222885,23.17772554,23.18286243 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Absolute|Population weighted,days/yr,19.66446245,19.75194767,19.84642401,19.93696053,20.01756603,20.08898595,20.15205174,20.20758826,20.25638965,20.29922253 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Absolute|Population weighted,days/yr,138.5090014,138.7360404,138.9338399,139.1040298,139.2527124,139.3861623,139.4992612,139.5936963,139.6716993,139.7382928 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Absolute|Population weighted,days/yr,49.73186271,49.46376213,49.22246584,49.01654079,48.83703029,48.6795998,48.55109949,48.44770817,48.36514951,48.30055286 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Absolute|Population weighted,days/yr,133.050587,133.1896438,133.3344558,133.4819977,133.6277617,133.7725697,133.9201213,134.0692578,134.2269937,134.3855298 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Absolute|Population weighted,days/yr,98.33019674,98.38437561,98.42415395,98.45157499,98.46688931,98.47122154,98.46927663,98.46596113,98.46111669,98.45789353 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Absolute|Population weighted,days/yr,270.2598771,269.8341775,269.8294907,270.0764868,270.4682215,270.9668884,271.5213619,272.1228836,272.7312778,273.3258081 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Absolute|Population weighted,days/yr,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065,19.32258065 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Absolute|Population weighted,days/yr,33.25486524,33.26052365,33.26559785,33.27084546,33.27649224,33.28152328,33.28557932,33.28901011,33.29161651,33.29339964 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Absolute|Population weighted,days/yr,151.4856033,151.4467162,151.4550751,151.4817304,151.475061,151.4494105,151.5155285,151.5269165,151.5235303,151.5036925 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Absolute|Population weighted,days/yr,25.47201878,25.47605432,25.4787248,25.48050974,25.48174192,25.48273952,25.48366686,25.48450512,25.48530094,25.48615108 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Absolute|Population weighted,days/yr,216.7919929,216.7309549,216.6926354,216.666615,216.6512601,216.6428692,216.6366479,216.6322063,216.6294217,216.6282593 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Absolute|Population weighted,days/yr,67.83302555,68.17425955,68.47447709,68.72686844,68.94771265,69.14819011,69.33194041,69.49533163,69.64130056,69.7701817 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Absolute|Population weighted,days/yr,43.61634735,43.61185836,43.60869353,43.60531912,43.60182062,43.59829949,43.59479555,43.59147498,43.58831585,43.58540754 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Absolute|Population weighted,days/yr,30.80340069,30.8154877,30.82656475,30.84742152,30.86115616,30.87952931,30.89917078,30.90808512,30.92182242,30.9317715 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Absolute|Population weighted,days/yr,20.79489209,20.77027448,20.74996061,20.73225535,20.71757917,20.70439819,20.69279156,20.68288188,20.67464702,20.66787467 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Absolute|Population weighted,days/yr,10.23590731,10.23430387,10.23151212,10.22719994,10.22189904,10.21621627,10.21060063,10.20540227,10.20095119,10.19726597 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Absolute|Population weighted,days/yr,24.98307094,24.93663004,24.91917316,24.90855197,24.90525902,24.90505321,24.90478812,24.90467839,24.90458441,24.90450961 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Absolute|Population weighted,days/yr,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422,43.38416422 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Absolute|Population weighted,days/yr,26.42921845,26.41145205,26.40164553,26.38530235,26.38204945,26.37852905,26.3743844,26.36802397,26.35801877,26.35296433 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAN,cdd|Hazard|Risk score|Population weighted,risk score,0.467950548,0.468067812,0.468256352,0.468398955,0.46857326,0.468673462,0.468815093,0.46897531,0.46909211,0.469215314 +Climate Solutions,ssp2_2p5,STP,cdd|Hazard|Risk score|Population weighted,risk score,0.915844402,0.915930918,0.916012699,0.916088874,0.916155532,0.916212017,0.916260366,0.916301478,0.916336154,0.916367033 +Climate Solutions,ssp2_2p5,TKM,cdd|Hazard|Risk score|Population weighted,risk score,2.280689011,2.282896956,2.285786489,2.288963299,2.292139143,2.295607819,2.299136498,2.302777115,2.306251198,2.309041109 +Climate Solutions,ssp2_2p5,LTU,cdd|Hazard|Risk score|Population weighted,risk score,0.446534092,0.446452213,0.446374033,0.446334759,0.446306829,0.446291948,0.446280676,0.44625071,0.446198891,0.446123101 +Climate Solutions,ssp2_2p5,KHM,cdd|Hazard|Risk score|Population weighted,risk score,1.865883687,1.865897913,1.866102763,1.86652569,1.867143675,1.867913796,1.868787921,1.86973285,1.870706763,1.871650928 +Climate Solutions,ssp2_2p5,ETH,cdd|Hazard|Risk score|Population weighted,risk score,1.579344991,1.579457052,1.579449032,1.579508548,1.579505989,1.579484104,1.579483299,1.57949068,1.579496664,1.579503209 +Climate Solutions,ssp2_2p5,SWZ,cdd|Hazard|Risk score|Population weighted,risk score,1.574703915,1.573937082,1.572984871,1.571987583,1.571118513,1.57031971,1.569520342,1.568700253,1.567950908,1.567239828 +Climate Solutions,ssp2_2p5,PSE,cdd|Hazard|Risk score|Population weighted,risk score,2.55904893,2.559890765,2.561215653,2.56265909,2.564123607,2.565523138,2.566367935,2.566507034,2.566086164,2.565198812 +Climate Solutions,ssp2_2p5,ARG,cdd|Hazard|Risk score|Population weighted,risk score,1.156252155,1.153394797,1.150821411,1.148726283,1.146974293,1.145549171,1.144408928,1.143502422,1.142825217,1.142280027 +Climate Solutions,ssp2_2p5,BOL,cdd|Hazard|Risk score|Population weighted,risk score,1.603151885,1.604829074,1.605885612,1.606530165,1.607009047,1.607231388,1.607307168,1.607262983,1.607241833,1.607184823 +Climate Solutions,ssp2_2p5,BHS,cdd|Hazard|Risk score|Population weighted,risk score,0.408848751,0.407535017,0.406669843,0.406228504,0.405867586,0.405606062,0.405259953,0.405113747,0.404982116,0.404774367 +Climate Solutions,ssp2_2p5,BFA,cdd|Hazard|Risk score|Population weighted,risk score,2.450748148,2.450145756,2.449917019,2.449892145,2.449998986,2.450158828,2.450304493,2.450444272,2.450574547,2.450696772 +Climate Solutions,ssp2_2p5,GHA,cdd|Hazard|Risk score|Population weighted,risk score,1.134979809,1.137814497,1.139647331,1.140783091,1.14128769,1.141361445,1.141154892,1.140757645,1.140233613,1.139620755 +Climate Solutions,ssp2_2p5,SAU,cdd|Hazard|Risk score|Population weighted,risk score,2.716166385,2.717488099,2.717996156,2.718300079,2.718450794,2.718542113,2.71844373,2.718230984,2.717979667,2.717720737 +Climate Solutions,ssp2_2p5,CPV,cdd|Hazard|Risk score|Population weighted,risk score,1.964303439,1.964882154,1.965388649,1.965814218,1.966167392,1.966416956,1.966606832,1.966777591,1.966918071,1.967037589 +Climate Solutions,ssp2_2p5,SVN,cdd|Hazard|Risk score|Population weighted,risk score,0.600750672,0.600222108,0.599759971,0.59933042,0.59901941,0.598836735,0.598701738,0.598521037,0.598299567,0.598172894 +Climate Solutions,ssp2_2p5,GTM,cdd|Hazard|Risk score|Population weighted,risk score,1.680300804,1.681910205,1.68432982,1.687143462,1.69034784,1.693670669,1.69689483,1.700012901,1.703000698,1.705840509 +Climate Solutions,ssp2_2p5,BIH,cdd|Hazard|Risk score|Population weighted,risk score,0.860047164,0.859829488,0.859655992,0.859568249,0.859569532,0.859628905,0.859719364,0.859835764,0.859941066,0.860022508 +Climate Solutions,ssp2_2p5,GIN,cdd|Hazard|Risk score|Population weighted,risk score,2.172913754,2.171745247,2.170768278,2.169846569,2.168929842,2.168054528,2.167440951,2.167078037,2.166973145,2.16711059 +Climate Solutions,ssp2_2p5,JOR,cdd|Hazard|Risk score|Population weighted,risk score,2.739616171,2.740471452,2.741031348,2.741341952,2.741465488,2.741438062,2.741167355,2.740688609,2.740089869,2.739381255 +Climate Solutions,ssp2_2p5,COG,cdd|Hazard|Risk score|Population weighted,risk score,1.843051063,1.840664116,1.839779568,1.839383906,1.839673119,1.840473207,1.841374646,1.84242923,1.843744941,1.84505296 +Climate Solutions,ssp2_2p5,ESP,cdd|Hazard|Risk score|Population weighted,risk score,1.697439963,1.695428058,1.692864224,1.690548297,1.688342824,1.686049417,1.683753704,1.681726082,1.679993635,1.678521916 +Climate Solutions,ssp2_2p5,LBR,cdd|Hazard|Risk score|Population weighted,risk score,1.340576485,1.337013795,1.334664979,1.332994577,1.331696445,1.330706386,1.329992822,1.329491004,1.329196204,1.329106578 +Climate Solutions,ssp2_2p5,NLD,cdd|Hazard|Risk score|Population weighted,risk score,0.626453756,0.627448894,0.628396955,0.629262153,0.630049566,0.630800526,0.631507319,0.632154397,0.632750699,0.633297896 +Climate Solutions,ssp2_2p5,JAM,cdd|Hazard|Risk score|Population weighted,risk score,0.619792919,0.619858073,0.619950704,0.620078231,0.620230699,0.620380655,0.620500397,0.620595669,0.620672409,0.62073672 +Climate Solutions,ssp2_2p5,OMN,cdd|Hazard|Risk score|Population weighted,risk score,2.603687035,2.606443072,2.607806052,2.608889295,2.609467769,2.609977357,2.61019724,2.610179369,2.610039835,2.609740526 +Climate Solutions,ssp2_2p5,TZA,cdd|Hazard|Risk score|Population weighted,risk score,1.701470043,1.706376267,1.70983791,1.712188559,1.71367049,1.714478962,1.714971021,1.715237506,1.715393169,1.715392779 +Climate Solutions,ssp2_2p5,ALB,cdd|Hazard|Risk score|Population weighted,risk score,1.27760671,1.278909908,1.279737577,1.280214616,1.280447342,1.280475075,1.280447541,1.280389137,1.280310776,1.28032413 +Climate Solutions,ssp2_2p5,GAB,cdd|Hazard|Risk score|Population weighted,risk score,1.095503913,1.093066748,1.092010767,1.091694302,1.091275935,1.090801983,1.090155428,1.089477774,1.088812058,1.088521676 +Climate Solutions,ssp2_2p5,NZL,cdd|Hazard|Risk score|Population weighted,risk score,0.453041043,0.453345821,0.453572272,0.453837974,0.454033938,0.454226606,0.454416778,0.454614788,0.454829868,0.455067311 +Climate Solutions,ssp2_2p5,YEM,cdd|Hazard|Risk score|Population weighted,risk score,2.318610115,2.320951421,2.322637091,2.323922973,2.324814105,2.325454293,2.325905083,2.326206127,2.326399432,2.326502889 +Climate Solutions,ssp2_2p5,PAK,cdd|Hazard|Risk score|Population weighted,risk score,2.019923085,2.024233125,2.027463024,2.029964108,2.032254482,2.034277922,2.036082903,2.037709034,2.039151256,2.040399882 +Climate Solutions,ssp2_2p5,WSM,cdd|Hazard|Risk score|Population weighted,risk score,0.219155955,0.219197725,0.21934774,0.219652462,0.220090604,0.220659684,0.221203202,0.221702146,0.222145545,0.222518512 +Climate Solutions,ssp2_2p5,SVK,cdd|Hazard|Risk score|Population weighted,risk score,0.517549382,0.517346312,0.517278984,0.517325942,0.517354389,0.517396412,0.517493519,0.517594572,0.517656358,0.517686688 +Climate Solutions,ssp2_2p5,ARE,cdd|Hazard|Risk score|Population weighted,risk score,2.765297999,2.767227459,2.767679646,2.767788474,2.767710604,2.767510945,2.767162411,2.766777678,2.766457797,2.766185009 +Climate Solutions,ssp2_2p5,GUM,cdd|Hazard|Risk score|Population weighted,risk score,0.530647201,0.531105044,0.531273203,0.531367311,0.531424407,0.531458877,0.531477772,0.531488367,0.531496287,0.53150257 +Climate Solutions,ssp2_2p5,IND,cdd|Hazard|Risk score|Population weighted,risk score,2.316111013,2.316461575,2.316753421,2.317111651,2.31750105,2.317908818,2.318310717,2.318686317,2.31902538,2.319322126 +Climate Solutions,ssp2_2p5,AZE,cdd|Hazard|Risk score|Population weighted,risk score,1.669215007,1.673971567,1.677956129,1.681147056,1.683776959,1.685867889,1.687481048,1.688669851,1.689585435,1.69034799 +Climate Solutions,ssp2_2p5,MDG,cdd|Hazard|Risk score|Population weighted,risk score,1.264129666,1.264273269,1.264670858,1.265201284,1.265779025,1.266386024,1.267038302,1.267710853,1.268376391,1.26901184 +Climate Solutions,ssp2_2p5,LSO,cdd|Hazard|Risk score|Population weighted,risk score,1.513411196,1.513727745,1.514085117,1.514447997,1.514814749,1.515147249,1.515483327,1.515850899,1.516204351,1.516559259 +Climate Solutions,ssp2_2p5,VCT,cdd|Hazard|Risk score|Population weighted,risk score,1.962415046,1.964275254,1.965872556,1.967225416,1.96835652,1.969292997,1.970059259,1.970691922,1.971220985,1.971669289 +Climate Solutions,ssp2_2p5,KEN,cdd|Hazard|Risk score|Population weighted,risk score,0.896170112,0.894387012,0.893074595,0.892034646,0.891237457,0.890632291,0.890173675,0.8898133,0.889559453,0.889380586 +Climate Solutions,ssp2_2p5,KOR,cdd|Hazard|Risk score|Population weighted,risk score,0.801826394,0.801296137,0.800806863,0.800382933,0.799994549,0.799652038,0.799359876,0.799117748,0.798936158,0.798799475 +Climate Solutions,ssp2_2p5,BLR,cdd|Hazard|Risk score|Population weighted,risk score,0.553121405,0.551454928,0.549912656,0.548550183,0.547374005,0.546379782,0.545506449,0.544736372,0.544070797,0.543501766 +Climate Solutions,ssp2_2p5,TJK,cdd|Hazard|Risk score|Population weighted,risk score,2.036726557,2.043197202,2.049865643,2.056779625,2.063551605,2.070129881,2.076172334,2.081579929,2.086285696,2.090046372 +Climate Solutions,ssp2_2p5,TUR,cdd|Hazard|Risk score|Population weighted,risk score,1.82566688,1.827333642,1.828698259,1.829735957,1.830474786,1.831029651,1.831401711,1.831618326,1.831725581,1.831728397 +Climate Solutions,ssp2_2p5,AFG,cdd|Hazard|Risk score|Population weighted,risk score,1.954897718,1.964710604,1.972517116,1.978398435,1.982579982,1.985595644,1.987765167,1.989516161,1.991003021,1.992267348 +Climate Solutions,ssp2_2p5,BGD,cdd|Hazard|Risk score|Population weighted,risk score,2.320462843,2.320443488,2.32035937,2.320201603,2.319994028,2.319755728,2.319509265,2.319270103,2.319046467,2.318855329 +Climate Solutions,ssp2_2p5,MRT,cdd|Hazard|Risk score|Population weighted,risk score,3.006331444,3.005958269,3.005538016,3.00520941,3.004961499,3.004880863,3.004769654,3.00471736,3.004709033,3.00473242 +Climate Solutions,ssp2_2p5,SLB,cdd|Hazard|Risk score|Population weighted,risk score,0.474235416,0.472009962,0.470615928,0.469759935,0.469364583,0.469205106,0.469178867,0.469287078,0.469489398,0.469777225 +Climate Solutions,ssp2_2p5,LCA,cdd|Hazard|Risk score|Population weighted,risk score,0.254374766,0.245831923,0.240079085,0.235997203,0.233261319,0.232258109,0.233522396,0.237107086,0.24174382,0.24647166 +Climate Solutions,ssp2_2p5,CYP,cdd|Hazard|Risk score|Population weighted,risk score,2.094452597,2.094371432,2.094330925,2.094327563,2.094335994,2.094364119,2.094427788,2.094522113,2.094607059,2.094681564 +Climate Solutions,ssp2_2p5,PYF,cdd|Hazard|Risk score|Population weighted,risk score,0.30839885,0.308693237,0.308983389,0.309250623,0.30949936,0.309714254,0.309899933,0.31005545,0.31019503,0.31031055 +Climate Solutions,ssp2_2p5,FRA,cdd|Hazard|Risk score|Population weighted,risk score,0.946436715,0.946294158,0.946228108,0.946195515,0.946146906,0.946135278,0.946203786,0.946312019,0.94641579,0.946522365 +Climate Solutions,ssp2_2p5,NAM,cdd|Hazard|Risk score|Population weighted,risk score,2.809897161,2.809903437,2.809372852,2.809068615,2.808449516,2.80784709,2.807382762,2.806772964,2.806143048,2.805656395 +Climate Solutions,ssp2_2p5,SOM,cdd|Hazard|Risk score|Population weighted,risk score,2.07370937,2.073987886,2.074259056,2.074391217,2.074526429,2.07463814,2.074719284,2.074745741,2.074752353,2.074746773 +Climate Solutions,ssp2_2p5,PER,cdd|Hazard|Risk score|Population weighted,risk score,1.952931596,1.966896432,1.980810805,1.994313184,2.007199023,2.019084902,2.029238819,2.038029056,2.045575246,2.052018699 +Climate Solutions,ssp2_2p5,LAO,cdd|Hazard|Risk score|Population weighted,risk score,1.56107046,1.560393119,1.560567384,1.561009871,1.561597543,1.56258211,1.563610788,1.564639776,1.565567497,1.566157117 +Climate Solutions,ssp2_2p5,SYC,cdd|Hazard|Risk score|Population weighted,risk score,0.623195646,0.623429493,0.623517674,0.623606184,0.623606184,0.623609676,0.623608057,0.623606653,0.623604001,0.623606316 +Climate Solutions,ssp2_2p5,NOR,cdd|Hazard|Risk score|Population weighted,risk score,0.489903305,0.491549389,0.492805588,0.493770575,0.494572072,0.495218204,0.49578837,0.496282854,0.496705103,0.497089471 +Climate Solutions,ssp2_2p5,CIV,cdd|Hazard|Risk score|Population weighted,risk score,1.351904517,1.353945566,1.35541736,1.356461625,1.357124275,1.357511826,1.35777003,1.357915331,1.358025982,1.358082334 +Climate Solutions,ssp2_2p5,BEN,cdd|Hazard|Risk score|Population weighted,risk score,1.871628056,1.873958465,1.875643031,1.876989865,1.878119854,1.878965436,1.87963271,1.880159575,1.880551667,1.880841645 +Climate Solutions,ssp2_2p5,ESH,cdd|Hazard|Risk score|Population weighted,risk score,2.899269422,2.900987763,2.901334228,2.903198884,2.903095042,2.905128729,2.90511811,2.906389166,2.907328503,2.907933264 +Climate Solutions,ssp2_2p5,CUB,cdd|Hazard|Risk score|Population weighted,risk score,0.693775229,0.693763762,0.693754362,0.693746951,0.693740594,0.693735292,0.693730703,0.693728009,0.693725378,0.693720879 +Climate Solutions,ssp2_2p5,CMR,cdd|Hazard|Risk score|Population weighted,risk score,1.716194274,1.721305264,1.726634434,1.731773083,1.736830737,1.741206239,1.745231398,1.748921477,1.752417495,1.755697924 +Climate Solutions,ssp2_2p5,MNE,cdd|Hazard|Risk score|Population weighted,risk score,1.116717889,1.117665203,1.118413169,1.119062006,1.119681527,1.120256993,1.120807896,1.121229538,1.121515811,1.121728661 +Climate Solutions,ssp2_2p5,TGO,cdd|Hazard|Risk score|Population weighted,risk score,1.676520831,1.678407437,1.679606136,1.680180756,1.680385605,1.680330707,1.680040471,1.679588211,1.678998176,1.678324471 +Climate Solutions,ssp2_2p5,CHN,cdd|Hazard|Risk score|Population weighted,risk score,1.165857087,1.166542101,1.167250688,1.167934309,1.168598984,1.169128842,1.169553538,1.169895189,1.170176465,1.170400937 +Climate Solutions,ssp2_2p5,ARM,cdd|Hazard|Risk score|Population weighted,risk score,1.421008867,1.429496479,1.437912909,1.44536798,1.451590781,1.456792373,1.4610617,1.464542023,1.467429441,1.469926986 +Climate Solutions,ssp2_2p5,ATG,cdd|Hazard|Risk score|Population weighted,risk score,0.855510146,0.855511641,0.855512472,0.855512878,0.855513567,0.855513605,0.855513635,0.855513635,0.855513971,0.85551355 +Climate Solutions,ssp2_2p5,DOM,cdd|Hazard|Risk score|Population weighted,risk score,0.703423285,0.703035569,0.702562026,0.702027365,0.701445052,0.700796101,0.700109386,0.699435359,0.698854974,0.698397741 +Climate Solutions,ssp2_2p5,UKR,cdd|Hazard|Risk score|Population weighted,risk score,0.806394932,0.806741406,0.807040973,0.807290018,0.807494805,0.807668961,0.807846008,0.808007723,0.808155202,0.808294798 +Climate Solutions,ssp2_2p5,BHR,cdd|Hazard|Risk score|Population weighted,risk score,2.724512244,2.724669005,2.724785221,2.724876289,2.724944813,2.724996007,2.725030974,2.725051968,2.725063193,2.725070398 +Climate Solutions,ssp2_2p5,TON,cdd|Hazard|Risk score|Population weighted,risk score,0.526429021,0.527513497,0.529373699,0.531836653,0.534894698,0.538347406,0.54141466,0.544039716,0.546283862,0.548122888 +Climate Solutions,ssp2_2p5,FIN,cdd|Hazard|Risk score|Population weighted,risk score,0.444739331,0.444867337,0.44498441,0.445080084,0.445158372,0.445234166,0.445301909,0.445359605,0.445407142,0.445446706 +Climate Solutions,ssp2_2p5,LBY,cdd|Hazard|Risk score|Population weighted,risk score,2.716703158,2.717444135,2.717751479,2.717889198,2.718293443,2.717885245,2.717875272,2.717803863,2.718051878,2.717817312 +Climate Solutions,ssp2_2p5,IDN,cdd|Hazard|Risk score|Population weighted,risk score,0.858946255,0.860015871,0.861238572,0.86250478,0.86379763,0.865076911,0.866325015,0.867395736,0.868317606,0.869124204 +Climate Solutions,ssp2_2p5,CAF,cdd|Hazard|Risk score|Population weighted,risk score,1.699558452,1.700988003,1.702234561,1.70348785,1.704264045,1.704802508,1.705162092,1.705696414,1.706164433,1.706509855 +Climate Solutions,ssp2_2p5,USA,cdd|Hazard|Risk score|Population weighted,risk score,0.886443269,0.888776953,0.890953187,0.893046566,0.8949698,0.896592462,0.898014416,0.89930522,0.900480132,0.901498617 +Climate Solutions,ssp2_2p5,SWE,cdd|Hazard|Risk score|Population weighted,risk score,0.484359765,0.484287411,0.484259198,0.484199791,0.48417075,0.48412157,0.484090555,0.484061628,0.484033493,0.484015331 +Climate Solutions,ssp2_2p5,VNM,cdd|Hazard|Risk score|Population weighted,risk score,1.296342238,1.297184365,1.298980582,1.301432337,1.304413649,1.307745104,1.311213643,1.314660713,1.317716155,1.320416311 +Climate Solutions,ssp2_2p5,MLI,cdd|Hazard|Risk score|Population weighted,risk score,2.614857669,2.615015818,2.615101795,2.615195035,2.615232163,2.615514831,2.615506253,2.615666962,2.615769646,2.615717344 +Climate Solutions,ssp2_2p5,RUS,cdd|Hazard|Risk score|Population weighted,risk score,0.660346253,0.658111526,0.656022653,0.654163571,0.652496613,0.650984728,0.649657367,0.648449672,0.647400248,0.646482428 +Climate Solutions,ssp2_2p5,BGR,cdd|Hazard|Risk score|Population weighted,risk score,1.014775078,1.01504734,1.015063174,1.01497437,1.014762021,1.014409328,1.014068898,1.013808627,1.013639359,1.013547777 +Climate Solutions,ssp2_2p5,MUS,cdd|Hazard|Risk score|Population weighted,risk score,0.743409203,0.740364761,0.737671068,0.735500338,0.733857261,0.732632584,0.731791203,0.731293532,0.73095925,0.730672619 +Climate Solutions,ssp2_2p5,ROU,cdd|Hazard|Risk score|Population weighted,risk score,0.942801331,0.944020482,0.945128742,0.94612352,0.946954098,0.9476971,0.948359234,0.948914442,0.949349613,0.949664523 +Climate Solutions,ssp2_2p5,AGO,cdd|Hazard|Risk score|Population weighted,risk score,2.375666511,2.374533689,2.373621232,2.372991412,2.372626559,2.37242164,2.37221578,2.372112445,2.371969126,2.371841626 +Climate Solutions,ssp2_2p5,PRT,cdd|Hazard|Risk score|Population weighted,risk score,1.937053704,1.938839165,1.940471301,1.941865025,1.943103777,1.944267188,1.945377863,1.946389418,1.947259262,1.948019827 +Climate Solutions,ssp2_2p5,ZAF,cdd|Hazard|Risk score|Population weighted,risk score,1.715701491,1.717958189,1.720164377,1.722333971,1.724401234,1.726363745,1.728211179,1.729961688,1.731430528,1.732636721 +Climate Solutions,ssp2_2p5,FJI,cdd|Hazard|Risk score|Population weighted,risk score,0.42710077,0.427557454,0.428036877,0.428490666,0.428931024,0.429358091,0.429717907,0.430004374,0.430234267,0.430419212 +Climate Solutions,ssp2_2p5,BRN,cdd|Hazard|Risk score|Population weighted,risk score,0.456919967,0.457284007,0.457715276,0.458194912,0.458703998,0.459207548,0.45966072,0.460062872,0.460414262,0.460684425 +Climate Solutions,ssp2_2p5,MYS,cdd|Hazard|Risk score|Population weighted,risk score,0.436339943,0.435891331,0.435311391,0.434641149,0.433920425,0.433208152,0.432518739,0.431869856,0.431276847,0.430759882 +Climate Solutions,ssp2_2p5,AUT,cdd|Hazard|Risk score|Population weighted,risk score,0.438112021,0.438655758,0.439138006,0.439581382,0.440023753,0.440437166,0.440795006,0.441110718,0.441413972,0.441743334 +Climate Solutions,ssp2_2p5,MOZ,cdd|Hazard|Risk score|Population weighted,risk score,1.63143895,1.634614036,1.637404771,1.639929722,1.642111498,1.64386262,1.645318157,1.646585015,1.64772635,1.648734688 +Climate Solutions,ssp2_2p5,UGA,cdd|Hazard|Risk score|Population weighted,risk score,0.622088606,0.625153119,0.627148233,0.628410711,0.629168381,0.629574563,0.629764266,0.629816213,0.629769904,0.629661507 +Climate Solutions,ssp2_2p5,KGZ,cdd|Hazard|Risk score|Population weighted,risk score,1.224377499,1.226880394,1.229534823,1.230623805,1.232187586,1.233128812,1.233468307,1.234035951,1.23474164,1.235651138 +Climate Solutions,ssp2_2p5,HUN,cdd|Hazard|Risk score|Population weighted,risk score,0.718270775,0.717187249,0.716222477,0.715363837,0.71452566,0.713733252,0.713026865,0.712393251,0.711826234,0.71133101 +Climate Solutions,ssp2_2p5,NER,cdd|Hazard|Risk score|Population weighted,risk score,2.825207892,2.825452755,2.825763847,2.825998539,2.826257398,2.826458392,2.826625213,2.826779335,2.826878309,2.826970676 +Climate Solutions,ssp2_2p5,BRA,cdd|Hazard|Risk score|Population weighted,risk score,1.328873313,1.327326832,1.326049647,1.324738235,1.323292264,1.321777275,1.320578593,1.319579355,1.318756909,1.318041957 +Climate Solutions,ssp2_2p5,KWT,cdd|Hazard|Risk score|Population weighted,risk score,2.706700569,2.707497651,2.707594044,2.707625326,2.707594515,2.707491068,2.707265751,2.706928318,2.706549003,2.706105084 +Climate Solutions,ssp2_2p5,PAN,cdd|Hazard|Risk score|Population weighted,risk score,0.944884565,0.947013164,0.948682875,0.949923464,0.950803985,0.951380011,0.951752972,0.951966723,0.952115373,0.952246166 +Climate Solutions,ssp2_2p5,GUY,cdd|Hazard|Risk score|Population weighted,risk score,0.700392316,0.699778301,0.699761682,0.700443204,0.700985792,0.701725738,0.699809086,0.700463119,0.701495768,0.701313711 +Climate Solutions,ssp2_2p5,CRI,cdd|Hazard|Risk score|Population weighted,risk score,0.916389092,0.916029088,0.915260761,0.914241152,0.913066824,0.911813295,0.910504029,0.909167278,0.907971024,0.906985648 +Climate Solutions,ssp2_2p5,LUX,cdd|Hazard|Risk score|Population weighted,risk score,0.714844791,0.717447178,0.719502874,0.721221669,0.722622774,0.723718271,0.724442631,0.72480362,0.724922137,0.724884392 +Climate Solutions,ssp2_2p5,IRL,cdd|Hazard|Risk score|Population weighted,risk score,0.73983972,0.74062519,0.741455081,0.742215618,0.742896658,0.743550695,0.744187938,0.744780299,0.745338865,0.745873807 +Climate Solutions,ssp2_2p5,NGA,cdd|Hazard|Risk score|Population weighted,risk score,2.061660063,2.065152965,2.068060619,2.070501462,2.072444323,2.07377216,2.074730425,2.07539505,2.075815931,2.076063159 +Climate Solutions,ssp2_2p5,ECU,cdd|Hazard|Risk score|Population weighted,risk score,0.880666536,0.882253751,0.88277632,0.882439045,0.88142558,0.879883126,0.878109275,0.87621851,0.874275164,0.872588051 +Climate Solutions,ssp2_2p5,CZE,cdd|Hazard|Risk score|Population weighted,risk score,0.456691288,0.457106681,0.457466065,0.457798651,0.458121109,0.458404826,0.458627376,0.458808826,0.458971247,0.459112334 +Climate Solutions,ssp2_2p5,AUS,cdd|Hazard|Risk score|Population weighted,risk score,0.908771633,0.908649787,0.907730878,0.907117828,0.906981535,0.906352537,0.90551518,0.904890384,0.90439099,0.904036993 +Climate Solutions,ssp2_2p5,IRN,cdd|Hazard|Risk score|Population weighted,risk score,2.332091934,2.33339526,2.334339048,2.335065433,2.335622628,2.335926389,2.336200321,2.33654509,2.336865249,2.337157326 +Climate Solutions,ssp2_2p5,DZA,cdd|Hazard|Risk score|Population weighted,risk score,2.119052409,2.119838282,2.11998746,2.120791084,2.121295349,2.12227929,2.123174733,2.123971412,2.124252109,2.124851618 +Climate Solutions,ssp2_2p5,SLV,cdd|Hazard|Risk score|Population weighted,risk score,2.134017469,2.132288934,2.130242174,2.128157803,2.126108465,2.12457869,2.123385632,2.122355288,2.121358467,2.120301626 +Climate Solutions,ssp2_2p5,CHL,cdd|Hazard|Risk score|Population weighted,risk score,2.56866743,2.570662098,2.572310011,2.573658451,2.574768315,2.575607595,2.576299435,2.576752752,2.577232574,2.577452165 +Climate Solutions,ssp2_2p5,PRI,cdd|Hazard|Risk score|Population weighted,risk score,0.310280938,0.310252852,0.310250348,0.31024977,0.310248971,0.310248578,0.310248667,0.310248625,0.310248193,0.310248267 +Climate Solutions,ssp2_2p5,BEL,cdd|Hazard|Risk score|Population weighted,risk score,0.650653988,0.650999635,0.651278666,0.651616557,0.651963385,0.652247315,0.652471989,0.652672267,0.652852287,0.652997487 +Climate Solutions,ssp2_2p5,THA,cdd|Hazard|Risk score|Population weighted,risk score,1.784510422,1.784110953,1.783276997,1.781998364,1.780349107,1.778520358,1.77654678,1.774656422,1.773018255,1.771585448 +Climate Solutions,ssp2_2p5,HTI,cdd|Hazard|Risk score|Population weighted,risk score,0.797383126,0.800192814,0.802751125,0.805041314,0.807129054,0.809146395,0.811066486,0.812676338,0.813967577,0.815010573 +Climate Solutions,ssp2_2p5,IRQ,cdd|Hazard|Risk score|Population weighted,risk score,2.51955251,2.520346743,2.521034953,2.521642861,2.522162571,2.522631096,2.523053632,2.523430589,2.523756338,2.524036219 +Climate Solutions,ssp2_2p5,SLE,cdd|Hazard|Risk score|Population weighted,risk score,1.872238173,1.871464045,1.870846749,1.870341602,1.869902388,1.869523391,1.86923643,1.869028004,1.868901872,1.868859816 +Climate Solutions,ssp2_2p5,GEO,cdd|Hazard|Risk score|Population weighted,risk score,0.950865126,0.954289449,0.957138891,0.959620619,0.961702984,0.9634315,0.964854737,0.965954198,0.96686244,0.967535953 +Climate Solutions,ssp2_2p5,HKG,cdd|Hazard|Risk score|Population weighted,risk score,1.387741736,1.387502258,1.388166639,1.389663037,1.391648162,1.394312035,1.396840338,1.398989359,1.400576911,1.40113151 +Climate Solutions,ssp2_2p5,DNK,cdd|Hazard|Risk score|Population weighted,risk score,0.663688095,0.662963395,0.662480547,0.662112832,0.661805469,0.661554956,0.661345362,0.661157796,0.660978788,0.660796907 +Climate Solutions,ssp2_2p5,POL,cdd|Hazard|Risk score|Population weighted,risk score,0.603008544,0.602745785,0.6024915,0.602228566,0.601958034,0.601712,0.601505354,0.601320017,0.601156761,0.601031008 +Climate Solutions,ssp2_2p5,MDA,cdd|Hazard|Risk score|Population weighted,risk score,0.917340159,0.920742094,0.923926664,0.926831369,0.929402135,0.93159093,0.933351847,0.934878402,0.936198759,0.937174613 +Climate Solutions,ssp2_2p5,MAR,cdd|Hazard|Risk score|Population weighted,risk score,2.272626391,2.273730933,2.274713712,2.275596128,2.276360657,2.277049265,2.277631355,2.278099377,2.27847895,2.278798901 +Climate Solutions,ssp2_2p5,HRV,cdd|Hazard|Risk score|Population weighted,risk score,0.785541778,0.784603336,0.783820136,0.783058543,0.782236338,0.781441669,0.780682117,0.779921801,0.779238346,0.778686792 +Climate Solutions,ssp2_2p5,MNG,cdd|Hazard|Risk score|Population weighted,risk score,1.6879411,1.690547213,1.690438085,1.689341677,1.690169976,1.690182112,1.690092387,1.690010866,1.690333228,1.68887253 +Climate Solutions,ssp2_2p5,GNB,cdd|Hazard|Risk score|Population weighted,risk score,2.901935909,2.900273784,2.899490664,2.899304248,2.899478719,2.899913789,2.900359067,2.900780311,2.901164533,2.901506637 +Climate Solutions,ssp2_2p5,KIR,cdd|Hazard|Risk score|Population weighted,risk score,0.552783765,0.558682956,0.563766296,0.567079151,0.569774015,0.571988817,0.573476906,0.574169782,0.574858057,0.575198687 +Climate Solutions,ssp2_2p5,CHE,cdd|Hazard|Risk score|Population weighted,risk score,0.39396733,0.393344282,0.392735637,0.392213517,0.391730538,0.391276309,0.390916732,0.390649631,0.390464581,0.390350257 +Climate Solutions,ssp2_2p5,GRD,cdd|Hazard|Risk score|Population weighted,risk score,1.004626178,1.006296284,1.007612976,1.008880907,1.010023561,1.010955568,1.011694604,1.012228322,1.012633147,1.012988429 +Climate Solutions,ssp2_2p5,BLZ,cdd|Hazard|Risk score|Population weighted,risk score,1.027606245,1.026297657,1.025274968,1.02439117,1.023571666,1.022857749,1.022183033,1.021641665,1.021257524,1.020984645 +Climate Solutions,ssp2_2p5,TCD,cdd|Hazard|Risk score|Population weighted,risk score,2.626088914,2.625173979,2.623940746,2.623516466,2.622971317,2.622637308,2.622545738,2.622239536,2.622022291,2.621734582 +Climate Solutions,ssp2_2p5,EST,cdd|Hazard|Risk score|Population weighted,risk score,0.414752488,0.414682972,0.414616912,0.414556244,0.414505464,0.414458235,0.414414116,0.414376423,0.414342545,0.414310517 +Climate Solutions,ssp2_2p5,URY,cdd|Hazard|Risk score|Population weighted,risk score,0.513382327,0.513126781,0.512816424,0.512518508,0.512304795,0.512146016,0.512029373,0.511879843,0.5117582,0.511697797 +Climate Solutions,ssp2_2p5,GNQ,cdd|Hazard|Risk score|Population weighted,risk score,0.649375732,0.649473016,0.649545392,0.649588199,0.649637841,0.649700837,0.649758726,0.649806409,0.649858069,0.649911845 +Climate Solutions,ssp2_2p5,LBN,cdd|Hazard|Risk score|Population weighted,risk score,2.344604424,2.34530832,2.345901467,2.346592685,2.347447013,2.348347487,2.349477918,2.350886137,2.352572291,2.354536911 +Climate Solutions,ssp2_2p5,UZB,cdd|Hazard|Risk score|Population weighted,risk score,2.108569032,2.110023596,2.111206451,2.112063086,2.11275029,2.113207248,2.113462584,2.113572102,2.113594214,2.113524814 +Climate Solutions,ssp2_2p5,TUN,cdd|Hazard|Risk score|Population weighted,risk score,2.100250976,2.100195656,2.100049078,2.099737485,2.099332973,2.098844191,2.098340781,2.097892953,2.097492604,2.097182804 +Climate Solutions,ssp2_2p5,DJI,cdd|Hazard|Risk score|Population weighted,risk score,2.116666456,2.117541952,2.118359162,2.11908393,2.119777263,2.120462033,2.121016184,2.121456244,2.121727647,2.12185269 +Climate Solutions,ssp2_2p5,RWA,cdd|Hazard|Risk score|Population weighted,risk score,1.029054935,1.031376996,1.032352219,1.032880797,1.033129824,1.033050704,1.032915071,1.032763118,1.032581722,1.032387742 +Climate Solutions,ssp2_2p5,TLS,cdd|Hazard|Risk score|Population weighted,risk score,1.287181304,1.286425939,1.285468155,1.284629741,1.283847331,1.283129168,1.282397612,1.281680654,1.281026239,1.280448058 +Climate Solutions,ssp2_2p5,COL,cdd|Hazard|Risk score|Population weighted,risk score,0.751655463,0.755417757,0.758259602,0.760296345,0.761703053,0.762546347,0.762952155,0.762981157,0.762972415,0.762936928 +Climate Solutions,ssp2_2p5,REU,cdd|Hazard|Risk score|Population weighted,risk score,0.410349737,0.41469689,0.415723824,0.41623178,0.416537661,0.416738112,0.416872409,0.416980749,0.417057182,0.417114401 +Climate Solutions,ssp2_2p5,BDI,cdd|Hazard|Risk score|Population weighted,risk score,1.381154916,1.382726036,1.383143656,1.383032158,1.382769866,1.38244427,1.381830414,1.381030182,1.380132765,1.379130238 +Climate Solutions,ssp2_2p5,TWN,cdd|Hazard|Risk score|Population weighted,risk score,0.790809094,0.803321943,0.812888363,0.819663184,0.825451258,0.828758227,0.832263814,0.835324493,0.83803921,0.840480359 +Climate Solutions,ssp2_2p5,NIC,cdd|Hazard|Risk score|Population weighted,risk score,2.018276218,2.020254894,2.022480778,2.024746117,2.027109033,2.029594953,2.031906444,2.033983972,2.035825391,2.037525013 +Climate Solutions,ssp2_2p5,BRB,cdd|Hazard|Risk score|Population weighted,risk score,1.732501174,1.733015817,1.73351578,1.734007291,1.734485249,1.734923545,1.73528349,1.735581567,1.735830488,1.736039966 +Climate Solutions,ssp2_2p5,QAT,cdd|Hazard|Risk score|Population weighted,risk score,2.904649192,2.904546421,2.904475119,2.904412248,2.90434868,2.904295978,2.904241467,2.904179246,2.904123432,2.90407275 +Climate Solutions,ssp2_2p5,COD,cdd|Hazard|Risk score|Population weighted,risk score,1.314897006,1.315635025,1.316281126,1.316515947,1.316520488,1.316584145,1.316686065,1.316792008,1.316915751,1.317069414 +Climate Solutions,ssp2_2p5,ITA,cdd|Hazard|Risk score|Population weighted,risk score,1.081562474,1.080475113,1.079254477,1.078074665,1.076869406,1.075635824,1.074469536,1.073421632,1.072495484,1.071670185 +Climate Solutions,ssp2_2p5,BTN,cdd|Hazard|Risk score|Population weighted,risk score,2.283816713,2.28318414,2.282694619,2.282134327,2.281650404,2.281257932,2.280902472,2.280580906,2.280364659,2.280261499 +Climate Solutions,ssp2_2p5,SDN,cdd|Hazard|Risk score|Population weighted,risk score,2.84393629,2.843250429,2.842826477,2.842643595,2.842598478,2.842650806,2.842778723,2.84296031,2.843154267,2.843394856 +Climate Solutions,ssp2_2p5,NPL,cdd|Hazard|Risk score|Population weighted,risk score,2.226892537,2.229235986,2.230962806,2.232229713,2.233148619,2.234094716,2.235035658,2.235941129,2.23678174,2.237534333 +Climate Solutions,ssp2_2p5,MLT,cdd|Hazard|Risk score|Population weighted,risk score,2.242947346,2.243402231,2.243619534,2.243746484,2.243826422,2.243878848,2.243914657,2.243939965,2.243957707,2.243970715 +Climate Solutions,ssp2_2p5,MDV,cdd|Hazard|Risk score|Population weighted,risk score,0.88783469,0.893245666,0.897814941,0.901483648,0.904342597,0.906528666,0.908164991,0.909400688,0.91037155,0.911190872 +Climate Solutions,ssp2_2p5,SUR,cdd|Hazard|Risk score|Population weighted,risk score,0.613173942,0.61149083,0.609875592,0.60825497,0.606500948,0.604887207,0.60342983,0.602192701,0.601166232,0.600472014 +Climate Solutions,ssp2_2p5,VEN,cdd|Hazard|Risk score|Population weighted,risk score,1.625030795,1.628047463,1.630182566,1.631684639,1.632646784,1.633159113,1.633264471,1.633231008,1.63318701,1.633124952 +Climate Solutions,ssp2_2p5,ISR,cdd|Hazard|Risk score|Population weighted,risk score,2.583660006,2.583681747,2.583428032,2.582988282,2.582418059,2.581792763,2.58109457,2.580353888,2.579628901,2.578939865 +Climate Solutions,ssp2_2p5,ISL,cdd|Hazard|Risk score|Population weighted,risk score,0.401984201,0.402224563,0.402327102,0.402350855,0.40231182,0.402343605,0.402251708,0.402269293,0.402283492,0.402287777 +Climate Solutions,ssp2_2p5,ZMB,cdd|Hazard|Risk score|Population weighted,risk score,2.784886075,2.78224928,2.780362658,2.779074478,2.778142939,2.777615617,2.777304384,2.777182762,2.777224848,2.777340335 +Climate Solutions,ssp2_2p5,SEN,cdd|Hazard|Risk score|Population weighted,risk score,2.970991971,2.971976108,2.972528648,2.972849139,2.972990622,2.973022354,2.973008671,2.97295997,2.972890103,2.972793312 +Climate Solutions,ssp2_2p5,PNG,cdd|Hazard|Risk score|Population weighted,risk score,0.294066703,0.294607962,0.295123593,0.295597483,0.29611794,0.29687508,0.297616287,0.298519998,0.29928765,0.300090758 +Climate Solutions,ssp2_2p5,MWI,cdd|Hazard|Risk score|Population weighted,risk score,2.095304172,2.098740396,2.101444521,2.103498748,2.104957187,2.105907513,2.106509284,2.106892166,2.107134318,2.107267433 +Climate Solutions,ssp2_2p5,TTO,cdd|Hazard|Risk score|Population weighted,risk score,0.551917704,0.55185583,0.551797203,0.551740367,0.551690697,0.551650761,0.55162059,0.551601205,0.551585664,0.55157093 +Climate Solutions,ssp2_2p5,ZWE,cdd|Hazard|Risk score|Population weighted,risk score,2.393127389,2.393183961,2.39376344,2.394820939,2.396135716,2.397632832,2.39909724,2.400556146,2.402105545,2.403713381 +Climate Solutions,ssp2_2p5,DEU,cdd|Hazard|Risk score|Population weighted,risk score,0.486672758,0.486762682,0.486860826,0.486966803,0.487072636,0.487184614,0.487295891,0.48739699,0.487488512,0.487570785 +Climate Solutions,ssp2_2p5,VUT,cdd|Hazard|Risk score|Population weighted,risk score,0.461378902,0.462083102,0.46268192,0.463230586,0.463693569,0.464173956,0.4646179,0.465024791,0.465395508,0.465724588 +Climate Solutions,ssp2_2p5,MTQ,cdd|Hazard|Risk score|Population weighted,risk score,0.410159209,0.411776251,0.412781061,0.413473915,0.413952402,0.41414428,0.413960655,0.413407567,0.412709419,0.412010346 +Climate Solutions,ssp2_2p5,KAZ,cdd|Hazard|Risk score|Population weighted,risk score,1.101284254,1.101103357,1.101150141,1.100101618,1.099391859,1.098152732,1.096778008,1.095985435,1.095000268,1.094937951 +Climate Solutions,ssp2_2p5,PHL,cdd|Hazard|Risk score|Population weighted,risk score,0.984222519,0.98390139,0.984068358,0.984630412,0.98542589,0.986330209,0.987299999,0.988316766,0.989343191,0.990360748 +Climate Solutions,ssp2_2p5,ERI,cdd|Hazard|Risk score|Population weighted,risk score,2.142436548,2.14116385,2.140445162,2.139586901,2.138902518,2.138374657,2.137831135,2.137345077,2.136932877,2.13658859 +Climate Solutions,ssp2_2p5,NCL,cdd|Hazard|Risk score|Population weighted,risk score,0.606983431,0.607759822,0.608374231,0.608824855,0.609285353,0.609652637,0.609954276,0.610173064,0.610296469,0.610424549 +Climate Solutions,ssp2_2p5,MKD,cdd|Hazard|Risk score|Population weighted,risk score,1.148992831,1.148868064,1.148640639,1.148473503,1.148374834,1.148225064,1.148003218,1.147808465,1.147624451,1.147455747 +Climate Solutions,ssp2_2p5,PRK,cdd|Hazard|Risk score|Population weighted,risk score,0.728534521,0.728679792,0.728773381,0.728824018,0.728852637,0.728867304,0.728870252,0.728861628,0.728841237,0.728827326 +Climate Solutions,ssp2_2p5,PRY,cdd|Hazard|Risk score|Population weighted,risk score,1.113283357,1.113624975,1.113865974,1.114005683,1.114263929,1.114400531,1.114535932,1.114699755,1.114904568,1.114907424 +Climate Solutions,ssp2_2p5,LVA,cdd|Hazard|Risk score|Population weighted,risk score,0.426534238,0.426658969,0.426764727,0.426846503,0.426917691,0.426979922,0.427035894,0.427090811,0.427143678,0.427197574 +Climate Solutions,ssp2_2p5,JPN,cdd|Hazard|Risk score|Population weighted,risk score,0.641258382,0.643913859,0.646833875,0.64965068,0.652158613,0.654380622,0.656342813,0.658070831,0.659588898,0.660921715 +Climate Solutions,ssp2_2p5,SYR,cdd|Hazard|Risk score|Population weighted,risk score,2.405210204,2.406912041,2.408392364,2.409630201,2.410686158,2.411628597,2.412420362,2.413077438,2.413610795,2.41405621 +Climate Solutions,ssp2_2p5,HND,cdd|Hazard|Risk score|Population weighted,risk score,1.443764989,1.439078028,1.435069011,1.431808986,1.42910257,1.426813581,1.425056371,1.423744597,1.422787545,1.422115407 +Climate Solutions,ssp2_2p5,MMR,cdd|Hazard|Risk score|Population weighted,risk score,2.377764943,2.379040715,2.380330896,2.381616606,2.382869,2.384084862,2.385325729,2.386606088,2.387979099,2.389361594 +Climate Solutions,ssp2_2p5,MEX,cdd|Hazard|Risk score|Population weighted,risk score,2.146250199,2.147754556,2.149146541,2.150418927,2.151528388,2.152453121,2.153207825,2.153854995,2.154390834,2.154855379 +Climate Solutions,ssp2_2p5,EGY,cdd|Hazard|Risk score|Population weighted,risk score,3.048475985,3.048618424,3.048727202,3.048744757,3.048700051,3.048635466,3.048544932,3.048419556,3.048213622,3.048008627 +Climate Solutions,ssp2_2p5,SGP,cdd|Hazard|Risk score|Population weighted,risk score,0.440578294,0.440578294,0.440578294,0.440578294,0.440578294,0.440578294,0.440578294,0.440578294,0.440578294,0.440578294 +Climate Solutions,ssp2_2p5,SRB,cdd|Hazard|Risk score|Population weighted,risk score,0.974722759,0.974610761,0.974571342,0.974587689,0.974639875,0.974699085,0.974731743,0.974752151,0.974751523,0.974732757 +Climate Solutions,ssp2_2p5,BWA,cdd|Hazard|Risk score|Population weighted,risk score,2.669485093,2.669203917,2.669161363,2.669290989,2.669300735,2.669251825,2.669745879,2.669862826,2.669811013,2.66970679 +Climate Solutions,ssp2_2p5,GBR,cdd|Hazard|Risk score|Population weighted,risk score,0.754527703,0.754499146,0.754473276,0.754448556,0.75442702,0.754409243,0.754396075,0.754385498,0.754376331,0.754370722 +Climate Solutions,ssp2_2p5,GMB,cdd|Hazard|Risk score|Population weighted,risk score,3.018464684,3.018381276,3.018365551,3.018373127,3.018397082,3.018435085,3.01848467,3.018545974,3.018611806,3.018678808 +Climate Solutions,ssp2_2p5,GRC,cdd|Hazard|Risk score|Population weighted,risk score,1.694844012,1.70184447,1.70800977,1.71316523,1.717653368,1.721704244,1.725408639,1.728685633,1.73159803,1.734182691 +Climate Solutions,ssp2_2p5,LKA,cdd|Hazard|Risk score|Population weighted,risk score,0.862321859,0.862212684,0.862115452,0.86199707,0.861857981,0.861704284,0.861542717,0.86138055,0.861220723,0.861066536 +Climate Solutions,ssp2_2p5,GUF,cdd|Hazard|Risk score|Population weighted,risk score,0.809413616,0.810437577,0.81106952,0.811774803,0.812008152,0.812460356,0.812882349,0.812813336,0.813166432,0.813263584 +Climate Solutions,ssp2_2p5,COM,cdd|Hazard|Risk score|Population weighted,risk score,0.367738386,0.367661519,0.367494679,0.367303225,0.367081886,0.366848936,0.366629909,0.366423739,0.366232544,0.366061361 +Climate Solutions,ssp2_2p5,FSM,cdd|Hazard|Risk score|Population weighted,risk score,0.206893969,0.207451045,0.208011161,0.208535235,0.209008301,0.209424818,0.209801194,0.210133612,0.210440395,0.210730373 +Climate Solutions,ssp2_2p5,GLP,cdd|Hazard|Risk score|Population weighted,risk score,0.788615409,0.785651661,0.784566343,0.783906977,0.783701979,0.783687543,0.783670398,0.783662781,0.78365666,0.783651527 +Climate Solutions,ssp2_2p5,MYT,cdd|Hazard|Risk score|Population weighted,risk score,1.311558901,1.311558901,1.311558901,1.311558901,1.311558901,1.311558901,1.311558901,1.311558901,1.311558901,1.311558901 +Climate Solutions,ssp2_2p5,VIR,cdd|Hazard|Risk score|Population weighted,risk score,0.56375403,0.564196378,0.564440541,0.564847453,0.564928444,0.565016095,0.565119288,0.56527765,0.56552676,0.565652605 +Climate Solutions,ssp2_2p5,CAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,STP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TKM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LTU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KHM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ETH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PSE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARG,cdd|Exposure|Population,people,11195.24984,12837.24801,12931.71713,12989.39942,12828.84007,12628.75072,12301.20421,11865.44324,11301.83525,10723.03739 +Climate Solutions,ssp2_2p5,BOL,cdd|Exposure|Population,people,5456.799909,5994.647007,6335.317077,6672.439457,6884.622618,6959.350035,6853.055191,6384.977684,6112.350793,5763.702606 +Climate Solutions,ssp2_2p5,BHS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BFA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GHA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SAU,cdd|Exposure|Population,people,5971209.242,7665575.309,8872703.746,9876360.481,10706694.39,11248041.85,11527394.96,11719653.5,11864337.4,11890734.79 +Climate Solutions,ssp2_2p5,CPV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GTM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BIH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GIN,cdd|Exposure|Population,people,26208.6298,38337.84181,46830.69095,54623.61412,61227.28149,66255.19735,69430.72902,70678.37515,70167.9548,68164.34154 +Climate Solutions,ssp2_2p5,JOR,cdd|Exposure|Population,people,169165.0073,313924.7606,391735.9554,463900.2135,527785.7817,580392.1422,619187.4869,644111.5031,655833.4478,655548.0582 +Climate Solutions,ssp2_2p5,COG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NLD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Population,people,131247.3719,262385.5922,305696.1593,341067.6756,369947.954,386514.0902,387177.1143,379994.9978,375014.0065,371502.3051 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Population,people,102782.5701,132976.7788,161946.3446,189355.7605,211397.167,230631.9996,243022.9914,248229.1299,247722.8145,242089.5383 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Population,people,59338.19014,75559.52432,89735.88959,102385.3579,113845.5275,121865.9489,127336.5354,129865.4183,130271.7785,128167.2556 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Population,people,1566170.628,2697558.761,3162312.94,3590292.512,3916167.58,4097113.551,4160922.859,4184413.904,4282474.784,4457864.862 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Population,people,4796.339948,4973.365782,4859.851594,4625.363699,4292.67562,3921.95973,3531.494875,3151.432002,2798.688632,2481.392142 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Population,people,145959.6516,175237.5861,228016.7135,284615.0068,338633.935,385767.617,421984.1391,445674.5112,457240.9594,456835.4598 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Population,people,2068825.552,2937052.885,3538407.044,4081478.091,4551660.849,4930542.946,5193544.793,5349149.983,5395596.216,5347166.037 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Population,people,156339.6805,195766.6799,224050.9791,248024.6194,265254.3883,276185.6541,281608.819,280317.6627,273711.8962,264315.9075 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Population,people,1328585.071,2073977.483,2305453.112,2485300.319,2607994.651,2664048.234,2659611.527,2605405.683,2513211.543,2394988.93 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Population,people,119396.5408,201826.0101,250819.3504,299813.6917,343994.2521,386907.831,421194.6266,452892.502,481143.8667,503893.1575 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Population,people,64808.65991,68816.1539,65697.62908,62331.7771,55415.66554,51208.64799,44372.76474,39999.75212,34729.3472,31330.96521 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Population,people,637189.8497,811345.8023,899159.3116,966032.0933,1020770.628,1031914.553,1024023.061,1007579.627,989045.5242,954731.7903 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Population,people,1102122.431,1442822.382,1846694.056,2252082.849,2602967.213,2912091.265,3126190.251,3275756.124,3333444.812,3299324.826 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Population,people,23161.1601,34400.07922,39234.03266,43837.00377,47945.60262,51351.01787,54103.57267,55257.12371,55316.2029,54448.28208 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Population,people,233.2400045,289.6195247,308.796446,324.1893407,322.219034,311.7802357,304.8633506,292.1257053,271.4530822,264.9647944 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Population,people,50265.89035,69206.20711,83095.30095,95243.92413,105074.5728,112274.7469,116938.5917,118794.1737,117743.8103,114547.3269 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Population,people,930345.6649,1355293.84,1882808.582,2524490.719,3264563.417,4033714.065,4768191.294,5432470.926,5966052.366,6364411.134 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Population,people,14650.92,17426.66942,18171.50102,18381.87443,18145.93736,17500.74356,16643.73203,15643.83297,14666.82741,13671.46038 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Population,people,674.0799963,869.7576218,834.6974361,791.0105944,718.4065792,631.790103,548.2299706,450.587512,353.5458201,268.161157 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Population,people,361035.7185,429478.1359,470932.8493,500596.6454,521582.7401,526639.5135,518018.8046,501284.8501,482704.6506,467885.6913 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Population,people,1113919.265,1598914.86,1763299.287,1890255.681,1981901.23,2033666.95,2016777.214,1967721.1,1889214.925,1808090.218 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Population,people,1306506.302,1572821.027,1640254.654,1668129.645,1661110.215,1624478.214,1572848.628,1510504.345,1440150.739,1368585.476 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Population,people,7896.159948,10459.58783,11281.32076,11791.28832,11983.70821,11651.6852,11342.07056,10680.0654,10147.81932,9254.87511 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Population,people,203013.5533,325827.1866,371911.5793,412758.7929,446379.8902,467498.4713,475715.1638,471777.7006,455184.9452,429609.5844 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Population,people,748129.6891,1067799.902,1337044.553,1628592.519,1878109.153,2098241.938,2286610.222,2401579.46,2467782.748,2474092.757 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Population,people,31986.66988,44175.42292,47417.27688,49062.94817,49930.61739,49388.23758,47929.01427,45788.6514,43658.42484,41546.32713 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Population,people,175119,209942.3827,226878.2967,237097.6107,240351.8875,236651.348,227132.5876,212949.7298,195800.6789,177509.5932 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Population,people,15288.00061,21646.48678,28208.00937,35059.90296,41408.51547,46878.84065,51388.5946,54700.21637,56545.27635,57137.21181 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Population,people,11021894.57,13593353.7,16258880.1,18798502.36,20995614.23,22703487.61,23850533.15,24360020.87,24263971.77,23715114.96 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Population,people,44805.68071,77311.48512,91713.50135,107702.7152,125022.911,142620.9683,160253.0605,177642.4291,194274.4626,209637.1936 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Population,people,1430458.044,2014712.327,2636662.155,3304764.919,3957120.638,4531407.365,5004583.403,5357663.048,5576180.986,5658329.631 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Population,people,3047627.686,5190370.511,6491345.393,7761252.037,8933611.43,9908169.928,10656040.52,11179388.39,11449110.57,11452546.3 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Population,people,193750.068,272617.4227,320639.7917,361241.1604,392032.2873,410976.6917,417974.1208,414419.4921,400734.5396,378317.5435 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Population,people,766102.2504,932796.2429,1008373.873,1056241.966,1077031.574,1070762.138,1041200.399,996211.1744,941260.075,879224.4526 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Population,people,67694258.78,90124369.24,103200773.5,115147235.1,125164668,132422023.5,137304721.4,139652672.7,139688083.1,137428006.3 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Population,people,2862.719936,3384.99825,3818.469309,4016.056687,4215.795223,4136.08934,4064.128803,3866.060721,3723.763586,3502.748648 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Population,people,549565.9984,1348461.569,1660421.846,1944169.225,2191650.327,2388388.937,2525117.744,2600627.602,2612467.422,2570831.086 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAN,cdd|Exposure|Population|Low,people,441242.7205,566847.3695,602691.4358,631124.9218,658048.521,685918.3434,717960.4603,751720.4352,783975.9493,817997.0514 +Climate Solutions,ssp2_2p5,STP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TKM,cdd|Exposure|Population|Low,people,6157658.982,6049265.617,6750645.211,7235840.519,7604642.655,7763655.206,7754474.586,7641996.766,7440820.568,7148146.84 +Climate Solutions,ssp2_2p5,LTU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KHM,cdd|Exposure|Population|Low,people,14763097.04,16809898.18,18951998.01,20670697.91,21928297.86,22591397.91,22711098,22338698.17,21662198.29,20764998.47 +Climate Solutions,ssp2_2p5,ETH,cdd|Exposure|Population|Low,people,80237360.05,109407365.3,135418339.3,159037668.7,178464195,192594709.6,200309159.2,201070512.1,195584675.9,185187024.9 +Climate Solutions,ssp2_2p5,SWZ,cdd|Exposure|Population|Low,people,1242002.501,1430600,1612200,1753800,1852700,1898300,1892800,1845600,1769300,1670900 +Climate Solutions,ssp2_2p5,PSE,cdd|Exposure|Population|Low,people,3191404.461,5240500,6332600,7281500,8057700,8614300,8929900,9003800,8843200,8483400 +Climate Solutions,ssp2_2p5,ARG,cdd|Exposure|Population|Low,people,16832358.19,20337579.54,21823226.95,23098749.94,24108197.22,24783042.25,25090215.28,25084154.47,24854091.95,24436031.4 +Climate Solutions,ssp2_2p5,BOL,cdd|Exposure|Population|Low,people,9642241.339,11219041.73,12639989.9,13840839.95,14747849.48,15319303.88,15547210.63,15459126.01,15109830.79,14568209.96 +Climate Solutions,ssp2_2p5,BHS,cdd|Exposure|Population|Low,people,122.2499982,1595.248682,1581.957406,1623.451262,1615.293888,1661.332307,1591.374557,1590.77338,1594.878891,1570.566671 +Climate Solutions,ssp2_2p5,BFA,cdd|Exposure|Population|Low,people,16519559.58,20833900,26597000,32575600,38254900,43231100,47311700,50283000,52074500,52672000 +Climate Solutions,ssp2_2p5,GHA,cdd|Exposure|Population|Low,people,8595205.344,11607667.24,13989830.75,16303460.01,18400582.25,20103747.02,21421268.52,22347532.92,22820760.66,22874386.62 +Climate Solutions,ssp2_2p5,SAU,cdd|Exposure|Population|Low,people,27159016.37,34666568.03,40089184.78,44630059.27,48407878.33,50892671.18,52249122.35,53239586.01,54004254.78,54233250.21 +Climate Solutions,ssp2_2p5,CPV,cdd|Exposure|Population|Low,people,75453.69085,560592.464,609192.4019,639592.4987,651492.8178,646293.1761,623893.5989,585894.2352,538294.81,487795.3859 +Climate Solutions,ssp2_2p5,SVN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GTM,cdd|Exposure|Population|Low,people,12699536.09,16124820.23,18776100.58,21068468.8,22900920.7,24211799.99,24900337.63,24952568.73,24437620,23493739.57 +Climate Solutions,ssp2_2p5,BIH,cdd|Exposure|Population|Low,people,668138.0036,620727.977,551033.1992,473204.414,392724.2633,318144.9069,251332.0299,194683.2755,150794.8503,118605.9018 +Climate Solutions,ssp2_2p5,GIN,cdd|Exposure|Population|Low,people,9361680.805,13637600,16640400,19396100,21735500,23533600,24700000,25213500,25117700,24493000 +Climate Solutions,ssp2_2p5,JOR,cdd|Exposure|Population|Low,people,5716453.642,10368700,12769400,15039600,17107500,18883300,20326200,21411900,22120500,22468300 +Climate Solutions,ssp2_2p5,COG,cdd|Exposure|Population|Low,people,7296481.314,5437456.773,6664119.9,7844254.656,8847638.922,9645454.338,10248268.88,10616983.17,10713975.96,10556768.62 +Climate Solutions,ssp2_2p5,ESP,cdd|Exposure|Population|Low,people,32991878.77,42622602.7,42929110.23,43327614.63,43610656.41,43282690.04,42711543.9,42679834.84,43569960.06,44771307.07 +Climate Solutions,ssp2_2p5,LBR,cdd|Exposure|Population|Low,people,3337490.744,4618056.159,5682470.355,6689691.484,7546031.861,8208933.196,8672295.95,8917413.074,8937245.976,8761655.596 +Climate Solutions,ssp2_2p5,NLD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Population|Low,people,66874.31851,122305.992,123039.4552,119819.3069,113895.8207,105654.5438,95132.29457,83297.21379,71235.92752,60067.82115 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Population|Low,people,2350816.679,4637269.137,5340544.253,5889827.686,6377214.326,6642811.027,6651017.427,6543627.078,6468433.816,6439037.182 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Population|Low,people,35196681.65,53120839,68751216.45,85156710.56,100806046,114622202.3,126157482.8,134923582.9,140587460.7,143073538.9 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Population|Low,people,2677115.895,2541781.51,2404450.671,2187968.414,1930980.94,1664187.538,1405791.658,1165732.909,952294.1328,771243.8316 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Population|Low,people,603992.4783,1112470.239,1303551.883,1472034.711,1615448.423,1721608.782,1786982.247,1819226.027,1820609.099,1791159.855 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Population|Low,people,22800284.4,30565173.02,38231449.01,45877724.74,53036201.74,59129081.22,63761664.97,66945653.24,68679946.09,69054543.31 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Population|Low,people,165297488,206991561.8,243253174.7,275968594.1,304614542.3,326064378.7,340555941.1,348069949.4,349205749.3,344895579.3 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Population|Low,people,5942006.976,10083260.42,11789108.94,13386762.65,14625828.54,15340711.39,15636806.81,15785106.33,16205696.66,16914777.89 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Population|Low,people,1171645370,1382139403,1506355395,1594131062,1642217295,1656722301,1639655828,1596893308,1535521168,1462178154 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Population|Low,people,6356391.808,9473230.756,9875971.066,10040691.07,9961674.369,9681068.286,9303680.512,8850114.004,8406640.997,8015283.069 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Population|Low,people,11469543.55,16455994.92,20357969.77,24129353.69,27551222.1,30501213.59,32900145.41,34642915.58,35691945.59,36058005.04 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Population|Low,people,2120633.85,2298900,2487400,2609900,2677300,2678000,2612400,2494700,2342500,2167600 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Population|Low,people,8201.790326,105383.403,97759.07987,87539.25598,75515.09185,63173.7226,51509.5893,41022.72742,32212.47753,24982.73989 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Population|Low,people,14500981.11,19338320.56,23743220.99,28178111.63,32193490.59,35540424.58,38124834.51,39849356.99,40684298.56,40655635.16 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Population|Low,people,8374393.394,11019428.45,11130773.42,10926041.68,10375802.76,9651316.813,8898193.2,8181329.386,7567216.913,7077182.788 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Population|Low,people,6888857.372,9387284.589,10807662.57,11963376.52,12866295.42,13368053.56,13558308.89,13432847.45,13006595.38,12352854.71 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Population|Low,people,63822356.83,81220545.45,87743467.48,92279472.75,94508434.46,94661150.52,93314766.33,90887452.79,87767996.74,84263168.88 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Population|Low,people,32134287.43,38745921.96,51018299.66,64286558.77,77078281.82,88682433.4,97917033.9,104262998.4,107697087.4,108070711.6 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Population|Low,people,138761477,171046867.5,187828736.8,198757032.6,203855650.1,203158384.7,197492430.5,188393580.7,177011531.7,164603980 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Population|Low,people,3304258.005,4702200,5683800,6572000,7341200,7950900,8379800,8631800,8704700,8622900 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Population|Low,people,2859.889936,25247.92207,24340.23363,22944.77519,21167.30066,19246.80124,17347.9638,15578.47705,13961.79356,12590.85371 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Population|Low,people,606515.7237,1205001.029,1286095.433,1343493.475,1394592.275,1436091.983,1458293.667,1466196.395,1466499.699,1473201.633 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Population|Low,people,400.439991,3254.079649,3580.646078,3833.486783,4014.249509,4135.744558,4214.244836,4253.819805,4262.734629,4253.110348 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Population|Low,people,21617668.11,24043238.61,25010323.79,26000740.61,26821446.39,27586248.75,28439541.95,29397791.92,30360042.39,31282842.07 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Population|Low,people,2108541.638,2686599.155,3139799.119,3507199.091,3797899.067,3993299.199,4084499.194,4081899.194,4001099.294,3855499.448 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Population|Low,people,8620890.257,16144227.96,20864209.36,25630291.04,30032274.63,33761661.49,36639152.03,38496246.79,39298845.45,39157847.76 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Population|Low,people,18298733.11,27999381.88,30600786.8,32532420.74,33759497.58,34192422.59,33889979.02,32998698.74,31668282.27,30052746.94 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Population|Low,people,6333240.451,6617129.127,7395315.474,7971980.13,8333460.76,8460433.159,8363228.996,8088144.482,7688618.38,7209572.511 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Population|Low,people,15628147.03,23111417.6,27917972.41,32197648.46,35859833.36,38839118.1,40990552.2,42261019.39,42674527.86,42414921.91 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Population|Low,people,7306580.371,12021500,14929600,17731400,20192300,22210600,23754600,24726500,25101600,24972900 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Population|Low,people,357858.7824,597196.4436,737395.6716,870095.0417,993994.4697,1103293.769,1194893.374,1273593.218,1342192.835,1398592.515 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Population|Low,people,119330.7769,168900.6977,161638.9148,150707.6914,136763.849,120307.0335,103754.0982,89583.29376,77185.99674,66164.33465 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Population|Low,people,16620912.69,22008774.09,26542109.36,30577105.89,33954639.66,36479714.55,38096644.14,38800751.84,38588161.65,37637395.24 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Population|Low,people,556264.5528,521013.2383,517939.557,509209.9059,496577.4549,483233.4091,468676.5879,453212.6577,438021.1556,423889.6097 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Population|Low,people,5153074.179,7889725.2,9449989.393,10857373.96,12000279.88,12845503.1,13399248.92,13646311.22,13598703.56,13329038.62 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Population|Low,people,811652677.9,889644929.9,894257007.5,868260353.8,824657838.8,763595448.4,695520894.4,630279319.2,570387893.4,518075765.3 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Population|Low,people,2405669.887,2341269.863,2265724.358,2156611.303,2035760.451,1893830.028,1752395.846,1618890.584,1504989.873,1422252.185 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Population|Low,people,745215.7233,1003458.719,1099736.905,1170301.412,1212401.79,1225723.565,1212673.512,1176310.799,1123900.208,1059968.166 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Population|Low,people,6029811.789,6017257.647,5709149.827,5418279.646,5190211.045,4979285.868,4781130.402,4635746.782,4578814.149,4558810.284 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Population|Low,people,181070.7562,1505200,1740100,1949100,2121900,2231100,2285200,2314000,2354000,2405200 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Population|Low,people,5301566.711,6664496.09,7346196.16,7857396.298,8243696.456,8417296.636,8385696.849,8264497.035,8095297.206,7849697.38 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Population|Low,people,64484389.52,93105558.86,100519444,105176612.6,107065106.7,106625839.7,104551635.4,101162426.6,96726239.62,91556580.56 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Population|Low,people,3998303.382,4961993.425,5768383.722,6437313.877,6915409.186,7216075.395,7317908.681,7204125.818,6906428.281,6497984.216 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Population|Low,people,72456092.69,86359554.71,92860368.42,98739061.77,103969805.3,109367681.4,115199483.4,120891040.1,126118035.5,131300090.8 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Population|Low,people,46829268.33,60048640.51,63792415.79,65332087.03,65459934.5,63954789.87,61042014.49,57370824.45,53357306.38,49427277.45 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Population|Low,people,15456508.53,20121000,25746000,31415600,36468400,40637500,43830400,45851200,46638400,46342900 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Population|Low,people,19475707.49,19498465.9,18779889.06,18023339.1,17554936,17177816.28,16793307.7,16594523.44,16641158.8,16758029 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Population|Low,people,3391023.008,2966828.678,2666353.434,2371809.158,2113728.553,1872240.112,1642809.884,1456638.179,1315938.272,1201939.521 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Population|Low,people,90301.3572,267816.646,263046.9313,252378.2241,236230.148,219469.367,202902.4232,186349.1847,170733.9054,156624.7438 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Population|Low,people,7408026.429,6862817.338,6321981.178,5748978.61,5161996.221,4577100.595,4005795.047,3511128.005,3100768.027,2750262.245 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Population|Low,people,18517855.39,32364269.65,41592466.64,50755963.98,59105861.9,66183960.29,71761559.2,75536658.87,77283459.35,77204360.45 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Population|Low,people,7704233.105,10127659.32,9670379.673,9224937.382,8742862.604,8239428.409,7788719.348,7478387.027,7330577.445,7257229.933 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Population|Low,people,35063123.25,43841171.65,48035100.48,51200007.03,53336900.95,54318337.84,54334565.2,53629286.37,52404460.56,50838987.57 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Population|Low,people,71820.35263,95174.88055,100072.8195,101819.8085,101511.9192,100315.4883,97456.229,93311.25854,89067.1921,85083.91049 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Population|Low,people,20628098.06,29152677.97,35845603.38,41934515.96,47093430.44,51134914.58,53948282.98,55367940.17,55367824.5,54240661.23 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Population|Low,people,2174364.3,3238187.237,4405544.785,5720505.201,7078878.477,8372073.184,9508361.683,10436276.42,11117051.86,11527720.6 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Population|Low,people,3925540.886,3567745.238,3943468.039,4202737.41,4379841.382,4442442.319,4403341.703,4284501.613,4109394.962,3879673.689 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Population|Low,people,328320.519,297651.735,274688.1617,251809.0937,230823.0716,212156.0403,195089.7719,181282.7534,171367.59,164123.8518 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Population|Low,people,16040965.25,23836100,33344200,45169200,58617100,72551800,85861400,97693900,107383800,114481000 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Population|Low,people,112776317.3,136013101.7,143037914.8,146042008.2,145450207.4,141658094.6,135741046.4,128513122.4,120844927,113388219.6 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Population|Low,people,1635506.743,4319300,4921000,5409400,5785300,5972400,6056100,6178100,6347200,6477100 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Population|Low,people,902076.5999,1405277.418,1578506.264,1721687.223,1828324.953,1894191.873,1924948.352,1927162.441,1907106.953,1866260.968 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Population|Low,people,66790.96989,83725.04911,79183.41991,72475.6206,64464.23879,55848.58394,46339.54901,38338.34121,30578.47977,23472.92603 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Population|Low,people,1197332.341,1411150.591,1519422.482,1589038.819,1622985.541,1622936.853,1594849.015,1547630.15,1492826.21,1438396.468 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Population|Low,people,6977.400104,9128.047998,9416.500064,9676.028604,9900.481439,9942.690517,9903.017479,9909.723465,9988.783608,10051.31326 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Population|Low,people,153749668.8,205257369.1,258181427.9,318861506.5,382398245.1,442920013.3,496976586.7,542358194.1,577655653.2,603219315.6 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Population|Low,people,4717101.018,5987929.307,6710605.634,7290208.484,7708687.679,7964048.008,8068816.093,8034350.241,7886879.205,7643413.82 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Population|Low,people,6027417.889,8654362.843,9555617.58,10390803.11,11220830.14,12035094.22,12819432.12,13576610.55,14295293.78,15009485.98 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Population|Low,people,71277883.31,83584271.67,90327741.48,94677978.24,97366408.75,97086662.52,94287420.03,90003774.89,85516981.76,81943298.19 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Population|Low,people,30516119.68,43058700,47686800,50930400,53615900,54843500,54433800,53256900,51705800,49630900 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Population|Low,people,5492666.963,6491188.477,6699589.456,6715690.654,6572391.867,6278693.063,5851394.187,5321295.201,4726996.11,4122296.876 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Population|Low,people,15080077.85,18235709.82,19126937.84,19573671.41,19595304.05,19281950.63,18748656.63,18066219.97,17267683.26,16446487.6 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Population|Low,people,4922.610071,6051.85616,5883.794182,5619.567316,5271.069032,4886.415927,4486.115427,4093.960916,3732.290179,3413.556089 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Population|Low,people,61884474.54,66876260.97,67486124.99,66137874.68,63034746.07,59137818.53,55417803.82,52203082.88,49322451.27,46830265.3 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Population|Low,people,266843.9958,471978.3796,515822.1036,541661.4575,550420.6803,541325.2141,517039.2062,483129.5453,442317.0302,398039.5151 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Population|Low,people,31254386.94,41091900,50811500,60320100,68980000,76290900,82243000,86684900,89471000,90569700 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Population|Low,people,4782432.692,8047800,9621700,11018200,12108100,12862300,13271700,13334400,13096900,12628600 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Population|Low,people,1020322.766,863811.1303,759449.4444,667504.4649,585403.256,509325.0897,445458.062,395166.3948,355234.438,323677.4927 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Population|Low,people,1846662.52,7486600,7874400,8108600,8283000,8488600,8689700,8905500,9202600,9584400 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Population|Low,people,455882.5696,543143.0969,551237.2689,549893.2098,544773.0557,533615.6971,511200.2158,486819.833,469839.358,457030.3532 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Population|Low,people,27287140.32,36814850.26,39657349.09,41332750.98,42043654.89,41753160.66,40497368.48,38566177.55,36270386.94,33708996.57 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Population|Low,people,373070.4792,432786.4536,408277.9781,384999.762,363807.558,345257.5029,329143.6871,316274.9669,306964.376,300592.9259 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Population|Low,people,2812496.663,3176253.73,3479854.428,3681692.471,3845254.005,3916244.591,3887622.492,3823897.021,3731997.478,3583414.925 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Population|Low,people,1169316.173,1967800,2312100,2610100,2845500,2985600,3037600,3008800,2898400,2729700 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Population|Low,people,9378.180373,104155.4525,99470.70217,92305.96573,84027.48705,73838.68315,62828.51943,51890.52497,42221.1726,34421.83392 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Population|Low,people,145457.1377,217866.7556,249373.8724,275507.1969,296522.938,311794.8513,320561.8799,323253.4226,320507.6865,313371.8628 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Population|Low,people,11219570.2,16176700,20805200,25419500,29638900,33273000,36169800,38212100,39372800,39728400 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Population|Low,people,3369814.76,6294600,7111300,7731000,8198100,8571500,8800800,8840900,8778600,8717200 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Population|Low,people,24170560.71,33150792.98,36592740,39173717.7,40971944.7,41651449.62,41461829.83,40566540.02,39188178.91,37593228.78 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Population|Low,people,8769207.939,11838100,12562200,12877500,13001700,12855500,12431300,11894500,11349000,10764600 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Population|Low,people,568522.4823,1019200,1200800,1358600,1485400,1583200,1648600,1685900,1702100,1707000 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Population|Low,people,5063426.988,6778090.654,8444605.824,10151139.39,11709853.19,12979231.95,13912601.12,14489466.85,14694205.92,14535782.61 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Population|Low,people,749916.8389,1402252.808,1767472.485,2128209.259,2447744.825,2714407.43,2898144.263,2979782.457,2961907.461,2852896.215 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Population|Low,people,10128559.78,11591140.21,12445711.62,12932698.04,13059633.69,12882845.77,12460191.36,11857764.55,11170167.45,10484503.83 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Population|Low,people,7745648.752,11512200,13741300,15606000,17117100,18071600,18518600,18452100,17867900,16914900 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Population|Low,people,5663599.698,9053579.5,9199568.235,9031439.282,8533293.64,7838263.62,7106352.91,6371642.542,5746143.217,5274728.585 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Population|Low,people,4914497.21,5947444.081,6492021.19,6853474.418,7020977.055,6990599.697,6772013.817,6393388.862,5909137.802,5377288.018 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Population|Low,people,21641.80023,280100,269700,257800,243600,228100,214100,202100,191100,180800 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Population|Low,people,1174339.088,2757900,3277900,3768000,4203200,4519500,4697800,4775500,4860900,5038400 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Population|Low,people,39410168.25,54805012.27,70469936.41,86382883.42,100952389.9,113380351.3,123208388.3,129897547.3,133079997.5,133039122.9 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Population|Low,people,23949964.7,29045332.45,28415016.07,27778083.52,27001669.42,26002843.25,25065123.17,24584866.25,24497081.54,24530882.15 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Population|Low,people,2600771.104,836600,924000,988700,1031600,1052000,1048100,1025000,992800,955800 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Population|Low,people,34556192.72,43065995.17,51819510.91,60094407.05,67163451.11,72586815.56,76118184.01,77567868.63,77051781.23,75040018.3 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Population|Low,people,31945346.98,30596800,34239800,36879600,38881400,40094000,40352300,39713500,38215300,36226400 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Population|Low,people,25752.49942,429500,427700,415300,401000,389500,376200,360700,347400,338400 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Population|Low,people,28968.61884,33028.77417,32820.62749,31781.74703,29966.72889,27804.1396,25471.36577,23124.99059,20765.6849,18489.66485 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Population|Low,people,22679568.25,29902153.1,33126938.15,35643557.5,37393223.78,38392319.47,38701431.43,38405178.41,37653275.89,36576937.82 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Population|Low,people,5103558.174,8818400,10401300,12115300,13943500,15798500,17653500,19503600,21289400,22944200 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Population|Low,people,13330258.58,18783500,24607300,30888700,37072900,42545700,47086800,50492600,52622800,53471500 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Population|Low,people,10123746.43,17132300,21366700,25521700,29389000,32638300,35163300,36966500,37942300,38044600 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Population|Low,people,2768.320073,4264.202491,5056.41693,5717.452837,6249.387045,6683.981563,6927.754459,7063.129926,6982.620888,6808.09838 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Population|Low,people,13664296.85,20473600,27173600,34728000,42576800,50012000,56427100,61529000,65195600,67286800 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Population|Low,people,2885.079936,5580.191577,5267.416572,4890.821848,4491.454857,4072.432996,3667.079263,3298.124639,2979.767988,2690.930692 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Population|Low,people,12422691.45,17421123.99,20424220.6,22933930.63,24828306.73,25961155.45,26348239.91,26085127.78,25219035.22,23861955.2 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Population|Low,people,3695.170043,22431.30029,21657.73682,20682.83539,19250.26513,17669.17733,16420.98182,15543.19179,14882.48972,14272.81856 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Population|Low,people,7251982.073,7787791.981,8009623.618,8063247.938,8092715.734,7940575.169,7663621.053,7372791.995,7048472.488,6666214.575 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Population|Low,people,19037346.79,30935066.26,34919720.4,38311413.44,40991702.26,42924624.25,44062463.1,44344102.16,43824946.56,42639931.74 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Population|Low,people,5246473.374,5407270.953,6467366.231,7475561.76,8322758.171,8934155.668,9320654.259,9470554.07,9384854.999,9094556.803 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Population|Low,people,4155.440053,12566.23449,14008.38635,15227.99793,16270.48634,17126.09292,17841.76263,18414.18998,18806.30614,19096.16734 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Population|Low,people,1695323.404,1741655.038,1680544.155,1584259.425,1473992.781,1360161.344,1240284.944,1128177.495,1037688.025,967428.2797 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Population|Low,people,396741.7145,468131.1289,473178.6174,464876.8489,445757.4464,419887.1355,391811.3168,363000.1643,333707.8775,305626.3579 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Population|Low,people,3960509.273,4850987.64,5413847.969,5851364.649,6167127.436,6354576.014,6396945.803,6302544.227,6098183.732,5821933.2 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Population|Low,people,9915600.971,12796102.65,12550428.54,12129495.63,11643689.36,11128158.49,10504263.51,9890485.783,9419082.623,9032531.857 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Population|Low,people,19517233.23,19773100,21879300,23704900,24679200,25057400,24979500,24287100,23021500,21269000 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Population|Low,people,5178847.085,7026028.981,8048505.412,8895945.309,9543614.574,9975506.323,10163358.41,10109929.99,9866134.41,9478072.437 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Population|Low,people,45849298.92,54145545.53,56717041.93,57355318.09,56253677.18,54103033.32,51332942.26,47904827.84,44095470.57,40510845.37 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Population|Low,people,104582103.8,128522105.4,140588700.2,149327279.3,154560893.6,156057846.2,153984959.9,149314065.4,142758900.8,134738250.1 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Population|Low,people,76849083.64,102360307.3,117185845,130665361.2,141904676.1,149973759.8,155335707.7,157823835.5,157704847,155012674 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Population|Low,people,3925105.707,3604008.013,3419821.576,3209754.191,2995413.466,2793294.907,2587824.346,2388747.648,2209180.942,2050193.805 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Population|Low,people,1974893.486,2402600,2726100,2970100,3133700,3198700,3176600,3101400,2988100,2845000 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Population|Low,people,114450.4501,129721.7338,127947.1837,126604.7025,126450.8926,126359.6804,126384.4561,127171.1181,127970.3306,128991.1231 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Population|Low,people,912781.7174,2265500,2811400,3310400,3745300,4091500,4335000,4473200,4500800,4434800 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Population|Low,people,7663433.893,11178906.04,11091714.08,11065019.9,10992525.33,10820031.25,10648636.24,10584939.27,10651139.81,10787739.21 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Population|Low,people,2841235.913,3553353.583,3661079.41,3701877.753,3661598.319,3553766.093,3413040.792,3244301.786,3055759.769,2846854.351 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Population|Low,people,54282,91569.21621,113162.7676,134785.0019,154378.1628,171962.9354,187644.0117,200582.1862,210909.2287,217427.1233 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Population|Low,people,22452.75988,273700,343200,413300,478600,536500,586200,626500,656200,673600 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,STP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TKM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LTU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KHM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ETH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PSE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BOL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BFA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GHA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SAU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CPV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GTM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BIH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NLD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,STP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TKM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LTU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KHM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ETH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PSE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARG,cdd|Exposure|Population|%,%,0.029965384,0.028245889,0.026359198,0.024893922,0.023464071,0.022400895,0.021503121,0.020712568,0.019889473,0.019174852 +Climate Solutions,ssp2_2p5,BOL,cdd|Exposure|Population|%,%,0.055075046,0.052004364,0.048788001,0.046932493,0.045453854,0.044240562,0.042932217,0.040233764,0.039412145,0.0385501 +Climate Solutions,ssp2_2p5,BHS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BFA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GHA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SAU,cdd|Exposure|Population|%,%,21.98463705,22.1108758,22.13102399,22.12803248,22.11633436,22.10018105,22.06107104,22.01175655,21.96798475,21.92390127 +Climate Solutions,ssp2_2p5,CPV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GTM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BIH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GIN,cdd|Exposure|Population|%,%,0.279956456,0.281118685,0.281427676,0.281621636,0.281692538,0.281534476,0.281096069,0.280319571,0.279356608,0.278301317 +Climate Solutions,ssp2_2p5,JOR,cdd|Exposure|Population|%,%,2.959264921,3.027619283,3.067771042,3.084524944,3.08511344,3.073573699,3.046253048,3.008194056,2.964821988,2.917657581 +Climate Solutions,ssp2_2p5,COG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NLD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Population|%,%,5.582756246,5.657910344,5.723789681,5.790524364,5.800830326,5.818278969,5.82107429,5.806858261,5.797362786,5.769296432 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Population|%,%,0.450793098,0.435057987,0.423592904,0.412738509,0.398588831,0.390046896,0.381141389,0.370790638,0.360690293,0.350575975 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Population|%,%,0.035535537,0.036177047,0.036590557,0.036821186,0.037111775,0.037130356,0.037161646,0.037095047,0.037101952,0.03696907 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Population|%,%,26.35669884,26.75194138,26.82313025,26.8188457,26.77483424,26.70660412,26.60895972,26.5077913,26.42491629,26.35403961 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Population|%,%,0.000409364,0.000359828,0.00032262,0.000290147,0.000261393,0.000236728,0.000215379,0.000197346,0.000182262,0.000169704 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Population|%,%,0.451368753,0.449851971,0.444878542,0.4409532,0.437766625,0.433592428,0.42968364,0.426280456,0.423479089,0.421708803 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Population|%,%,62.61089629,62.46124972,62.25424969,62.10404885,62.00159169,62.01238786,61.97695402,61.97027251,61.98486124,62.01122635 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Population|%,%,7.41458554,7.286781803,7.135836012,7.071869851,6.98423835,6.91622603,6.894572629,6.867332927,6.840916153,6.855554597 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Population|%,%,6.104421232,6.241505812,6.365507421,6.474513607,6.569123672,6.647954828,6.71537674,6.772864106,6.822056604,6.862806085 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Population|%,%,33.36394486,33.79538013,34.01401551,34.45738325,34.60706761,35.06823448,35.249362,35.56002686,35.84740476,36.02839679 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Population|%,%,0.00499896,0.004857904,0.004627921,0.004535463,0.004257035,0.004257688,0.004057526,0.004042024,0.003882513,0.003860043 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Population|%,%,12.01888907,12.17414363,12.23978808,12.29455155,12.38243298,12.25944844,12.21153942,12.19165862,12.21752775,12.16265323 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Population|%,%,7.130474708,7.170728998,7.172741613,7.168676863,7.137596421,7.166019722,7.132470274,7.144319284,7.147425323,7.119374976 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Population|%,%,0.125074601,0.1062902,0.094329585,0.086368122,0.081118133,0.077588266,0.075393487,0.073152684,0.071575696,0.070524843 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Population|%,%,0.000496976,0.000493623,0.000480373,0.000473116,0.000451373,0.000428826,0.000419141,0.00040685,0.000386849,0.000389193 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Population|%,%,0.223326842,0.217948966,0.213146307,0.209109464,0.205653559,0.202562545,0.200123888,0.198210303,0.196563358,0.195291293 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Population|%,%,5.799810986,5.685887542,5.64658496,5.588964868,5.56930216,5.559771178,5.553358429,5.560706376,5.55582161,5.559360185 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Population|%,%,0.008263563,0.008133608,0.008051956,0.007965663,0.007883423,0.007794966,0.007727107,0.007663872,0.007634853,0.007579377 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Population|%,%,0.111936754,0.114728614,0.116594138,0.121525671,0.12502725,0.127634364,0.131533102,0.131635265,0.130556064,0.129172041 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Population|%,%,0.501730347,0.508964676,0.516408279,0.52369089,0.530552257,0.537206911,0.544073391,0.551536438,0.558942767,0.565396861 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Population|%,%,3.650265093,3.713337514,3.697667462,3.711448724,3.696480391,3.708127582,3.705009045,3.694772133,3.653777574,3.643073606 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Population|%,%,8.598511741,8.563111965,8.516733062,8.465729375,8.422241227,8.371484593,8.336815531,8.309153217,8.289352973,8.270897901 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Population|%,%,0.028937166,0.028411212,0.028446878,0.02852761,0.028502914,0.027906022,0.028006841,0.027692741,0.027978162,0.027455124 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Population|%,%,17.36173313,16.5579422,16.08544524,15.81390724,15.68722159,15.6584429,15.66088899,15.67992889,15.70469725,15.7383443 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Population|%,%,6.66807797,6.600851238,6.426492188,6.406862917,6.336635815,6.306139929,6.321876875,6.284866468,6.267734955,6.227516731 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Population|%,%,0.36476122,0.373163117,0.377459974,0.380997462,0.384031453,0.384179826,0.385551103,0.384956504,0.384689619,0.385953283 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Population|%,%,3.285110923,3.256384773,3.226094143,3.195773216,3.164606814,3.13180017,3.104982674,3.085244268,3.07066069,3.060351934 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Population|%,%,0.024001069,0.024483902,0.024843678,0.025203695,0.025475924,0.025683715,0.025911318,0.026161888,0.02639764,0.026682326 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Population|%,%,31.88821596,31.55696891,31.36872386,31.27449106,31.25328671,31.27064318,31.32646988,31.39784865,31.48352091,31.5962244 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Population|%,%,0.877930244,0.87670649,0.881750371,0.888981001,0.896639373,0.90275006,0.907769341,0.910818665,0.912540807,0.913682733 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Population|%,%,10.73090995,10.72596868,10.7149592,10.69894466,10.67389019,10.65068236,10.62842114,10.61078861,10.59651137,10.58195418 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Population|%,%,30.10375364,30.29581849,30.38066427,30.41040384,30.39780677,30.35749389,30.30443822,30.24194443,30.17505677,30.10294837 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Population|%,%,1.547379087,1.552296539,1.557048054,1.562029371,1.565655413,1.569529885,1.572673375,1.574937074,1.575202001,1.571699681 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Population|%,%,0.706167983,0.699784199,0.69171693,0.682338312,0.67240089,0.662265921,0.652824599,0.644311037,0.636858775,0.630413488 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Population|%,%,88.05092534,88.0086415,88.02942947,88.08780615,88.16735395,88.26128426,88.35766661,88.45321168,88.5424324,88.62349222 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Population|%,%,0.144955663,0.140888964,0.140070772,0.135216211,0.134530913,0.129305322,0.127939583,0.12465534,0.124619778,0.12311946 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Population|%,%,60.20782273,59.52158771,59.06032033,58.72913318,58.51735046,58.37440881,58.24954427,58.1379684,58.04451258,57.96949323 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAN,cdd|Exposure|Population|Low|%,%,1.531001091,1.519547309,1.508033038,1.495145699,1.485849392,1.476089969,1.467705552,1.460675221,1.45308549,1.44659695 +Climate Solutions,ssp2_2p5,STP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TKM,cdd|Exposure|Population|Low|%,%,99.99231488,99.99281977,99.99326349,99.99365033,99.99398633,99.99427115,99.99451426,99.99472373,99.99490093,99.99505967 +Climate Solutions,ssp2_2p5,LTU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KHM,cdd|Exposure|Population|Low|%,%,99.99998862,99.99998917,99.99998948,99.99998989,99.99999026,99.99999074,99.9999912,99.99999179,99.9999921,99.99999265 +Climate Solutions,ssp2_2p5,ETH,cdd|Exposure|Population|Low|%,%,96.81754576,96.78025226,96.75489122,96.74094816,96.73338452,96.72993105,96.72901815,96.7299017,96.73205788,96.73513031 +Climate Solutions,ssp2_2p5,SWZ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,PSE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,ARG,cdd|Exposure|Population|Low|%,%,45.05375841,44.74892193,44.48309189,44.2682879,44.09412306,43.9601928,43.85895209,43.78742956,43.73933878,43.69632097 +Climate Solutions,ssp2_2p5,BOL,cdd|Exposure|Population|Low|%,%,97.31837195,97.32668581,97.34001185,97.35346835,97.36867825,97.38475646,97.39834384,97.41284341,97.42746566,97.43839932 +Climate Solutions,ssp2_2p5,BHS,cdd|Exposure|Population|Low|%,%,0.452120692,0.390992324,0.354937717,0.342500266,0.325598446,0.323720247,0.302715343,0.297618967,0.294638627,0.286495197 +Climate Solutions,ssp2_2p5,BFA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,GHA,cdd|Exposure|Population|Low|%,%,37.48225669,37.76779441,37.93111785,38.01536616,38.02873198,37.99425282,37.93120466,37.84760199,37.75084062,37.64550335 +Climate Solutions,ssp2_2p5,SAU,cdd|Exposure|Population|Low|%,%,99.99333356,99.99356203,99.99372634,99.99385938,99.99396484,99.99404898,99.99411001,99.99415133,99.99417631,99.99419248 +Climate Solutions,ssp2_2p5,CPV,cdd|Exposure|Population|Low|%,%,99.99852892,99.99865572,99.99875277,99.9988272,99.99889759,99.99894416,99.99897401,99.99901609,99.99903586,99.99905409 +Climate Solutions,ssp2_2p5,SVN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GTM,cdd|Exposure|Population|Low|%,%,90.75163804,90.76326556,90.81152733,90.88013388,90.96293986,91.05226933,91.13992032,91.22558268,91.30882502,91.38865923 +Climate Solutions,ssp2_2p5,BIH,cdd|Exposure|Population|Low|%,%,18.44706101,18.48945481,18.52461505,18.56285948,18.60635161,18.64858775,18.69056517,18.73395646,18.77425925,18.81140393 +Climate Solutions,ssp2_2p5,GIN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,JOR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,COG,cdd|Exposure|Population|Low|%,%,96.09429409,95.98165564,95.9363109,95.90843091,95.91248411,95.94412065,95.97374917,96.01612634,96.07051487,96.12354761 +Climate Solutions,ssp2_2p5,ESP,cdd|Exposure|Population|Low|%,%,91.23204659,91.17992431,91.10147473,91.03147645,90.96279447,90.88515132,90.8024038,90.7274697,90.6630877,90.60724931 +Climate Solutions,ssp2_2p5,LBR,cdd|Exposure|Population|Low|%,%,90.80992524,90.52881987,90.34277739,90.21227812,90.11048053,90.03195065,89.97651011,89.93860891,89.91645431,89.90924162 +Climate Solutions,ssp2_2p5,NLD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Population|Low|%,%,4.192294714,4.207726701,4.231941088,4.269045745,4.316688295,4.365168724,4.403661277,4.434476884,4.459492144,4.479998594 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Population|Low|%,%,99.99466129,99.99502183,99.99521145,99.99537675,99.99552059,99.99565003,99.99575162,99.99582937,99.99588505,99.99591853 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Population|Low|%,%,84.82533824,84.90151292,84.93980988,84.95341703,84.9488913,84.926724,84.89250802,84.84895433,84.80168791,84.74981673 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Population|Low|%,%,88.3230599,88.41594231,88.46396876,88.48141436,88.47969851,88.45944498,88.43681797,88.41356911,88.388169,88.37445074 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Population|Low|%,%,52.16811451,51.6851068,51.42216502,51.28504725,51.16388239,51.05147176,50.93294136,50.80076029,50.68369754,50.62061539 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Population|Low|%,%,99.99955075,99.99958458,99.99960507,99.99961799,99.99962619,99.99963,99.99963139,99.9996314,99.9996303,99.99962828 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Population|Low|%,%,98.99080171,99.1052214,99.18850981,99.24750114,99.29934465,99.34593274,99.38718126,99.42347386,99.45526901,99.48304477 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Population|Low|%,%,99.99656845,99.99663233,99.99668299,99.9967331,99.99677661,99.99681507,99.99684608,99.99687267,99.99689416,99.99691338 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Population|Low|%,%,99.99908341,99.99911752,99.9991433,99.99916957,99.99919589,99.99922142,99.99924547,99.99926782,99.9992881,99.99930614 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Population|Low|%,%,94.42252753,94.62538088,94.78354111,94.90615021,94.99975557,95.06808487,95.11701422,95.15535394,95.18604358,95.21260907 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Population|Low|%,%,60.09461071,59.89181517,59.80004868,59.77835507,59.80191813,59.85277508,59.92423972,60.00841083,60.10283034,60.20102351 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Population|Low|%,%,98.6725425,98.76607593,98.84639016,98.91441354,98.97128683,99.01837399,99.0569025,99.08871358,99.11531548,99.13785673 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Population|Low|%,%,36.67426533,36.11695994,35.78890874,35.59721119,35.51393718,35.50836053,35.54269338,35.60279769,35.68550825,35.78296189 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Population|Low|%,%,21.51802208,21.49247519,21.47587349,21.47177527,21.46577175,21.4588154,21.45212962,21.44639897,21.4439826,21.44353919 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Population|Low|%,%,99.81038677,99.82225211,99.83430545,99.84707108,99.85948453,99.8711539,99.88145988,99.89029607,99.89781322,99.90420072 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Population|Low|%,%,98.6475796,98.70050328,98.7454928,98.78315833,98.81509265,98.84176167,98.86347909,98.88099219,98.89541179,98.90716608 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Population|Low|%,%,99.37275885,99.46455982,99.54071542,99.59897803,99.6424038,99.67667048,99.70362312,99.72587022,99.74492335,99.76101789 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Population|Low|%,%,99.99961101,99.99963024,99.99964691,99.99966423,99.99968118,99.99969714,99.99971161,99.99972435,99.99973542,99.99974486 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Population|Low|%,%,14.72559409,14.23219959,13.90076164,13.66573865,13.50816889,13.44989604,13.52140592,13.72553044,13.98977311,14.25917747 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Population|Low|%,%,99.98280637,99.9834906,99.98409651,99.9846301,99.98510717,99.98551717,99.98585307,99.98611534,99.98634344,99.9865368 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Population|Low|%,%,1.1028825,1.111366,1.117903865,1.121230413,1.123810053,1.124454747,1.124098382,1.122676116,1.121477145,1.119828949 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Population|Low|%,%,36.61904721,36.49727766,36.40232091,36.32301502,36.2493616,36.18694462,36.13853067,36.09903658,36.06159729,36.02528228 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Population|Low|%,%,99.99996348,99.99996856,99.99997194,99.99997408,99.99997543,99.99997994,99.99998026,99.99998024,99.99998237,99.99998569 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Population|Low|%,%,99.9995403,99.99955379,99.99956558,99.99957489,99.99958256,99.99958976,99.99959614,99.99960201,99.99960672,99.99961123 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Population|Low|%,%,84.07679523,84.26239252,84.49078162,84.75096517,85.03480429,85.32491188,85.57038293,85.78153634,85.96284496,86.11571099 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Population|Low|%,%,92.39176674,92.40767968,92.46109141,92.51778674,92.58680725,92.67238985,92.75574505,92.84232104,92.92729315,92.99554357 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Population|Low|%,%,88.75829344,88.90545516,88.98271982,89.01779784,89.01579097,88.99053503,88.95615664,88.91328827,88.86509196,88.81404174 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Population|Low|%,%,99.99938524,99.99940449,99.99941302,99.99943015,99.99944363,99.99943521,99.99944547,99.99946751,99.99946617,99.99946481 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Population|Low|%,%,1.494698131,1.482287204,1.471156571,1.462031717,1.454532246,1.448208606,1.443013285,1.438673055,1.43479063,1.431477784 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Population|Low|%,%,85.50039726,85.68359577,85.83706921,85.96632963,86.08162733,86.17343614,86.25531591,86.32806218,86.39637124,86.4601386 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Population|Low|%,%,82.84667826,82.87151873,82.97653909,83.13631116,83.33234685,83.54657834,83.737107,83.88166902,83.97644855,84.02172641 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Population|Low|%,%,95.15419007,95.140608,95.14401894,95.15248202,95.16856247,95.18712931,95.20501429,95.22165932,95.23501872,95.24619755 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Population|Low|%,%,62.60612775,62.80225889,62.9939142,63.17745626,63.3502754,63.48832234,63.59969828,63.69050423,63.76562966,63.82806756 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Population|Low|%,%,79.97223264,81.06890109,82.12716972,83.06799563,83.84170551,84.4818677,85.00998572,85.43859952,85.79840789,86.113598 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Population|Low|%,%,8.976586997,9.002778722,9.007739541,8.996920405,8.973309476,8.935343133,8.886854555,8.836137458,8.792835297,8.762239945 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Population|Low|%,%,13.78177609,13.7859673,13.78592136,13.78297299,13.77759002,13.76995857,13.76459019,13.76090686,13.75903478,13.75908166 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Population|Low|%,%,99.99993285,99.99994133,99.99994773,99.99995288,99.99995701,99.99996004,99.99996243,99.99996412,99.99996548,99.99996662 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Population|Low|%,%,34.15895523,34.27850408,34.41923352,34.56807336,34.72285366,34.87830542,35.03144753,35.16292235,35.27597866,35.37456111 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Population|Low|%,%,99.95896168,99.95957746,99.9598614,99.95984219,99.95965982,99.9594874,99.95914001,99.95873261,99.95843691,99.9582232 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Population|Low|%,%,25.91445408,26.06450628,26.20517459,26.34089664,26.46595369,26.57182888,26.6646892,26.74904837,26.82627873,26.89308681 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Population|Low|%,%,61.33341046,61.38543104,61.45391015,61.53384868,61.62367581,61.71645739,61.80787588,61.89577713,61.97556671,62.04733262 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Population|Low|%,%,13.79446794,13.6177021,13.45372197,13.30167141,13.16537588,13.03936847,12.92649031,12.82601064,12.73804384,12.66078405 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Population|Low|%,%,43.59545148,43.23751662,42.90052507,42.59638221,42.30926466,42.02559174,41.77095488,41.55767822,41.38561098,41.24989776 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Population|Low|%,%,21.43304722,21.29415966,21.17077918,21.07014728,20.99263734,20.93374351,20.8919299,20.86543329,20.8466307,20.8305285 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Population|Low|%,%,35.86410076,35.70107339,35.5831167,35.50286303,35.46666819,35.47150094,35.5007227,35.53305744,35.55437357,35.55929102 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Population|Low|%,%,99.99988622,99.99990622,99.99991978,99.99992903,99.99993553,99.99993999,99.99994315,99.99994555,99.99994741,99.99994877 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Population|Low|%,%,99.24149717,99.25088273,99.25769728,99.26332001,99.26723668,99.26902578,99.26867295,99.26711038,99.26575459,99.26453198 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Population|Low|%,%,74.71074489,74.72222219,74.72477118,74.72042892,74.71577353,74.71008086,74.70178194,74.69062291,74.68182488,74.67470553 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Population|Low|%,%,0.313467443,0.288528512,0.267180756,0.248199946,0.231203894,0.216429929,0.203570728,0.192655724,0.183758118,0.17619036 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Population|Low|%,%,91.64878923,91.80962659,91.94693198,92.06785888,92.17198137,92.25599449,92.32486893,92.38244479,92.43191205,92.47469292 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Population|Low|%,%,6.737955614,6.852001179,6.923963356,6.963903143,6.984338471,6.992939618,6.993432457,6.988897765,6.980941657,6.971573941 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Population|Low|%,%,56.41836889,56.55636602,56.64111975,56.54084312,56.47109146,56.3254215,56.11139474,55.91081433,55.71532142,55.54054499 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Population|Low|%,%,3.226445648,3.099893095,2.978585807,2.862507886,2.750087232,2.641845445,2.54327804,2.457871271,2.386436101,2.327898838 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Population|Low|%,%,63.60926448,63.48185023,63.38138916,63.28633215,63.19020701,63.0956079,63.01985357,62.95823643,62.90612306,62.86175992 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Population|Low|%,%,32.71932826,33.09650065,33.38140005,33.58603299,33.72546581,33.81217531,33.86429908,33.89013349,33.90532913,33.91906669 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Population|Low|%,%,11.09121234,11.04406399,11.06068165,11.13467823,11.21897647,11.28254221,11.11793402,11.20021654,11.29190538,11.30680444 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Population|Low|%,%,27.97775342,27.8751302,27.75657154,27.63209382,27.50636467,27.38255839,27.26051236,27.1409307,27.03415809,26.94484139 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Population|Low|%,%,0.190222876,0.187307328,0.183926794,0.180823169,0.177979784,0.175183073,0.172463341,0.169934382,0.167602665,0.165407429 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Population|Low|%,%,99.9666925,99.96779187,99.96891829,99.96996668,99.97091447,99.97167633,99.97231756,99.97284712,99.97330491,99.97370066 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Population|Low|%,%,34.45435144,34.59171306,34.64700743,34.63545203,34.57058658,34.46371685,34.33757939,34.20080386,34.05829427,33.93468191 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Population|Low|%,%,34.37374963,34.45331578,34.45589022,34.46735012,34.50248799,34.49380126,34.4633404,34.43463027,34.40893141,34.38914444 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Population|Low|%,%,99.05467886,99.05380092,99.05020125,99.04579892,99.04079239,99.03477559,99.02975704,99.02625503,99.02348852,99.02094557 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Population|Low|%,%,99.99979937,99.99982248,99.99984262,99.99986084,99.99987625,99.99988952,99.99990065,99.99990981,99.9999177,99.99992422 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Population|Low|%,%,99.24653734,99.28302218,99.31325206,99.33604714,99.35305684,99.3664004,99.37643645,99.38070703,99.39093021,99.3925642 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Population|Low|%,%,0.178623371,0.165600114,0.164655347,0.164223598,0.16396258,0.163797799,0.163685023,0.163607917,0.163531971,0.163468829 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Population|Low|%,%,95.93986663,95.958637,95.98463502,96.01605451,96.05089731,96.085311,96.11785018,96.14712751,96.17287496,96.19448574 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Population|Low|%,%,4.137766072,4.136315177,4.128095968,4.113811584,4.094691238,4.069991986,4.043127644,4.021053228,4.003702402,3.986734058 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Population|Low|%,%,23.220605,22.92127396,22.50687385,22.20647609,22.00515942,21.86789274,21.75300625,21.62569883,21.49808993,21.33809036 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Population|Low|%,%,12.82762136,13.47883405,14.13537628,14.86519274,15.62297263,16.33100833,16.89694638,17.42126514,17.87889029,18.12821202 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Population|Low|%,%,99.99955976,99.99959327,99.99961948,99.99963946,99.99965485,99.99966629,99.99967524,99.9996825,99.99968829,99.99969318 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Population|Low|%,%,10.57196483,10.45782074,10.36554225,10.28641023,10.21271532,10.14776777,10.08993247,10.03505939,9.986803395,9.947479182 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Population|Low|%,%,99.51542704,99.57532542,99.62080753,99.65603267,99.68770915,99.71088174,99.731215,99.74949839,99.76202192,99.77488307 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Population|Low|%,%,98.09678332,98.2598609,98.38842945,98.51223664,98.62381109,98.71481704,98.78698024,98.83909519,98.87862436,98.91331587 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Population|Low|%,%,56.04994076,55.9924841,55.98874549,55.97464383,55.95828231,55.94739841,55.9249616,55.90685276,55.89600393,55.85951209 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Population|Low|%,%,99.89941132,99.90805959,99.91601021,99.92250224,99.92840398,99.93341912,99.93764376,99.94146391,99.94485794,99.94796659 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Population|Low|%,%,50.93885674,51.4942919,51.72013979,51.80553612,51.8238286,51.76556529,51.67130094,51.56173703,51.44003446,51.31242095 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Population|Low|%,%,99.76637711,99.77606432,99.78391491,99.78943402,99.79390185,99.79805984,99.80179288,99.80514661,99.80817701,99.8109441 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Population|Low|%,%,22.79916921,23.02575137,23.19524756,23.31139919,23.38776369,23.42795634,23.43965296,23.42640047,23.41327148,23.39930642 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Population|Low|%,%,37.21845171,38.38441954,39.28048537,39.91902231,40.46458766,40.77629259,41.10664818,41.39526866,41.65109356,41.88120676 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Population|Low|%,%,92.19255745,92.24991207,92.31324389,92.37608898,92.44209421,92.51230344,92.57582012,92.62827594,92.67055284,92.70706719 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Population|Low|%,%,61.87115043,61.98883655,62.06508289,62.09851424,62.10933562,62.11818708,62.12451804,62.12708566,62.1271681,62.12751866 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Population|Low|%,%,49.27958029,49.17794857,49.0688173,48.96326359,48.85818147,48.75389894,48.6554982,48.56711178,48.48900463,48.4198144 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Population|Low|%,%,99.97694398,99.97770238,99.9768691,99.97721945,99.97700336,99.9774329,99.97738767,99.97791923,99.97791744,99.97764133 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Population|Low|%,%,5.999161199,5.848906352,5.707935216,5.563057419,5.398437919,5.253002002,5.116787017,4.996756826,4.894104383,4.82003776 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Population|Low|%,%,90.01390566,90.08789143,90.14157359,90.18525477,90.21393208,90.23317126,90.24299753,90.24918201,90.25060855,90.25036288 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Population|Low|%,%,0.047230808,0.049092256,0.050086346,0.050566051,0.051016654,0.051804173,0.052198664,0.052907737,0.0530913,0.053378011 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Population|Low|%,%,0.420573957,0.413837999,0.410043326,0.408589962,0.410365907,0.415639212,0.423792819,0.434535526,0.44527316,0.454933338 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Population|Low|%,%,99.21345139,99.19670651,99.18136725,99.16775039,99.15655954,99.14627796,99.13813636,99.13248681,99.13064842,99.1331965 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Population|Low|%,%,5.797881228,5.902973762,5.969607724,6.015949794,6.047836986,6.059388658,6.043791615,6.001232351,5.948237299,5.895422785 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Population|Low|%,%,42.47738906,42.36893722,42.29526555,42.13301531,42.03767958,41.89127611,41.74426589,41.6614887,41.54126436,41.49836636 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Population|Low|%,%,28.29146173,28.27754279,28.28135182,28.2978719,28.32127404,28.34784865,28.3762268,28.40565867,28.4349726,28.46356687 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Population|Low|%,%,99.9994442,99.99946282,99.99947786,99.99948847,99.99949742,99.9995038,99.99950926,99.99951503,99.9995205,99.99952503 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Population|Low|%,%,4.330244195,4.432534212,4.510105071,4.563379661,4.614431747,4.652565314,4.67796608,4.690318386,4.688682657,4.686176034 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Population|Low|%,%,84.56592788,84.74382242,84.85025525,84.93777746,85.02496427,85.08453294,85.12009775,85.14547132,85.1541133,85.15344421 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Population|Low|%,%,1.825485337,1.823409166,1.818358167,1.810606534,1.799862096,1.788618498,1.777849294,1.767516491,1.758689828,1.752766321 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Population|Low|%,%,68.31410792,68.35361412,68.46905235,68.62321913,68.81879434,69.02721096,69.24675308,69.47478672,69.70707146,69.89870694 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Population|Low|%,%,9.904135048,10.14344878,10.40632927,10.65980675,10.88548283,11.08543522,11.26199292,11.41748276,11.55412275,11.67401013 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Population|Low|%,%,72.50729177,72.38552893,72.26232424,72.14878596,72.0473987,71.95362255,71.88020914,71.82286405,71.77719552,71.73890536 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Population|Low|%,%,99.64583376,99.65388918,99.66216758,99.67054959,99.67905827,99.68683014,99.69536153,99.70513532,99.71613164,99.72808691 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Population|Low|%,%,96.40036075,96.41734661,96.44000773,96.46627096,96.49381224,96.52171069,96.54737926,96.57058944,96.59100731,96.60878964 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Population|Low|%,%,99.95874168,99.95733304,99.95858294,99.95919574,99.95919778,99.95978234,99.96087923,99.96246306,99.96250536,99.96335453 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Population|Low|%,%,41.71851091,41.65905323,41.6269637,41.61324195,41.60989979,41.61271201,41.61292124,41.6085638,41.59867705,41.58439424 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Population|Low|%,%,0.207877058,0.193716012,0.183443924,0.1755653,0.169529307,0.164592127,0.160303163,0.156600406,0.153204489,0.150054585 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Population|Low|%,%,99.99819392,99.99826498,99.99832381,99.99837236,99.99841103,99.9984404,99.99846221,99.99848156,99.99849605,99.99850952 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Population|Low|%,%,16.74237824,16.72402496,16.71992971,16.72182561,16.73093378,16.74582784,16.76444973,16.78593603,16.80882185,16.83294122 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Population|Low|%,%,29.64697629,30.25081474,30.59280011,30.85030943,30.92511273,31.02344135,31.09262828,31.04506828,31.06174207,31.03441668 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,STP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TKM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LTU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KHM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ETH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PSE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BOL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BFA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GHA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SAU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CPV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GTM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BIH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NLD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,OMN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ALB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GAB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NZL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,YEM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,WSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SVK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LSO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VCT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TJK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AFG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LCA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CYP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PYF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LAO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CIV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ESH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CUB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ARM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ATG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UKR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BHR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TON,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,USA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VNM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BGR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ROU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MOZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KGZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KWT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LUX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ECU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,AUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BEL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,THA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HTI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,IRQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SLE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GEO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HKG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DNK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,POL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MAR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HRV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,CHE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BLZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TCD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,EST,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,URY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GNQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LBN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,UZB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,RWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TLS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,REU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BDI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TWN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NIC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,QAT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ITA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BTN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NPL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MLT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MDV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ISL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MWI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,TTO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ZWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,DEU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MTQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,KAZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,ERI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,NCL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MKD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,PRY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LVA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,JPN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SYR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,HND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MEX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,EGY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SGP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,SRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,BWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GRC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,LKA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GUF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,COM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,FSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,GLP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,MYT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p5,VIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Difference,days/yr,-9.961583529,-9.961583529,-9.961583529,-9.961583529,-9.961583529,-9.961583529,-9.961583529,-9.961583529,-9.961583529,-9.961583529 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Difference,days/yr,1.292715088,1.292715088,1.292715088,1.292715088,1.292715088,1.292715088,1.292715088,1.292715088,1.292715088,1.292715088 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Difference,days/yr,0.585990321,0.585990321,0.585990321,0.585990321,0.585990321,0.585990321,0.585990321,0.585990321,0.585990321,0.585990321 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Difference,days/yr,-0.272104294,-0.272104294,-0.272104294,-0.272104294,-0.272104294,-0.272104294,-0.272104294,-0.272104294,-0.272104294,-0.272104294 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Difference,days/yr,2.115783648,2.115783648,2.115783648,2.115783648,2.115783648,2.115783648,2.115783648,2.115783648,2.115783648,2.115783648 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Difference,days/yr,-9.512800578,-9.512800578,-9.512800578,-9.512800578,-9.512800578,-9.512800578,-9.512800578,-9.512800578,-9.512800578,-9.512800578 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Difference,days/yr,3.657448989,3.657448989,3.657448989,3.657448989,3.657448989,3.657448989,3.657448989,3.657448989,3.657448989,3.657448989 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Difference,days/yr,0.315226886,0.315226886,0.315226886,0.315226886,0.315226886,0.315226886,0.315226886,0.315226886,0.315226886,0.315226886 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Difference,days/yr,7.149589981,7.149589981,7.149589981,7.149589981,7.149589981,7.149589981,7.149589981,7.149589981,7.149589981,7.149589981 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Difference,days/yr,12.77021486,12.77021486,12.77021486,12.77021486,12.77021486,12.77021486,12.77021486,12.77021486,12.77021486,12.77021486 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Difference,days/yr,0.33867225,0.33867225,0.33867225,0.33867225,0.33867225,0.33867225,0.33867225,0.33867225,0.33867225,0.33867225 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Difference,days/yr,-2.040092017,-2.040092017,-2.040092017,-2.040092017,-2.040092017,-2.040092017,-2.040092017,-2.040092017,-2.040092017,-2.040092017 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Difference,days/yr,-3.592150939,-3.592150939,-3.592150939,-3.592150939,-3.592150939,-3.592150939,-3.592150939,-3.592150939,-3.592150939,-3.592150939 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Difference,days/yr,-5.082924131,-5.082924131,-5.082924131,-5.082924131,-5.082924131,-5.082924131,-5.082924131,-5.082924131,-5.082924131,-5.082924131 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Difference,days/yr,-0.834230916,-0.834230916,-0.834230916,-0.834230916,-0.834230916,-0.834230916,-0.834230916,-0.834230916,-0.834230916,-0.834230916 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Difference,days/yr,0.860415064,0.860415064,0.860415064,0.860415064,0.860415064,0.860415064,0.860415064,0.860415064,0.860415064,0.860415064 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Difference,days/yr,10.78953053,10.78953053,10.78953053,10.78953053,10.78953053,10.78953053,10.78953053,10.78953053,10.78953053,10.78953053 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Difference,days/yr,8.357393418,8.357393418,8.357393418,8.357393418,8.357393418,8.357393418,8.357393418,8.357393418,8.357393418,8.357393418 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Difference,days/yr,0.50067732,0.50067732,0.50067732,0.50067732,0.50067732,0.50067732,0.50067732,0.50067732,0.50067732,0.50067732 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Difference,days/yr,1.598785107,1.598785107,1.598785107,1.598785107,1.598785107,1.598785107,1.598785107,1.598785107,1.598785107,1.598785107 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Difference,days/yr,3.504184487,3.504184487,3.504184487,3.504184487,3.504184487,3.504184487,3.504184487,3.504184487,3.504184487,3.504184487 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Difference,days/yr,14.40781492,14.40781492,14.40781492,14.40781492,14.40781492,14.40781492,14.40781492,14.40781492,14.40781492,14.40781492 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Difference,days/yr,0.997675702,0.997675702,0.997675702,0.997675702,0.997675702,0.997675702,0.997675702,0.997675702,0.997675702,0.997675702 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Difference,days/yr,2.847070334,2.847070334,2.847070334,2.847070334,2.847070334,2.847070334,2.847070334,2.847070334,2.847070334,2.847070334 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Difference,days/yr,1.599882131,1.599882131,1.599882131,1.599882131,1.599882131,1.599882131,1.599882131,1.599882131,1.599882131,1.599882131 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Difference,days/yr,-5.717997109,-5.717997109,-5.717997109,-5.717997109,-5.717997109,-5.717997109,-5.717997109,-5.717997109,-5.717997109,-5.717997109 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Difference,days/yr,1.881748984,1.881748984,1.881748984,1.881748984,1.881748984,1.881748984,1.881748984,1.881748984,1.881748984,1.881748984 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Difference,days/yr,9.138842147,9.138842147,9.138842147,9.138842147,9.138842147,9.138842147,9.138842147,9.138842147,9.138842147,9.138842147 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Difference,days/yr,6.768235338,6.768235338,6.768235338,6.768235338,6.768235338,6.768235338,6.768235338,6.768235338,6.768235338,6.768235338 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Difference,days/yr,-2.222903155,-2.222903155,-2.222903155,-2.222903155,-2.222903155,-2.222903155,-2.222903155,-2.222903155,-2.222903155,-2.222903155 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Difference,days/yr,-8.458155509,-8.458155509,-8.458155509,-8.458155509,-8.458155509,-8.458155509,-8.458155509,-8.458155509,-8.458155509,-8.458155509 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Difference,days/yr,-2.93006403,-2.93006403,-2.93006403,-2.93006403,-2.93006403,-2.93006403,-2.93006403,-2.93006403,-2.93006403,-2.93006403 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Difference,days/yr,1.02029738,1.02029738,1.02029738,1.02029738,1.02029738,1.02029738,1.02029738,1.02029738,1.02029738,1.02029738 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Difference,days/yr,2.707385935,2.707385935,2.707385935,2.707385935,2.707385935,2.707385935,2.707385935,2.707385935,2.707385935,2.707385935 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Difference,days/yr,-3.957187043,-3.957187043,-3.957187043,-3.957187043,-3.957187043,-3.957187043,-3.957187043,-3.957187043,-3.957187043,-3.957187043 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Difference,days/yr,-0.433387661,-0.433387661,-0.433387661,-0.433387661,-0.433387661,-0.433387661,-0.433387661,-0.433387661,-0.433387661,-0.433387661 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Difference,days/yr,1.470731164,1.470731164,1.470731164,1.470731164,1.470731164,1.470731164,1.470731164,1.470731164,1.470731164,1.470731164 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Difference,days/yr,8.700951745,8.700951745,8.700951745,8.700951745,8.700951745,8.700951745,8.700951745,8.700951745,8.700951745,8.700951745 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Difference,days/yr,6.371704122,6.371704122,6.371704122,6.371704122,6.371704122,6.371704122,6.371704122,6.371704122,6.371704122,6.371704122 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Difference,days/yr,5.992066987,5.992066987,5.992066987,5.992066987,5.992066987,5.992066987,5.992066987,5.992066987,5.992066987,5.992066987 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Difference,days/yr,4.312922515,4.312922515,4.312922515,4.312922515,4.312922515,4.312922515,4.312922515,4.312922515,4.312922515,4.312922515 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Difference,days/yr,-3.444324088,-3.444324088,-3.444324088,-3.444324088,-3.444324088,-3.444324088,-3.444324088,-3.444324088,-3.444324088,-3.444324088 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Difference,days/yr,0.80111335,0.80111335,0.80111335,0.80111335,0.80111335,0.80111335,0.80111335,0.80111335,0.80111335,0.80111335 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Difference,days/yr,2.261906271,2.261906271,2.261906271,2.261906271,2.261906271,2.261906271,2.261906271,2.261906271,2.261906271,2.261906271 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Difference,days/yr,2.595084346,2.595084346,2.595084346,2.595084346,2.595084346,2.595084346,2.595084346,2.595084346,2.595084346,2.595084346 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Difference,days/yr,14.60295257,14.60295257,14.60295257,14.60295257,14.60295257,14.60295257,14.60295257,14.60295257,14.60295257,14.60295257 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Difference,days/yr,-2.385831071,-2.385831071,-2.385831071,-2.385831071,-2.385831071,-2.385831071,-2.385831071,-2.385831071,-2.385831071,-2.385831071 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Difference,days/yr,5.690342448,5.690342448,5.690342448,5.690342448,5.690342448,5.690342448,5.690342448,5.690342448,5.690342448,5.690342448 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Difference,days/yr,0.477994882,0.477994882,0.477994882,0.477994882,0.477994882,0.477994882,0.477994882,0.477994882,0.477994882,0.477994882 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Difference,days/yr,1.697826532,1.697826532,1.697826532,1.697826532,1.697826532,1.697826532,1.697826532,1.697826532,1.697826532,1.697826532 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Difference,days/yr,1.438048273,1.438048273,1.438048273,1.438048273,1.438048273,1.438048273,1.438048273,1.438048273,1.438048273,1.438048273 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Difference,days/yr,0.853295385,0.853295385,0.853295385,0.853295385,0.853295385,0.853295385,0.853295385,0.853295385,0.853295385,0.853295385 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Difference,days/yr,0.706242856,0.706242856,0.706242856,0.706242856,0.706242856,0.706242856,0.706242856,0.706242856,0.706242856,0.706242856 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Difference,days/yr,12.54393419,12.54393419,12.54393419,12.54393419,12.54393419,12.54393419,12.54393419,12.54393419,12.54393419,12.54393419 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Difference,days/yr,6.834271085,6.834271085,6.834271085,6.834271085,6.834271085,6.834271085,6.834271085,6.834271085,6.834271085,6.834271085 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Difference,days/yr,-6.096112865,-6.096112865,-6.096112865,-6.096112865,-6.096112865,-6.096112865,-6.096112865,-6.096112865,-6.096112865,-6.096112865 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Difference,days/yr,6.039004913,6.039004913,6.039004913,6.039004913,6.039004913,6.039004913,6.039004913,6.039004913,6.039004913,6.039004913 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Difference,days/yr,2.142631382,2.142631382,2.142631382,2.142631382,2.142631382,2.142631382,2.142631382,2.142631382,2.142631382,2.142631382 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Difference,days/yr,0.414343208,0.414343208,0.414343208,0.414343208,0.414343208,0.414343208,0.414343208,0.414343208,0.414343208,0.414343208 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Difference,days/yr,-2.182813761,-2.182813761,-2.182813761,-2.182813761,-2.182813761,-2.182813761,-2.182813761,-2.182813761,-2.182813761,-2.182813761 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Difference,days/yr,-2.719540607,-2.719540607,-2.719540607,-2.719540607,-2.719540607,-2.719540607,-2.719540607,-2.719540607,-2.719540607,-2.719540607 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Difference,days/yr,-3.282387604,-3.282387604,-3.282387604,-3.282387604,-3.282387604,-3.282387604,-3.282387604,-3.282387604,-3.282387604,-3.282387604 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Difference,days/yr,2.079287608,2.079287608,2.079287608,2.079287608,2.079287608,2.079287608,2.079287608,2.079287608,2.079287608,2.079287608 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Difference,days/yr,-2.074379882,-2.074379882,-2.074379882,-2.074379882,-2.074379882,-2.074379882,-2.074379882,-2.074379882,-2.074379882,-2.074379882 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Difference,days/yr,-5.580067033,-5.580067033,-5.580067033,-5.580067033,-5.580067033,-5.580067033,-5.580067033,-5.580067033,-5.580067033,-5.580067033 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Difference,days/yr,7.375690331,7.375690331,7.375690331,7.375690331,7.375690331,7.375690331,7.375690331,7.375690331,7.375690331,7.375690331 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Difference,days/yr,-2.427012694,-2.427012694,-2.427012694,-2.427012694,-2.427012694,-2.427012694,-2.427012694,-2.427012694,-2.427012694,-2.427012694 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Difference,days/yr,-6.762427826,-6.762427826,-6.762427826,-6.762427826,-6.762427826,-6.762427826,-6.762427826,-6.762427826,-6.762427826,-6.762427826 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Difference,days/yr,6.798343828,6.798343828,6.798343828,6.798343828,6.798343828,6.798343828,6.798343828,6.798343828,6.798343828,6.798343828 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Difference,days/yr,1.251253598,1.251253598,1.251253598,1.251253598,1.251253598,1.251253598,1.251253598,1.251253598,1.251253598,1.251253598 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Difference,days/yr,5.456160095,5.456160095,5.456160095,5.456160095,5.456160095,5.456160095,5.456160095,5.456160095,5.456160095,5.456160095 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Difference,days/yr,8.035332347,8.035332347,8.035332347,8.035332347,8.035332347,8.035332347,8.035332347,8.035332347,8.035332347,8.035332347 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Difference,days/yr,-0.513058423,-0.513058423,-0.513058423,-0.513058423,-0.513058423,-0.513058423,-0.513058423,-0.513058423,-0.513058423,-0.513058423 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Difference,days/yr,0.201114078,0.201114078,0.201114078,0.201114078,0.201114078,0.201114078,0.201114078,0.201114078,0.201114078,0.201114078 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Difference,days/yr,-2.933314816,-2.933314816,-2.933314816,-2.933314816,-2.933314816,-2.933314816,-2.933314816,-2.933314816,-2.933314816,-2.933314816 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Difference,days/yr,1.484128795,1.484128795,1.484128795,1.484128795,1.484128795,1.484128795,1.484128795,1.484128795,1.484128795,1.484128795 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Difference,days/yr,5.750856336,5.750856336,5.750856336,5.750856336,5.750856336,5.750856336,5.750856336,5.750856336,5.750856336,5.750856336 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Difference,days/yr,-4.008353999,-4.008353999,-4.008353999,-4.008353999,-4.008353999,-4.008353999,-4.008353999,-4.008353999,-4.008353999,-4.008353999 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Difference,days/yr,-1.360214394,-1.360214394,-1.360214394,-1.360214394,-1.360214394,-1.360214394,-1.360214394,-1.360214394,-1.360214394,-1.360214394 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Difference,days/yr,-2.551686109,-2.551686109,-2.551686109,-2.551686109,-2.551686109,-2.551686109,-2.551686109,-2.551686109,-2.551686109,-2.551686109 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Difference,days/yr,2.862496427,2.862496427,2.862496427,2.862496427,2.862496427,2.862496427,2.862496427,2.862496427,2.862496427,2.862496427 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Difference,days/yr,-1.314017486,-1.314017486,-1.314017486,-1.314017486,-1.314017486,-1.314017486,-1.314017486,-1.314017486,-1.314017486,-1.314017486 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Difference,days/yr,-9.159893342,-9.159893342,-9.159893342,-9.159893342,-9.159893342,-9.159893342,-9.159893342,-9.159893342,-9.159893342,-9.159893342 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Difference,days/yr,5.54631251,5.54631251,5.54631251,5.54631251,5.54631251,5.54631251,5.54631251,5.54631251,5.54631251,5.54631251 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Difference,days/yr,1.806672332,1.806672332,1.806672332,1.806672332,1.806672332,1.806672332,1.806672332,1.806672332,1.806672332,1.806672332 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Difference,days/yr,8.676060674,8.676060674,8.676060674,8.676060674,8.676060674,8.676060674,8.676060674,8.676060674,8.676060674,8.676060674 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Difference,days/yr,3.198150877,3.198150877,3.198150877,3.198150877,3.198150877,3.198150877,3.198150877,3.198150877,3.198150877,3.198150877 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Difference,days/yr,11.21288171,11.21288171,11.21288171,11.21288171,11.21288171,11.21288171,11.21288171,11.21288171,11.21288171,11.21288171 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Difference,days/yr,9.114748296,9.114748296,9.114748296,9.114748296,9.114748296,9.114748296,9.114748296,9.114748296,9.114748296,9.114748296 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Difference,days/yr,1.118714683,1.118714683,1.118714683,1.118714683,1.118714683,1.118714683,1.118714683,1.118714683,1.118714683,1.118714683 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Difference,days/yr,0.455721114,0.455721114,0.455721114,0.455721114,0.455721114,0.455721114,0.455721114,0.455721114,0.455721114,0.455721114 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Difference,days/yr,3.20482149,3.20482149,3.20482149,3.20482149,3.20482149,3.20482149,3.20482149,3.20482149,3.20482149,3.20482149 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Difference,days/yr,0.120748533,0.120748533,0.120748533,0.120748533,0.120748533,0.120748533,0.120748533,0.120748533,0.120748533,0.120748533 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Difference,days/yr,7.392138776,7.392138776,7.392138776,7.392138776,7.392138776,7.392138776,7.392138776,7.392138776,7.392138776,7.392138776 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Difference,days/yr,-8.667963383,-8.667963383,-8.667963383,-8.667963383,-8.667963383,-8.667963383,-8.667963383,-8.667963383,-8.667963383,-8.667963383 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Difference,days/yr,-2.108252073,-2.108252073,-2.108252073,-2.108252073,-2.108252073,-2.108252073,-2.108252073,-2.108252073,-2.108252073,-2.108252073 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Difference,days/yr,4.726621856,4.726621856,4.726621856,4.726621856,4.726621856,4.726621856,4.726621856,4.726621856,4.726621856,4.726621856 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Difference,days/yr,-3.771647055,-3.771647055,-3.771647055,-3.771647055,-3.771647055,-3.771647055,-3.771647055,-3.771647055,-3.771647055,-3.771647055 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Difference,days/yr,16.8091666,16.8091666,16.8091666,16.8091666,16.8091666,16.8091666,16.8091666,16.8091666,16.8091666,16.8091666 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Difference,days/yr,-1.51383946,-1.51383946,-1.51383946,-1.51383946,-1.51383946,-1.51383946,-1.51383946,-1.51383946,-1.51383946,-1.51383946 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Difference,days/yr,3.09694215,3.09694215,3.09694215,3.09694215,3.09694215,3.09694215,3.09694215,3.09694215,3.09694215,3.09694215 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Difference,days/yr,14.33052775,14.33052775,14.33052775,14.33052775,14.33052775,14.33052775,14.33052775,14.33052775,14.33052775,14.33052775 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Difference,days/yr,3.899154186,3.899154186,3.899154186,3.899154186,3.899154186,3.899154186,3.899154186,3.899154186,3.899154186,3.899154186 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Difference,days/yr,1.628989912,1.628989912,1.628989912,1.628989912,1.628989912,1.628989912,1.628989912,1.628989912,1.628989912,1.628989912 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Difference,days/yr,5.914341339,5.914341339,5.914341339,5.914341339,5.914341339,5.914341339,5.914341339,5.914341339,5.914341339,5.914341339 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Difference,days/yr,-4.722352409,-4.722352409,-4.722352409,-4.722352409,-4.722352409,-4.722352409,-4.722352409,-4.722352409,-4.722352409,-4.722352409 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Difference,days/yr,1.030517324,1.030517324,1.030517324,1.030517324,1.030517324,1.030517324,1.030517324,1.030517324,1.030517324,1.030517324 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Difference,days/yr,0.735007877,0.735007877,0.735007877,0.735007877,0.735007877,0.735007877,0.735007877,0.735007877,0.735007877,0.735007877 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Difference,days/yr,3.709701303,3.709701303,3.709701303,3.709701303,3.709701303,3.709701303,3.709701303,3.709701303,3.709701303,3.709701303 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Difference,days/yr,1.249063781,1.249063781,1.249063781,1.249063781,1.249063781,1.249063781,1.249063781,1.249063781,1.249063781,1.249063781 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Difference,days/yr,4.515186344,4.515186344,4.515186344,4.515186344,4.515186344,4.515186344,4.515186344,4.515186344,4.515186344,4.515186344 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Difference,days/yr,5.305204269,5.305204269,5.305204269,5.305204269,5.305204269,5.305204269,5.305204269,5.305204269,5.305204269,5.305204269 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Difference,days/yr,5.973764964,5.973764964,5.973764964,5.973764964,5.973764964,5.973764964,5.973764964,5.973764964,5.973764964,5.973764964 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Difference,days/yr,1.980998504,1.980998504,1.980998504,1.980998504,1.980998504,1.980998504,1.980998504,1.980998504,1.980998504,1.980998504 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Difference,days/yr,3.760861565,3.760861565,3.760861565,3.760861565,3.760861565,3.760861565,3.760861565,3.760861565,3.760861565,3.760861565 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Difference,days/yr,0.369823901,0.369823901,0.369823901,0.369823901,0.369823901,0.369823901,0.369823901,0.369823901,0.369823901,0.369823901 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Difference,days/yr,1.832996226,1.832996226,1.832996226,1.832996226,1.832996226,1.832996226,1.832996226,1.832996226,1.832996226,1.832996226 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Difference,days/yr,-1.393031234,-1.393031234,-1.393031234,-1.393031234,-1.393031234,-1.393031234,-1.393031234,-1.393031234,-1.393031234,-1.393031234 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Difference,days/yr,1.411239517,1.411239517,1.411239517,1.411239517,1.411239517,1.411239517,1.411239517,1.411239517,1.411239517,1.411239517 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Difference,days/yr,4.853842106,4.853842106,4.853842106,4.853842106,4.853842106,4.853842106,4.853842106,4.853842106,4.853842106,4.853842106 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Difference,days/yr,1.17892695,1.17892695,1.17892695,1.17892695,1.17892695,1.17892695,1.17892695,1.17892695,1.17892695,1.17892695 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Difference,days/yr,1.865048446,1.865048446,1.865048446,1.865048446,1.865048446,1.865048446,1.865048446,1.865048446,1.865048446,1.865048446 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Difference,days/yr,4.06025127,4.06025127,4.06025127,4.06025127,4.06025127,4.06025127,4.06025127,4.06025127,4.06025127,4.06025127 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Difference,days/yr,5.590482189,5.590482189,5.590482189,5.590482189,5.590482189,5.590482189,5.590482189,5.590482189,5.590482189,5.590482189 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Difference,days/yr,7.790672418,7.790672418,7.790672418,7.790672418,7.790672418,7.790672418,7.790672418,7.790672418,7.790672418,7.790672418 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Difference,days/yr,4.571392597,4.571392597,4.571392597,4.571392597,4.571392597,4.571392597,4.571392597,4.571392597,4.571392597,4.571392597 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Difference,days/yr,-21.44054199,-21.44054199,-21.44054199,-21.44054199,-21.44054199,-21.44054199,-21.44054199,-21.44054199,-21.44054199,-21.44054199 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Difference,days/yr,1.481364732,1.481364732,1.481364732,1.481364732,1.481364732,1.481364732,1.481364732,1.481364732,1.481364732,1.481364732 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Difference,days/yr,-0.133687977,-0.133687977,-0.133687977,-0.133687977,-0.133687977,-0.133687977,-0.133687977,-0.133687977,-0.133687977,-0.133687977 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Difference,days/yr,-0.275688236,-0.275688236,-0.275688236,-0.275688236,-0.275688236,-0.275688236,-0.275688236,-0.275688236,-0.275688236,-0.275688236 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Difference,days/yr,2.75920233,2.75920233,2.75920233,2.75920233,2.75920233,2.75920233,2.75920233,2.75920233,2.75920233,2.75920233 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Difference,days/yr,6.065882669,6.065882669,6.065882669,6.065882669,6.065882669,6.065882669,6.065882669,6.065882669,6.065882669,6.065882669 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Difference,days/yr,-4.024482358,-4.024482358,-4.024482358,-4.024482358,-4.024482358,-4.024482358,-4.024482358,-4.024482358,-4.024482358,-4.024482358 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Difference,days/yr,-2.752559181,-2.752559181,-2.752559181,-2.752559181,-2.752559181,-2.752559181,-2.752559181,-2.752559181,-2.752559181,-2.752559181 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Difference,days/yr,1.418820532,1.418820532,1.418820532,1.418820532,1.418820532,1.418820532,1.418820532,1.418820532,1.418820532,1.418820532 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Difference,days/yr,1.646358711,1.646358711,1.646358711,1.646358711,1.646358711,1.646358711,1.646358711,1.646358711,1.646358711,1.646358711 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Difference,days/yr,0.716828274,0.716828274,0.716828274,0.716828274,0.716828274,0.716828274,0.716828274,0.716828274,0.716828274,0.716828274 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Difference,days/yr,1.970522728,1.970522728,1.970522728,1.970522728,1.970522728,1.970522728,1.970522728,1.970522728,1.970522728,1.970522728 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Difference,days/yr,8.967465512,8.967465512,8.967465512,8.967465512,8.967465512,8.967465512,8.967465512,8.967465512,8.967465512,8.967465512 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Difference,days/yr,-2.840064601,-2.840064601,-2.840064601,-2.840064601,-2.840064601,-2.840064601,-2.840064601,-2.840064601,-2.840064601,-2.840064601 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Difference,days/yr,0.423467721,0.423467721,0.423467721,0.423467721,0.423467721,0.423467721,0.423467721,0.423467721,0.423467721,0.423467721 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Difference,days/yr,1.318093004,1.318093004,1.318093004,1.318093004,1.318093004,1.318093004,1.318093004,1.318093004,1.318093004,1.318093004 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Difference,days/yr,10.23131731,10.23131731,10.23131731,10.23131731,10.23131731,10.23131731,10.23131731,10.23131731,10.23131731,10.23131731 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Difference,days/yr,0.265849063,0.265849063,0.265849063,0.265849063,0.265849063,0.265849063,0.265849063,0.265849063,0.265849063,0.265849063 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Difference,days/yr,0.644570875,0.644570875,0.644570875,0.644570875,0.644570875,0.644570875,0.644570875,0.644570875,0.644570875,0.644570875 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Difference,days/yr,3.909469411,3.909469411,3.909469411,3.909469411,3.909469411,3.909469411,3.909469411,3.909469411,3.909469411,3.909469411 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Difference,days/yr,9.43938297,9.43938297,9.43938297,9.43938297,9.43938297,9.43938297,9.43938297,9.43938297,9.43938297,9.43938297 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Difference,days/yr,2.550383825,2.550383825,2.550383825,2.550383825,2.550383825,2.550383825,2.550383825,2.550383825,2.550383825,2.550383825 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Difference,days/yr,-3.105911886,-3.105911886,-3.105911886,-3.105911886,-3.105911886,-3.105911886,-3.105911886,-3.105911886,-3.105911886,-3.105911886 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Difference,days/yr,2.14567332,2.14567332,2.14567332,2.14567332,2.14567332,2.14567332,2.14567332,2.14567332,2.14567332,2.14567332 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Difference,days/yr,7.565869257,7.565869257,7.565869257,7.565869257,7.565869257,7.565869257,7.565869257,7.565869257,7.565869257,7.565869257 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Difference,days/yr,6.671115902,6.671115902,6.671115902,6.671115902,6.671115902,6.671115902,6.671115902,6.671115902,6.671115902,6.671115902 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Difference,days/yr,-3.574702079,-3.574702079,-3.574702079,-3.574702079,-3.574702079,-3.574702079,-3.574702079,-3.574702079,-3.574702079,-3.574702079 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Difference,days/yr,5.392258186,5.392258186,5.392258186,5.392258186,5.392258186,5.392258186,5.392258186,5.392258186,5.392258186,5.392258186 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Difference,days/yr,0.986553706,0.986553706,0.986553706,0.986553706,0.986553706,0.986553706,0.986553706,0.986553706,0.986553706,0.986553706 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Difference,days/yr,0.242455685,0.242455685,0.242455685,0.242455685,0.242455685,0.242455685,0.242455685,0.242455685,0.242455685,0.242455685 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Difference,days/yr,8.619479677,8.619479677,8.619479677,8.619479677,8.619479677,8.619479677,8.619479677,8.619479677,8.619479677,8.619479677 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Difference,days/yr,14.04822271,14.04822271,14.04822271,14.04822271,14.04822271,14.04822271,14.04822271,14.04822271,14.04822271,14.04822271 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Difference,days/yr,0.828742971,0.828742971,0.828742971,0.828742971,0.828742971,0.828742971,0.828742971,0.828742971,0.828742971,0.828742971 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Difference,days/yr,0.180890905,0.180890905,0.180890905,0.180890905,0.180890905,0.180890905,0.180890905,0.180890905,0.180890905,0.180890905 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Difference,days/yr,4.714998838,4.714998838,4.714998838,4.714998838,4.714998838,4.714998838,4.714998838,4.714998838,4.714998838,4.714998838 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Difference,days/yr,2.590532259,2.590532259,2.590532259,2.590532259,2.590532259,2.590532259,2.590532259,2.590532259,2.590532259,2.590532259 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Difference,days/yr,-1.34039114,-1.34039114,-1.34039114,-1.34039114,-1.34039114,-1.34039114,-1.34039114,-1.34039114,-1.34039114,-1.34039114 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Difference,days/yr,3.305564301,3.305564301,3.305564301,3.305564301,3.305564301,3.305564301,3.305564301,3.305564301,3.305564301,3.305564301 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Difference,days/yr,1.52511506,1.52511506,1.52511506,1.52511506,1.52511506,1.52511506,1.52511506,1.52511506,1.52511506,1.52511506 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Difference,days/yr,6.394035692,6.394035692,6.394035692,6.394035692,6.394035692,6.394035692,6.394035692,6.394035692,6.394035692,6.394035692 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Difference,days/yr,1.378312369,1.378312369,1.378312369,1.378312369,1.378312369,1.378312369,1.378312369,1.378312369,1.378312369,1.378312369 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Difference,days/yr,0.179012182,0.179012182,0.179012182,0.179012182,0.179012182,0.179012182,0.179012182,0.179012182,0.179012182,0.179012182 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Difference,days/yr,0.581654382,0.581654382,0.581654382,0.581654382,0.581654382,0.581654382,0.581654382,0.581654382,0.581654382,0.581654382 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Difference,days/yr,3.384666168,3.384666168,3.384666168,3.384666168,3.384666168,3.384666168,3.384666168,3.384666168,3.384666168,3.384666168 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Difference,days/yr,2.127123504,2.127123504,2.127123504,2.127123504,2.127123504,2.127123504,2.127123504,2.127123504,2.127123504,2.127123504 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Difference,days/yr,-0.63606033,-0.63606033,-0.63606033,-0.63606033,-0.63606033,-0.63606033,-0.63606033,-0.63606033,-0.63606033,-0.63606033 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Difference,days/yr,2.083576681,2.083576681,2.083576681,2.083576681,2.083576681,2.083576681,2.083576681,2.083576681,2.083576681,2.083576681 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Difference,days/yr,8.541265408,8.541265408,8.541265408,8.541265408,8.541265408,8.541265408,8.541265408,8.541265408,8.541265408,8.541265408 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Difference,days/yr,-2.21698139,-2.21698139,-2.21698139,-2.21698139,-2.21698139,-2.21698139,-2.21698139,-2.21698139,-2.21698139,-2.21698139 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Difference,days/yr,16.78173639,16.78173639,16.78173639,16.78173639,16.78173639,16.78173639,16.78173639,16.78173639,16.78173639,16.78173639 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Difference,days/yr,-1.595512174,-1.595512174,-1.595512174,-1.595512174,-1.595512174,-1.595512174,-1.595512174,-1.595512174,-1.595512174,-1.595512174 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Difference,days/yr,4.66759787,4.66759787,4.66759787,4.66759787,4.66759787,4.66759787,4.66759787,4.66759787,4.66759787,4.66759787 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Difference,days/yr,2.336132303,2.336132303,2.336132303,2.336132303,2.336132303,2.336132303,2.336132303,2.336132303,2.336132303,2.336132303 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Difference,days/yr,10.80628711,10.80628711,10.80628711,10.80628711,10.80628711,10.80628711,10.80628711,10.80628711,10.80628711,10.80628711 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Difference,days/yr,6.877112791,6.877112791,6.877112791,6.877112791,6.877112791,6.877112791,6.877112791,6.877112791,6.877112791,6.877112791 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Difference,days/yr,7.574925562,7.574925562,7.574925562,7.574925562,7.574925562,7.574925562,7.574925562,7.574925562,7.574925562,7.574925562 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Difference,days/yr,-0.499489434,-0.499489434,-0.499489434,-0.499489434,-0.499489434,-0.499489434,-0.499489434,-0.499489434,-0.499489434,-0.499489434 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Difference,days/yr,1.531373865,1.531373865,1.531373865,1.531373865,1.531373865,1.531373865,1.531373865,1.531373865,1.531373865,1.531373865 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Difference,days/yr,8.85158592,8.85158592,8.85158592,8.85158592,8.85158592,8.85158592,8.85158592,8.85158592,8.85158592,8.85158592 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Difference,days/yr,7.678305725,7.678305725,7.678305725,7.678305725,7.678305725,7.678305725,7.678305725,7.678305725,7.678305725,7.678305725 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Difference,days/yr,3.947763981,3.947763981,3.947763981,3.947763981,3.947763981,3.947763981,3.947763981,3.947763981,3.947763981,3.947763981 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Difference,days/yr,1.149269379,1.149269379,1.149269379,1.149269379,1.149269379,1.149269379,1.149269379,1.149269379,1.149269379,1.149269379 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Difference,days/yr,6.948528572,6.948528572,6.948528572,6.948528572,6.948528572,6.948528572,6.948528572,6.948528572,6.948528572,6.948528572 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Difference,days/yr,-4.683085193,-4.683085193,-4.683085193,-4.683085193,-4.683085193,-4.683085193,-4.683085193,-4.683085193,-4.683085193,-4.683085193 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Difference,days/yr,2.990333731,2.990333731,2.990333731,2.990333731,2.990333731,2.990333731,2.990333731,2.990333731,2.990333731,2.990333731 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Difference,days/yr,0.448259559,0.448259559,0.448259559,0.448259559,0.448259559,0.448259559,0.448259559,0.448259559,0.448259559,0.448259559 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Difference,days/yr,-0.012948272,-0.012948272,-0.012948272,-0.012948272,-0.012948272,-0.012948272,-0.012948272,-0.012948272,-0.012948272,-0.012948272 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Difference,days/yr,10.61976922,10.61976922,10.61976922,10.61976922,10.61976922,10.61976922,10.61976922,10.61976922,10.61976922,10.61976922 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Difference,days/yr,1.417584716,1.417584716,1.417584716,1.417584716,1.417584716,1.417584716,1.417584716,1.417584716,1.417584716,1.417584716 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Difference,days/yr,0.623919161,0.623919161,0.623919161,0.623919161,0.623919161,0.623919161,0.623919161,0.623919161,0.623919161,0.623919161 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Difference|Land area weighted,days/yr,-9.690977214,-9.690977214,-9.690977214,-9.690977214,-9.690977214,-9.690977214,-9.690977214,-9.690977214,-9.690977214,-9.690977214 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Difference|Land area weighted,days/yr,11.7521017,11.7521017,11.7521017,11.7521017,11.7521017,11.7521017,11.7521017,11.7521017,11.7521017,11.7521017 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Difference|Land area weighted,days/yr,0.738382466,0.738382466,0.738382466,0.738382466,0.738382466,0.738382466,0.738382466,0.738382466,0.738382466,0.738382466 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.370848378,-0.370848378,-0.370848378,-0.370848378,-0.370848378,-0.370848378,-0.370848378,-0.370848378,-0.370848378,-0.370848378 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Difference|Land area weighted,days/yr,3.060563065,3.060563065,3.060563065,3.060563065,3.060563065,3.060563065,3.060563065,3.060563065,3.060563065,3.060563065 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Difference|Land area weighted,days/yr,-11.05382825,-11.05382825,-11.05382825,-11.05382825,-11.05382825,-11.05382825,-11.05382825,-11.05382825,-11.05382825,-11.05382825 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Difference|Land area weighted,days/yr,8.140432752,8.140432752,8.140432752,8.140432752,8.140432752,8.140432752,8.140432752,8.140432752,8.140432752,8.140432752 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Difference|Land area weighted,days/yr,1.401785434,1.401785434,1.401785434,1.401785434,1.401785434,1.401785434,1.401785434,1.401785434,1.401785434,1.401785434 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Difference|Land area weighted,days/yr,8.128397715,8.128397715,8.128397715,8.128397715,8.128397715,8.128397715,8.128397715,8.128397715,8.128397715,8.128397715 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Difference|Land area weighted,days/yr,15.1149789,15.1149789,15.1149789,15.1149789,15.1149789,15.1149789,15.1149789,15.1149789,15.1149789,15.1149789 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Difference|Land area weighted,days/yr,2.597736578,2.597736578,2.597736578,2.597736578,2.597736578,2.597736578,2.597736578,2.597736578,2.597736578,2.597736578 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.749127214,-2.749127214,-2.749127214,-2.749127214,-2.749127214,-2.749127214,-2.749127214,-2.749127214,-2.749127214,-2.749127214 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Difference|Land area weighted,days/yr,-4.832268756,-4.832268756,-4.832268756,-4.832268756,-4.832268756,-4.832268756,-4.832268756,-4.832268756,-4.832268756,-4.832268756 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Difference|Land area weighted,days/yr,-5.748851852,-5.748851852,-5.748851852,-5.748851852,-5.748851852,-5.748851852,-5.748851852,-5.748851852,-5.748851852,-5.748851852 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Difference|Land area weighted,days/yr,-8.885562827,-8.885562827,-8.885562827,-8.885562827,-8.885562827,-8.885562827,-8.885562827,-8.885562827,-8.885562827,-8.885562827 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Difference|Land area weighted,days/yr,2.171180019,2.171180019,2.171180019,2.171180019,2.171180019,2.171180019,2.171180019,2.171180019,2.171180019,2.171180019 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Difference|Land area weighted,days/yr,16.44359903,16.44359903,16.44359903,16.44359903,16.44359903,16.44359903,16.44359903,16.44359903,16.44359903,16.44359903 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Difference|Land area weighted,days/yr,13.77233801,13.77233801,13.77233801,13.77233801,13.77233801,13.77233801,13.77233801,13.77233801,13.77233801,13.77233801 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Difference|Land area weighted,days/yr,0.687500981,0.687500981,0.687500981,0.687500981,0.687500981,0.687500981,0.687500981,0.687500981,0.687500981,0.687500981 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Difference|Land area weighted,days/yr,2.502570688,2.502570688,2.502570688,2.502570688,2.502570688,2.502570688,2.502570688,2.502570688,2.502570688,2.502570688 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Difference|Land area weighted,days/yr,4.941761454,4.941761454,4.941761454,4.941761454,4.941761454,4.941761454,4.941761454,4.941761454,4.941761454,4.941761454 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Difference|Land area weighted,days/yr,18.79485636,18.79485636,18.79485636,18.79485636,18.79485636,18.79485636,18.79485636,18.79485636,18.79485636,18.79485636 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Difference|Land area weighted,days/yr,1.596368857,1.596368857,1.596368857,1.596368857,1.596368857,1.596368857,1.596368857,1.596368857,1.596368857,1.596368857 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Difference|Land area weighted,days/yr,5.121103598,5.121103598,5.121103598,5.121103598,5.121103598,5.121103598,5.121103598,5.121103598,5.121103598,5.121103598 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Difference|Land area weighted,days/yr,4.249216888,4.249216888,4.249216888,4.249216888,4.249216888,4.249216888,4.249216888,4.249216888,4.249216888,4.249216888 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Difference|Land area weighted,days/yr,-7.61832442,-7.61832442,-7.61832442,-7.61832442,-7.61832442,-7.61832442,-7.61832442,-7.61832442,-7.61832442,-7.61832442 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Difference|Land area weighted,days/yr,2.220314378,2.220314378,2.220314378,2.220314378,2.220314378,2.220314378,2.220314378,2.220314378,2.220314378,2.220314378 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Difference|Land area weighted,days/yr,18.52026621,18.52026621,18.52026621,18.52026621,18.52026621,18.52026621,18.52026621,18.52026621,18.52026621,18.52026621 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Difference|Land area weighted,days/yr,8.813707215,8.813707215,8.813707215,8.813707215,8.813707215,8.813707215,8.813707215,8.813707215,8.813707215,8.813707215 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Difference|Land area weighted,days/yr,-3.020257658,-3.020257658,-3.020257658,-3.020257658,-3.020257658,-3.020257658,-3.020257658,-3.020257658,-3.020257658,-3.020257658 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Difference|Land area weighted,days/yr,-10.51285023,-10.51285023,-10.51285023,-10.51285023,-10.51285023,-10.51285023,-10.51285023,-10.51285023,-10.51285023,-10.51285023 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Difference|Land area weighted,days/yr,-3.620959809,-3.620959809,-3.620959809,-3.620959809,-3.620959809,-3.620959809,-3.620959809,-3.620959809,-3.620959809,-3.620959809 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Difference|Land area weighted,days/yr,3.886732739,3.886732739,3.886732739,3.886732739,3.886732739,3.886732739,3.886732739,3.886732739,3.886732739,3.886732739 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Difference|Land area weighted,days/yr,4.792203485,4.792203485,4.792203485,4.792203485,4.792203485,4.792203485,4.792203485,4.792203485,4.792203485,4.792203485 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Difference|Land area weighted,days/yr,-6.322261825,-6.322261825,-6.322261825,-6.322261825,-6.322261825,-6.322261825,-6.322261825,-6.322261825,-6.322261825,-6.322261825 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Difference|Land area weighted,days/yr,-5.100033465,-5.100033465,-5.100033465,-5.100033465,-5.100033465,-5.100033465,-5.100033465,-5.100033465,-5.100033465,-5.100033465 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Difference|Land area weighted,days/yr,1.731531697,1.731531697,1.731531697,1.731531697,1.731531697,1.731531697,1.731531697,1.731531697,1.731531697,1.731531697 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Difference|Land area weighted,days/yr,15.2301941,15.2301941,15.2301941,15.2301941,15.2301941,15.2301941,15.2301941,15.2301941,15.2301941,15.2301941 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Difference|Land area weighted,days/yr,7.852335977,7.852335977,7.852335977,7.852335977,7.852335977,7.852335977,7.852335977,7.852335977,7.852335977,7.852335977 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Difference|Land area weighted,days/yr,11.08619481,11.08619481,11.08619481,11.08619481,11.08619481,11.08619481,11.08619481,11.08619481,11.08619481,11.08619481 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Difference|Land area weighted,days/yr,43.12068812,43.12068812,43.12068812,43.12068812,43.12068812,43.12068812,43.12068812,43.12068812,43.12068812,43.12068812 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.172478918,-4.172478918,-4.172478918,-4.172478918,-4.172478918,-4.172478918,-4.172478918,-4.172478918,-4.172478918,-4.172478918 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Difference|Land area weighted,days/yr,1.291132014,1.291132014,1.291132014,1.291132014,1.291132014,1.291132014,1.291132014,1.291132014,1.291132014,1.291132014 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Difference|Land area weighted,days/yr,3.038328159,3.038328159,3.038328159,3.038328159,3.038328159,3.038328159,3.038328159,3.038328159,3.038328159,3.038328159 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Difference|Land area weighted,days/yr,4.254039451,4.254039451,4.254039451,4.254039451,4.254039451,4.254039451,4.254039451,4.254039451,4.254039451,4.254039451 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Difference|Land area weighted,days/yr,17.57664427,17.57664427,17.57664427,17.57664427,17.57664427,17.57664427,17.57664427,17.57664427,17.57664427,17.57664427 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Difference|Land area weighted,days/yr,-3.015369739,-3.015369739,-3.015369739,-3.015369739,-3.015369739,-3.015369739,-3.015369739,-3.015369739,-3.015369739,-3.015369739 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Difference|Land area weighted,days/yr,9.43069514,9.43069514,9.43069514,9.43069514,9.43069514,9.43069514,9.43069514,9.43069514,9.43069514,9.43069514 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Difference|Land area weighted,days/yr,0.563481771,0.563481771,0.563481771,0.563481771,0.563481771,0.563481771,0.563481771,0.563481771,0.563481771,0.563481771 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Difference|Land area weighted,days/yr,7.082930419,7.082930419,7.082930419,7.082930419,7.082930419,7.082930419,7.082930419,7.082930419,7.082930419,7.082930419 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Difference|Land area weighted,days/yr,11.04283036,11.04283036,11.04283036,11.04283036,11.04283036,11.04283036,11.04283036,11.04283036,11.04283036,11.04283036 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Difference|Land area weighted,days/yr,2.240342248,2.240342248,2.240342248,2.240342248,2.240342248,2.240342248,2.240342248,2.240342248,2.240342248,2.240342248 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Difference|Land area weighted,days/yr,7.296743849,7.296743849,7.296743849,7.296743849,7.296743849,7.296743849,7.296743849,7.296743849,7.296743849,7.296743849 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Difference|Land area weighted,days/yr,15.72956807,15.72956807,15.72956807,15.72956807,15.72956807,15.72956807,15.72956807,15.72956807,15.72956807,15.72956807 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Difference|Land area weighted,days/yr,7.943189464,7.943189464,7.943189464,7.943189464,7.943189464,7.943189464,7.943189464,7.943189464,7.943189464,7.943189464 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Difference|Land area weighted,days/yr,-7.690980786,-7.690980786,-7.690980786,-7.690980786,-7.690980786,-7.690980786,-7.690980786,-7.690980786,-7.690980786,-7.690980786 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Difference|Land area weighted,days/yr,7.147500847,7.147500847,7.147500847,7.147500847,7.147500847,7.147500847,7.147500847,7.147500847,7.147500847,7.147500847 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Difference|Land area weighted,days/yr,3.23357365,3.23357365,3.23357365,3.23357365,3.23357365,3.23357365,3.23357365,3.23357365,3.23357365,3.23357365 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Difference|Land area weighted,days/yr,7.317006901,7.317006901,7.317006901,7.317006901,7.317006901,7.317006901,7.317006901,7.317006901,7.317006901,7.317006901 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Difference|Land area weighted,days/yr,-3.192453861,-3.192453861,-3.192453861,-3.192453861,-3.192453861,-3.192453861,-3.192453861,-3.192453861,-3.192453861,-3.192453861 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Difference|Land area weighted,days/yr,-3.465417311,-3.465417311,-3.465417311,-3.465417311,-3.465417311,-3.465417311,-3.465417311,-3.465417311,-3.465417311,-3.465417311 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Difference|Land area weighted,days/yr,-4.94272695,-4.94272695,-4.94272695,-4.94272695,-4.94272695,-4.94272695,-4.94272695,-4.94272695,-4.94272695,-4.94272695 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Difference|Land area weighted,days/yr,2.731342417,2.731342417,2.731342417,2.731342417,2.731342417,2.731342417,2.731342417,2.731342417,2.731342417,2.731342417 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Difference|Land area weighted,days/yr,-3.850425585,-3.850425585,-3.850425585,-3.850425585,-3.850425585,-3.850425585,-3.850425585,-3.850425585,-3.850425585,-3.850425585 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Difference|Land area weighted,days/yr,-7.38164367,-7.38164367,-7.38164367,-7.38164367,-7.38164367,-7.38164367,-7.38164367,-7.38164367,-7.38164367,-7.38164367 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Difference|Land area weighted,days/yr,19.46352618,19.46352618,19.46352618,19.46352618,19.46352618,19.46352618,19.46352618,19.46352618,19.46352618,19.46352618 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Difference|Land area weighted,days/yr,-4.409698804,-4.409698804,-4.409698804,-4.409698804,-4.409698804,-4.409698804,-4.409698804,-4.409698804,-4.409698804,-4.409698804 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Difference|Land area weighted,days/yr,-6.468991431,-6.468991431,-6.468991431,-6.468991431,-6.468991431,-6.468991431,-6.468991431,-6.468991431,-6.468991431,-6.468991431 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Difference|Land area weighted,days/yr,14.24777276,14.24777276,14.24777276,14.24777276,14.24777276,14.24777276,14.24777276,14.24777276,14.24777276,14.24777276 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Difference|Land area weighted,days/yr,31.28111097,31.28111097,31.28111097,31.28111097,31.28111097,31.28111097,31.28111097,31.28111097,31.28111097,31.28111097 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Difference|Land area weighted,days/yr,9.826235084,9.826235084,9.826235084,9.826235084,9.826235084,9.826235084,9.826235084,9.826235084,9.826235084,9.826235084 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Difference|Land area weighted,days/yr,10.04834506,10.04834506,10.04834506,10.04834506,10.04834506,10.04834506,10.04834506,10.04834506,10.04834506,10.04834506 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Difference|Land area weighted,days/yr,-6.624081539,-6.624081539,-6.624081539,-6.624081539,-6.624081539,-6.624081539,-6.624081539,-6.624081539,-6.624081539,-6.624081539 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Difference|Land area weighted,days/yr,5.019776542,5.019776542,5.019776542,5.019776542,5.019776542,5.019776542,5.019776542,5.019776542,5.019776542,5.019776542 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.622814193,-3.622814193,-3.622814193,-3.622814193,-3.622814193,-3.622814193,-3.622814193,-3.622814193,-3.622814193,-3.622814193 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Difference|Land area weighted,days/yr,1.552346599,1.552346599,1.552346599,1.552346599,1.552346599,1.552346599,1.552346599,1.552346599,1.552346599,1.552346599 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Difference|Land area weighted,days/yr,8.935752069,8.935752069,8.935752069,8.935752069,8.935752069,8.935752069,8.935752069,8.935752069,8.935752069,8.935752069 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Difference|Land area weighted,days/yr,-5.082647553,-5.082647553,-5.082647553,-5.082647553,-5.082647553,-5.082647553,-5.082647553,-5.082647553,-5.082647553,-5.082647553 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Difference|Land area weighted,days/yr,0.209368389,0.209368389,0.209368389,0.209368389,0.209368389,0.209368389,0.209368389,0.209368389,0.209368389,0.209368389 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Difference|Land area weighted,days/yr,-2.829391463,-2.829391463,-2.829391463,-2.829391463,-2.829391463,-2.829391463,-2.829391463,-2.829391463,-2.829391463,-2.829391463 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Difference|Land area weighted,days/yr,4.493038797,4.493038797,4.493038797,4.493038797,4.493038797,4.493038797,4.493038797,4.493038797,4.493038797,4.493038797 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.520560243,-1.520560243,-1.520560243,-1.520560243,-1.520560243,-1.520560243,-1.520560243,-1.520560243,-1.520560243,-1.520560243 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Difference|Land area weighted,days/yr,-9.325844397,-9.325844397,-9.325844397,-9.325844397,-9.325844397,-9.325844397,-9.325844397,-9.325844397,-9.325844397,-9.325844397 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Difference|Land area weighted,days/yr,8.809789451,8.809789451,8.809789451,8.809789451,8.809789451,8.809789451,8.809789451,8.809789451,8.809789451,8.809789451 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Difference|Land area weighted,days/yr,12.19470195,12.19470195,12.19470195,12.19470195,12.19470195,12.19470195,12.19470195,12.19470195,12.19470195,12.19470195 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Difference|Land area weighted,days/yr,11.12537183,11.12537183,11.12537183,11.12537183,11.12537183,11.12537183,11.12537183,11.12537183,11.12537183,11.12537183 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Difference|Land area weighted,days/yr,3.726007016,3.726007016,3.726007016,3.726007016,3.726007016,3.726007016,3.726007016,3.726007016,3.726007016,3.726007016 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Difference|Land area weighted,days/yr,19.31724051,19.31724051,19.31724051,19.31724051,19.31724051,19.31724051,19.31724051,19.31724051,19.31724051,19.31724051 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Difference|Land area weighted,days/yr,10.75830275,10.75830275,10.75830275,10.75830275,10.75830275,10.75830275,10.75830275,10.75830275,10.75830275,10.75830275 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Difference|Land area weighted,days/yr,3.339439401,3.339439401,3.339439401,3.339439401,3.339439401,3.339439401,3.339439401,3.339439401,3.339439401,3.339439401 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Difference|Land area weighted,days/yr,1.724414933,1.724414933,1.724414933,1.724414933,1.724414933,1.724414933,1.724414933,1.724414933,1.724414933,1.724414933 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Difference|Land area weighted,days/yr,4.839497333,4.839497333,4.839497333,4.839497333,4.839497333,4.839497333,4.839497333,4.839497333,4.839497333,4.839497333 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Difference|Land area weighted,days/yr,0.194690295,0.194690295,0.194690295,0.194690295,0.194690295,0.194690295,0.194690295,0.194690295,0.194690295,0.194690295 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Difference|Land area weighted,days/yr,9.374254005,9.374254005,9.374254005,9.374254005,9.374254005,9.374254005,9.374254005,9.374254005,9.374254005,9.374254005 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Difference|Land area weighted,days/yr,-10.92097685,-10.92097685,-10.92097685,-10.92097685,-10.92097685,-10.92097685,-10.92097685,-10.92097685,-10.92097685,-10.92097685 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Difference|Land area weighted,days/yr,-2.960172086,-2.960172086,-2.960172086,-2.960172086,-2.960172086,-2.960172086,-2.960172086,-2.960172086,-2.960172086,-2.960172086 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Difference|Land area weighted,days/yr,7.129505322,7.129505322,7.129505322,7.129505322,7.129505322,7.129505322,7.129505322,7.129505322,7.129505322,7.129505322 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Difference|Land area weighted,days/yr,-4.372810904,-4.372810904,-4.372810904,-4.372810904,-4.372810904,-4.372810904,-4.372810904,-4.372810904,-4.372810904,-4.372810904 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Difference|Land area weighted,days/yr,18.00550109,18.00550109,18.00550109,18.00550109,18.00550109,18.00550109,18.00550109,18.00550109,18.00550109,18.00550109 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Difference|Land area weighted,days/yr,-3.190299836,-3.190299836,-3.190299836,-3.190299836,-3.190299836,-3.190299836,-3.190299836,-3.190299836,-3.190299836,-3.190299836 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Difference|Land area weighted,days/yr,5.573557245,5.573557245,5.573557245,5.573557245,5.573557245,5.573557245,5.573557245,5.573557245,5.573557245,5.573557245 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Difference|Land area weighted,days/yr,20.40275941,20.40275941,20.40275941,20.40275941,20.40275941,20.40275941,20.40275941,20.40275941,20.40275941,20.40275941 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Difference|Land area weighted,days/yr,7.091374784,7.091374784,7.091374784,7.091374784,7.091374784,7.091374784,7.091374784,7.091374784,7.091374784,7.091374784 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Difference|Land area weighted,days/yr,8.656423032,8.656423032,8.656423032,8.656423032,8.656423032,8.656423032,8.656423032,8.656423032,8.656423032,8.656423032 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Difference|Land area weighted,days/yr,9.420610193,9.420610193,9.420610193,9.420610193,9.420610193,9.420610193,9.420610193,9.420610193,9.420610193,9.420610193 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Difference|Land area weighted,days/yr,-5.555749881,-5.555749881,-5.555749881,-5.555749881,-5.555749881,-5.555749881,-5.555749881,-5.555749881,-5.555749881,-5.555749881 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Difference|Land area weighted,days/yr,1.406367035,1.406367035,1.406367035,1.406367035,1.406367035,1.406367035,1.406367035,1.406367035,1.406367035,1.406367035 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Difference|Land area weighted,days/yr,1.118358865,1.118358865,1.118358865,1.118358865,1.118358865,1.118358865,1.118358865,1.118358865,1.118358865,1.118358865 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Difference|Land area weighted,days/yr,3.921469294,3.921469294,3.921469294,3.921469294,3.921469294,3.921469294,3.921469294,3.921469294,3.921469294,3.921469294 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Difference|Land area weighted,days/yr,1.252096423,1.252096423,1.252096423,1.252096423,1.252096423,1.252096423,1.252096423,1.252096423,1.252096423,1.252096423 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Difference|Land area weighted,days/yr,4.738379356,4.738379356,4.738379356,4.738379356,4.738379356,4.738379356,4.738379356,4.738379356,4.738379356,4.738379356 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Difference|Land area weighted,days/yr,9.970666564,9.970666564,9.970666564,9.970666564,9.970666564,9.970666564,9.970666564,9.970666564,9.970666564,9.970666564 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Difference|Land area weighted,days/yr,9.152291659,9.152291659,9.152291659,9.152291659,9.152291659,9.152291659,9.152291659,9.152291659,9.152291659,9.152291659 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Difference|Land area weighted,days/yr,6.647921886,6.647921886,6.647921886,6.647921886,6.647921886,6.647921886,6.647921886,6.647921886,6.647921886,6.647921886 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Difference|Land area weighted,days/yr,6.552684972,6.552684972,6.552684972,6.552684972,6.552684972,6.552684972,6.552684972,6.552684972,6.552684972,6.552684972 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Difference|Land area weighted,days/yr,0.516078891,0.516078891,0.516078891,0.516078891,0.516078891,0.516078891,0.516078891,0.516078891,0.516078891,0.516078891 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Difference|Land area weighted,days/yr,3.925123772,3.925123772,3.925123772,3.925123772,3.925123772,3.925123772,3.925123772,3.925123772,3.925123772,3.925123772 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Difference|Land area weighted,days/yr,-1.746452364,-1.746452364,-1.746452364,-1.746452364,-1.746452364,-1.746452364,-1.746452364,-1.746452364,-1.746452364,-1.746452364 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Difference|Land area weighted,days/yr,2.289277238,2.289277238,2.289277238,2.289277238,2.289277238,2.289277238,2.289277238,2.289277238,2.289277238,2.289277238 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Difference|Land area weighted,days/yr,8.123796201,8.123796201,8.123796201,8.123796201,8.123796201,8.123796201,8.123796201,8.123796201,8.123796201,8.123796201 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Difference|Land area weighted,days/yr,11.79233716,11.79233716,11.79233716,11.79233716,11.79233716,11.79233716,11.79233716,11.79233716,11.79233716,11.79233716 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Difference|Land area weighted,days/yr,3.985112134,3.985112134,3.985112134,3.985112134,3.985112134,3.985112134,3.985112134,3.985112134,3.985112134,3.985112134 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Difference|Land area weighted,days/yr,4.990564237,4.990564237,4.990564237,4.990564237,4.990564237,4.990564237,4.990564237,4.990564237,4.990564237,4.990564237 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Difference|Land area weighted,days/yr,9.876712519,9.876712519,9.876712519,9.876712519,9.876712519,9.876712519,9.876712519,9.876712519,9.876712519,9.876712519 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Difference|Land area weighted,days/yr,9.48289429,9.48289429,9.48289429,9.48289429,9.48289429,9.48289429,9.48289429,9.48289429,9.48289429,9.48289429 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Difference|Land area weighted,days/yr,10.3426585,10.3426585,10.3426585,10.3426585,10.3426585,10.3426585,10.3426585,10.3426585,10.3426585,10.3426585 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Difference|Land area weighted,days/yr,-24.14503455,-24.14503455,-24.14503455,-24.14503455,-24.14503455,-24.14503455,-24.14503455,-24.14503455,-24.14503455,-24.14503455 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Difference|Land area weighted,days/yr,3.187901074,3.187901074,3.187901074,3.187901074,3.187901074,3.187901074,3.187901074,3.187901074,3.187901074,3.187901074 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Difference|Land area weighted,days/yr,-6.205552282,-6.205552282,-6.205552282,-6.205552282,-6.205552282,-6.205552282,-6.205552282,-6.205552282,-6.205552282,-6.205552282 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Difference|Land area weighted,days/yr,-0.532178283,-0.532178283,-0.532178283,-0.532178283,-0.532178283,-0.532178283,-0.532178283,-0.532178283,-0.532178283,-0.532178283 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Difference|Land area weighted,days/yr,25.08797487,25.08797487,25.08797487,25.08797487,25.08797487,25.08797487,25.08797487,25.08797487,25.08797487,25.08797487 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Difference|Land area weighted,days/yr,13.76664135,13.76664135,13.76664135,13.76664135,13.76664135,13.76664135,13.76664135,13.76664135,13.76664135,13.76664135 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Difference|Land area weighted,days/yr,-4.500526041,-4.500526041,-4.500526041,-4.500526041,-4.500526041,-4.500526041,-4.500526041,-4.500526041,-4.500526041,-4.500526041 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Difference|Land area weighted,days/yr,-4.894206587,-4.894206587,-4.894206587,-4.894206587,-4.894206587,-4.894206587,-4.894206587,-4.894206587,-4.894206587,-4.894206587 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Difference|Land area weighted,days/yr,1.858363363,1.858363363,1.858363363,1.858363363,1.858363363,1.858363363,1.858363363,1.858363363,1.858363363,1.858363363 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Difference|Land area weighted,days/yr,3.612450027,3.612450027,3.612450027,3.612450027,3.612450027,3.612450027,3.612450027,3.612450027,3.612450027,3.612450027 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Difference|Land area weighted,days/yr,1.781007101,1.781007101,1.781007101,1.781007101,1.781007101,1.781007101,1.781007101,1.781007101,1.781007101,1.781007101 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Difference|Land area weighted,days/yr,2.59528824,2.59528824,2.59528824,2.59528824,2.59528824,2.59528824,2.59528824,2.59528824,2.59528824,2.59528824 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Difference|Land area weighted,days/yr,13.34406125,13.34406125,13.34406125,13.34406125,13.34406125,13.34406125,13.34406125,13.34406125,13.34406125,13.34406125 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Difference|Land area weighted,days/yr,-6.606607222,-6.606607222,-6.606607222,-6.606607222,-6.606607222,-6.606607222,-6.606607222,-6.606607222,-6.606607222,-6.606607222 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Difference|Land area weighted,days/yr,0.830775337,0.830775337,0.830775337,0.830775337,0.830775337,0.830775337,0.830775337,0.830775337,0.830775337,0.830775337 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Difference|Land area weighted,days/yr,3.519929828,3.519929828,3.519929828,3.519929828,3.519929828,3.519929828,3.519929828,3.519929828,3.519929828,3.519929828 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Difference|Land area weighted,days/yr,12.22628953,12.22628953,12.22628953,12.22628953,12.22628953,12.22628953,12.22628953,12.22628953,12.22628953,12.22628953 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Difference|Land area weighted,days/yr,1.221557916,1.221557916,1.221557916,1.221557916,1.221557916,1.221557916,1.221557916,1.221557916,1.221557916,1.221557916 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Difference|Land area weighted,days/yr,1.320884201,1.320884201,1.320884201,1.320884201,1.320884201,1.320884201,1.320884201,1.320884201,1.320884201,1.320884201 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Difference|Land area weighted,days/yr,6.741884525,6.741884525,6.741884525,6.741884525,6.741884525,6.741884525,6.741884525,6.741884525,6.741884525,6.741884525 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Difference|Land area weighted,days/yr,14.3053983,14.3053983,14.3053983,14.3053983,14.3053983,14.3053983,14.3053983,14.3053983,14.3053983,14.3053983 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Difference|Land area weighted,days/yr,39.23667398,39.23667398,39.23667398,39.23667398,39.23667398,39.23667398,39.23667398,39.23667398,39.23667398,39.23667398 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Difference|Land area weighted,days/yr,-7.961638562,-7.961638562,-7.961638562,-7.961638562,-7.961638562,-7.961638562,-7.961638562,-7.961638562,-7.961638562,-7.961638562 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Difference|Land area weighted,days/yr,2.399647261,2.399647261,2.399647261,2.399647261,2.399647261,2.399647261,2.399647261,2.399647261,2.399647261,2.399647261 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Difference|Land area weighted,days/yr,12.48490814,12.48490814,12.48490814,12.48490814,12.48490814,12.48490814,12.48490814,12.48490814,12.48490814,12.48490814 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Difference|Land area weighted,days/yr,12.93578137,12.93578137,12.93578137,12.93578137,12.93578137,12.93578137,12.93578137,12.93578137,12.93578137,12.93578137 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Difference|Land area weighted,days/yr,-3.985677866,-3.985677866,-3.985677866,-3.985677866,-3.985677866,-3.985677866,-3.985677866,-3.985677866,-3.985677866,-3.985677866 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Difference|Land area weighted,days/yr,8.139385272,8.139385272,8.139385272,8.139385272,8.139385272,8.139385272,8.139385272,8.139385272,8.139385272,8.139385272 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Difference|Land area weighted,days/yr,17.93734052,17.93734052,17.93734052,17.93734052,17.93734052,17.93734052,17.93734052,17.93734052,17.93734052,17.93734052 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Difference|Land area weighted,days/yr,12.12097522,12.12097522,12.12097522,12.12097522,12.12097522,12.12097522,12.12097522,12.12097522,12.12097522,12.12097522 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Difference|Land area weighted,days/yr,12.11080759,12.11080759,12.11080759,12.11080759,12.11080759,12.11080759,12.11080759,12.11080759,12.11080759,12.11080759 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Difference|Land area weighted,days/yr,17.29848349,17.29848349,17.29848349,17.29848349,17.29848349,17.29848349,17.29848349,17.29848349,17.29848349,17.29848349 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Difference|Land area weighted,days/yr,2.121512555,2.121512555,2.121512555,2.121512555,2.121512555,2.121512555,2.121512555,2.121512555,2.121512555,2.121512555 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Difference|Land area weighted,days/yr,0.296544597,0.296544597,0.296544597,0.296544597,0.296544597,0.296544597,0.296544597,0.296544597,0.296544597,0.296544597 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Difference|Land area weighted,days/yr,5.728991733,5.728991733,5.728991733,5.728991733,5.728991733,5.728991733,5.728991733,5.728991733,5.728991733,5.728991733 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Difference|Land area weighted,days/yr,3.85662161,3.85662161,3.85662161,3.85662161,3.85662161,3.85662161,3.85662161,3.85662161,3.85662161,3.85662161 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Difference|Land area weighted,days/yr,-2.007802971,-2.007802971,-2.007802971,-2.007802971,-2.007802971,-2.007802971,-2.007802971,-2.007802971,-2.007802971,-2.007802971 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Difference|Land area weighted,days/yr,5.653621137,5.653621137,5.653621137,5.653621137,5.653621137,5.653621137,5.653621137,5.653621137,5.653621137,5.653621137 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Difference|Land area weighted,days/yr,4.820508607,4.820508607,4.820508607,4.820508607,4.820508607,4.820508607,4.820508607,4.820508607,4.820508607,4.820508607 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Difference|Land area weighted,days/yr,7.998001547,7.998001547,7.998001547,7.998001547,7.998001547,7.998001547,7.998001547,7.998001547,7.998001547,7.998001547 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Difference|Land area weighted,days/yr,1.727621483,1.727621483,1.727621483,1.727621483,1.727621483,1.727621483,1.727621483,1.727621483,1.727621483,1.727621483 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Difference|Land area weighted,days/yr,0.890752925,0.890752925,0.890752925,0.890752925,0.890752925,0.890752925,0.890752925,0.890752925,0.890752925,0.890752925 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Difference|Land area weighted,days/yr,5.694660014,5.694660014,5.694660014,5.694660014,5.694660014,5.694660014,5.694660014,5.694660014,5.694660014,5.694660014 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Difference|Land area weighted,days/yr,3.915983279,3.915983279,3.915983279,3.915983279,3.915983279,3.915983279,3.915983279,3.915983279,3.915983279,3.915983279 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Difference|Land area weighted,days/yr,4.154573374,4.154573374,4.154573374,4.154573374,4.154573374,4.154573374,4.154573374,4.154573374,4.154573374,4.154573374 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Difference|Land area weighted,days/yr,-1.142448722,-1.142448722,-1.142448722,-1.142448722,-1.142448722,-1.142448722,-1.142448722,-1.142448722,-1.142448722,-1.142448722 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Difference|Land area weighted,days/yr,6.262373777,6.262373777,6.262373777,6.262373777,6.262373777,6.262373777,6.262373777,6.262373777,6.262373777,6.262373777 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Difference|Land area weighted,days/yr,16.36832131,16.36832131,16.36832131,16.36832131,16.36832131,16.36832131,16.36832131,16.36832131,16.36832131,16.36832131 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Difference|Land area weighted,days/yr,-3.344403093,-3.344403093,-3.344403093,-3.344403093,-3.344403093,-3.344403093,-3.344403093,-3.344403093,-3.344403093,-3.344403093 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Difference|Land area weighted,days/yr,21.16150955,21.16150955,21.16150955,21.16150955,21.16150955,21.16150955,21.16150955,21.16150955,21.16150955,21.16150955 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Difference|Land area weighted,days/yr,-2.537987369,-2.537987369,-2.537987369,-2.537987369,-2.537987369,-2.537987369,-2.537987369,-2.537987369,-2.537987369,-2.537987369 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Difference|Land area weighted,days/yr,7.881915446,7.881915446,7.881915446,7.881915446,7.881915446,7.881915446,7.881915446,7.881915446,7.881915446,7.881915446 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Difference|Land area weighted,days/yr,3.193146468,3.193146468,3.193146468,3.193146468,3.193146468,3.193146468,3.193146468,3.193146468,3.193146468,3.193146468 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Difference|Land area weighted,days/yr,16.32110179,16.32110179,16.32110179,16.32110179,16.32110179,16.32110179,16.32110179,16.32110179,16.32110179,16.32110179 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Difference|Land area weighted,days/yr,9.018335185,9.018335185,9.018335185,9.018335185,9.018335185,9.018335185,9.018335185,9.018335185,9.018335185,9.018335185 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Difference|Land area weighted,days/yr,9.14703387,9.14703387,9.14703387,9.14703387,9.14703387,9.14703387,9.14703387,9.14703387,9.14703387,9.14703387 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Difference|Land area weighted,days/yr,-0.584101714,-0.584101714,-0.584101714,-0.584101714,-0.584101714,-0.584101714,-0.584101714,-0.584101714,-0.584101714,-0.584101714 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Difference|Land area weighted,days/yr,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Difference|Land area weighted,days/yr,13.65832345,13.65832345,13.65832345,13.65832345,13.65832345,13.65832345,13.65832345,13.65832345,13.65832345,13.65832345 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Difference|Land area weighted,days/yr,9.34822173,9.34822173,9.34822173,9.34822173,9.34822173,9.34822173,9.34822173,9.34822173,9.34822173,9.34822173 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Difference|Land area weighted,days/yr,6.308947229,6.308947229,6.308947229,6.308947229,6.308947229,6.308947229,6.308947229,6.308947229,6.308947229,6.308947229 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Difference|Land area weighted,days/yr,4.395574025,4.395574025,4.395574025,4.395574025,4.395574025,4.395574025,4.395574025,4.395574025,4.395574025,4.395574025 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Difference|Land area weighted,days/yr,16.05157344,16.05157344,16.05157344,16.05157344,16.05157344,16.05157344,16.05157344,16.05157344,16.05157344,16.05157344 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Difference|Land area weighted,days/yr,-7.17828504,-7.17828504,-7.17828504,-7.17828504,-7.17828504,-7.17828504,-7.17828504,-7.17828504,-7.17828504,-7.17828504 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Difference|Land area weighted,days/yr,4.307929744,4.307929744,4.307929744,4.307929744,4.307929744,4.307929744,4.307929744,4.307929744,4.307929744,4.307929744 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Difference|Land area weighted,days/yr,4.315142331,4.315142331,4.315142331,4.315142331,4.315142331,4.315142331,4.315142331,4.315142331,4.315142331,4.315142331 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Difference|Land area weighted,days/yr,-0.401005883,-0.401005883,-0.401005883,-0.401005883,-0.401005883,-0.401005883,-0.401005883,-0.401005883,-0.401005883,-0.401005883 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Difference|Land area weighted,days/yr,46.16550361,46.16550361,46.16550361,46.16550361,46.16550361,46.16550361,46.16550361,46.16550361,46.16550361,46.16550361 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Difference|Land area weighted,days/yr,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Difference|Land area weighted,days/yr,15.59518326,15.59518326,15.59518326,15.59518326,15.59518326,15.59518326,15.59518326,15.59518326,15.59518326,15.59518326 +Climate Solutions,ssp2_3p0,CAN,cdd|Hazard|Difference|Population weighted,days/yr,0.610042805,0.613588353,0.618193022,0.625891082,0.632410987,0.639062321,0.646614036,0.654900194,0.664062629,0.67552861 +Climate Solutions,ssp2_3p0,STP,cdd|Hazard|Difference|Population weighted,days/yr,13.41121471,13.41405391,13.41656113,13.41872373,13.42050452,13.42192301,13.42310024,13.42410205,13.42494388,13.42571104 +Climate Solutions,ssp2_3p0,TKM,cdd|Hazard|Difference|Population weighted,days/yr,0.463673922,0.470076176,0.476786897,0.484024988,0.491663197,0.499476087,0.507427463,0.514284933,0.520308615,0.528016533 +Climate Solutions,ssp2_3p0,LTU,cdd|Hazard|Difference|Population weighted,days/yr,-0.498570956,-0.507364973,-0.516327291,-0.523507533,-0.529515816,-0.534138253,-0.538037686,-0.542102314,-0.546448495,-0.551556635 +Climate Solutions,ssp2_3p0,KHM,cdd|Hazard|Difference|Population weighted,days/yr,5.311858958,5.325112212,5.332261993,5.337721753,5.34059473,5.340325022,5.338525965,5.334824266,5.3302378,5.326261118 +Climate Solutions,ssp2_3p0,ETH,cdd|Hazard|Difference|Population weighted,days/yr,-13.58803578,-13.56774825,-13.55811516,-13.55512914,-13.55742114,-13.56355382,-13.57273671,-13.58399542,-13.59662502,-13.60997488 +Climate Solutions,ssp2_3p0,SWZ,cdd|Hazard|Difference|Population weighted,days/yr,7.930611561,7.993355173,8.057643525,8.11684699,8.162267121,8.199167163,8.231824737,8.260838865,8.283778229,8.302791957 +Climate Solutions,ssp2_3p0,PSE,cdd|Hazard|Difference|Population weighted,days/yr,1.226408866,1.238059751,1.254297297,1.271003654,1.287225615,1.302183545,1.309635154,1.307835027,1.298858637,1.284029099 +Climate Solutions,ssp2_3p0,ARG,cdd|Hazard|Difference|Population weighted,days/yr,5.092046162,5.081032352,5.070991195,5.063725583,5.058067137,5.053989428,5.050868182,5.04970321,5.049261918,5.046650649 +Climate Solutions,ssp2_3p0,BOL,cdd|Hazard|Difference|Population weighted,days/yr,10.04155909,10.21772586,10.36057382,10.47400585,10.56293111,10.6304833,10.68588258,10.72639549,10.75794736,10.78275067 +Climate Solutions,ssp2_3p0,BHS,cdd|Hazard|Difference|Population weighted,days/yr,2.595755945,2.663885954,2.706320347,2.736321018,2.755787059,2.778873095,2.792966858,2.80740604,2.820846169,2.832582265 +Climate Solutions,ssp2_3p0,BFA,cdd|Hazard|Difference|Population weighted,days/yr,-2.552874671,-2.547831977,-2.545095296,-2.544220354,-2.544629362,-2.545491603,-2.546551374,-2.547648054,-2.548585689,-2.54947523 +Climate Solutions,ssp2_3p0,GHA,cdd|Hazard|Difference|Population weighted,days/yr,-4.454711025,-4.485880063,-4.503030577,-4.512001389,-4.513889821,-4.510458888,-4.504749194,-4.497127974,-4.487718229,-4.477175857 +Climate Solutions,ssp2_3p0,SAU,cdd|Hazard|Difference|Population weighted,days/yr,-6.450830639,-6.452469444,-6.452938038,-6.453098382,-6.453921221,-6.454213311,-6.454491376,-6.454458077,-6.454844057,-6.455151603 +Climate Solutions,ssp2_3p0,CPV,cdd|Hazard|Difference|Population weighted,days/yr,-12.04057396,-12.0632135,-12.08142012,-12.09554743,-12.10592206,-12.11265787,-12.11750901,-12.12156879,-12.12509849,-12.12816205 +Climate Solutions,ssp2_3p0,SVN,cdd|Hazard|Difference|Population weighted,days/yr,1.749859127,1.708140807,1.670746938,1.637107061,1.609999272,1.58996331,1.573215585,1.555328089,1.536786808,1.523346413 +Climate Solutions,ssp2_3p0,GTM,cdd|Hazard|Difference|Population weighted,days/yr,19.90980462,19.93463517,19.97781227,20.03137353,20.09093335,20.15330841,20.21267884,20.26855811,20.32171585,20.37147884 +Climate Solutions,ssp2_3p0,BIH,cdd|Hazard|Difference|Population weighted,days/yr,13.74406019,13.73320535,13.72393555,13.71656723,13.71106307,13.70674476,13.70315529,13.70025689,13.69784894,13.69592697 +Climate Solutions,ssp2_3p0,GIN,cdd|Hazard|Difference|Population weighted,days/yr,0.819824366,0.815468654,0.81206517,0.809505479,0.807089483,0.805075694,0.80336029,0.801865078,0.80073396,0.800348676 +Climate Solutions,ssp2_3p0,JOR,cdd|Hazard|Difference|Population weighted,days/yr,2.59221094,2.598109807,2.60055589,2.600962553,2.600146416,2.598435207,2.59578604,2.592473995,2.588780009,2.58527638 +Climate Solutions,ssp2_3p0,COG,cdd|Hazard|Difference|Population weighted,days/yr,5.373122033,5.407099664,5.424615205,5.433590645,5.434790241,5.431743293,5.425323391,5.417699778,5.407726396,5.395737179 +Climate Solutions,ssp2_3p0,ESP,cdd|Hazard|Difference|Population weighted,days/yr,17.27395852,17.25659479,17.23379853,17.21333454,17.19360238,17.17252734,17.15091497,17.13170902,17.11534147,17.10140202 +Climate Solutions,ssp2_3p0,LBR,cdd|Hazard|Difference|Population weighted,days/yr,1.796007985,1.843194962,1.873235832,1.894170216,1.911415258,1.925228343,1.934997717,1.941566273,1.945019142,1.945479057 +Climate Solutions,ssp2_3p0,NLD,cdd|Hazard|Difference|Population weighted,days/yr,5.641443643,5.66785626,5.692795747,5.715961916,5.737209041,5.756987404,5.775027662,5.791173483,5.805755704,5.818802427 +Climate Solutions,ssp2_3p0,JAM,cdd|Hazard|Difference|Population weighted,days/yr,1.976007161,1.948765412,1.922823075,1.89651516,1.86992833,1.84565696,1.82639967,1.810942565,1.798382633,1.788158447 +Climate Solutions,ssp2_3p0,OMN,cdd|Hazard|Difference|Population weighted,days/yr,-6.824351812,-6.782576344,-6.775594712,-6.774220609,-6.775417347,-6.779605496,-6.787111982,-6.797792415,-6.809820702,-6.823655801 +Climate Solutions,ssp2_3p0,TZA,cdd|Hazard|Difference|Population weighted,days/yr,0.981711796,0.978267723,0.975662586,0.973645024,0.971877938,0.970102283,0.968024355,0.965557005,0.962692334,0.95984028 +Climate Solutions,ssp2_3p0,ALB,cdd|Hazard|Difference|Population weighted,days/yr,18.09389297,18.08632941,18.07865972,18.0718438,18.06632087,18.06136741,18.05738769,18.05423336,18.05151028,18.04983363 +Climate Solutions,ssp2_3p0,GAB,cdd|Hazard|Difference|Population weighted,days/yr,6.305636508,6.288820044,6.292823024,6.297335111,6.307361389,6.314113266,6.320254168,6.320127023,6.321746356,6.319712145 +Climate Solutions,ssp2_3p0,NZL,cdd|Hazard|Difference|Population weighted,days/yr,0.690719967,0.698517729,0.704294799,0.711775845,0.716914704,0.721952718,0.726995875,0.73227994,0.738015872,0.744606599 +Climate Solutions,ssp2_3p0,YEM,cdd|Hazard|Difference|Population weighted,days/yr,-6.83856813,-6.834587811,-6.837180017,-6.842696257,-6.848194575,-6.855020783,-6.861844368,-6.868269407,-6.874520655,-6.880333329 +Climate Solutions,ssp2_3p0,PAK,cdd|Hazard|Difference|Population weighted,days/yr,-3.711923173,-3.748294288,-3.772585965,-3.789243863,-3.802171959,-3.811493709,-3.818268404,-3.823341167,-3.8269022,-3.828998554 +Climate Solutions,ssp2_3p0,WSM,cdd|Hazard|Difference|Population weighted,days/yr,5.405258044,5.406623587,5.412191438,5.423815659,5.440633937,5.462584065,5.483527279,5.502711918,5.519683682,5.534034473 +Climate Solutions,ssp2_3p0,SVK,cdd|Hazard|Difference|Population weighted,days/yr,4.547873542,4.538343141,4.531755044,4.527124781,4.52253479,4.519221615,4.517882244,4.516884863,4.51563307,4.514657343 +Climate Solutions,ssp2_3p0,ARE,cdd|Hazard|Difference|Population weighted,days/yr,-3.918329683,-3.950190012,-3.953029277,-3.948739212,-3.940705021,-3.930604389,-3.918490266,-3.906677277,-3.897156444,-3.889517506 +Climate Solutions,ssp2_3p0,GUM,cdd|Hazard|Difference|Population weighted,days/yr,-5.165393666,-5.138150423,-5.128144354,-5.122544614,-5.119147218,-5.117096111,-5.115971819,-5.115341371,-5.114870112,-5.114496256 +Climate Solutions,ssp2_3p0,IND,cdd|Hazard|Difference|Population weighted,days/yr,1.397890576,1.387386691,1.377715797,1.36581378,1.352327398,1.338391623,1.324738361,1.311821715,1.300020226,1.289852782 +Climate Solutions,ssp2_3p0,AZE,cdd|Hazard|Difference|Population weighted,days/yr,16.145713,16.20036341,16.24059142,16.27084552,16.29307878,16.30742818,16.3158097,16.32141626,16.32543177,16.3290826 +Climate Solutions,ssp2_3p0,MDG,cdd|Hazard|Difference|Population weighted,days/yr,7.496464538,7.487457244,7.483988739,7.483926603,7.486117125,7.489556929,7.494050837,7.499244997,7.504868085,7.510643324 +Climate Solutions,ssp2_3p0,LSO,cdd|Hazard|Difference|Population weighted,days/yr,10.80414588,10.80669143,10.80922612,10.8108935,10.81266122,10.81334912,10.81431249,10.81641019,10.81934756,10.82369558 +Climate Solutions,ssp2_3p0,VCT,cdd|Hazard|Difference|Population weighted,days/yr,47.28522369,47.33004618,47.36853386,47.40113158,47.42838603,47.45095084,47.46941423,47.48465853,47.49740653,47.50820859 +Climate Solutions,ssp2_3p0,KEN,cdd|Hazard|Difference|Population weighted,days/yr,-6.035535003,-6.119387678,-6.174370912,-6.211660876,-6.234688125,-6.247528108,-6.254295909,-6.25689864,-6.255604877,-6.251651225 +Climate Solutions,ssp2_3p0,KOR,cdd|Hazard|Difference|Population weighted,days/yr,0.62970121,0.605064347,0.58078401,0.557347163,0.536114428,0.517639761,0.501990241,0.48904745,0.479053655,0.471336931 +Climate Solutions,ssp2_3p0,BLR,cdd|Hazard|Difference|Population weighted,days/yr,2.41933563,2.381912356,2.34707916,2.316447754,2.290101503,2.267964477,2.248572224,2.23148647,2.216600264,2.203724426 +Climate Solutions,ssp2_3p0,TJK,cdd|Hazard|Difference|Population weighted,days/yr,5.439808216,5.366086919,5.294025463,5.222709058,5.153737614,5.088853975,5.030912494,4.98024247,4.937599385,4.905046477 +Climate Solutions,ssp2_3p0,TUR,cdd|Hazard|Difference|Population weighted,days/yr,18.06984635,18.06883963,18.06538138,18.06258544,18.06079882,18.05752381,18.0545467,18.05136694,18.04988578,18.05104636 +Climate Solutions,ssp2_3p0,AFG,cdd|Hazard|Difference|Population weighted,days/yr,-3.77016718,-3.75442196,-3.739183526,-3.726785567,-3.718561042,-3.712456271,-3.707794389,-3.704543717,-3.702308144,-3.701114077 +Climate Solutions,ssp2_3p0,BGD,cdd|Hazard|Difference|Population weighted,days/yr,9.152684975,9.151822179,9.149712572,9.145751666,9.140539691,9.134628343,9.128658269,9.123022181,9.117935657,9.113797305 +Climate Solutions,ssp2_3p0,MRT,cdd|Hazard|Difference|Population weighted,days/yr,2.195684137,2.183314312,2.183109229,2.184255303,2.186772168,2.182567899,2.185249721,2.18921624,2.192464753,2.196054137 +Climate Solutions,ssp2_3p0,SLB,cdd|Hazard|Difference|Population weighted,days/yr,7.831622951,7.76617604,7.724645729,7.698816478,7.686695945,7.681380346,7.679898653,7.682550754,7.687758568,7.695823654 +Climate Solutions,ssp2_3p0,LCA,cdd|Hazard|Difference|Population weighted,days/yr,8.237991619,7.96172197,7.775959833,7.644203852,7.555878758,7.523321808,7.563690684,7.678619663,7.827350671,7.978993654 +Climate Solutions,ssp2_3p0,CYP,cdd|Hazard|Difference|Population weighted,days/yr,1.119024509,1.118709672,1.117506518,1.11545485,1.11332595,1.110839306,1.107385962,1.103134333,1.099378313,1.096035392 +Climate Solutions,ssp2_3p0,PYF,cdd|Hazard|Difference|Population weighted,days/yr,-2.969636192,-2.968110926,-2.96727374,-2.967511025,-2.967937747,-2.968883229,-2.97004479,-2.971437222,-2.972665029,-2.973915811 +Climate Solutions,ssp2_3p0,FRA,cdd|Hazard|Difference|Population weighted,days/yr,14.26730179,14.26658997,14.267482,14.26875403,14.26925194,14.27044698,14.2733987,14.27700297,14.28014585,14.28307183 +Climate Solutions,ssp2_3p0,NAM,cdd|Hazard|Difference|Population weighted,days/yr,6.261551794,6.256787595,6.251423408,6.251542806,6.252822557,6.251538649,6.258304558,6.261526796,6.269020213,6.281095274 +Climate Solutions,ssp2_3p0,SOM,cdd|Hazard|Difference|Population weighted,days/yr,-7.789301282,-7.800617147,-7.808182075,-7.808959634,-7.805802421,-7.799823447,-7.793932721,-7.788012544,-7.782478426,-7.777172875 +Climate Solutions,ssp2_3p0,PER,cdd|Hazard|Difference|Population weighted,days/yr,0.90358158,0.812310928,0.727865705,0.650721717,0.579561021,0.517038577,0.463894521,0.418005506,0.378874373,0.344832333 +Climate Solutions,ssp2_3p0,LAO,cdd|Hazard|Difference|Population weighted,days/yr,3.158914767,3.146176896,3.131374032,3.117273373,3.102294456,3.086972562,3.073437994,3.060608069,3.048914951,3.039761494 +Climate Solutions,ssp2_3p0,SYC,cdd|Hazard|Difference|Population weighted,days/yr,9.267038615,9.270650368,9.272015929,9.273385104,9.273385104,9.273435513,9.27341132,9.273391982,9.273351943,9.273385463 +Climate Solutions,ssp2_3p0,NOR,cdd|Hazard|Difference|Population weighted,days/yr,-0.638434609,-0.603820179,-0.578019507,-0.558241589,-0.542186283,-0.529743823,-0.518351557,-0.508256881,-0.499628331,-0.49101242 +Climate Solutions,ssp2_3p0,CIV,cdd|Hazard|Difference|Population weighted,days/yr,-3.629793988,-3.641679322,-3.645585324,-3.645746919,-3.641859292,-3.635345267,-3.628799407,-3.622151741,-3.615955521,-3.610450375 +Climate Solutions,ssp2_3p0,BEN,cdd|Hazard|Difference|Population weighted,days/yr,-4.569943939,-4.590293542,-4.604768989,-4.61606954,-4.625465229,-4.632451271,-4.638033595,-4.64255204,-4.645799946,-4.648182074 +Climate Solutions,ssp2_3p0,ESH,cdd|Hazard|Difference|Population weighted,days/yr,2.547305552,2.530199759,2.515695045,2.482378563,2.474389002,2.437699393,2.440215049,2.416957755,2.398207956,2.380089525 +Climate Solutions,ssp2_3p0,CUB,cdd|Hazard|Difference|Population weighted,days/yr,-3.593151124,-3.593773128,-3.594338379,-3.594777102,-3.595126549,-3.595446623,-3.595706036,-3.59592402,-3.596102079,-3.596278118 +Climate Solutions,ssp2_3p0,CMR,cdd|Hazard|Difference|Population weighted,days/yr,-9.630237235,-9.585904999,-9.542718642,-9.50415978,-9.4675891,-9.436237769,-9.408324495,-9.383815935,-9.361760543,-9.341903977 +Climate Solutions,ssp2_3p0,MNE,cdd|Hazard|Difference|Population weighted,days/yr,19.10954827,19.13351312,19.1472914,19.15526036,19.16048339,19.16357339,19.16761045,19.17092091,19.1734764,19.17699898 +Climate Solutions,ssp2_3p0,TGO,cdd|Hazard|Difference|Population weighted,days/yr,-4.76279654,-4.757793343,-4.755954977,-4.756170616,-4.758238144,-4.76141815,-4.765216094,-4.769337253,-4.773570009,-4.777872521 +Climate Solutions,ssp2_3p0,CHN,cdd|Hazard|Difference|Population weighted,days/yr,-1.388506503,-1.436666194,-1.479254793,-1.514674292,-1.542869354,-1.565227648,-1.583193377,-1.597947609,-1.610089089,-1.620487491 +Climate Solutions,ssp2_3p0,ARM,cdd|Hazard|Difference|Population weighted,days/yr,21.92185454,22.21172653,22.50555337,22.76545247,22.97656733,23.15137704,23.29742777,23.41947595,23.52392884,23.62169744 +Climate Solutions,ssp2_3p0,ATG,cdd|Hazard|Difference|Population weighted,days/yr,31.14995088,31.14996567,31.14997388,31.14997791,31.14998472,31.14998509,31.14998539,31.14998539,31.14998871,31.14998455 +Climate Solutions,ssp2_3p0,DOM,cdd|Hazard|Difference|Population weighted,days/yr,8.876791645,8.887064236,8.894830233,8.900189001,8.903614856,8.905508675,8.906410102,8.906425568,8.90623881,8.905646355 +Climate Solutions,ssp2_3p0,UKR,cdd|Hazard|Difference|Population weighted,days/yr,10.41638127,10.42989974,10.44175839,10.45194732,10.4608691,10.46875381,10.47608721,10.48256403,10.48824152,10.49327984 +Climate Solutions,ssp2_3p0,BHR,cdd|Hazard|Difference|Population weighted,days/yr,-5.186573811,-5.192552638,-5.19663029,-5.1997877,-5.202138849,-5.203852616,-5.204984879,-5.205621264,-5.205911877,-5.206075817 +Climate Solutions,ssp2_3p0,TON,cdd|Hazard|Difference|Population weighted,days/yr,6.813641858,6.824474969,6.845774022,6.875377249,6.913571847,6.957650387,6.996822997,7.030232949,7.05867411,7.081770554 +Climate Solutions,ssp2_3p0,FIN,cdd|Hazard|Difference|Population weighted,days/yr,-1.363299869,-1.339402202,-1.318407796,-1.29934263,-1.283112218,-1.268826789,-1.255770087,-1.244583347,-1.23476991,-1.22587331 +Climate Solutions,ssp2_3p0,LBY,cdd|Hazard|Difference|Population weighted,days/yr,8.195064051,8.181354131,8.175608663,8.167356575,8.161689226,8.174565955,8.18151543,8.185607286,8.186322846,8.191942989 +Climate Solutions,ssp2_3p0,IDN,cdd|Hazard|Difference|Population weighted,days/yr,12.67611736,12.70547064,12.74032856,12.77781309,12.81728178,12.8574001,12.89707381,12.93063751,12.95888239,12.98292348 +Climate Solutions,ssp2_3p0,CAF,cdd|Hazard|Difference|Population weighted,days/yr,-5.234432076,-5.232639918,-5.232020137,-5.23211253,-5.23263799,-5.234249225,-5.236113521,-5.237989159,-5.239764724,-5.241599987 +Climate Solutions,ssp2_3p0,USA,cdd|Hazard|Difference|Population weighted,days/yr,3.16561031,3.159194627,3.152511442,3.145164099,3.137662163,3.130823841,3.124870898,3.118844542,3.113006588,3.107817028 +Climate Solutions,ssp2_3p0,SWE,cdd|Hazard|Difference|Population weighted,days/yr,-0.793738627,-0.799367931,-0.80129855,-0.80623153,-0.807653382,-0.810826554,-0.813023163,-0.8154022,-0.817766826,-0.820428513 +Climate Solutions,ssp2_3p0,VNM,cdd|Hazard|Difference|Population weighted,days/yr,5.331247365,5.329441394,5.326619961,5.323010045,5.319163703,5.315018048,5.310872275,5.307102279,5.30419698,5.301978471 +Climate Solutions,ssp2_3p0,MLI,cdd|Hazard|Difference|Population weighted,days/yr,-0.426102664,-0.425148403,-0.425164951,-0.426420366,-0.427890114,-0.431150925,-0.432551225,-0.43500684,-0.436841766,-0.438123372 +Climate Solutions,ssp2_3p0,RUS,cdd|Hazard|Difference|Population weighted,days/yr,1.031198641,1.002751504,0.972646887,0.951849996,0.933762359,0.915964463,0.910853835,0.896786493,0.886112609,0.877220498 +Climate Solutions,ssp2_3p0,BGR,cdd|Hazard|Difference|Population weighted,days/yr,8.213189629,8.211544996,8.206645203,8.200629052,8.192405237,8.181677647,8.170930881,8.161439131,8.153672231,8.147410238 +Climate Solutions,ssp2_3p0,MUS,cdd|Hazard|Difference|Population weighted,days/yr,8.774742742,8.739157148,8.707738774,8.682596579,8.663757812,8.649880767,8.640544314,8.635282537,8.63189658,8.628990899 +Climate Solutions,ssp2_3p0,ROU,cdd|Hazard|Difference|Population weighted,days/yr,11.18962701,11.19363497,11.19857228,11.20375864,11.20914384,11.21539576,11.22158251,11.22651014,11.22971878,11.23109535 +Climate Solutions,ssp2_3p0,AGO,cdd|Hazard|Difference|Population weighted,days/yr,3.164942852,3.163190721,3.162651046,3.161722115,3.161469731,3.161209568,3.160542162,3.16056027,3.159908193,3.159542395 +Climate Solutions,ssp2_3p0,PRT,cdd|Hazard|Difference|Population weighted,days/yr,20.99556018,20.99309963,20.98989844,20.98706947,20.98417328,20.98070419,20.97679397,20.97289408,20.96955635,20.96662302 +Climate Solutions,ssp2_3p0,ZAF,cdd|Hazard|Difference|Population weighted,days/yr,8.059231978,8.070898292,8.082246222,8.093028376,8.103295063,8.112889944,8.121966918,8.130774393,8.138272212,8.144695556 +Climate Solutions,ssp2_3p0,FJI,cdd|Hazard|Difference|Population weighted,days/yr,2.246340652,2.251476632,2.256649659,2.261523531,2.266218338,2.270843804,2.274607378,2.277496076,2.280063496,2.281832013 +Climate Solutions,ssp2_3p0,BRN,cdd|Hazard|Difference|Population weighted,days/yr,2.700500975,2.707829735,2.71631994,2.725688159,2.735588016,2.745127064,2.753746103,2.761338238,2.768042657,2.773638731 +Climate Solutions,ssp2_3p0,MYS,cdd|Hazard|Difference|Population weighted,days/yr,4.908878735,4.897008728,4.872850018,4.850178797,4.827207513,4.805035124,4.78210107,4.758438265,4.735640163,4.713910052 +Climate Solutions,ssp2_3p0,AUT,cdd|Hazard|Difference|Population weighted,days/yr,0.907923761,0.922176886,0.936699196,0.950252784,0.962973661,0.974690935,0.985015482,0.993934943,1.001743931,1.008752691 +Climate Solutions,ssp2_3p0,MOZ,cdd|Hazard|Difference|Population weighted,days/yr,10.03448313,10.04060008,10.040097,10.03524005,10.02769387,10.02037925,10.01289068,10.00526496,9.997070614,9.988569217 +Climate Solutions,ssp2_3p0,UGA,cdd|Hazard|Difference|Population weighted,days/yr,-8.363093354,-8.424962024,-8.469403405,-8.499758297,-8.519656772,-8.533155267,-8.542444636,-8.548682241,-8.552836618,-8.555902358 +Climate Solutions,ssp2_3p0,KGZ,cdd|Hazard|Difference|Population weighted,days/yr,3.50537382,3.547791724,3.585294724,3.605550787,3.626756005,3.638887772,3.642166538,3.64570276,3.647734566,3.652044825 +Climate Solutions,ssp2_3p0,HUN,cdd|Hazard|Difference|Population weighted,days/yr,6.837645898,6.808343807,6.78142046,6.756704631,6.733006147,6.710468536,6.690054023,6.672052262,6.656543358,6.643452811 +Climate Solutions,ssp2_3p0,NER,cdd|Hazard|Difference|Population weighted,days/yr,-5.170544864,-5.164774796,-5.15942537,-5.155080022,-5.151287623,-5.148172411,-5.145680936,-5.143452255,-5.141833749,-5.140466471 +Climate Solutions,ssp2_3p0,BRA,cdd|Hazard|Difference|Population weighted,days/yr,16.94179048,16.93740987,16.93399238,16.92894961,16.92229634,16.91486896,16.90848335,16.90364217,16.89927393,16.89608894 +Climate Solutions,ssp2_3p0,KWT,cdd|Hazard|Difference|Population weighted,days/yr,-2.908139157,-2.900327184,-2.899481333,-2.899338916,-2.899866002,-2.901232549,-2.903821862,-2.907604309,-2.911831668,-2.916751162 +Climate Solutions,ssp2_3p0,PAN,cdd|Hazard|Difference|Population weighted,days/yr,0.871528574,0.902743211,0.920342283,0.926154191,0.922563804,0.912441823,0.898151154,0.880499712,0.863560852,0.849035788 +Climate Solutions,ssp2_3p0,GUY,cdd|Hazard|Difference|Population weighted,days/yr,13.87031312,13.85257177,13.84462036,13.86474168,13.87554985,13.90432946,13.83045871,13.84999267,13.89531426,13.87969142 +Climate Solutions,ssp2_3p0,CRI,cdd|Hazard|Difference|Population weighted,days/yr,3.832533895,3.790411092,3.73991844,3.68538159,3.629469896,3.574460589,3.519787022,3.465955238,3.417835857,3.376813839 +Climate Solutions,ssp2_3p0,LUX,cdd|Hazard|Difference|Population weighted,days/yr,10.00929377,10.0747854,10.12651908,10.1698279,10.20515574,10.23270918,10.25070453,10.25929657,10.26162859,10.25994092 +Climate Solutions,ssp2_3p0,IRL,cdd|Hazard|Difference|Population weighted,days/yr,9.73463781,9.745707498,9.753775384,9.760625145,9.766108893,9.770137362,9.77320992,9.775540011,9.777598703,9.779351018 +Climate Solutions,ssp2_3p0,NGA,cdd|Hazard|Difference|Population weighted,days/yr,-6.930395651,-6.924807829,-6.920244192,-6.916544532,-6.913530902,-6.911170892,-6.909310739,-6.907877503,-6.906833056,-6.906089001 +Climate Solutions,ssp2_3p0,ECU,cdd|Hazard|Difference|Population weighted,days/yr,-0.747595315,-0.746521078,-0.75431508,-0.769083323,-0.788676745,-0.8114819,-0.835210283,-0.85913781,-0.882641566,-0.902925395 +Climate Solutions,ssp2_3p0,CZE,cdd|Hazard|Difference|Population weighted,days/yr,1.489118715,1.496371438,1.502691989,1.507836364,1.512107999,1.516212735,1.52003475,1.523232531,1.526402577,1.529845332 +Climate Solutions,ssp2_3p0,AUS,cdd|Hazard|Difference|Population weighted,days/yr,5.714379319,5.714725413,5.713209463,5.710887308,5.708783063,5.706274265,5.704580095,5.702222221,5.700020361,5.698085623 +Climate Solutions,ssp2_3p0,IRN,cdd|Hazard|Difference|Population weighted,days/yr,4.879384995,4.860750494,4.852395173,4.8491276,4.849971765,4.856970314,4.862921695,4.864791958,4.865600689,4.866612803 +Climate Solutions,ssp2_3p0,DZA,cdd|Hazard|Difference|Population weighted,days/yr,15.73727278,15.72294953,15.72692187,15.72310661,15.72782826,15.72818068,15.73130733,15.73484911,15.74633292,15.74812701 +Climate Solutions,ssp2_3p0,SLV,cdd|Hazard|Difference|Population weighted,days/yr,7.914496292,7.937681381,7.956700751,7.972746012,7.986900831,8.006425489,8.024498253,8.037668915,8.043860257,8.041555345 +Climate Solutions,ssp2_3p0,CHL,cdd|Hazard|Difference|Population weighted,days/yr,13.9434658,13.96338581,13.97781879,13.98551857,13.98658486,13.98557489,13.98329527,13.9811289,13.97996422,13.97836159 +Climate Solutions,ssp2_3p0,PRI,cdd|Hazard|Difference|Population weighted,days/yr,5.349202619,5.35000244,5.350040397,5.35008138,5.350086677,5.350091328,5.350122983,5.350122098,5.35011335,5.350129 +Climate Solutions,ssp2_3p0,BEL,cdd|Hazard|Difference|Population weighted,days/yr,7.294971358,7.303341401,7.310195506,7.318534969,7.32700055,7.333861081,7.339258086,7.343993811,7.348113592,7.351354177 +Climate Solutions,ssp2_3p0,THA,cdd|Hazard|Difference|Population weighted,days/yr,0.170214073,0.160067918,0.145593122,0.127244919,0.106258321,0.084429453,0.062204631,0.041526977,0.023650507,0.008330149 +Climate Solutions,ssp2_3p0,HTI,cdd|Hazard|Difference|Population weighted,days/yr,4.535066904,4.56612474,4.590788296,4.609712078,4.623953793,4.634315505,4.641683833,4.647308556,4.651830411,4.655376929 +Climate Solutions,ssp2_3p0,IRQ,cdd|Hazard|Difference|Population weighted,days/yr,-1.789314027,-1.803405563,-1.814532865,-1.823615395,-1.830603268,-1.836347929,-1.841270858,-1.845466101,-1.848769178,-1.851343667 +Climate Solutions,ssp2_3p0,SLE,cdd|Hazard|Difference|Population weighted,days/yr,2.397245751,2.391944795,2.3878959,2.3849422,2.38263093,2.380706609,2.378887455,2.377072844,2.375547156,2.374338963 +Climate Solutions,ssp2_3p0,GEO,cdd|Hazard|Difference|Population weighted,days/yr,8.689414382,8.760641191,8.820934616,8.874313314,8.920361221,8.95943053,8.991466263,9.016181236,9.035936764,9.049403816 +Climate Solutions,ssp2_3p0,HKG,cdd|Hazard|Difference|Population weighted,days/yr,11.67480031,11.66913794,11.68502999,11.7209669,11.76866418,11.83265615,11.89342023,11.94508364,11.98330033,11.99678343 +Climate Solutions,ssp2_3p0,DNK,cdd|Hazard|Difference|Population weighted,days/yr,3.219320377,3.200615253,3.187698648,3.177659465,3.169028527,3.161748078,3.155577174,3.15008446,3.144910427,3.139780738 +Climate Solutions,ssp2_3p0,POL,cdd|Hazard|Difference|Population weighted,days/yr,4.825267679,4.805968906,4.787549851,4.769258027,4.752706439,4.738966239,4.72759536,4.71798579,4.709690611,4.702516293 +Climate Solutions,ssp2_3p0,MDA,cdd|Hazard|Difference|Population weighted,days/yr,9.943320004,9.976907268,10.0111448,10.05000532,10.09067899,10.12889032,10.1593495,10.18765802,10.21223966,10.22527551 +Climate Solutions,ssp2_3p0,MAR,cdd|Hazard|Difference|Population weighted,days/yr,7.625707228,7.61769321,7.608946332,7.601009957,7.59304185,7.585308145,7.57840839,7.572663464,7.56789231,7.564008612 +Climate Solutions,ssp2_3p0,HRV,cdd|Hazard|Difference|Population weighted,days/yr,8.834213269,8.80496632,8.779783401,8.753463898,8.723125495,8.692703875,8.663124507,8.633206226,8.606371657,8.58493108 +Climate Solutions,ssp2_3p0,MNG,cdd|Hazard|Difference|Population weighted,days/yr,-24.34436872,-24.35813033,-24.3707967,-24.40130851,-24.39984455,-24.40668288,-24.41244937,-24.41769095,-24.41644844,-24.42006887 +Climate Solutions,ssp2_3p0,GNB,cdd|Hazard|Difference|Population weighted,days/yr,3.310163306,3.279282814,3.262022489,3.253349402,3.250799645,3.252350646,3.254671092,3.257151507,3.259364318,3.261582072 +Climate Solutions,ssp2_3p0,KIR,cdd|Hazard|Difference|Population weighted,days/yr,-5.02541239,-4.742440758,-4.494455721,-4.330076791,-4.19551571,-4.083668725,-4.007986399,-3.972804527,-3.937451265,-3.919752851 +Climate Solutions,ssp2_3p0,CHE,cdd|Hazard|Difference|Population weighted,days/yr,-0.60771929,-0.623350179,-0.63502973,-0.645568211,-0.654208228,-0.660406971,-0.663900329,-0.666244509,-0.668423829,-0.669653091 +Climate Solutions,ssp2_3p0,GRD,cdd|Hazard|Difference|Population weighted,days/yr,30.07431804,30.12431404,30.16373033,30.20168689,30.23589317,30.26379359,30.28591724,30.30189454,30.31401332,30.32464897 +Climate Solutions,ssp2_3p0,BLZ,cdd|Hazard|Difference|Population weighted,days/yr,14.22137619,14.25754946,14.29319022,14.32452263,14.35159946,14.37524889,14.39671886,14.41333093,14.42446458,14.42862724 +Climate Solutions,ssp2_3p0,TCD,cdd|Hazard|Difference|Population weighted,days/yr,-4.245792714,-4.249900703,-4.252230247,-4.254327894,-4.255576921,-4.256686742,-4.257777549,-4.258570476,-4.259285211,-4.259769937 +Climate Solutions,ssp2_3p0,EST,cdd|Hazard|Difference|Population weighted,days/yr,-4.741811724,-4.73835749,-4.734074097,-4.730313544,-4.727352319,-4.724223235,-4.721058772,-4.71803017,-4.715344341,-4.713292196 +Climate Solutions,ssp2_3p0,URY,cdd|Hazard|Difference|Population weighted,days/yr,-0.842005057,-0.855348314,-0.869941665,-0.884844833,-0.897012792,-0.90720557,-0.916319107,-0.925411376,-0.93319738,-0.940571919 +Climate Solutions,ssp2_3p0,GNQ,cdd|Hazard|Difference|Population weighted,days/yr,2.787353808,2.944279106,3.052952399,3.127188732,3.182783397,3.224018353,3.256862831,3.280966314,3.299152653,3.308643394 +Climate Solutions,ssp2_3p0,LBN,cdd|Hazard|Difference|Population weighted,days/yr,1.010143217,1.024505348,1.038301538,1.052259671,1.066738023,1.081561423,1.099647263,1.121014099,1.144650307,1.170190441 +Climate Solutions,ssp2_3p0,UZB,cdd|Hazard|Difference|Population weighted,days/yr,4.263716543,4.257676422,4.257161234,4.261148589,4.267201449,4.275253741,4.284856425,4.294824736,4.304492802,4.314133711 +Climate Solutions,ssp2_3p0,TUN,cdd|Hazard|Difference|Population weighted,days/yr,16.27914005,16.27403289,16.27354818,16.276275,16.28100673,16.28859104,16.29665039,16.30350203,16.31010534,16.31615025 +Climate Solutions,ssp2_3p0,DJI,cdd|Hazard|Difference|Population weighted,days/yr,-9.068510172,-9.052806396,-9.041070541,-9.03158765,-9.026250047,-9.020946874,-9.017033654,-9.013138157,-9.010533896,-9.008781929 +Climate Solutions,ssp2_3p0,RWA,cdd|Hazard|Difference|Population weighted,days/yr,0.559043064,0.574530611,0.591027001,0.606569107,0.618642177,0.628403594,0.636368244,0.642647051,0.647686425,0.651399083 +Climate Solutions,ssp2_3p0,TLS,cdd|Hazard|Difference|Population weighted,days/yr,3.417840941,3.399800609,3.382427858,3.369091819,3.358163377,3.348504991,3.339229673,3.33027747,3.321899318,3.314177095 +Climate Solutions,ssp2_3p0,COL,cdd|Hazard|Difference|Population weighted,days/yr,2.509400605,2.517125097,2.517690677,2.514468478,2.507599163,2.498175027,2.487815389,2.476906054,2.467389341,2.458876257 +Climate Solutions,ssp2_3p0,REU,cdd|Hazard|Difference|Population weighted,days/yr,0.969911688,1.121544743,1.158874526,1.177968236,1.189684664,1.197422355,1.202671322,1.206863099,1.209785584,1.211926136 +Climate Solutions,ssp2_3p0,BDI,cdd|Hazard|Difference|Population weighted,days/yr,1.160365476,1.173599129,1.175414095,1.172003328,1.167627584,1.162781849,1.155170335,1.14575901,1.135037367,1.123386375 +Climate Solutions,ssp2_3p0,TWN,cdd|Hazard|Difference|Population weighted,days/yr,8.929043093,9.125889218,9.277948877,9.386562572,9.479350557,9.532363482,9.588557328,9.637632339,9.681152819,9.720285073 +Climate Solutions,ssp2_3p0,NIC,cdd|Hazard|Difference|Population weighted,days/yr,15.78883633,15.75715729,15.72432304,15.6925137,15.66098825,15.62928321,15.60341517,15.58448719,15.5701166,15.55927897 +Climate Solutions,ssp2_3p0,BRB,cdd|Hazard|Difference|Population weighted,days/yr,39.49423943,39.50225958,39.51005095,39.51771061,39.52515906,39.53198943,39.53759876,39.54224397,39.54612313,39.54938762 +Climate Solutions,ssp2_3p0,QAT,cdd|Hazard|Difference|Population weighted,days/yr,-7.424078588,-7.428597586,-7.429679134,-7.430181902,-7.430603075,-7.430783672,-7.431104953,-7.431850753,-7.432580543,-7.433245768 +Climate Solutions,ssp2_3p0,COD,cdd|Hazard|Difference|Population weighted,days/yr,1.752407776,1.762543522,1.76607274,1.760537573,1.752308502,1.743343911,1.733684119,1.723799619,1.713407696,1.703410483 +Climate Solutions,ssp2_3p0,ITA,cdd|Hazard|Difference|Population weighted,days/yr,8.700695972,8.653026072,8.600725315,8.549964273,8.498639728,8.446682035,8.397552092,8.353362186,8.313990991,8.278925017 +Climate Solutions,ssp2_3p0,BTN,cdd|Hazard|Difference|Population weighted,days/yr,11.56259491,11.54102467,11.52484491,11.50810666,11.49327937,11.4808462,11.47000347,11.46062785,11.45387577,11.44968985 +Climate Solutions,ssp2_3p0,SDN,cdd|Hazard|Difference|Population weighted,days/yr,-4.619821159,-4.611372119,-4.606463312,-4.604109689,-4.603465212,-4.604190941,-4.605641921,-4.607869172,-4.610568333,-4.613404376 +Climate Solutions,ssp2_3p0,NPL,cdd|Hazard|Difference|Population weighted,days/yr,7.302112803,7.299762888,7.297976121,7.295834378,7.293860214,7.290455463,7.285911945,7.280676054,7.275053175,7.269717739 +Climate Solutions,ssp2_3p0,MLT,cdd|Hazard|Difference|Population weighted,days/yr,17.77636167,17.77153812,17.76923388,17.76788771,17.76704006,17.76648415,17.76610443,17.76583606,17.76564794,17.76551 +Climate Solutions,ssp2_3p0,MDV,cdd|Hazard|Difference|Population weighted,days/yr,15.01933187,15.19355608,15.34772541,15.47461018,15.57617828,15.65382433,15.70994039,15.74840612,15.77761652,15.80203925 +Climate Solutions,ssp2_3p0,SUR,cdd|Hazard|Difference|Population weighted,days/yr,6.714358958,6.627498942,6.543332445,6.457630562,6.363208561,6.274896152,6.195063048,6.126041208,6.069088762,6.029021477 +Climate Solutions,ssp2_3p0,VEN,cdd|Hazard|Difference|Population weighted,days/yr,12.50530415,12.48772085,12.47278687,12.46166238,12.45347393,12.44712101,12.44329479,12.44001134,12.43758525,12.43609158 +Climate Solutions,ssp2_3p0,ISR,cdd|Hazard|Difference|Population weighted,days/yr,1.740804137,1.73808856,1.738520361,1.738678217,1.738013481,1.73677823,1.732735326,1.72592533,1.717545849,1.708183999 +Climate Solutions,ssp2_3p0,ISL,cdd|Hazard|Difference|Population weighted,days/yr,3.643892546,3.669629056,3.675091099,3.678313555,3.674954467,3.673618403,3.660087462,3.664339986,3.659139982,3.659643463 +Climate Solutions,ssp2_3p0,ZMB,cdd|Hazard|Difference|Population weighted,days/yr,5.831300862,5.822719568,5.816761762,5.812887265,5.809910687,5.808310147,5.80741826,5.807271087,5.807643686,5.808226256 +Climate Solutions,ssp2_3p0,SEN,cdd|Hazard|Difference|Population weighted,days/yr,3.48547884,3.51321857,3.528477401,3.536880961,3.53997086,3.539575084,3.538133464,3.535964646,3.533275364,3.530103104 +Climate Solutions,ssp2_3p0,PNG,cdd|Hazard|Difference|Population weighted,days/yr,-2.529602707,-2.500223945,-2.484320368,-2.477254476,-2.476157363,-2.476831932,-2.482089734,-2.487902847,-2.496916502,-2.505711503 +Climate Solutions,ssp2_3p0,MWI,cdd|Hazard|Difference|Population weighted,days/yr,6.806277443,6.812803376,6.816427975,6.818174405,6.81879894,6.818798352,6.818371691,6.81766916,6.816731738,6.815767793 +Climate Solutions,ssp2_3p0,TTO,cdd|Hazard|Difference|Population weighted,days/yr,2.113622789,2.10458982,2.096883816,2.090230187,2.085493946,2.083275055,2.083394972,2.085934384,2.08898652,2.091744808 +Climate Solutions,ssp2_3p0,ZWE,cdd|Hazard|Difference|Population weighted,days/yr,7.405271591,7.393535403,7.383838344,7.375653595,7.369498616,7.365050305,7.361330511,7.358240354,7.357989299,7.360128219 +Climate Solutions,ssp2_3p0,DEU,cdd|Hazard|Difference|Population weighted,days/yr,1.697170431,1.68739103,1.679260656,1.672415924,1.666635771,1.662035253,1.658696634,1.656165928,1.654374771,1.653060681 +Climate Solutions,ssp2_3p0,VUT,cdd|Hazard|Difference|Population weighted,days/yr,1.835146312,1.86569047,1.891408419,1.914516971,1.933991328,1.953720955,1.972071381,1.988659516,2.003697708,2.016958399 +Climate Solutions,ssp2_3p0,MTQ,cdd|Hazard|Difference|Population weighted,days/yr,-1.69768306,-1.626305913,-1.581714918,-1.550909501,-1.529635414,-1.52117673,-1.529520321,-1.554427843,-1.5858231,-1.617237368 +Climate Solutions,ssp2_3p0,KAZ,cdd|Hazard|Difference|Population weighted,days/yr,2.557902615,2.568902392,2.581880268,2.587218161,2.59530456,2.59876699,2.60004676,2.604292076,2.601713207,2.606758448 +Climate Solutions,ssp2_3p0,PHL,cdd|Hazard|Difference|Population weighted,days/yr,5.711477116,5.690707969,5.684931696,5.691248131,5.704986491,5.722761815,5.743364289,5.766270699,5.790388588,5.815130796 +Climate Solutions,ssp2_3p0,ERI,cdd|Hazard|Difference|Population weighted,days/yr,0.642401079,0.622105179,0.603319639,0.592402973,0.584297933,0.578173285,0.572701755,0.566860238,0.560555783,0.554214509 +Climate Solutions,ssp2_3p0,NCL,cdd|Hazard|Difference|Population weighted,days/yr,5.865847103,5.883420325,5.895780638,5.903733694,5.9104846,5.915090979,5.917058279,5.916165427,5.912894816,5.909089428 +Climate Solutions,ssp2_3p0,MKD,cdd|Hazard|Difference|Population weighted,days/yr,16.00505797,16.01657607,16.02155961,16.0235965,16.02493338,16.02493773,16.02586785,16.0263919,16.02556094,16.02470006 +Climate Solutions,ssp2_3p0,PRK,cdd|Hazard|Difference|Population weighted,days/yr,-2.94701992,-2.94306602,-2.939419761,-2.936260427,-2.929594949,-2.921969674,-2.914591162,-2.90798465,-2.904211023,-2.902633691 +Climate Solutions,ssp2_3p0,PRY,cdd|Hazard|Difference|Population weighted,days/yr,17.75565227,17.7611878,17.7647518,17.76553952,17.76652553,17.76509367,17.76320107,17.76123024,17.75923272,17.75512563 +Climate Solutions,ssp2_3p0,LVA,cdd|Hazard|Difference|Population weighted,days/yr,-1.675912594,-1.654799558,-1.635256005,-1.618537821,-1.603914112,-1.591118968,-1.579878236,-1.569874872,-1.560650443,-1.551920487 +Climate Solutions,ssp2_3p0,JPN,cdd|Hazard|Difference|Population weighted,days/yr,9.924544084,9.958907283,9.997485163,10.03495857,10.06832773,10.09788494,10.12399447,10.14698475,10.16717526,10.18490714 +Climate Solutions,ssp2_3p0,SYR,cdd|Hazard|Difference|Population weighted,days/yr,3.617119514,3.60182776,3.587485474,3.575178685,3.564932214,3.555579516,3.54774801,3.541274401,3.536276223,3.532474429 +Climate Solutions,ssp2_3p0,HND,cdd|Hazard|Difference|Population weighted,days/yr,18.50897289,18.54065384,18.58281889,18.62838993,18.67580605,18.72264977,18.76639262,18.80668764,18.84366029,18.87690021 +Climate Solutions,ssp2_3p0,MMR,cdd|Hazard|Difference|Population weighted,days/yr,6.485049724,6.472790049,6.46154815,6.451692039,6.443214257,6.435240252,6.427593731,6.419873469,6.411591155,6.403176166 +Climate Solutions,ssp2_3p0,MEX,cdd|Hazard|Difference|Population weighted,days/yr,11.71432126,11.73778825,11.76407507,11.79220192,11.8205585,11.84784002,11.87250236,11.89436409,11.91339909,11.92961483 +Climate Solutions,ssp2_3p0,EGY,cdd|Hazard|Difference|Population weighted,days/yr,2.462271611,2.480576751,2.482653986,2.474722645,2.460947838,2.442888512,2.422349249,2.399518761,2.375729532,2.35220141 +Climate Solutions,ssp2_3p0,SGP,cdd|Hazard|Difference|Population weighted,days/yr,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939,11.77979939 +Climate Solutions,ssp2_3p0,SRB,cdd|Hazard|Difference|Population weighted,days/yr,13.97441665,13.96773439,13.96350775,13.96070863,13.95857414,13.95694536,13.95532377,13.9535828,13.95181353,13.94998196 +Climate Solutions,ssp2_3p0,BWA,cdd|Hazard|Difference|Population weighted,days/yr,10.47446868,10.47602729,10.47169119,10.46833302,10.47044953,10.47475574,10.47220798,10.47199823,10.47035311,10.47173831 +Climate Solutions,ssp2_3p0,GBR,cdd|Hazard|Difference|Population weighted,days/yr,8.137189835,8.141852888,8.145004765,8.147309401,8.14892284,8.150237128,8.151497444,8.152656795,8.153830984,8.15510428 +Climate Solutions,ssp2_3p0,GMB,cdd|Hazard|Difference|Population weighted,days/yr,4.043099124,4.072920189,4.094811705,4.111436996,4.122864983,4.131554213,4.139959137,4.148302579,4.155977766,4.162809592 +Climate Solutions,ssp2_3p0,GRC,cdd|Hazard|Difference|Population weighted,days/yr,16.99630143,17.0396861,17.07825065,17.10987825,17.13714949,17.16166094,17.18385623,17.20288331,17.21937999,17.23407951 +Climate Solutions,ssp2_3p0,LKA,cdd|Hazard|Difference|Population weighted,days/yr,-5.291832531,-5.285756418,-5.276934962,-5.264173033,-5.247233464,-5.227071499,-5.205068022,-5.182144088,-5.159099384,-5.136320822 +Climate Solutions,ssp2_3p0,GUF,cdd|Hazard|Difference|Population weighted,days/yr,5.423698755,5.451808164,5.463370623,5.469727538,5.466150535,5.466573715,5.460265294,5.453455169,5.450559053,5.445959102 +Climate Solutions,ssp2_3p0,COM,cdd|Hazard|Difference|Population weighted,days/yr,2.43219877,2.488562328,2.525072573,2.552431228,2.569105232,2.580806872,2.589772012,2.595602933,2.598559634,2.599670454 +Climate Solutions,ssp2_3p0,FSM,cdd|Hazard|Difference|Population weighted,days/yr,0.526591877,0.560661542,0.598957699,0.64092963,0.683770724,0.725221767,0.764220404,0.799636957,0.831020538,0.858825443 +Climate Solutions,ssp2_3p0,GLP,cdd|Hazard|Difference|Population weighted,days/yr,51.95833092,51.72676325,51.64230814,51.59101086,51.57505543,51.57391186,51.57256957,51.57196706,51.57148732,51.57108194 +Climate Solutions,ssp2_3p0,MYT,cdd|Hazard|Difference|Population weighted,days/yr,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385,12.88713385 +Climate Solutions,ssp2_3p0,VIR,cdd|Hazard|Difference|Population weighted,days/yr,16.00085568,16.02311803,16.03540617,16.05588512,16.0599612,16.06437246,16.06956594,16.07753594,16.09007303,16.09640655 +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Risk score,risk score,0.610410414,0.610410414,0.610410414,0.610410414,0.610410414,0.610410414,0.610410414,0.610410414,0.610410414,0.610410414 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Risk score,risk score,0.097621653,0.097621653,0.097621653,0.097621653,0.097621653,0.097621653,0.097621653,0.097621653,0.097621653,0.097621653 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Risk score,risk score,1.74423318,1.74423318,1.74423318,1.74423318,1.74423318,1.74423318,1.74423318,1.74423318,1.74423318,1.74423318 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Risk score,risk score,0.283825779,0.283825779,0.283825779,0.283825779,0.283825779,0.283825779,0.283825779,0.283825779,0.283825779,0.283825779 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Risk score,risk score,1.219406663,1.219406663,1.219406663,1.219406663,1.219406663,1.219406663,1.219406663,1.219406663,1.219406663,1.219406663 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Risk score,risk score,1.558881437,1.558881437,1.558881437,1.558881437,1.558881437,1.558881437,1.558881437,1.558881437,1.558881437,1.558881437 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Risk score,risk score,0.708028451,0.708028451,0.708028451,0.708028451,0.708028451,0.708028451,0.708028451,0.708028451,0.708028451,0.708028451 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Risk score,risk score,0.558155663,0.558155663,0.558155663,0.558155663,0.558155663,0.558155663,0.558155663,0.558155663,0.558155663,0.558155663 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Risk score,risk score,1.296501027,1.296501027,1.296501027,1.296501027,1.296501027,1.296501027,1.296501027,1.296501027,1.296501027,1.296501027 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Risk score,risk score,1.447408438,1.447408438,1.447408438,1.447408438,1.447408438,1.447408438,1.447408438,1.447408438,1.447408438,1.447408438 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Risk score,risk score,0.080440691,0.080440691,0.080440691,0.080440691,0.080440691,0.080440691,0.080440691,0.080440691,0.080440691,0.080440691 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Risk score,risk score,1.812992118,1.812992118,1.812992118,1.812992118,1.812992118,1.812992118,1.812992118,1.812992118,1.812992118,1.812992118 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Risk score,risk score,1.108098498,1.108098498,1.108098498,1.108098498,1.108098498,1.108098498,1.108098498,1.108098498,1.108098498,1.108098498 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Risk score,risk score,2.527086922,2.527086922,2.527086922,2.527086922,2.527086922,2.527086922,2.527086922,2.527086922,2.527086922,2.527086922 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Risk score,risk score,0.18837951,0.18837951,0.18837951,0.18837951,0.18837951,0.18837951,0.18837951,0.18837951,0.18837951,0.18837951 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Risk score,risk score,0.20887476,0.20887476,0.20887476,0.20887476,0.20887476,0.20887476,0.20887476,0.20887476,0.20887476,0.20887476 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Risk score,risk score,0.731781018,0.731781018,0.731781018,0.731781018,0.731781018,0.731781018,0.731781018,0.731781018,0.731781018,0.731781018 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Risk score,risk score,0.397060342,0.397060342,0.397060342,0.397060342,0.397060342,0.397060342,0.397060342,0.397060342,0.397060342,0.397060342 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Risk score,risk score,1.587337141,1.587337141,1.587337141,1.587337141,1.587337141,1.587337141,1.587337141,1.587337141,1.587337141,1.587337141 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Risk score,risk score,1.769372063,1.769372063,1.769372063,1.769372063,1.769372063,1.769372063,1.769372063,1.769372063,1.769372063,1.769372063 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Risk score,risk score,0.812652544,0.812652544,0.812652544,0.812652544,0.812652544,0.812652544,0.812652544,0.812652544,0.812652544,0.812652544 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Risk score,risk score,1.138411077,1.138411077,1.138411077,1.138411077,1.138411077,1.138411077,1.138411077,1.138411077,1.138411077,1.138411077 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Risk score,risk score,0.835230312,0.835230312,0.835230312,0.835230312,0.835230312,0.835230312,0.835230312,0.835230312,0.835230312,0.835230312 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Risk score,risk score,0.306748859,0.306748859,0.306748859,0.306748859,0.306748859,0.306748859,0.306748859,0.306748859,0.306748859,0.306748859 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Risk score,risk score,0.26783835,0.26783835,0.26783835,0.26783835,0.26783835,0.26783835,0.26783835,0.26783835,0.26783835,0.26783835 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Risk score,risk score,2.157766557,2.157766557,2.157766557,2.157766557,2.157766557,2.157766557,2.157766557,2.157766557,2.157766557,2.157766557 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Risk score,risk score,1.541918541,1.541918541,1.541918541,1.541918541,1.541918541,1.541918541,1.541918541,1.541918541,1.541918541,1.541918541 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Risk score,risk score,0.461112591,0.461112591,0.461112591,0.461112591,0.461112591,0.461112591,0.461112591,0.461112591,0.461112591,0.461112591 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Risk score,risk score,0.88359212,0.88359212,0.88359212,0.88359212,0.88359212,0.88359212,0.88359212,0.88359212,0.88359212,0.88359212 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Risk score,risk score,0.246188914,0.246188914,0.246188914,0.246188914,0.246188914,0.246188914,0.246188914,0.246188914,0.246188914,0.246188914 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Risk score,risk score,2.119809466,2.119809466,2.119809466,2.119809466,2.119809466,2.119809466,2.119809466,2.119809466,2.119809466,2.119809466 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Risk score,risk score,1.747934551,1.747934551,1.747934551,1.747934551,1.747934551,1.747934551,1.747934551,1.747934551,1.747934551,1.747934551 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Risk score,risk score,0.045660295,0.045660295,0.045660295,0.045660295,0.045660295,0.045660295,0.045660295,0.045660295,0.045660295,0.045660295 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Risk score,risk score,0.246924925,0.246924925,0.246924925,0.246924925,0.246924925,0.246924925,0.246924925,0.246924925,0.246924925,0.246924925 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Risk score,risk score,1.826750032,1.826750032,1.826750032,1.826750032,1.826750032,1.826750032,1.826750032,1.826750032,1.826750032,1.826750032 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Risk score,risk score,0.047357128,0.047357128,0.047357128,0.047357128,0.047357128,0.047357128,0.047357128,0.047357128,0.047357128,0.047357128 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Risk score,risk score,1.988765453,1.988765453,1.988765453,1.988765453,1.988765453,1.988765453,1.988765453,1.988765453,1.988765453,1.988765453 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Risk score,risk score,0.786594908,0.786594908,0.786594908,0.786594908,0.786594908,0.786594908,0.786594908,0.786594908,0.786594908,0.786594908 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Risk score,risk score,1.212138963,1.212138963,1.212138963,1.212138963,1.212138963,1.212138963,1.212138963,1.212138963,1.212138963,1.212138963 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Risk score,risk score,0.799463065,0.799463065,0.799463065,0.799463065,0.799463065,0.799463065,0.799463065,0.799463065,0.799463065,0.799463065 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Risk score,risk score,0.175488738,0.175488738,0.175488738,0.175488738,0.175488738,0.175488738,0.175488738,0.175488738,0.175488738,0.175488738 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Risk score,risk score,1.231702685,1.231702685,1.231702685,1.231702685,1.231702685,1.231702685,1.231702685,1.231702685,1.231702685,1.231702685 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Risk score,risk score,0.484198922,0.484198922,0.484198922,0.484198922,0.484198922,0.484198922,0.484198922,0.484198922,0.484198922,0.484198922 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Risk score,risk score,0.377784963,0.377784963,0.377784963,0.377784963,0.377784963,0.377784963,0.377784963,0.377784963,0.377784963,0.377784963 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Risk score,risk score,1.044862236,1.044862236,1.044862236,1.044862236,1.044862236,1.044862236,1.044862236,1.044862236,1.044862236,1.044862236 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Risk score,risk score,1.315916834,1.315916834,1.315916834,1.315916834,1.315916834,1.315916834,1.315916834,1.315916834,1.315916834,1.315916834 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Risk score,risk score,1.828143531,1.828143531,1.828143531,1.828143531,1.828143531,1.828143531,1.828143531,1.828143531,1.828143531,1.828143531 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Risk score,risk score,1.371954623,1.371954623,1.371954623,1.371954623,1.371954623,1.371954623,1.371954623,1.371954623,1.371954623,1.371954623 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Risk score,risk score,2.590024088,2.590024088,2.590024088,2.590024088,2.590024088,2.590024088,2.590024088,2.590024088,2.590024088,2.590024088 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Risk score,risk score,0.067625393,0.067625393,0.067625393,0.067625393,0.067625393,0.067625393,0.067625393,0.067625393,0.067625393,0.067625393 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Risk score,risk score,0.042223637,0.042223637,0.042223637,0.042223637,0.042223637,0.042223637,0.042223637,0.042223637,0.042223637,0.042223637 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Risk score,risk score,0.794648577,0.794648577,0.794648577,0.794648577,0.794648577,0.794648577,0.794648577,0.794648577,0.794648577,0.794648577 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Risk score,risk score,0.074874741,0.074874741,0.074874741,0.074874741,0.074874741,0.074874741,0.074874741,0.074874741,0.074874741,0.074874741 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Risk score,risk score,0.718571445,0.718571445,0.718571445,0.718571445,0.718571445,0.718571445,0.718571445,0.718571445,0.718571445,0.718571445 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Risk score,risk score,2.337911998,2.337911998,2.337911998,2.337911998,2.337911998,2.337911998,2.337911998,2.337911998,2.337911998,2.337911998 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Risk score,risk score,1.710201943,1.710201943,1.710201943,1.710201943,1.710201943,1.710201943,1.710201943,1.710201943,1.710201943,1.710201943 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Risk score,risk score,0.98234373,0.98234373,0.98234373,0.98234373,0.98234373,0.98234373,0.98234373,0.98234373,0.98234373,0.98234373 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Risk score,risk score,0.924580814,0.924580814,0.924580814,0.924580814,0.924580814,0.924580814,0.924580814,0.924580814,0.924580814,0.924580814 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Risk score,risk score,0.029043042,0.029043042,0.029043042,0.029043042,0.029043042,0.029043042,0.029043042,0.029043042,0.029043042,0.029043042 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Risk score,risk score,0.257086968,0.257086968,0.257086968,0.257086968,0.257086968,0.257086968,0.257086968,0.257086968,0.257086968,0.257086968 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Risk score,risk score,1.245137976,1.245137976,1.245137976,1.245137976,1.245137976,1.245137976,1.245137976,1.245137976,1.245137976,1.245137976 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Risk score,risk score,1.433772278,1.433772278,1.433772278,1.433772278,1.433772278,1.433772278,1.433772278,1.433772278,1.433772278,1.433772278 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Risk score,risk score,2.183874541,2.183874541,2.183874541,2.183874541,2.183874541,2.183874541,2.183874541,2.183874541,2.183874541,2.183874541 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Risk score,risk score,0.394754676,0.394754676,0.394754676,0.394754676,0.394754676,0.394754676,0.394754676,0.394754676,0.394754676,0.394754676 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Risk score,risk score,1.235077727,1.235077727,1.235077727,1.235077727,1.235077727,1.235077727,1.235077727,1.235077727,1.235077727,1.235077727 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Risk score,risk score,0.317919433,0.317919433,0.317919433,0.317919433,0.317919433,0.317919433,0.317919433,0.317919433,0.317919433,0.317919433 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Risk score,risk score,1.016260634,1.016260634,1.016260634,1.016260634,1.016260634,1.016260634,1.016260634,1.016260634,1.016260634,1.016260634 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Risk score,risk score,1.595936363,1.595936363,1.595936363,1.595936363,1.595936363,1.595936363,1.595936363,1.595936363,1.595936363,1.595936363 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Risk score,risk score,0.489200027,0.489200027,0.489200027,0.489200027,0.489200027,0.489200027,0.489200027,0.489200027,0.489200027,0.489200027 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Risk score,risk score,0.032549421,0.032549421,0.032549421,0.032549421,0.032549421,0.032549421,0.032549421,0.032549421,0.032549421,0.032549421 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Risk score,risk score,0.444469705,0.444469705,0.444469705,0.444469705,0.444469705,0.444469705,0.444469705,0.444469705,0.444469705,0.444469705 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Risk score,risk score,0.495471398,0.495471398,0.495471398,0.495471398,0.495471398,0.495471398,0.495471398,0.495471398,0.495471398,0.495471398 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Risk score,risk score,0.215591628,0.215591628,0.215591628,0.215591628,0.215591628,0.215591628,0.215591628,0.215591628,0.215591628,0.215591628 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Risk score,risk score,0.016128572,0.016128572,0.016128572,0.016128572,0.016128572,0.016128572,0.016128572,0.016128572,0.016128572,0.016128572 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Risk score,risk score,0.344387586,0.344387586,0.344387586,0.344387586,0.344387586,0.344387586,0.344387586,0.344387586,0.344387586,0.344387586 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Risk score,risk score,2.630913672,2.630913672,2.630913672,2.630913672,2.630913672,2.630913672,2.630913672,2.630913672,2.630913672,2.630913672 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Risk score,risk score,0.347401005,0.347401005,0.347401005,0.347401005,0.347401005,0.347401005,0.347401005,0.347401005,0.347401005,0.347401005 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Risk score,risk score,1.451040632,1.451040632,1.451040632,1.451040632,1.451040632,1.451040632,1.451040632,1.451040632,1.451040632,1.451040632 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Risk score,risk score,0.813482436,0.813482436,0.813482436,0.813482436,0.813482436,0.813482436,0.813482436,0.813482436,0.813482436,0.813482436 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Risk score,risk score,0.364362902,0.364362902,0.364362902,0.364362902,0.364362902,0.364362902,0.364362902,0.364362902,0.364362902,0.364362902 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Risk score,risk score,0.747558582,0.747558582,0.747558582,0.747558582,0.747558582,0.747558582,0.747558582,0.747558582,0.747558582,0.747558582 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Risk score,risk score,2.463589303,2.463589303,2.463589303,2.463589303,2.463589303,2.463589303,2.463589303,2.463589303,2.463589303,2.463589303 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Risk score,risk score,0.64008349,0.64008349,0.64008349,0.64008349,0.64008349,0.64008349,0.64008349,0.64008349,0.64008349,0.64008349 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Risk score,risk score,0.550973361,0.550973361,0.550973361,0.550973361,0.550973361,0.550973361,0.550973361,0.550973361,0.550973361,0.550973361 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Risk score,risk score,0.14473594,0.14473594,0.14473594,0.14473594,0.14473594,0.14473594,0.14473594,0.14473594,0.14473594,0.14473594 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Risk score,risk score,0.536331874,0.536331874,0.536331874,0.536331874,0.536331874,0.536331874,0.536331874,0.536331874,0.536331874,0.536331874 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Risk score,risk score,2.056684609,2.056684609,2.056684609,2.056684609,2.056684609,2.056684609,2.056684609,2.056684609,2.056684609,2.056684609 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Risk score,risk score,1.040859047,1.040859047,1.040859047,1.040859047,1.040859047,1.040859047,1.040859047,1.040859047,1.040859047,1.040859047 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Risk score,risk score,1.610685552,1.610685552,1.610685552,1.610685552,1.610685552,1.610685552,1.610685552,1.610685552,1.610685552,1.610685552 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Risk score,risk score,0.168984906,0.168984906,0.168984906,0.168984906,0.168984906,0.168984906,0.168984906,0.168984906,0.168984906,0.168984906 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Risk score,risk score,0.077183663,0.077183663,0.077183663,0.077183663,0.077183663,0.077183663,0.077183663,0.077183663,0.077183663,0.077183663 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Risk score,risk score,0.217760725,0.217760725,0.217760725,0.217760725,0.217760725,0.217760725,0.217760725,0.217760725,0.217760725,0.217760725 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Risk score,risk score,0.229255359,0.229255359,0.229255359,0.229255359,0.229255359,0.229255359,0.229255359,0.229255359,0.229255359,0.229255359 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Risk score,risk score,1.346830162,1.346830162,1.346830162,1.346830162,1.346830162,1.346830162,1.346830162,1.346830162,1.346830162,1.346830162 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Risk score,risk score,0.57905012,0.57905012,0.57905012,0.57905012,0.57905012,0.57905012,0.57905012,0.57905012,0.57905012,0.57905012 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Risk score,risk score,0.678144386,0.678144386,0.678144386,0.678144386,0.678144386,0.678144386,0.678144386,0.678144386,0.678144386,0.678144386 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Risk score,risk score,0.404635376,0.404635376,0.404635376,0.404635376,0.404635376,0.404635376,0.404635376,0.404635376,0.404635376,0.404635376 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Risk score,risk score,2.556820729,2.556820729,2.556820729,2.556820729,2.556820729,2.556820729,2.556820729,2.556820729,2.556820729,2.556820729 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Risk score,risk score,1.314914915,1.314914915,1.314914915,1.314914915,1.314914915,1.314914915,1.314914915,1.314914915,1.314914915,1.314914915 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Risk score,risk score,1.274362495,1.274362495,1.274362495,1.274362495,1.274362495,1.274362495,1.274362495,1.274362495,1.274362495,1.274362495 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Risk score,risk score,0.571975455,0.571975455,0.571975455,0.571975455,0.571975455,0.571975455,0.571975455,0.571975455,0.571975455,0.571975455 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Risk score,risk score,0.549686796,0.549686796,0.549686796,0.549686796,0.549686796,0.549686796,0.549686796,0.549686796,0.549686796,0.549686796 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Risk score,risk score,0.560960732,0.560960732,0.560960732,0.560960732,0.560960732,0.560960732,0.560960732,0.560960732,0.560960732,0.560960732 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Risk score,risk score,0.114235196,0.114235196,0.114235196,0.114235196,0.114235196,0.114235196,0.114235196,0.114235196,0.114235196,0.114235196 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Risk score,risk score,0.375108357,0.375108357,0.375108357,0.375108357,0.375108357,0.375108357,0.375108357,0.375108357,0.375108357,0.375108357 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Risk score,risk score,1.949243364,1.949243364,1.949243364,1.949243364,1.949243364,1.949243364,1.949243364,1.949243364,1.949243364,1.949243364 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Risk score,risk score,0.427733037,0.427733037,0.427733037,0.427733037,0.427733037,0.427733037,0.427733037,0.427733037,0.427733037,0.427733037 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Risk score,risk score,0.256683839,0.256683839,0.256683839,0.256683839,0.256683839,0.256683839,0.256683839,0.256683839,0.256683839,0.256683839 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Risk score,risk score,1.78016617,1.78016617,1.78016617,1.78016617,1.78016617,1.78016617,1.78016617,1.78016617,1.78016617,1.78016617 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Risk score,risk score,2.12847228,2.12847228,2.12847228,2.12847228,2.12847228,2.12847228,2.12847228,2.12847228,2.12847228,2.12847228 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Risk score,risk score,2.558583897,2.558583897,2.558583897,2.558583897,2.558583897,2.558583897,2.558583897,2.558583897,2.558583897,2.558583897 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Risk score,risk score,1.101782083,1.101782083,1.101782083,1.101782083,1.101782083,1.101782083,1.101782083,1.101782083,1.101782083,1.101782083 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Risk score,risk score,1.253599071,1.253599071,1.253599071,1.253599071,1.253599071,1.253599071,1.253599071,1.253599071,1.253599071,1.253599071 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Risk score,risk score,0.14670137,0.14670137,0.14670137,0.14670137,0.14670137,0.14670137,0.14670137,0.14670137,0.14670137,0.14670137 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Risk score,risk score,0.316582963,0.316582963,0.316582963,0.316582963,0.316582963,0.316582963,0.316582963,0.316582963,0.316582963,0.316582963 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Risk score,risk score,1.304013094,1.304013094,1.304013094,1.304013094,1.304013094,1.304013094,1.304013094,1.304013094,1.304013094,1.304013094 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Risk score,risk score,0.333499073,0.333499073,0.333499073,0.333499073,0.333499073,0.333499073,0.333499073,0.333499073,0.333499073,0.333499073 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Risk score,risk score,2.053634843,2.053634843,2.053634843,2.053634843,2.053634843,2.053634843,2.053634843,2.053634843,2.053634843,2.053634843 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Risk score,risk score,1.156751987,1.156751987,1.156751987,1.156751987,1.156751987,1.156751987,1.156751987,1.156751987,1.156751987,1.156751987 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Risk score,risk score,0.423652936,0.423652936,0.423652936,0.423652936,0.423652936,0.423652936,0.423652936,0.423652936,0.423652936,0.423652936 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Risk score,risk score,0.136478386,0.136478386,0.136478386,0.136478386,0.136478386,0.136478386,0.136478386,0.136478386,0.136478386,0.136478386 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Risk score,risk score,0.309597946,0.309597946,0.309597946,0.309597946,0.309597946,0.309597946,0.309597946,0.309597946,0.309597946,0.309597946 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Risk score,risk score,0.378752654,0.378752654,0.378752654,0.378752654,0.378752654,0.378752654,0.378752654,0.378752654,0.378752654,0.378752654 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Risk score,risk score,0.38716138,0.38716138,0.38716138,0.38716138,0.38716138,0.38716138,0.38716138,0.38716138,0.38716138,0.38716138 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Risk score,risk score,1.802950519,1.802950519,1.802950519,1.802950519,1.802950519,1.802950519,1.802950519,1.802950519,1.802950519,1.802950519 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Risk score,risk score,0.307690355,0.307690355,0.307690355,0.307690355,0.307690355,0.307690355,0.307690355,0.307690355,0.307690355,0.307690355 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Risk score,risk score,1.713416325,1.713416325,1.713416325,1.713416325,1.713416325,1.713416325,1.713416325,1.713416325,1.713416325,1.713416325 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Risk score,risk score,1.290867563,1.290867563,1.290867563,1.290867563,1.290867563,1.290867563,1.290867563,1.290867563,1.290867563,1.290867563 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Risk score,risk score,0.013702994,0.013702994,0.013702994,0.013702994,0.013702994,0.013702994,0.013702994,0.013702994,0.013702994,0.013702994 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Risk score,risk score,0.187042811,0.187042811,0.187042811,0.187042811,0.187042811,0.187042811,0.187042811,0.187042811,0.187042811,0.187042811 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Risk score,risk score,0.090776646,0.090776646,0.090776646,0.090776646,0.090776646,0.090776646,0.090776646,0.090776646,0.090776646,0.090776646 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Risk score,risk score,0.36120461,0.36120461,0.36120461,0.36120461,0.36120461,0.36120461,0.36120461,0.36120461,0.36120461,0.36120461 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Risk score,risk score,2.545682614,2.545682614,2.545682614,2.545682614,2.545682614,2.545682614,2.545682614,2.545682614,2.545682614,2.545682614 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Risk score,risk score,0.236536059,0.236536059,0.236536059,0.236536059,0.236536059,0.236536059,0.236536059,0.236536059,0.236536059,0.236536059 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Risk score,risk score,0.497789656,0.497789656,0.497789656,0.497789656,0.497789656,0.497789656,0.497789656,0.497789656,0.497789656,0.497789656 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Risk score,risk score,0.266299668,0.266299668,0.266299668,0.266299668,0.266299668,0.266299668,0.266299668,0.266299668,0.266299668,0.266299668 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Risk score,risk score,0.91010016,0.91010016,0.91010016,0.91010016,0.91010016,0.91010016,0.91010016,0.91010016,0.91010016,0.91010016 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Risk score,risk score,1.541061181,1.541061181,1.541061181,1.541061181,1.541061181,1.541061181,1.541061181,1.541061181,1.541061181,1.541061181 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Risk score,risk score,1.511686127,1.511686127,1.511686127,1.511686127,1.511686127,1.511686127,1.511686127,1.511686127,1.511686127,1.511686127 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Risk score,risk score,0.939009986,0.939009986,0.939009986,0.939009986,0.939009986,0.939009986,0.939009986,0.939009986,0.939009986,0.939009986 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Risk score,risk score,0.512094701,0.512094701,0.512094701,0.512094701,0.512094701,0.512094701,0.512094701,0.512094701,0.512094701,0.512094701 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Risk score,risk score,0.518797423,0.518797423,0.518797423,0.518797423,0.518797423,0.518797423,0.518797423,0.518797423,0.518797423,0.518797423 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Risk score,risk score,0.696713955,0.696713955,0.696713955,0.696713955,0.696713955,0.696713955,0.696713955,0.696713955,0.696713955,0.696713955 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Risk score,risk score,0.101959833,0.101959833,0.101959833,0.101959833,0.101959833,0.101959833,0.101959833,0.101959833,0.101959833,0.101959833 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Risk score,risk score,0.708142437,0.708142437,0.708142437,0.708142437,0.708142437,0.708142437,0.708142437,0.708142437,0.708142437,0.708142437 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Risk score,risk score,0.387738777,0.387738777,0.387738777,0.387738777,0.387738777,0.387738777,0.387738777,0.387738777,0.387738777,0.387738777 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Risk score,risk score,0.843716808,0.843716808,0.843716808,0.843716808,0.843716808,0.843716808,0.843716808,0.843716808,0.843716808,0.843716808 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Risk score,risk score,0.101822728,0.101822728,0.101822728,0.101822728,0.101822728,0.101822728,0.101822728,0.101822728,0.101822728,0.101822728 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Risk score,risk score,1.14360346,1.14360346,1.14360346,1.14360346,1.14360346,1.14360346,1.14360346,1.14360346,1.14360346,1.14360346 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Risk score,risk score,1.126630783,1.126630783,1.126630783,1.126630783,1.126630783,1.126630783,1.126630783,1.126630783,1.126630783,1.126630783 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Risk score,risk score,0.639602071,0.639602071,0.639602071,0.639602071,0.639602071,0.639602071,0.639602071,0.639602071,0.639602071,0.639602071 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Risk score,risk score,1.197156779,1.197156779,1.197156779,1.197156779,1.197156779,1.197156779,1.197156779,1.197156779,1.197156779,1.197156779 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Risk score,risk score,2.569698366,2.569698366,2.569698366,2.569698366,2.569698366,2.569698366,2.569698366,2.569698366,2.569698366,2.569698366 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Risk score,risk score,1.346384502,1.346384502,1.346384502,1.346384502,1.346384502,1.346384502,1.346384502,1.346384502,1.346384502,1.346384502 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Risk score,risk score,0.111966718,0.111966718,0.111966718,0.111966718,0.111966718,0.111966718,0.111966718,0.111966718,0.111966718,0.111966718 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Risk score,risk score,0.014695154,0.014695154,0.014695154,0.014695154,0.014695154,0.014695154,0.014695154,0.014695154,0.014695154,0.014695154 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Risk score,risk score,0.47384343,0.47384343,0.47384343,0.47384343,0.47384343,0.47384343,0.47384343,0.47384343,0.47384343,0.47384343 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Risk score,risk score,1.108662644,1.108662644,1.108662644,1.108662644,1.108662644,1.108662644,1.108662644,1.108662644,1.108662644,1.108662644 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Risk score,risk score,1.014001011,1.014001011,1.014001011,1.014001011,1.014001011,1.014001011,1.014001011,1.014001011,1.014001011,1.014001011 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Risk score,risk score,0.237364668,0.237364668,0.237364668,0.237364668,0.237364668,0.237364668,0.237364668,0.237364668,0.237364668,0.237364668 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Risk score,risk score,2.20213385,2.20213385,2.20213385,2.20213385,2.20213385,2.20213385,2.20213385,2.20213385,2.20213385,2.20213385 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Risk score,risk score,1.95205137,1.95205137,1.95205137,1.95205137,1.95205137,1.95205137,1.95205137,1.95205137,1.95205137,1.95205137 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Risk score,risk score,0.212459505,0.212459505,0.212459505,0.212459505,0.212459505,0.212459505,0.212459505,0.212459505,0.212459505,0.212459505 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Risk score,risk score,1.201362594,1.201362594,1.201362594,1.201362594,1.201362594,1.201362594,1.201362594,1.201362594,1.201362594,1.201362594 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Risk score,risk score,0.180123107,0.180123107,0.180123107,0.180123107,0.180123107,0.180123107,0.180123107,0.180123107,0.180123107,0.180123107 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Risk score,risk score,1.900797137,1.900797137,1.900797137,1.900797137,1.900797137,1.900797137,1.900797137,1.900797137,1.900797137,1.900797137 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Risk score,risk score,0.334858398,0.334858398,0.334858398,0.334858398,0.334858398,0.334858398,0.334858398,0.334858398,0.334858398,0.334858398 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Risk score,risk score,0.085710272,0.085710272,0.085710272,0.085710272,0.085710272,0.085710272,0.085710272,0.085710272,0.085710272,0.085710272 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Risk score,risk score,0.07518197,0.07518197,0.07518197,0.07518197,0.07518197,0.07518197,0.07518197,0.07518197,0.07518197,0.07518197 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Risk score,risk score,1.022506486,1.022506486,1.022506486,1.022506486,1.022506486,1.022506486,1.022506486,1.022506486,1.022506486,1.022506486 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Risk score,risk score,0.395901235,0.395901235,0.395901235,0.395901235,0.395901235,0.395901235,0.395901235,0.395901235,0.395901235,0.395901235 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Risk score,risk score,1.319656814,1.319656814,1.319656814,1.319656814,1.319656814,1.319656814,1.319656814,1.319656814,1.319656814,1.319656814 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Risk score,risk score,0.230892329,0.230892329,0.230892329,0.230892329,0.230892329,0.230892329,0.230892329,0.230892329,0.230892329,0.230892329 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Risk score,risk score,0.47049375,0.47049375,0.47049375,0.47049375,0.47049375,0.47049375,0.47049375,0.47049375,0.47049375,0.47049375 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Risk score,risk score,0.470900124,0.470900124,0.470900124,0.470900124,0.470900124,0.470900124,0.470900124,0.470900124,0.470900124,0.470900124 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Risk score,risk score,1.112584023,1.112584023,1.112584023,1.112584023,1.112584023,1.112584023,1.112584023,1.112584023,1.112584023,1.112584023 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Risk score,risk score,0.258424899,0.258424899,0.258424899,0.258424899,0.258424899,0.258424899,0.258424899,0.258424899,0.258424899,0.258424899 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Risk score,risk score,0.297332856,0.297332856,0.297332856,0.297332856,0.297332856,0.297332856,0.297332856,0.297332856,0.297332856,0.297332856 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Risk score,risk score,1.752580844,1.752580844,1.752580844,1.752580844,1.752580844,1.752580844,1.752580844,1.752580844,1.752580844,1.752580844 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Risk score,risk score,0.725239257,0.725239257,0.725239257,0.725239257,0.725239257,0.725239257,0.725239257,0.725239257,0.725239257,0.725239257 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Risk score,risk score,1.583642222,1.583642222,1.583642222,1.583642222,1.583642222,1.583642222,1.583642222,1.583642222,1.583642222,1.583642222 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Risk score,risk score,1.748424665,1.748424665,1.748424665,1.748424665,1.748424665,1.748424665,1.748424665,1.748424665,1.748424665,1.748424665 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Risk score,risk score,2.629964699,2.629964699,2.629964699,2.629964699,2.629964699,2.629964699,2.629964699,2.629964699,2.629964699,2.629964699 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Risk score,risk score,0.044560542,0.044560542,0.044560542,0.044560542,0.044560542,0.044560542,0.044560542,0.044560542,0.044560542,0.044560542 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Risk score,risk score,0.48706059,0.48706059,0.48706059,0.48706059,0.48706059,0.48706059,0.48706059,0.48706059,0.48706059,0.48706059 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Risk score,risk score,2.170207319,2.170207319,2.170207319,2.170207319,2.170207319,2.170207319,2.170207319,2.170207319,2.170207319,2.170207319 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Risk score,risk score,0.371722953,0.371722953,0.371722953,0.371722953,0.371722953,0.371722953,0.371722953,0.371722953,0.371722953,0.371722953 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Risk score,risk score,0.754374188,0.754374188,0.754374188,0.754374188,0.754374188,0.754374188,0.754374188,0.754374188,0.754374188,0.754374188 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Risk score,risk score,0.588191482,0.588191482,0.588191482,0.588191482,0.588191482,0.588191482,0.588191482,0.588191482,0.588191482,0.588191482 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Risk score,risk score,0.664064112,0.664064112,0.664064112,0.664064112,0.664064112,0.664064112,0.664064112,0.664064112,0.664064112,0.664064112 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Risk score,risk score,0.488717029,0.488717029,0.488717029,0.488717029,0.488717029,0.488717029,0.488717029,0.488717029,0.488717029,0.488717029 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Risk score,risk score,0.058896264,0.058896264,0.058896264,0.058896264,0.058896264,0.058896264,0.058896264,0.058896264,0.058896264,0.058896264 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Risk score,risk score,0.004320695,0.004320695,0.004320695,0.004320695,0.004320695,0.004320695,0.004320695,0.004320695,0.004320695,0.004320695 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Risk score,risk score,0.171456725,0.171456725,0.171456725,0.171456725,0.171456725,0.171456725,0.171456725,0.171456725,0.171456725,0.171456725 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Risk score,risk score,0.12894167,0.12894167,0.12894167,0.12894167,0.12894167,0.12894167,0.12894167,0.12894167,0.12894167,0.12894167 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Risk score,risk score,0.027847784,0.027847784,0.027847784,0.027847784,0.027847784,0.027847784,0.027847784,0.027847784,0.027847784,0.027847784 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Risk score|Land area weighted,risk score,0.627181107,0.627181107,0.627181107,0.627181107,0.627181107,0.627181107,0.627181107,0.627181107,0.627181107,0.627181107 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Risk score|Land area weighted,risk score,0.887497029,0.887497029,0.887497029,0.887497029,0.887497029,0.887497029,0.887497029,0.887497029,0.887497029,0.887497029 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Risk score|Land area weighted,risk score,2.234286636,2.234286636,2.234286636,2.234286636,2.234286636,2.234286636,2.234286636,2.234286636,2.234286636,2.234286636 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Risk score|Land area weighted,risk score,0.410494153,0.410494153,0.410494153,0.410494153,0.410494153,0.410494153,0.410494153,0.410494153,0.410494153,0.410494153 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Risk score|Land area weighted,risk score,1.761021067,1.761021067,1.761021067,1.761021067,1.761021067,1.761021067,1.761021067,1.761021067,1.761021067,1.761021067 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Risk score|Land area weighted,risk score,1.808233489,1.808233489,1.808233489,1.808233489,1.808233489,1.808233489,1.808233489,1.808233489,1.808233489,1.808233489 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.57621894,1.57621894,1.57621894,1.57621894,1.57621894,1.57621894,1.57621894,1.57621894,1.57621894,1.57621894 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Risk score|Land area weighted,risk score,2.484493828,2.484493828,2.484493828,2.484493828,2.484493828,2.484493828,2.484493828,2.484493828,2.484493828,2.484493828 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Risk score|Land area weighted,risk score,1.486848149,1.486848149,1.486848149,1.486848149,1.486848149,1.486848149,1.486848149,1.486848149,1.486848149,1.486848149 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Risk score|Land area weighted,risk score,1.702119199,1.702119199,1.702119199,1.702119199,1.702119199,1.702119199,1.702119199,1.702119199,1.702119199,1.702119199 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Risk score|Land area weighted,risk score,0.599448518,0.599448518,0.599448518,0.599448518,0.599448518,0.599448518,0.599448518,0.599448518,0.599448518,0.599448518 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Risk score|Land area weighted,risk score,2.444084092,2.444084092,2.444084092,2.444084092,2.444084092,2.444084092,2.444084092,2.444084092,2.444084092,2.444084092 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Risk score|Land area weighted,risk score,1.486655796,1.486655796,1.486655796,1.486655796,1.486655796,1.486655796,1.486655796,1.486655796,1.486655796,1.486655796 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Risk score|Land area weighted,risk score,2.824143025,2.824143025,2.824143025,2.824143025,2.824143025,2.824143025,2.824143025,2.824143025,2.824143025,2.824143025 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Risk score|Land area weighted,risk score,2.004450495,2.004450495,2.004450495,2.004450495,2.004450495,2.004450495,2.004450495,2.004450495,2.004450495,2.004450495 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Risk score|Land area weighted,risk score,0.525961014,0.525961014,0.525961014,0.525961014,0.525961014,0.525961014,0.525961014,0.525961014,0.525961014,0.525961014 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Risk score|Land area weighted,risk score,1.116389745,1.116389745,1.116389745,1.116389745,1.116389745,1.116389745,1.116389745,1.116389745,1.116389745,1.116389745 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Risk score|Land area weighted,risk score,0.653609375,0.653609375,0.653609375,0.653609375,0.653609375,0.653609375,0.653609375,0.653609375,0.653609375,0.653609375 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Risk score|Land area weighted,risk score,2.191006318,2.191006318,2.191006318,2.191006318,2.191006318,2.191006318,2.191006318,2.191006318,2.191006318,2.191006318 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Risk score|Land area weighted,risk score,2.779532672,2.779532672,2.779532672,2.779532672,2.779532672,2.779532672,2.779532672,2.779532672,2.779532672,2.779532672 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Risk score|Land area weighted,risk score,1.145621954,1.145621954,1.145621954,1.145621954,1.145621954,1.145621954,1.145621954,1.145621954,1.145621954,1.145621954 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Risk score|Land area weighted,risk score,1.500260647,1.500260647,1.500260647,1.500260647,1.500260647,1.500260647,1.500260647,1.500260647,1.500260647,1.500260647 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Risk score|Land area weighted,risk score,1.333451634,1.333451634,1.333451634,1.333451634,1.333451634,1.333451634,1.333451634,1.333451634,1.333451634,1.333451634 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Risk score|Land area weighted,risk score,0.551764503,0.551764503,0.551764503,0.551764503,0.551764503,0.551764503,0.551764503,0.551764503,0.551764503,0.551764503 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Risk score|Land area weighted,risk score,0.710597335,0.710597335,0.710597335,0.710597335,0.710597335,0.710597335,0.710597335,0.710597335,0.710597335,0.710597335 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Risk score|Land area weighted,risk score,2.874742185,2.874742185,2.874742185,2.874742185,2.874742185,2.874742185,2.874742185,2.874742185,2.874742185,2.874742185 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Risk score|Land area weighted,risk score,1.827728771,1.827728771,1.827728771,1.827728771,1.827728771,1.827728771,1.827728771,1.827728771,1.827728771,1.827728771 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Risk score|Land area weighted,risk score,0.934998451,0.934998451,0.934998451,0.934998451,0.934998451,0.934998451,0.934998451,0.934998451,0.934998451,0.934998451 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Risk score|Land area weighted,risk score,1.150472876,1.150472876,1.150472876,1.150472876,1.150472876,1.150472876,1.150472876,1.150472876,1.150472876,1.150472876 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Risk score|Land area weighted,risk score,0.357234461,0.357234461,0.357234461,0.357234461,0.357234461,0.357234461,0.357234461,0.357234461,0.357234461,0.357234461 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Risk score|Land area weighted,risk score,2.634980278,2.634980278,2.634980278,2.634980278,2.634980278,2.634980278,2.634980278,2.634980278,2.634980278,2.634980278 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Risk score|Land area weighted,risk score,2.1767881,2.1767881,2.1767881,2.1767881,2.1767881,2.1767881,2.1767881,2.1767881,2.1767881,2.1767881 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.173923896,0.173923896,0.173923896,0.173923896,0.173923896,0.173923896,0.173923896,0.173923896,0.173923896,0.173923896 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Risk score|Land area weighted,risk score,0.437889207,0.437889207,0.437889207,0.437889207,0.437889207,0.437889207,0.437889207,0.437889207,0.437889207,0.437889207 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Risk score|Land area weighted,risk score,2.914459395,2.914459395,2.914459395,2.914459395,2.914459395,2.914459395,2.914459395,2.914459395,2.914459395,2.914459395 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Risk score|Land area weighted,risk score,0.55712407,0.55712407,0.55712407,0.55712407,0.55712407,0.55712407,0.55712407,0.55712407,0.55712407,0.55712407 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Risk score|Land area weighted,risk score,2.289735344,2.289735344,2.289735344,2.289735344,2.289735344,2.289735344,2.289735344,2.289735344,2.289735344,2.289735344 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Risk score|Land area weighted,risk score,1.378449979,1.378449979,1.378449979,1.378449979,1.378449979,1.378449979,1.378449979,1.378449979,1.378449979,1.378449979 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Risk score|Land area weighted,risk score,1.499106033,1.499106033,1.499106033,1.499106033,1.499106033,1.499106033,1.499106033,1.499106033,1.499106033,1.499106033 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Risk score|Land area weighted,risk score,1.479551949,1.479551949,1.479551949,1.479551949,1.479551949,1.479551949,1.479551949,1.479551949,1.479551949,1.479551949 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Risk score|Land area weighted,risk score,1.754540014,1.754540014,1.754540014,1.754540014,1.754540014,1.754540014,1.754540014,1.754540014,1.754540014,1.754540014 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.492468425,1.492468425,1.492468425,1.492468425,1.492468425,1.492468425,1.492468425,1.492468425,1.492468425,1.492468425 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.763619139,0.763619139,0.763619139,0.763619139,0.763619139,0.763619139,0.763619139,0.763619139,0.763619139,0.763619139 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Risk score|Land area weighted,risk score,0.49222886,0.49222886,0.49222886,0.49222886,0.49222886,0.49222886,0.49222886,0.49222886,0.49222886,0.49222886 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Risk score|Land area weighted,risk score,1.722905697,1.722905697,1.722905697,1.722905697,1.722905697,1.722905697,1.722905697,1.722905697,1.722905697,1.722905697 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Risk score|Land area weighted,risk score,1.595993943,1.595993943,1.595993943,1.595993943,1.595993943,1.595993943,1.595993943,1.595993943,1.595993943,1.595993943 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Risk score|Land area weighted,risk score,2.250164866,2.250164866,2.250164866,2.250164866,2.250164866,2.250164866,2.250164866,2.250164866,2.250164866,2.250164866 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Risk score|Land area weighted,risk score,2.271547607,2.271547607,2.271547607,2.271547607,2.271547607,2.271547607,2.271547607,2.271547607,2.271547607,2.271547607 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Risk score|Land area weighted,risk score,3.000057727,3.000057727,3.000057727,3.000057727,3.000057727,3.000057727,3.000057727,3.000057727,3.000057727,3.000057727 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Risk score|Land area weighted,risk score,0.282263038,0.282263038,0.282263038,0.282263038,0.282263038,0.282263038,0.282263038,0.282263038,0.282263038,0.282263038 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Risk score|Land area weighted,risk score,0.324236999,0.324236999,0.324236999,0.324236999,0.324236999,0.324236999,0.324236999,0.324236999,0.324236999,0.324236999 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Risk score|Land area weighted,risk score,2.091333753,2.091333753,2.091333753,2.091333753,2.091333753,2.091333753,2.091333753,2.091333753,2.091333753,2.091333753 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Risk score|Land area weighted,risk score,0.757009359,0.757009359,0.757009359,0.757009359,0.757009359,0.757009359,0.757009359,0.757009359,0.757009359,0.757009359 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Risk score|Land area weighted,risk score,0.899936037,0.899936037,0.899936037,0.899936037,0.899936037,0.899936037,0.899936037,0.899936037,0.899936037,0.899936037 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Risk score|Land area weighted,risk score,2.739242541,2.739242541,2.739242541,2.739242541,2.739242541,2.739242541,2.739242541,2.739242541,2.739242541,2.739242541 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Risk score|Land area weighted,risk score,2.158039906,2.158039906,2.158039906,2.158039906,2.158039906,2.158039906,2.158039906,2.158039906,2.158039906,2.158039906 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Risk score|Land area weighted,risk score,1.15209927,1.15209927,1.15209927,1.15209927,1.15209927,1.15209927,1.15209927,1.15209927,1.15209927,1.15209927 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Risk score|Land area weighted,risk score,1.410932348,1.410932348,1.410932348,1.410932348,1.410932348,1.410932348,1.410932348,1.410932348,1.410932348,1.410932348 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Risk score|Land area weighted,risk score,0.51178625,0.51178625,0.51178625,0.51178625,0.51178625,0.51178625,0.51178625,0.51178625,0.51178625,0.51178625 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Risk score|Land area weighted,risk score,0.386816765,0.386816765,0.386816765,0.386816765,0.386816765,0.386816765,0.386816765,0.386816765,0.386816765,0.386816765 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Risk score|Land area weighted,risk score,1.584650636,1.584650636,1.584650636,1.584650636,1.584650636,1.584650636,1.584650636,1.584650636,1.584650636,1.584650636 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.159158606,2.159158606,2.159158606,2.159158606,2.159158606,2.159158606,2.159158606,2.159158606,2.159158606,2.159158606 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Risk score|Land area weighted,risk score,2.887178599,2.887178599,2.887178599,2.887178599,2.887178599,2.887178599,2.887178599,2.887178599,2.887178599,2.887178599 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Risk score|Land area weighted,risk score,0.736367156,0.736367156,0.736367156,0.736367156,0.736367156,0.736367156,0.736367156,0.736367156,0.736367156,0.736367156 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Risk score|Land area weighted,risk score,1.629301797,1.629301797,1.629301797,1.629301797,1.629301797,1.629301797,1.629301797,1.629301797,1.629301797,1.629301797 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Risk score|Land area weighted,risk score,0.839019587,0.839019587,0.839019587,0.839019587,0.839019587,0.839019587,0.839019587,0.839019587,0.839019587,0.839019587 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Risk score|Land area weighted,risk score,1.843614935,1.843614935,1.843614935,1.843614935,1.843614935,1.843614935,1.843614935,1.843614935,1.843614935,1.843614935 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Risk score|Land area weighted,risk score,1.710002847,1.710002847,1.710002847,1.710002847,1.710002847,1.710002847,1.710002847,1.710002847,1.710002847,1.710002847 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Risk score|Land area weighted,risk score,1.024388618,1.024388618,1.024388618,1.024388618,1.024388618,1.024388618,1.024388618,1.024388618,1.024388618,1.024388618 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Risk score|Land area weighted,risk score,0.813805394,0.813805394,0.813805394,0.813805394,0.813805394,0.813805394,0.813805394,0.813805394,0.813805394,0.813805394 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Risk score|Land area weighted,risk score,0.800843998,0.800843998,0.800843998,0.800843998,0.800843998,0.800843998,0.800843998,0.800843998,0.800843998,0.800843998 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Risk score|Land area weighted,risk score,0.62110183,0.62110183,0.62110183,0.62110183,0.62110183,0.62110183,0.62110183,0.62110183,0.62110183,0.62110183 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Risk score|Land area weighted,risk score,2.781952205,2.781952205,2.781952205,2.781952205,2.781952205,2.781952205,2.781952205,2.781952205,2.781952205,2.781952205 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Risk score|Land area weighted,risk score,0.402627902,0.402627902,0.402627902,0.402627902,0.402627902,0.402627902,0.402627902,0.402627902,0.402627902,0.402627902 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Risk score|Land area weighted,risk score,0.432973231,0.432973231,0.432973231,0.432973231,0.432973231,0.432973231,0.432973231,0.432973231,0.432973231,0.432973231 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Risk score|Land area weighted,risk score,2.916422488,2.916422488,2.916422488,2.916422488,2.916422488,2.916422488,2.916422488,2.916422488,2.916422488,2.916422488 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Risk score|Land area weighted,risk score,0.538737185,0.538737185,0.538737185,0.538737185,0.538737185,0.538737185,0.538737185,0.538737185,0.538737185,0.538737185 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Risk score|Land area weighted,risk score,1.838483925,1.838483925,1.838483925,1.838483925,1.838483925,1.838483925,1.838483925,1.838483925,1.838483925,1.838483925 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Risk score|Land area weighted,risk score,0.922485046,0.922485046,0.922485046,0.922485046,0.922485046,0.922485046,0.922485046,0.922485046,0.922485046,0.922485046 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Risk score|Land area weighted,risk score,0.45384468,0.45384468,0.45384468,0.45384468,0.45384468,0.45384468,0.45384468,0.45384468,0.45384468,0.45384468 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Risk score|Land area weighted,risk score,1.180898334,1.180898334,1.180898334,1.180898334,1.180898334,1.180898334,1.180898334,1.180898334,1.180898334,1.180898334 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Risk score|Land area weighted,risk score,2.875111478,2.875111478,2.875111478,2.875111478,2.875111478,2.875111478,2.875111478,2.875111478,2.875111478,2.875111478 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Risk score|Land area weighted,risk score,0.698102143,0.698102143,0.698102143,0.698102143,0.698102143,0.698102143,0.698102143,0.698102143,0.698102143,0.698102143 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Risk score|Land area weighted,risk score,0.874435707,0.874435707,0.874435707,0.874435707,0.874435707,0.874435707,0.874435707,0.874435707,0.874435707,0.874435707 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Risk score|Land area weighted,risk score,0.977133908,0.977133908,0.977133908,0.977133908,0.977133908,0.977133908,0.977133908,0.977133908,0.977133908,0.977133908 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Risk score|Land area weighted,risk score,0.687936164,0.687936164,0.687936164,0.687936164,0.687936164,0.687936164,0.687936164,0.687936164,0.687936164,0.687936164 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Risk score|Land area weighted,risk score,2.398071853,2.398071853,2.398071853,2.398071853,2.398071853,2.398071853,2.398071853,2.398071853,2.398071853,2.398071853 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Risk score|Land area weighted,risk score,1.807072342,1.807072342,1.807072342,1.807072342,1.807072342,1.807072342,1.807072342,1.807072342,1.807072342,1.807072342 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Risk score|Land area weighted,risk score,1.901509854,1.901509854,1.901509854,1.901509854,1.901509854,1.901509854,1.901509854,1.901509854,1.901509854,1.901509854 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Risk score|Land area weighted,risk score,0.503259514,0.503259514,0.503259514,0.503259514,0.503259514,0.503259514,0.503259514,0.503259514,0.503259514,0.503259514 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Risk score|Land area weighted,risk score,0.292037001,0.292037001,0.292037001,0.292037001,0.292037001,0.292037001,0.292037001,0.292037001,0.292037001,0.292037001 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Risk score|Land area weighted,risk score,0.328560302,0.328560302,0.328560302,0.328560302,0.328560302,0.328560302,0.328560302,0.328560302,0.328560302,0.328560302 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.386633016,0.386633016,0.386633016,0.386633016,0.386633016,0.386633016,0.386633016,0.386633016,0.386633016,0.386633016 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.721842477,1.721842477,1.721842477,1.721842477,1.721842477,1.721842477,1.721842477,1.721842477,1.721842477,1.721842477 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Risk score|Land area weighted,risk score,0.729638221,0.729638221,0.729638221,0.729638221,0.729638221,0.729638221,0.729638221,0.729638221,0.729638221,0.729638221 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Risk score|Land area weighted,risk score,0.968776963,0.968776963,0.968776963,0.968776963,0.968776963,0.968776963,0.968776963,0.968776963,0.968776963,0.968776963 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Risk score|Land area weighted,risk score,0.611081616,0.611081616,0.611081616,0.611081616,0.611081616,0.611081616,0.611081616,0.611081616,0.611081616,0.611081616 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Risk score|Land area weighted,risk score,2.958139739,2.958139739,2.958139739,2.958139739,2.958139739,2.958139739,2.958139739,2.958139739,2.958139739,2.958139739 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Risk score|Land area weighted,risk score,1.406184893,1.406184893,1.406184893,1.406184893,1.406184893,1.406184893,1.406184893,1.406184893,1.406184893,1.406184893 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Risk score|Land area weighted,risk score,2.685202328,2.685202328,2.685202328,2.685202328,2.685202328,2.685202328,2.685202328,2.685202328,2.685202328,2.685202328 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Risk score|Land area weighted,risk score,1.028729091,1.028729091,1.028729091,1.028729091,1.028729091,1.028729091,1.028729091,1.028729091,1.028729091,1.028729091 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Risk score|Land area weighted,risk score,0.781768322,0.781768322,0.781768322,0.781768322,0.781768322,0.781768322,0.781768322,0.781768322,0.781768322,0.781768322 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Risk score|Land area weighted,risk score,1.020659945,1.020659945,1.020659945,1.020659945,1.020659945,1.020659945,1.020659945,1.020659945,1.020659945,1.020659945 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Risk score|Land area weighted,risk score,0.606674391,0.606674391,0.606674391,0.606674391,0.606674391,0.606674391,0.606674391,0.606674391,0.606674391,0.606674391 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Risk score|Land area weighted,risk score,0.596236276,0.596236276,0.596236276,0.596236276,0.596236276,0.596236276,0.596236276,0.596236276,0.596236276,0.596236276 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Risk score|Land area weighted,risk score,2.287554244,2.287554244,2.287554244,2.287554244,2.287554244,2.287554244,2.287554244,2.287554244,2.287554244,2.287554244 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Risk score|Land area weighted,risk score,0.583825597,0.583825597,0.583825597,0.583825597,0.583825597,0.583825597,0.583825597,0.583825597,0.583825597,0.583825597 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Risk score|Land area weighted,risk score,0.391389029,0.391389029,0.391389029,0.391389029,0.391389029,0.391389029,0.391389029,0.391389029,0.391389029,0.391389029 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Risk score|Land area weighted,risk score,1.95080651,1.95080651,1.95080651,1.95080651,1.95080651,1.95080651,1.95080651,1.95080651,1.95080651,1.95080651 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Risk score|Land area weighted,risk score,2.403267498,2.403267498,2.403267498,2.403267498,2.403267498,2.403267498,2.403267498,2.403267498,2.403267498,2.403267498 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Risk score|Land area weighted,risk score,2.833469589,2.833469589,2.833469589,2.833469589,2.833469589,2.833469589,2.833469589,2.833469589,2.833469589,2.833469589 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Risk score|Land area weighted,risk score,2.072119173,2.072119173,2.072119173,2.072119173,2.072119173,2.072119173,2.072119173,2.072119173,2.072119173,2.072119173 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Risk score|Land area weighted,risk score,2.079531822,2.079531822,2.079531822,2.079531822,2.079531822,2.079531822,2.079531822,2.079531822,2.079531822,2.079531822 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Risk score|Land area weighted,risk score,0.492349227,0.492349227,0.492349227,0.492349227,0.492349227,0.492349227,0.492349227,0.492349227,0.492349227,0.492349227 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Risk score|Land area weighted,risk score,0.55156074,0.55156074,0.55156074,0.55156074,0.55156074,0.55156074,0.55156074,0.55156074,0.55156074,0.55156074 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Risk score|Land area weighted,risk score,1.772875701,1.772875701,1.772875701,1.772875701,1.772875701,1.772875701,1.772875701,1.772875701,1.772875701,1.772875701 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Risk score|Land area weighted,risk score,0.716001979,0.716001979,0.716001979,0.716001979,0.716001979,0.716001979,0.716001979,0.716001979,0.716001979,0.716001979 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Risk score|Land area weighted,risk score,2.530004509,2.530004509,2.530004509,2.530004509,2.530004509,2.530004509,2.530004509,2.530004509,2.530004509,2.530004509 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Risk score|Land area weighted,risk score,1.874877354,1.874877354,1.874877354,1.874877354,1.874877354,1.874877354,1.874877354,1.874877354,1.874877354,1.874877354 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Risk score|Land area weighted,risk score,0.709219048,0.709219048,0.709219048,0.709219048,0.709219048,0.709219048,0.709219048,0.709219048,0.709219048,0.709219048 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Risk score|Land area weighted,risk score,1.364869544,1.364869544,1.364869544,1.364869544,1.364869544,1.364869544,1.364869544,1.364869544,1.364869544,1.364869544 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Risk score|Land area weighted,risk score,0.660611578,0.660611578,0.660611578,0.660611578,0.660611578,0.660611578,0.660611578,0.660611578,0.660611578,0.660611578 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Risk score|Land area weighted,risk score,0.461360509,0.461360509,0.461360509,0.461360509,0.461360509,0.461360509,0.461360509,0.461360509,0.461360509,0.461360509 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Risk score|Land area weighted,risk score,0.684763467,0.684763467,0.684763467,0.684763467,0.684763467,0.684763467,0.684763467,0.684763467,0.684763467,0.684763467 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Risk score|Land area weighted,risk score,2.206010003,2.206010003,2.206010003,2.206010003,2.206010003,2.206010003,2.206010003,2.206010003,2.206010003,2.206010003 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Risk score|Land area weighted,risk score,0.691798678,0.691798678,0.691798678,0.691798678,0.691798678,0.691798678,0.691798678,0.691798678,0.691798678,0.691798678 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Risk score|Land area weighted,risk score,1.944495367,1.944495367,1.944495367,1.944495367,1.944495367,1.944495367,1.944495367,1.944495367,1.944495367,1.944495367 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Risk score|Land area weighted,risk score,2.77743802,2.77743802,2.77743802,2.77743802,2.77743802,2.77743802,2.77743802,2.77743802,2.77743802,2.77743802 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.636266173,0.636266173,0.636266173,0.636266173,0.636266173,0.636266173,0.636266173,0.636266173,0.636266173,0.636266173 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Risk score|Land area weighted,risk score,0.360193591,0.360193591,0.360193591,0.360193591,0.360193591,0.360193591,0.360193591,0.360193591,0.360193591,0.360193591 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Risk score|Land area weighted,risk score,0.825384276,0.825384276,0.825384276,0.825384276,0.825384276,0.825384276,0.825384276,0.825384276,0.825384276,0.825384276 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Risk score|Land area weighted,risk score,0.81944849,0.81944849,0.81944849,0.81944849,0.81944849,0.81944849,0.81944849,0.81944849,0.81944849,0.81944849 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Risk score|Land area weighted,risk score,2.846745809,2.846745809,2.846745809,2.846745809,2.846745809,2.846745809,2.846745809,2.846745809,2.846745809,2.846745809 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Risk score|Land area weighted,risk score,0.420173668,0.420173668,0.420173668,0.420173668,0.420173668,0.420173668,0.420173668,0.420173668,0.420173668,0.420173668 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Risk score|Land area weighted,risk score,0.647701685,0.647701685,0.647701685,0.647701685,0.647701685,0.647701685,0.647701685,0.647701685,0.647701685,0.647701685 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.583838402,0.583838402,0.583838402,0.583838402,0.583838402,0.583838402,0.583838402,0.583838402,0.583838402,0.583838402 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Risk score|Land area weighted,risk score,2.259016808,2.259016808,2.259016808,2.259016808,2.259016808,2.259016808,2.259016808,2.259016808,2.259016808,2.259016808 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Risk score|Land area weighted,risk score,2.063371239,2.063371239,2.063371239,2.063371239,2.063371239,2.063371239,2.063371239,2.063371239,2.063371239,2.063371239 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Risk score|Land area weighted,risk score,2.266643719,2.266643719,2.266643719,2.266643719,2.266643719,2.266643719,2.266643719,2.266643719,2.266643719,2.266643719 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Risk score|Land area weighted,risk score,2.18369084,2.18369084,2.18369084,2.18369084,2.18369084,2.18369084,2.18369084,2.18369084,2.18369084,2.18369084 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Risk score|Land area weighted,risk score,1.004360309,1.004360309,1.004360309,1.004360309,1.004360309,1.004360309,1.004360309,1.004360309,1.004360309,1.004360309 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Risk score|Land area weighted,risk score,1.384851766,1.384851766,1.384851766,1.384851766,1.384851766,1.384851766,1.384851766,1.384851766,1.384851766,1.384851766 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Risk score|Land area weighted,risk score,0.829819312,0.829819312,0.829819312,0.829819312,0.829819312,0.829819312,0.829819312,0.829819312,0.829819312,0.829819312 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Risk score|Land area weighted,risk score,0.468789287,0.468789287,0.468789287,0.468789287,0.468789287,0.468789287,0.468789287,0.468789287,0.468789287,0.468789287 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Risk score|Land area weighted,risk score,1.450651347,1.450651347,1.450651347,1.450651347,1.450651347,1.450651347,1.450651347,1.450651347,1.450651347,1.450651347 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Risk score|Land area weighted,risk score,0.668856453,0.668856453,0.668856453,0.668856453,0.668856453,0.668856453,0.668856453,0.668856453,0.668856453,0.668856453 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Risk score|Land area weighted,risk score,1.279243294,1.279243294,1.279243294,1.279243294,1.279243294,1.279243294,1.279243294,1.279243294,1.279243294,1.279243294 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Risk score|Land area weighted,risk score,1.5665035,1.5665035,1.5665035,1.5665035,1.5665035,1.5665035,1.5665035,1.5665035,1.5665035,1.5665035 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Risk score|Land area weighted,risk score,2.932410024,2.932410024,2.932410024,2.932410024,2.932410024,2.932410024,2.932410024,2.932410024,2.932410024,2.932410024 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Risk score|Land area weighted,risk score,1.257068985,1.257068985,1.257068985,1.257068985,1.257068985,1.257068985,1.257068985,1.257068985,1.257068985,1.257068985 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Risk score|Land area weighted,risk score,1.04053492,1.04053492,1.04053492,1.04053492,1.04053492,1.04053492,1.04053492,1.04053492,1.04053492,1.04053492 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Risk score|Land area weighted,risk score,2.320589009,2.320589009,2.320589009,2.320589009,2.320589009,2.320589009,2.320589009,2.320589009,2.320589009,2.320589009 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Risk score|Land area weighted,risk score,2.856921049,2.856921049,2.856921049,2.856921049,2.856921049,2.856921049,2.856921049,2.856921049,2.856921049,2.856921049 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Risk score|Land area weighted,risk score,2.032766863,2.032766863,2.032766863,2.032766863,2.032766863,2.032766863,2.032766863,2.032766863,2.032766863,2.032766863 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Risk score|Land area weighted,risk score,2.035758556,2.035758556,2.035758556,2.035758556,2.035758556,2.035758556,2.035758556,2.035758556,2.035758556,2.035758556 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Risk score|Land area weighted,risk score,0.73464803,0.73464803,0.73464803,0.73464803,0.73464803,0.73464803,0.73464803,0.73464803,0.73464803,0.73464803 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Risk score|Land area weighted,risk score,0.665811963,0.665811963,0.665811963,0.665811963,0.665811963,0.665811963,0.665811963,0.665811963,0.665811963,0.665811963 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Risk score|Land area weighted,risk score,1.361714126,1.361714126,1.361714126,1.361714126,1.361714126,1.361714126,1.361714126,1.361714126,1.361714126,1.361714126 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Risk score|Land area weighted,risk score,2.598332604,2.598332604,2.598332604,2.598332604,2.598332604,2.598332604,2.598332604,2.598332604,2.598332604,2.598332604 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Risk score|Land area weighted,risk score,0.345339732,0.345339732,0.345339732,0.345339732,0.345339732,0.345339732,0.345339732,0.345339732,0.345339732,0.345339732 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Risk score|Land area weighted,risk score,2.678016596,2.678016596,2.678016596,2.678016596,2.678016596,2.678016596,2.678016596,2.678016596,2.678016596,2.678016596 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Risk score|Land area weighted,risk score,2.907420745,2.907420745,2.907420745,2.907420745,2.907420745,2.907420745,2.907420745,2.907420745,2.907420745,2.907420745 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Risk score|Land area weighted,risk score,0.318230198,0.318230198,0.318230198,0.318230198,0.318230198,0.318230198,0.318230198,0.318230198,0.318230198,0.318230198 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Risk score|Land area weighted,risk score,2.06231664,2.06231664,2.06231664,2.06231664,2.06231664,2.06231664,2.06231664,2.06231664,2.06231664,2.06231664 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Risk score|Land area weighted,risk score,0.56997931,0.56997931,0.56997931,0.56997931,0.56997931,0.56997931,0.56997931,0.56997931,0.56997931,0.56997931 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Risk score|Land area weighted,risk score,2.382900475,2.382900475,2.382900475,2.382900475,2.382900475,2.382900475,2.382900475,2.382900475,2.382900475,2.382900475 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Risk score|Land area weighted,risk score,0.417152724,0.417152724,0.417152724,0.417152724,0.417152724,0.417152724,0.417152724,0.417152724,0.417152724,0.417152724 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Risk score|Land area weighted,risk score,0.435835599,0.435835599,0.435835599,0.435835599,0.435835599,0.435835599,0.435835599,0.435835599,0.435835599,0.435835599 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Risk score|Land area weighted,risk score,0.73386044,0.73386044,0.73386044,0.73386044,0.73386044,0.73386044,0.73386044,0.73386044,0.73386044,0.73386044 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Risk score|Land area weighted,risk score,1.165552439,1.165552439,1.165552439,1.165552439,1.165552439,1.165552439,1.165552439,1.165552439,1.165552439,1.165552439 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Risk score|Land area weighted,risk score,0.772013873,0.772013873,0.772013873,0.772013873,0.772013873,0.772013873,0.772013873,0.772013873,0.772013873,0.772013873 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Risk score|Land area weighted,risk score,2.340472429,2.340472429,2.340472429,2.340472429,2.340472429,2.340472429,2.340472429,2.340472429,2.340472429,2.340472429 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Risk score|Land area weighted,risk score,0.693458797,0.693458797,0.693458797,0.693458797,0.693458797,0.693458797,0.693458797,0.693458797,0.693458797,0.693458797 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Risk score|Land area weighted,risk score,0.901195798,0.901195798,0.901195798,0.901195798,0.901195798,0.901195798,0.901195798,0.901195798,0.901195798,0.901195798 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Risk score|Land area weighted,risk score,0.712853456,0.712853456,0.712853456,0.712853456,0.712853456,0.712853456,0.712853456,0.712853456,0.712853456,0.712853456 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Risk score|Land area weighted,risk score,1.404006743,1.404006743,1.404006743,1.404006743,1.404006743,1.404006743,1.404006743,1.404006743,1.404006743,1.404006743 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Risk score|Land area weighted,risk score,0.411529907,0.411529907,0.411529907,0.411529907,0.411529907,0.411529907,0.411529907,0.411529907,0.411529907,0.411529907 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Risk score|Land area weighted,risk score,0.495428692,0.495428692,0.495428692,0.495428692,0.495428692,0.495428692,0.495428692,0.495428692,0.495428692,0.495428692 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Risk score|Land area weighted,risk score,2.405747869,2.405747869,2.405747869,2.405747869,2.405747869,2.405747869,2.405747869,2.405747869,2.405747869,2.405747869 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Risk score|Land area weighted,risk score,1.095864406,1.095864406,1.095864406,1.095864406,1.095864406,1.095864406,1.095864406,1.095864406,1.095864406,1.095864406 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Risk score|Land area weighted,risk score,2.109268272,2.109268272,2.109268272,2.109268272,2.109268272,2.109268272,2.109268272,2.109268272,2.109268272,2.109268272 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Risk score|Land area weighted,risk score,2.092287896,2.092287896,2.092287896,2.092287896,2.092287896,2.092287896,2.092287896,2.092287896,2.092287896,2.092287896 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Risk score|Land area weighted,risk score,2.890942281,2.890942281,2.890942281,2.890942281,2.890942281,2.890942281,2.890942281,2.890942281,2.890942281,2.890942281 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Risk score|Land area weighted,risk score,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Risk score|Land area weighted,risk score,0.750432081,0.750432081,0.750432081,0.750432081,0.750432081,0.750432081,0.750432081,0.750432081,0.750432081,0.750432081 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Risk score|Land area weighted,risk score,2.648266091,2.648266091,2.648266091,2.648266091,2.648266091,2.648266091,2.648266091,2.648266091,2.648266091,2.648266091 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Risk score|Land area weighted,risk score,0.586652894,0.586652894,0.586652894,0.586652894,0.586652894,0.586652894,0.586652894,0.586652894,0.586652894,0.586652894 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Risk score|Land area weighted,risk score,2.88559862,2.88559862,2.88559862,2.88559862,2.88559862,2.88559862,2.88559862,2.88559862,2.88559862,2.88559862 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Risk score|Land area weighted,risk score,1.366831431,1.366831431,1.366831431,1.366831431,1.366831431,1.366831431,1.366831431,1.366831431,1.366831431,1.366831431 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Risk score|Land area weighted,risk score,1.017979792,1.017979792,1.017979792,1.017979792,1.017979792,1.017979792,1.017979792,1.017979792,1.017979792,1.017979792 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Risk score|Land area weighted,risk score,0.703809206,0.703809206,0.703809206,0.703809206,0.703809206,0.703809206,0.703809206,0.703809206,0.703809206,0.703809206 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Risk score|Land area weighted,risk score,0.566483712,0.566483712,0.566483712,0.566483712,0.566483712,0.566483712,0.566483712,0.566483712,0.566483712,0.566483712 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Risk score|Land area weighted,risk score,0.137365007,0.137365007,0.137365007,0.137365007,0.137365007,0.137365007,0.137365007,0.137365007,0.137365007,0.137365007 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Risk score|Land area weighted,risk score,0.745344452,0.745344452,0.745344452,0.745344452,0.745344452,0.745344452,0.745344452,0.745344452,0.745344452,0.745344452 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Risk score|Land area weighted,risk score,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Risk score|Land area weighted,risk score,0.696189967,0.696189967,0.696189967,0.696189967,0.696189967,0.696189967,0.696189967,0.696189967,0.696189967,0.696189967 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Land area,km2,13758.37211,13758.37211,13758.37211,13758.37211,13758.37211,13758.37211,13758.37211,13758.37211,13758.37211,13758.37211 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Land area,km2,11968.27403,11968.27403,11968.27403,11968.27403,11968.27403,11968.27403,11968.27403,11968.27403,11968.27403,11968.27403 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Land area,km2,688286.6097,688286.6097,688286.6097,688286.6097,688286.6097,688286.6097,688286.6097,688286.6097,688286.6097,688286.6097 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Land area,km2,5064.765815,5064.765815,5064.765815,5064.765815,5064.765815,5064.765815,5064.765815,5064.765815,5064.765815,5064.765815 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Land area,km2,176365.0789,176365.0789,176365.0789,176365.0789,176365.0789,176365.0789,176365.0789,176365.0789,176365.0789,176365.0789 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Land area,km2,39992.61684,39992.61684,39992.61684,39992.61684,39992.61684,39992.61684,39992.61684,39992.61684,39992.61684,39992.61684 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Land area,km2,5420.991232,5420.991232,5420.991232,5420.991232,5420.991232,5420.991232,5420.991232,5420.991232,5420.991232,5420.991232 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Land area,km2,45601.04364,45601.04364,45601.04364,45601.04364,45601.04364,45601.04364,45601.04364,45601.04364,45601.04364,45601.04364 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Land area,km2,5289.469184,5289.469184,5289.469184,5289.469184,5289.469184,5289.469184,5289.469184,5289.469184,5289.469184,5289.469184 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Land area,km2,695620.8833,695620.8833,695620.8833,695620.8833,695620.8833,695620.8833,695620.8833,695620.8833,695620.8833,695620.8833 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Land area,km2,68481.6274,68481.6274,68481.6274,68481.6274,68481.6274,68481.6274,68481.6274,68481.6274,68481.6274,68481.6274 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Land area,km2,35774.40512,35774.40512,35774.40512,35774.40512,35774.40512,35774.40512,35774.40512,35774.40512,35774.40512,35774.40512 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Land area,km2,83090.44589,83090.44589,83090.44589,83090.44589,83090.44589,83090.44589,83090.44589,83090.44589,83090.44589,83090.44589 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Land area,km2,196709.0388,196709.0388,196709.0388,196709.0388,196709.0388,196709.0388,196709.0388,196709.0388,196709.0388,196709.0388 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Land area,km2,1172068.058,1172068.058,1172068.058,1172068.058,1172068.058,1172068.058,1172068.058,1172068.058,1172068.058,1172068.058 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Land area,km2,682417.1149,682417.1149,682417.1149,682417.1149,682417.1149,682417.1149,682417.1149,682417.1149,682417.1149,682417.1149 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Land area,km2,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237,14078.74237 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Land area,km2,837322.4513,837322.4513,837322.4513,837322.4513,837322.4513,837322.4513,837322.4513,837322.4513,837322.4513,837322.4513 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Land area,km2,1718.620761,1718.620761,1718.620761,1718.620761,1718.620761,1718.620761,1718.620761,1718.620761,1718.620761,1718.620761 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Land area,km2,1350.344871,1350.344871,1350.344871,1350.344871,1350.344871,1350.344871,1350.344871,1350.344871,1350.344871,1350.344871 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Land area,km2,1473304.252,1473304.252,1473304.252,1473304.252,1473304.252,1473304.252,1473304.252,1473304.252,1473304.252,1473304.252 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Land area,km2,254977.865,254977.865,254977.865,254977.865,254977.865,254977.865,254977.865,254977.865,254977.865,254977.865 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Land area,km2,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795,1901.771795 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Land area,km2,1024.772501,1024.772501,1024.772501,1024.772501,1024.772501,1024.772501,1024.772501,1024.772501,1024.772501,1024.772501 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Land area,km2,667526.5063,667526.5063,667526.5063,667526.5063,667526.5063,667526.5063,667526.5063,667526.5063,667526.5063,667526.5063 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Land area,km2,4758.25766,4758.25766,4758.25766,4758.25766,4758.25766,4758.25766,4758.25766,4758.25766,4758.25766,4758.25766 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Land area,km2,223.9602228,223.9602228,223.9602228,223.9602228,223.9602228,223.9602228,223.9602228,223.9602228,223.9602228,223.9602228 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Land area,km2,1055144.222,1055144.222,1055144.222,1055144.222,1055144.222,1055144.222,1055144.222,1055144.222,1055144.222,1055144.222 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Land area,km2,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871,803.4807871 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Land area,km2,7557.992445,7557.992445,7557.992445,7557.992445,7557.992445,7557.992445,7557.992445,7557.992445,7557.992445,7557.992445 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Land area,km2,39627.30475,39627.30475,39627.30475,39627.30475,39627.30475,39627.30475,39627.30475,39627.30475,39627.30475,39627.30475 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Land area,km2,1333.763331,1333.763331,1333.763331,1333.763331,1333.763331,1333.763331,1333.763331,1333.763331,1333.763331,1333.763331 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Land area,km2,13418.85719,13418.85719,13418.85719,13418.85719,13418.85719,13418.85719,13418.85719,13418.85719,13418.85719,13418.85719 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Land area,km2,859806.6309,859806.6309,859806.6309,859806.6309,859806.6309,859806.6309,859806.6309,859806.6309,859806.6309,859806.6309 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Land area,km2,2486.211904,2486.211904,2486.211904,2486.211904,2486.211904,2486.211904,2486.211904,2486.211904,2486.211904,2486.211904 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Land area,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Land area|%,%,0.495329407,0.495329407,0.495329407,0.495329407,0.495329407,0.495329407,0.495329407,0.495329407,0.495329407,0.495329407 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Land area|%,%,1.103676574,1.103676574,1.103676574,1.103676574,1.103676574,1.103676574,1.103676574,1.103676574,1.103676574,1.103676574 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Land area|%,%,35.76225791,35.76225791,35.76225791,35.76225791,35.76225791,35.76225791,35.76225791,35.76225791,35.76225791,35.76225791 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Land area|%,%,5.689411018,5.689411018,5.689411018,5.689411018,5.689411018,5.689411018,5.689411018,5.689411018,5.689411018,5.689411018 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Land area|%,%,57.38007632,57.38007632,57.38007632,57.38007632,57.38007632,57.38007632,57.38007632,57.38007632,57.38007632,57.38007632 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Land area|%,%,8.841686937,8.841686937,8.841686937,8.841686937,8.841686937,8.841686937,8.841686937,8.841686937,8.841686937,8.841686937 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Land area|%,%,0.62648109,0.62648109,0.62648109,0.62648109,0.62648109,0.62648109,0.62648109,0.62648109,0.62648109,0.62648109 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Land area|%,%,64.53511962,64.53511962,64.53511962,64.53511962,64.53511962,64.53511962,64.53511962,64.53511962,64.53511962,64.53511962 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Land area|%,%,0.825801736,0.825801736,0.825801736,0.825801736,0.825801736,0.825801736,0.825801736,0.825801736,0.825801736,0.825801736 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Land area|%,%,66.94131054,66.94131054,66.94131054,66.94131054,66.94131054,66.94131054,66.94131054,66.94131054,66.94131054,66.94131054 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Land area|%,%,8.352031104,8.352031104,8.352031104,8.352031104,8.352031104,8.352031104,8.352031104,8.352031104,8.352031104,8.352031104 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Land area|%,%,2.770028102,2.770028102,2.770028102,2.770028102,2.770028102,2.770028102,2.770028102,2.770028102,2.770028102,2.770028102 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Land area|%,%,31.12111604,31.12111604,31.12111604,31.12111604,31.12111604,31.12111604,31.12111604,31.12111604,31.12111604,31.12111604 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Land area|%,%,2.101139801,2.101139801,2.101139801,2.101139801,2.101139801,2.101139801,2.101139801,2.101139801,2.101139801,2.101139801 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Land area|%,%,72.56461005,72.56461005,72.56461005,72.56461005,72.56461005,72.56461005,72.56461005,72.56461005,72.56461005,72.56461005 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Land area|%,%,54.659582,54.659582,54.659582,54.659582,54.659582,54.659582,54.659582,54.659582,54.659582,54.659582 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Land area|%,%,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713,1.130614713 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Land area|%,%,70.83575497,70.83575497,70.83575497,70.83575497,70.83575497,70.83575497,70.83575497,70.83575497,70.83575497,70.83575497 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Land area|%,%,0.02026747,0.02026747,0.02026747,0.02026747,0.02026747,0.02026747,0.02026747,0.02026747,0.02026747,0.02026747 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Land area|%,%,0.638741012,0.638741012,0.638741012,0.638741012,0.638741012,0.638741012,0.638741012,0.638741012,0.638741012,0.638741012 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Land area|%,%,63.85019907,63.85019907,63.85019907,63.85019907,63.85019907,63.85019907,63.85019907,63.85019907,63.85019907,63.85019907 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Land area|%,%,34.77284835,34.77284835,34.77284835,34.77284835,34.77284835,34.77284835,34.77284835,34.77284835,34.77284835,34.77284835 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Land area|%,%,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639,0.459271639 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Land area|%,%,3.487955495,3.487955495,3.487955495,3.487955495,3.487955495,3.487955495,3.487955495,3.487955495,3.487955495,3.487955495 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Land area|%,%,52.98153959,52.98153959,52.98153959,52.98153959,52.98153959,52.98153959,52.98153959,52.98153959,52.98153959,52.98153959 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Land area|%,%,3.059523855,3.059523855,3.059523855,3.059523855,3.059523855,3.059523855,3.059523855,3.059523855,3.059523855,3.059523855 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Land area|%,%,1.872822428,1.872822428,1.872822428,1.872822428,1.872822428,1.872822428,1.872822428,1.872822428,1.872822428,1.872822428 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Land area|%,%,56.73736623,56.73736623,56.73736623,56.73736623,56.73736623,56.73736623,56.73736623,56.73736623,56.73736623,56.73736623 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Land area|%,%,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906,3.905690906 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Land area|%,%,1.007567317,1.007567317,1.007567317,1.007567317,1.007567317,1.007567317,1.007567317,1.007567317,1.007567317,1.007567317 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Land area|%,%,20.19618928,20.19618928,20.19618928,20.19618928,20.19618928,20.19618928,20.19618928,20.19618928,20.19618928,20.19618928 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Land area|%,%,0.341665339,0.341665339,0.341665339,0.341665339,0.341665339,0.341665339,0.341665339,0.341665339,0.341665339,0.341665339 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Land area|%,%,0.686288514,0.686288514,0.686288514,0.686288514,0.686288514,0.686288514,0.686288514,0.686288514,0.686288514,0.686288514 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Land area|%,%,86.23464533,86.23464533,86.23464533,86.23464533,86.23464533,86.23464533,86.23464533,86.23464533,86.23464533,86.23464533 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Land area|%,%,22.68405871,22.68405871,22.68405871,22.68405871,22.68405871,22.68405871,22.68405871,22.68405871,22.68405871,22.68405871 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Land area|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Land area|Low,km2,1126442.476,1126442.476,1126442.476,1126442.476,1126442.476,1126442.476,1126442.476,1126442.476,1126442.476,1126442.476 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Land area|Low,km2,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791,471693.4791 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Land area|Low,km2,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316,180800.9316 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Land area|Low,km2,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153,1119404.153 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Land area|Low,km2,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765,17342.6765 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Land area|Low,km2,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105,6474.208105 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Land area|Low,km2,2263803.848,2263803.848,2263803.848,2263803.848,2263803.848,2263803.848,2263803.848,2263803.848,2263803.848,2263803.848 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Land area|Low,km2,1065430.714,1065430.714,1065430.714,1065430.714,1065430.714,1065430.714,1065430.714,1065430.714,1065430.714,1065430.714 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Land area|Low,km2,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206,1293.263206 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Land area|Low,km2,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328,274331.5328 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Land area|Low,km2,165075.7854,165075.7854,165075.7854,165075.7854,165075.7854,165075.7854,165075.7854,165075.7854,165075.7854,165075.7854 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Land area|Low,km2,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898,1924054.898 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Land area|Low,km2,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712,4144.55712 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Land area|Low,km2,56471.96611,56471.96611,56471.96611,56471.96611,56471.96611,56471.96611,56471.96611,56471.96611,56471.96611,56471.96611 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Land area|Low,km2,2589.759908,2589.759908,2589.759908,2589.759908,2589.759908,2589.759908,2589.759908,2589.759908,2589.759908,2589.759908 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Land area|Low,km2,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921,243313.0921 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Land area|Low,km2,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162,89020.9162 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Land area|Low,km2,178265.6075,178265.6075,178265.6075,178265.6075,178265.6075,178265.6075,178265.6075,178265.6075,178265.6075,178265.6075 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Land area|Low,km2,451395.2463,451395.2463,451395.2463,451395.2463,451395.2463,451395.2463,451395.2463,451395.2463,451395.2463,451395.2463 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Land area|Low,km2,86180.18403,86180.18403,86180.18403,86180.18403,86180.18403,86180.18403,86180.18403,86180.18403,86180.18403,86180.18403 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Land area|Low,km2,704.038671,704.038671,704.038671,704.038671,704.038671,704.038671,704.038671,704.038671,704.038671,704.038671 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Land area|Low,km2,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605,307165.3605 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Land area|Low,km2,837221.9511,837221.9511,837221.9511,837221.9511,837221.9511,837221.9511,837221.9511,837221.9511,837221.9511,837221.9511 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Land area|Low,km2,11627.6965,11627.6965,11627.6965,11627.6965,11627.6965,11627.6965,11627.6965,11627.6965,11627.6965,11627.6965 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Land area|Low,km2,178317.6311,178317.6311,178317.6311,178317.6311,178317.6311,178317.6311,178317.6311,178317.6311,178317.6311,178317.6311 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Land area|Low,km2,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052,373.5564052 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Land area|Low,km2,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327,452109.6327 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Land area|Low,km2,855482.0742,855482.0742,855482.0742,855482.0742,855482.0742,855482.0742,855482.0742,855482.0742,855482.0742,855482.0742 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Land area|Low,km2,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024,70436.20024 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Land area|Low,km2,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593,3125662.593 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Land area|Low,km2,65556.25351,65556.25351,65556.25351,65556.25351,65556.25351,65556.25351,65556.25351,65556.25351,65556.25351,65556.25351 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Land area|Low,km2,396605.4673,396605.4673,396605.4673,396605.4673,396605.4673,396605.4673,396605.4673,396605.4673,396605.4673,396605.4673 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Land area|Low,km2,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669,30446.80669 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Land area|Low,km2,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861,269.7225861 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Land area|Low,km2,450079.0481,450079.0481,450079.0481,450079.0481,450079.0481,450079.0481,450079.0481,450079.0481,450079.0481,450079.0481 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Land area|Low,km2,9803.525883,9803.525883,9803.525883,9803.525883,9803.525883,9803.525883,9803.525883,9803.525883,9803.525883,9803.525883 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Land area|Low,km2,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471,137509.8471 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Land area|Low,km2,715832.9992,715832.9992,715832.9992,715832.9992,715832.9992,715832.9992,715832.9992,715832.9992,715832.9992,715832.9992 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Land area|Low,km2,632747.7698,632747.7698,632747.7698,632747.7698,632747.7698,632747.7698,632747.7698,632747.7698,632747.7698,632747.7698 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Land area|Low,km2,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687,136112.3687 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Land area|Low,km2,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381,1039150.381 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Land area|Low,km2,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607,149.2192607 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Land area|Low,km2,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839,9503.858839 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Land area|Low,km2,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273,546.7417273 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Land area|Low,km2,194337.1354,194337.1354,194337.1354,194337.1354,194337.1354,194337.1354,194337.1354,194337.1354,194337.1354,194337.1354 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Land area|Low,km2,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509,819685.4509 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Land area|Low,km2,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299,633675.7299 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Land area|Low,km2,582373.9311,582373.9311,582373.9311,582373.9311,582373.9311,582373.9311,582373.9311,582373.9311,582373.9311,582373.9311 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Land area|Low,km2,205180.4961,205180.4961,205180.4961,205180.4961,205180.4961,205180.4961,205180.4961,205180.4961,205180.4961,205180.4961 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Land area|Low,km2,309952.1468,309952.1468,309952.1468,309952.1468,309952.1468,309952.1468,309952.1468,309952.1468,309952.1468,309952.1468 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Land area|Low,km2,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513,114753.0513 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Land area|Low,km2,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924,266878.5924 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Land area|Low,km2,2970.11726,2970.11726,2970.11726,2970.11726,2970.11726,2970.11726,2970.11726,2970.11726,2970.11726,2970.11726 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Land area|Low,km2,345060.5225,345060.5225,345060.5225,345060.5225,345060.5225,345060.5225,345060.5225,345060.5225,345060.5225,345060.5225 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Land area|Low,km2,1854.839468,1854.839468,1854.839468,1854.839468,1854.839468,1854.839468,1854.839468,1854.839468,1854.839468,1854.839468 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Land area|Low,km2,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764,54766.23764 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Land area|Low,km2,7704400.874,7704400.874,7704400.874,7704400.874,7704400.874,7704400.874,7704400.874,7704400.874,7704400.874,7704400.874 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Land area|Low,km2,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271,12524.91271 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Land area|Low,km2,8509.437378,8509.437378,8509.437378,8509.437378,8509.437378,8509.437378,8509.437378,8509.437378,8509.437378,8509.437378 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Land area|Low,km2,13843.08788,13843.08788,13843.08788,13843.08788,13843.08788,13843.08788,13843.08788,13843.08788,13843.08788,13843.08788 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Land area|Low,km2,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975,858.4071975 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Land area|Low,km2,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496,1615101.496 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Land area|Low,km2,173113.3171,173113.3171,173113.3171,173113.3171,173113.3171,173113.3171,173113.3171,173113.3171,173113.3171,173113.3171 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Land area|Low,km2,604385.3543,604385.3543,604385.3543,604385.3543,604385.3543,604385.3543,604385.3543,604385.3543,604385.3543,604385.3543 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Land area|Low,km2,3026080.629,3026080.629,3026080.629,3026080.629,3026080.629,3026080.629,3026080.629,3026080.629,3026080.629,3026080.629 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Land area|Low,km2,199054.8976,199054.8976,199054.8976,199054.8976,199054.8976,199054.8976,199054.8976,199054.8976,199054.8976,199054.8976 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Land area|Low,km2,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791,1248485.791 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Land area|Low,km2,2335389.859,2335389.859,2335389.859,2335389.859,2335389.859,2335389.859,2335389.859,2335389.859,2335389.859,2335389.859 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Land area|Low,km2,21545.02692,21545.02692,21545.02692,21545.02692,21545.02692,21545.02692,21545.02692,21545.02692,21545.02692,21545.02692 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Land area|Low,km2,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677,809.0646677 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Land area|Low,km2,14273.21461,14273.21461,14273.21461,14273.21461,14273.21461,14273.21461,14273.21461,14273.21461,14273.21461,14273.21461 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Land area|Low,km2,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423,1245076.423 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Land area|Low,km2,88257.76351,88257.76351,88257.76351,88257.76351,88257.76351,88257.76351,88257.76351,88257.76351,88257.76351,88257.76351 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Land area|Low,km2,1126461.961,1126461.961,1126461.961,1126461.961,1126461.961,1126461.961,1126461.961,1126461.961,1126461.961,1126461.961 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Land area|Low,km2,727708.3098,727708.3098,727708.3098,727708.3098,727708.3098,727708.3098,727708.3098,727708.3098,727708.3098,727708.3098 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Land area|Low,km2,42669.07618,42669.07618,42669.07618,42669.07618,42669.07618,42669.07618,42669.07618,42669.07618,42669.07618,42669.07618 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Land area|Low,km2,73533.70814,73533.70814,73533.70814,73533.70814,73533.70814,73533.70814,73533.70814,73533.70814,73533.70814,73533.70814 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Land area|Low,km2,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872,1182061.872 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Land area|Low,km2,5695982.029,5695982.029,5695982.029,5695982.029,5695982.029,5695982.029,5695982.029,5695982.029,5695982.029,5695982.029 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Land area|Low,km2,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118,16586.00118 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Land area|Low,km2,33864.53612,33864.53612,33864.53612,33864.53612,33864.53612,33864.53612,33864.53612,33864.53612,33864.53612,33864.53612 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Land area|Low,km2,58883.81418,58883.81418,58883.81418,58883.81418,58883.81418,58883.81418,58883.81418,58883.81418,58883.81418,58883.81418 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Land area|Low,km2,25036.13875,25036.13875,25036.13875,25036.13875,25036.13875,25036.13875,25036.13875,25036.13875,25036.13875,25036.13875 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Land area|Low,km2,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605,907326.7605 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Land area|Low,km2,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547,41262.24547 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Land area|Low,km2,7085550.235,7085550.235,7085550.235,7085550.235,7085550.235,7085550.235,7085550.235,7085550.235,7085550.235,7085550.235 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Land area|Low,km2,1613255.726,1613255.726,1613255.726,1613255.726,1613255.726,1613255.726,1613255.726,1613255.726,1613255.726,1613255.726 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Land area|Low,km2,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776,2307438.776 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Land area|Low,km2,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978,20616.12978 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Land area|Low,km2,569270.0296,569270.0296,569270.0296,569270.0296,569270.0296,569270.0296,569270.0296,569270.0296,569270.0296,569270.0296 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Land area|Low,km2,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704,380.8583704 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Land area|Low,km2,467204.1405,467204.1405,467204.1405,467204.1405,467204.1405,467204.1405,467204.1405,467204.1405,467204.1405,467204.1405 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Land area|Low,km2,2266.689015,2266.689015,2266.689015,2266.689015,2266.689015,2266.689015,2266.689015,2266.689015,2266.689015,2266.689015 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Land area|Low,km2,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643,434963.9643 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Land area|Low,km2,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678,71350.39678 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Land area|Low,km2,1951.926225,1951.926225,1951.926225,1951.926225,1951.926225,1951.926225,1951.926225,1951.926225,1951.926225,1951.926225 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Land area|Low,km2,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745,854.9597745 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Land area|Low,km2,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277,413927.8277 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Land area|Low,km2,5376.607468,5376.607468,5376.607468,5376.607468,5376.607468,5376.607468,5376.607468,5376.607468,5376.607468,5376.607468 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Land area|Low,km2,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373,1556914.373 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Land area|Low,km2,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044,29380.32044 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Land area|Low,km2,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562,92.12864562 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Land area|Low,km2,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132,270.769132 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Land area|Low,km2,795.2408015,795.2408015,795.2408015,795.2408015,795.2408015,795.2408015,795.2408015,795.2408015,795.2408015,795.2408015 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Land area|Low,km2,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817,1259922.817 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Land area|Low,km2,718.4700836,718.4700836,718.4700836,718.4700836,718.4700836,718.4700836,718.4700836,718.4700836,718.4700836,718.4700836 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Land area|Low,km2,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601,10321.08601 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Land area|Low,km2,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256,445031.5256 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Land area|Low,km2,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162,155522.8162 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Land area|Low,km2,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499,22033.30499 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Land area|Low,km2,13492.14009,13492.14009,13492.14009,13492.14009,13492.14009,13492.14009,13492.14009,13492.14009,13492.14009,13492.14009 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Land area|Low,km2,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103,14568.9103 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Land area|Low,km2,316716.079,316716.079,316716.079,316716.079,316716.079,316716.079,316716.079,316716.079,316716.079,316716.079 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Land area|Low,km2,25517.01138,25517.01138,25517.01138,25517.01138,25517.01138,25517.01138,25517.01138,25517.01138,25517.01138,25517.01138 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Land area|Low,km2,8221.629189,8221.629189,8221.629189,8221.629189,8221.629189,8221.629189,8221.629189,8221.629189,8221.629189,8221.629189 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Land area|Low,km2,73236.47789,73236.47789,73236.47789,73236.47789,73236.47789,73236.47789,73236.47789,73236.47789,73236.47789,73236.47789 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Land area|Low,km2,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278,389.599278 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Land area|Low,km2,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341,11958.43341 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Land area|Low,km2,1344289.951,1344289.951,1344289.951,1344289.951,1344289.951,1344289.951,1344289.951,1344289.951,1344289.951,1344289.951 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Land area|Low,km2,142898.0709,142898.0709,142898.0709,142898.0709,142898.0709,142898.0709,142898.0709,142898.0709,142898.0709,142898.0709 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Land area|Low,km2,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052,38139.16052 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Land area|Low,km2,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391,1844406.391 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Land area|Low,km2,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023,147626.0023 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Land area|Low,km2,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822,275.6568822 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Land area|Low,km2,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563,30.68965563 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Land area|Low,km2,3165.778652,3165.778652,3165.778652,3165.778652,3165.778652,3165.778652,3165.778652,3165.778652,3165.778652,3165.778652 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Land area|Low,km2,563602.9265,563602.9265,563602.9265,563602.9265,563602.9265,563602.9265,563602.9265,563602.9265,563602.9265,563602.9265 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Land area|Low,km2,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259,20572.05259 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Land area|Low,km2,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827,750122.827 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Land area|Low,km2,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913,196211.7913 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Land area|Low,km2,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418,2582.320418 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Land area|Low,km2,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267,118746.5267 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Land area|Low,km2,120.9725925,120.9725925,120.9725925,120.9725925,120.9725925,120.9725925,120.9725925,120.9725925,120.9725925,120.9725925 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Land area|Low,km2,388423.0935,388423.0935,388423.0935,388423.0935,388423.0935,388423.0935,388423.0935,388423.0935,388423.0935,388423.0935 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Land area|Low,km2,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705,208.9069705 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Land area|Low,km2,1576888.571,1576888.571,1576888.571,1576888.571,1576888.571,1576888.571,1576888.571,1576888.571,1576888.571,1576888.571 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Land area|Low,km2,56062.96973,56062.96973,56062.96973,56062.96973,56062.96973,56062.96973,56062.96973,56062.96973,56062.96973,56062.96973 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Land area|Low,km2,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474,120361.2474 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Land area|Low,km2,1645.470878,1645.470878,1645.470878,1645.470878,1645.470878,1645.470878,1645.470878,1645.470878,1645.470878,1645.470878 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Land area|Low,km2,4115.607439,4115.607439,4115.607439,4115.607439,4115.607439,4115.607439,4115.607439,4115.607439,4115.607439,4115.607439 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Land area|Low,km2,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673,2646.432673 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Land area|Low,km2,326265.2411,326265.2411,326265.2411,326265.2411,326265.2411,326265.2411,326265.2411,326265.2411,326265.2411,326265.2411 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Land area|Low,km2,3296.657121,3296.657121,3296.657121,3296.657121,3296.657121,3296.657121,3296.657121,3296.657121,3296.657121,3296.657121 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Land area|Low,km2,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067,187947.9067 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Land area|Low,km2,65993.41311,65993.41311,65993.41311,65993.41311,65993.41311,65993.41311,65993.41311,65993.41311,65993.41311,65993.41311 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Land area|Low,km2,658113.1975,658113.1975,658113.1975,658113.1975,658113.1975,658113.1975,658113.1975,658113.1975,658113.1975,658113.1975 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Land area|Low,km2,1862711.432,1862711.432,1862711.432,1862711.432,1862711.432,1862711.432,1862711.432,1862711.432,1862711.432,1862711.432 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Land area|Low,km2,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433,966217.4433 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Land area|Low,km2,420.8528766,420.8528766,420.8528766,420.8528766,420.8528766,420.8528766,420.8528766,420.8528766,420.8528766,420.8528766 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Land area|Low,km2,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543,582042.6543 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Land area|Low,km2,178.1459898,178.1459898,178.1459898,178.1459898,178.1459898,178.1459898,178.1459898,178.1459898,178.1459898,178.1459898 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Land area|Low,km2,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223,10960.17223 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Land area|Low,km2,107499.5666,107499.5666,107499.5666,107499.5666,107499.5666,107499.5666,107499.5666,107499.5666,107499.5666,107499.5666 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Land area|Low,km2,25692.03046,25692.03046,25692.03046,25692.03046,25692.03046,25692.03046,25692.03046,25692.03046,25692.03046,25692.03046 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Land area|Low,km2,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362,241.5420362 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Land area|Low,km2,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955,827.8609955 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Land area|Low,km2,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753,330.3134753 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Land area|Low,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Land area|Low|%,%,11.4688582,11.4688582,11.4688582,11.4688582,11.4688582,11.4688582,11.4688582,11.4688582,11.4688582,11.4688582 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Land area|Low|%,%,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057,99.98504057 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Land area|Low|%,%,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334,99.98330334 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Land area|Low|%,%,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939,99.18702939 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Land area|Low|%,%,81.50154743,81.50154743,81.50154743,81.50154743,81.50154743,81.50154743,81.50154743,81.50154743,81.50154743,81.50154743 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Land area|Low|%,%,98.25066824,98.25066824,98.25066824,98.25066824,98.25066824,98.25066824,98.25066824,98.25066824,98.25066824,98.25066824 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Land area|Low|%,%,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437,10.04519437 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Land area|Low|%,%,69.3232927,69.3232927,69.3232927,69.3232927,69.3232927,69.3232927,69.3232927,69.3232927,69.3232927,69.3232927 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Land area|Low|%,%,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748,99.97077748 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Land area|Low|%,%,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255,99.29167255 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Land area|Low|%,%,51.83679078,51.83679078,51.83679078,51.83679078,51.83679078,51.83679078,51.83679078,51.83679078,51.83679078,51.83679078 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Land area|Low|%,%,5.051680939,5.051680939,5.051680939,5.051680939,5.051680939,5.051680939,5.051680939,5.051680939,5.051680939,5.051680939 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Land area|Low|%,%,52.07828043,52.07828043,52.07828043,52.07828043,52.07828043,52.07828043,52.07828043,52.07828043,52.07828043,52.07828043 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Land area|Low|%,%,89.52482098,89.52482098,89.52482098,89.52482098,89.52482098,89.52482098,89.52482098,89.52482098,89.52482098,89.52482098 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Land area|Low|%,%,90.0155028,90.0155028,90.0155028,90.0155028,90.0155028,90.0155028,90.0155028,90.0155028,90.0155028,90.0155028 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Land area|Low|%,%,6.379536705,6.379536705,6.379536705,6.379536705,6.379536705,6.379536705,6.379536705,6.379536705,6.379536705,6.379536705 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Land area|Low|%,%,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239,99.9357239 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Land area|Low|%,%,89.02122699,89.02122699,89.02122699,89.02122699,89.02122699,89.02122699,89.02122699,89.02122699,89.02122699,89.02122699 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Land area|Low|%,%,40.46057266,40.46057266,40.46057266,40.46057266,40.46057266,40.46057266,40.46057266,40.46057266,40.46057266,40.46057266 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Land area|Low|%,%,68.00080518,68.00080518,68.00080518,68.00080518,68.00080518,68.00080518,68.00080518,68.00080518,68.00080518,68.00080518 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Land area|Low|%,%,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608,0.138786608 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Land area|Low|%,%,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518,99.95374518 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Land area|Low|%,%,98.86445475,98.86445475,98.86445475,98.86445475,98.86445475,98.86445475,98.86445475,98.86445475,98.86445475,98.86445475 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Land area|Low|%,%,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788,99.68211788 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Land area|Low|%,%,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132,99.94127132 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Land area|Low|%,%,77.2458412,77.2458412,77.2458412,77.2458412,77.2458412,77.2458412,77.2458412,77.2458412,77.2458412,77.2458412 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Land area|Low|%,%,67.43961463,67.43961463,67.43961463,67.43961463,67.43961463,67.43961463,67.43961463,67.43961463,67.43961463,67.43961463 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Land area|Low|%,%,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892,89.98218892 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Land area|Low|%,%,77.11747616,77.11747616,77.11747616,77.11747616,77.11747616,77.11747616,77.11747616,77.11747616,77.11747616,77.11747616 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Land area|Low|%,%,10.18307031,10.18307031,10.18307031,10.18307031,10.18307031,10.18307031,10.18307031,10.18307031,10.18307031,10.18307031 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Land area|Low|%,%,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059,96.61441059 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Land area|Low|%,%,91.85275467,91.85275467,91.85275467,91.85275467,91.85275467,91.85275467,91.85275467,91.85275467,91.85275467,91.85275467 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Land area|Low|%,%,98.78575495,98.78575495,98.78575495,98.78575495,98.78575495,98.78575495,98.78575495,98.78575495,98.78575495,98.78575495 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Land area|Low|%,%,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674,99.97897674 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Land area|Low|%,%,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982,19.19759982 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Land area|Low|%,%,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876,98.94995876 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Land area|Low|%,%,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235,36.8062235 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Land area|Low|%,%,35.44211681,35.44211681,35.44211681,35.44211681,35.44211681,35.44211681,35.44211681,35.44211681,35.44211681,35.44211681 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Land area|Low|%,%,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915,99.96897915 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Land area|Low|%,%,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472,99.94211472 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Land area|Low|%,%,45.09347254,45.09347254,45.09347254,45.09347254,45.09347254,45.09347254,45.09347254,45.09347254,45.09347254,45.09347254 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Land area|Low|%,%,89.32330613,89.32330613,89.32330613,89.32330613,89.32330613,89.32330613,89.32330613,89.32330613,89.32330613,89.32330613 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Land area|Low|%,%,96.60883561,96.60883561,96.60883561,96.60883561,96.60883561,96.60883561,96.60883561,96.60883561,96.60883561,96.60883561 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Land area|Low|%,%,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584,99.9580584 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Land area|Low|%,%,2.722867215,2.722867215,2.722867215,2.722867215,2.722867215,2.722867215,2.722867215,2.722867215,2.722867215,2.722867215 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Land area|Low|%,%,74.14670622,74.14670622,74.14670622,74.14670622,74.14670622,74.14670622,74.14670622,74.14670622,74.14670622,74.14670622 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Land area|Low|%,%,13.47328957,13.47328957,13.47328957,13.47328957,13.47328957,13.47328957,13.47328957,13.47328957,13.47328957,13.47328957 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Land area|Low|%,%,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477,96.0855477 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Land area|Low|%,%,82.29425254,82.29425254,82.29425254,82.29425254,82.29425254,82.29425254,82.29425254,82.29425254,82.29425254,82.29425254 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Land area|Low|%,%,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597,42.72397597 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Land area|Low|%,%,17.53667976,17.53667976,17.53667976,17.53667976,17.53667976,17.53667976,17.53667976,17.53667976,17.53667976,17.53667976 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Land area|Low|%,%,2.312261521,2.312261521,2.312261521,2.312261521,2.312261521,2.312261521,2.312261521,2.312261521,2.312261521,2.312261521 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Land area|Low|%,%,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959,99.99351959 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Land area|Low|%,%,9.266273402,9.266273402,9.266273402,9.266273402,9.266273402,9.266273402,9.266273402,9.266273402,9.266273402,9.266273402 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Land area|Low|%,%,97.56029798,97.56029798,97.56029798,97.56029798,97.56029798,97.56029798,97.56029798,97.56029798,97.56029798,97.56029798 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Land area|Low|%,%,32.62582217,32.62582217,32.62582217,32.62582217,32.62582217,32.62582217,32.62582217,32.62582217,32.62582217,32.62582217 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Land area|Low|%,%,60.88948138,60.88948138,60.88948138,60.88948138,60.88948138,60.88948138,60.88948138,60.88948138,60.88948138,60.88948138 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Land area|Low|%,%,13.83609002,13.83609002,13.83609002,13.83609002,13.83609002,13.83609002,13.83609002,13.83609002,13.83609002,13.83609002 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Land area|Low|%,%,19.30810172,19.30810172,19.30810172,19.30810172,19.30810172,19.30810172,19.30810172,19.30810172,19.30810172,19.30810172 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Land area|Low|%,%,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271,37.80196271 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Land area|Low|%,%,6.007148127,6.007148127,6.007148127,6.007148127,6.007148127,6.007148127,6.007148127,6.007148127,6.007148127,6.007148127 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Land area|Low|%,%,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651,99.98774651 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Land area|Low|%,%,97.35637578,97.35637578,97.35637578,97.35637578,97.35637578,97.35637578,97.35637578,97.35637578,97.35637578,97.35637578 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Land area|Low|%,%,92.29759122,92.29759122,92.29759122,92.29759122,92.29759122,92.29759122,92.29759122,92.29759122,92.29759122,92.29759122 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Land area|Low|%,%,92.50946648,92.50946648,92.50946648,92.50946648,92.50946648,92.50946648,92.50946648,92.50946648,92.50946648,92.50946648 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Land area|Low|%,%,17.84166084,17.84166084,17.84166084,17.84166084,17.84166084,17.84166084,17.84166084,17.84166084,17.84166084,17.84166084 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Land area|Low|%,%,37.08933291,37.08933291,37.08933291,37.08933291,37.08933291,37.08933291,37.08933291,37.08933291,37.08933291,37.08933291 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Land area|Low|%,%,67.17197072,67.17197072,67.17197072,67.17197072,67.17197072,67.17197072,67.17197072,67.17197072,67.17197072,67.17197072 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Land area|Low|%,%,45.46532105,45.46532105,45.46532105,45.46532105,45.46532105,45.46532105,45.46532105,45.46532105,45.46532105,45.46532105 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Land area|Low|%,%,27.85326021,27.85326021,27.85326021,27.85326021,27.85326021,27.85326021,27.85326021,27.85326021,27.85326021,27.85326021 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Land area|Low|%,%,48.49286622,48.49286622,48.49286622,48.49286622,48.49286622,48.49286622,48.49286622,48.49286622,48.49286622,48.49286622 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Land area|Low|%,%,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444,99.8615444 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Land area|Low|%,%,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271,16.20827271 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Land area|Low|%,%,92.27811513,92.27811513,92.27811513,92.27811513,92.27811513,92.27811513,92.27811513,92.27811513,92.27811513,92.27811513 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Land area|Low|%,%,99.66320691,99.66320691,99.66320691,99.66320691,99.66320691,99.66320691,99.66320691,99.66320691,99.66320691,99.66320691 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Land area|Low|%,%,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761,99.71010761 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Land area|Low|%,%,77.63474061,77.63474061,77.63474061,77.63474061,77.63474061,77.63474061,77.63474061,77.63474061,77.63474061,77.63474061 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Land area|Low|%,%,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741,4.36785741 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Land area|Low|%,%,90.8792269,90.8792269,90.8792269,90.8792269,90.8792269,90.8792269,90.8792269,90.8792269,90.8792269,90.8792269 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Land area|Low|%,%,8.789011787,8.789011787,8.789011787,8.789011787,8.789011787,8.789011787,8.789011787,8.789011787,8.789011787,8.789011787 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Land area|Low|%,%,2.793871508,2.793871508,2.793871508,2.793871508,2.793871508,2.793871508,2.793871508,2.793871508,2.793871508,2.793871508 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Land area|Low|%,%,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024,99.96221024 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Land area|Low|%,%,9.852129283,9.852129283,9.852129283,9.852129283,9.852129283,9.852129283,9.852129283,9.852129283,9.852129283,9.852129283 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Land area|Low|%,%,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939,99.73613939 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Land area|Low|%,%,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388,10.70282388 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Land area|Low|%,%,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736,81.83226736 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Land area|Low|%,%,3.608086825,3.608086825,3.608086825,3.608086825,3.608086825,3.608086825,3.608086825,3.608086825,3.608086825,3.608086825 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Land area|Low|%,%,0.404748199,0.404748199,0.404748199,0.404748199,0.404748199,0.404748199,0.404748199,0.404748199,0.404748199,0.404748199 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Land area|Low|%,%,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412,99.33501412 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Land area|Low|%,%,53.77986977,53.77986977,53.77986977,53.77986977,53.77986977,53.77986977,53.77986977,53.77986977,53.77986977,53.77986977 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Land area|Low|%,%,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463,98.35592463 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Land area|Low|%,%,27.83408258,27.83408258,27.83408258,27.83408258,27.83408258,27.83408258,27.83408258,27.83408258,27.83408258,27.83408258 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Land area|Low|%,%,94.53395999,94.53395999,94.53395999,94.53395999,94.53395999,94.53395999,94.53395999,94.53395999,94.53395999,94.53395999 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Land area|Low|%,%,22.82384174,22.82384174,22.82384174,22.82384174,22.82384174,22.82384174,22.82384174,22.82384174,22.82384174,22.82384174 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Land area|Low|%,%,56.85303855,56.85303855,56.85303855,56.85303855,56.85303855,56.85303855,56.85303855,56.85303855,56.85303855,56.85303855 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Land area|Low|%,%,57.76979508,57.76979508,57.76979508,57.76979508,57.76979508,57.76979508,57.76979508,57.76979508,57.76979508,57.76979508 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Land area|Low|%,%,47.40591032,47.40591032,47.40591032,47.40591032,47.40591032,47.40591032,47.40591032,47.40591032,47.40591032,47.40591032 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Land area|Low|%,%,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466,99.17768466 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Land area|Low|%,%,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875,24.99626875 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Land area|Low|%,%,2.19584472,2.19584472,2.19584472,2.19584472,2.19584472,2.19584472,2.19584472,2.19584472,2.19584472,2.19584472 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Land area|Low|%,%,61.8742497,61.8742497,61.8742497,61.8742497,61.8742497,61.8742497,61.8742497,61.8742497,61.8742497,61.8742497 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Land area|Low|%,%,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012,0.56309012 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Land area|Low|%,%,2.529658111,2.529658111,2.529658111,2.529658111,2.529658111,2.529658111,2.529658111,2.529658111,2.529658111,2.529658111 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Land area|Low|%,%,99.50094206,99.50094206,99.50094206,99.50094206,99.50094206,99.50094206,99.50094206,99.50094206,99.50094206,99.50094206 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Land area|Low|%,%,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334,17.10456334 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Land area|Low|%,%,57.8965643,57.8965643,57.8965643,57.8965643,57.8965643,57.8965643,57.8965643,57.8965643,57.8965643,57.8965643 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Land area|Low|%,%,19.17942028,19.17942028,19.17942028,19.17942028,19.17942028,19.17942028,19.17942028,19.17942028,19.17942028,19.17942028 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Land area|Low|%,%,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233,99.87771233 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Land area|Low|%,%,9.056458291,9.056458291,9.056458291,9.056458291,9.056458291,9.056458291,9.056458291,9.056458291,9.056458291,9.056458291 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Land area|Low|%,%,16.2324022,16.2324022,16.2324022,16.2324022,16.2324022,16.2324022,16.2324022,16.2324022,16.2324022,16.2324022 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Land area|Low|%,%,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939,2.176878939 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Land area|Low|%,%,81.89440471,81.89440471,81.89440471,81.89440471,81.89440471,81.89440471,81.89440471,81.89440471,81.89440471,81.89440471 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Land area|Low|%,%,0.891028734,0.891028734,0.891028734,0.891028734,0.891028734,0.891028734,0.891028734,0.891028734,0.891028734,0.891028734 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Land area|Low|%,%,58.71545225,58.71545225,58.71545225,58.71545225,58.71545225,58.71545225,58.71545225,58.71545225,58.71545225,58.71545225 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Land area|Low|%,%,99.17709429,99.17709429,99.17709429,99.17709429,99.17709429,99.17709429,99.17709429,99.17709429,99.17709429,99.17709429 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Land area|Low|%,%,95.26574754,95.26574754,95.26574754,95.26574754,95.26574754,95.26574754,95.26574754,95.26574754,95.26574754,95.26574754 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Land area|Low|%,%,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975,96.90715975 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Land area|Low|%,%,0.478210325,0.478210325,0.478210325,0.478210325,0.478210325,0.478210325,0.478210325,0.478210325,0.478210325,0.478210325 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Land area|Low|%,%,0.073862502,0.073862502,0.073862502,0.073862502,0.073862502,0.073862502,0.073862502,0.073862502,0.073862502,0.073862502 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Land area|Low|%,%,83.62888839,83.62888839,83.62888839,83.62888839,83.62888839,83.62888839,83.62888839,83.62888839,83.62888839,83.62888839 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Land area|Low|%,%,39.13869794,39.13869794,39.13869794,39.13869794,39.13869794,39.13869794,39.13869794,39.13869794,39.13869794,39.13869794 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Land area|Low|%,%,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763,15.4185763 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Land area|Low|%,%,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214,60.85980214 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Land area|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Land area|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Land area|High,km2,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Land area|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Hazard|Risk score|Population weighted,risk score,0.475154535,0.475349415,0.475610226,0.475833461,0.476083519,0.476256382,0.47645615,0.476669252,0.476833164,0.476983628 +Climate Solutions,ssp2_2p0,STP,cdd|Hazard|Risk score|Population weighted,risk score,0.968083004,0.968156311,0.968226382,0.968292408,0.968350676,0.96840045,0.968443215,0.968479577,0.96851026,0.968537506 +Climate Solutions,ssp2_2p0,TKM,cdd|Hazard|Risk score|Population weighted,risk score,2.247689447,2.249386844,2.251654712,2.254111404,2.256557284,2.259268827,2.262057764,2.264988218,2.267794908,2.269998832 +Climate Solutions,ssp2_2p0,LTU,cdd|Hazard|Risk score|Population weighted,risk score,0.408928167,0.40883094,0.408741393,0.408671586,0.408610435,0.408556909,0.408509622,0.408461939,0.408411276,0.40835946 +Climate Solutions,ssp2_2p0,KHM,cdd|Hazard|Risk score|Population weighted,risk score,1.770293756,1.769962942,1.770036766,1.770429436,1.771128996,1.772089657,1.77321724,1.774476105,1.775788713,1.77705161 +Climate Solutions,ssp2_2p0,ETH,cdd|Hazard|Risk score|Population weighted,risk score,1.604162713,1.604089679,1.60398247,1.604008035,1.604016099,1.604038298,1.60411069,1.604211048,1.604322913,1.604442184 +Climate Solutions,ssp2_2p0,SWZ,cdd|Hazard|Risk score|Population weighted,risk score,1.527356727,1.527313921,1.527014321,1.5266266,1.52628749,1.525961187,1.52562715,1.525282569,1.524955756,1.524622736 +Climate Solutions,ssp2_2p0,PSE,cdd|Hazard|Risk score|Population weighted,risk score,2.481412392,2.482007277,2.483064618,2.484280281,2.485564658,2.486830692,2.487720476,2.488110132,2.488087997,2.487713074 +Climate Solutions,ssp2_2p0,ARG,cdd|Hazard|Risk score|Population weighted,risk score,1.172951617,1.170361938,1.168034826,1.16615513,1.164586595,1.16331743,1.162317698,1.16152159,1.16093889,1.16048838 +Climate Solutions,ssp2_2p0,BOL,cdd|Hazard|Risk score|Population weighted,risk score,1.597905106,1.599182981,1.599884173,1.600242591,1.600484905,1.600517899,1.600442662,1.600289861,1.600173152,1.600050286 +Climate Solutions,ssp2_2p0,BHS,cdd|Hazard|Risk score|Population weighted,risk score,0.525809415,0.526854459,0.527363676,0.527830156,0.528160665,0.528515065,0.528750598,0.529105935,0.529394639,0.529573677 +Climate Solutions,ssp2_2p0,BFA,cdd|Hazard|Risk score|Population weighted,risk score,2.443484061,2.44286566,2.44262527,2.442593871,2.442698094,2.442856525,2.443002581,2.44314277,2.443272933,2.443394863 +Climate Solutions,ssp2_2p0,GHA,cdd|Hazard|Risk score|Population weighted,risk score,1.159997443,1.162822537,1.164644394,1.1657713,1.166268226,1.166334564,1.166121779,1.16571832,1.165187243,1.164566764 +Climate Solutions,ssp2_2p0,SAU,cdd|Hazard|Risk score|Population weighted,risk score,2.720405867,2.721733483,2.722237519,2.722539987,2.722690021,2.722782952,2.722685838,2.722476202,2.722229546,2.721974253 +Climate Solutions,ssp2_2p0,CPV,cdd|Hazard|Risk score|Population weighted,risk score,1.942261266,1.942896062,1.943454892,1.94392757,1.944322181,1.944604842,1.944821513,1.9450159,1.945176162,1.945312726 +Climate Solutions,ssp2_2p0,SVN,cdd|Hazard|Risk score|Population weighted,risk score,0.543694297,0.543006857,0.542425811,0.541863704,0.541351893,0.540924138,0.540508603,0.540042738,0.539564662,0.539168891 +Climate Solutions,ssp2_2p0,GTM,cdd|Hazard|Risk score|Population weighted,risk score,1.37395228,1.375059331,1.376661082,1.378495989,1.380622039,1.382827817,1.384990418,1.387104555,1.389141118,1.391090217 +Climate Solutions,ssp2_2p0,BIH,cdd|Hazard|Risk score|Population weighted,risk score,0.650568892,0.650610473,0.650700091,0.65087903,0.651145093,0.651461854,0.651791749,0.652122344,0.652408331,0.652624426 +Climate Solutions,ssp2_2p0,GIN,cdd|Hazard|Risk score|Population weighted,risk score,2.162427486,2.161352969,2.160462448,2.159630547,2.158805678,2.158022794,2.157467514,2.157133654,2.157027209,2.157137548 +Climate Solutions,ssp2_2p0,JOR,cdd|Hazard|Risk score|Population weighted,risk score,2.644764134,2.645336751,2.645838129,2.646202956,2.646434389,2.646553588,2.646450894,2.646156294,2.645741096,2.645196785 +Climate Solutions,ssp2_2p0,COG,cdd|Hazard|Risk score|Population weighted,risk score,1.710553646,1.708370327,1.707532422,1.70715103,1.707387594,1.70809937,1.708896856,1.709838757,1.711015149,1.71218272 +Climate Solutions,ssp2_2p0,ESP,cdd|Hazard|Risk score|Population weighted,risk score,1.492885592,1.490910054,1.488439886,1.486207125,1.48408639,1.481900607,1.479728309,1.477812605,1.476176744,1.474788832 +Climate Solutions,ssp2_2p0,LBR,cdd|Hazard|Risk score|Population weighted,risk score,1.354037449,1.349985554,1.347327856,1.345438761,1.343959139,1.342818956,1.342001851,1.341436605,1.341112896,1.341027324 +Climate Solutions,ssp2_2p0,NLD,cdd|Hazard|Risk score|Population weighted,risk score,0.578352893,0.579376364,0.580351947,0.581241803,0.58204791,0.582809141,0.583520803,0.584168223,0.584759032,0.585296668 +Climate Solutions,ssp2_2p0,JAM,cdd|Hazard|Risk score|Population weighted,risk score,0.654187058,0.654023331,0.653885513,0.653765351,0.653654196,0.653557103,0.653481831,0.653420487,0.653370168,0.653330163 +Climate Solutions,ssp2_2p0,OMN,cdd|Hazard|Risk score|Population weighted,risk score,2.618061903,2.621549419,2.622956841,2.62404001,2.624614793,2.625098302,2.625252352,2.625115214,2.624826045,2.624343454 +Climate Solutions,ssp2_2p0,TZA,cdd|Hazard|Risk score|Population weighted,risk score,1.641772455,1.646525217,1.649842075,1.652081248,1.65349511,1.654259967,1.654712661,1.654946335,1.655071884,1.655046656 +Climate Solutions,ssp2_2p0,ALB,cdd|Hazard|Risk score|Population weighted,risk score,0.933873643,0.935066431,0.935841944,0.936320363,0.936584908,0.936665885,0.936702573,0.936717508,0.936718438,0.936777547 +Climate Solutions,ssp2_2p0,GAB,cdd|Hazard|Risk score|Population weighted,risk score,1.038157067,1.035917257,1.034725621,1.034317762,1.03378741,1.033201821,1.032463722,1.031719095,1.030973512,1.030701723 +Climate Solutions,ssp2_2p0,NZL,cdd|Hazard|Risk score|Population weighted,risk score,0.472792369,0.472932133,0.473023344,0.473185264,0.473295698,0.473415942,0.473553697,0.473711372,0.473900398,0.474127597 +Climate Solutions,ssp2_2p0,YEM,cdd|Hazard|Risk score|Population weighted,risk score,2.327060261,2.329304071,2.330944988,2.332213762,2.333102742,2.333754692,2.334224276,2.334547052,2.334764945,2.334893713 +Climate Solutions,ssp2_2p0,PAK,cdd|Hazard|Risk score|Population weighted,risk score,1.999070036,2.003825644,2.007340967,2.010018289,2.012432995,2.014527827,2.016368876,2.018010648,2.019451258,2.020681947 +Climate Solutions,ssp2_2p0,WSM,cdd|Hazard|Risk score|Population weighted,risk score,0.204270735,0.204304768,0.204415026,0.204633361,0.204945554,0.205348948,0.205734705,0.206089185,0.206405347,0.206671249 +Climate Solutions,ssp2_2p0,SVK,cdd|Hazard|Risk score|Population weighted,risk score,0.443823041,0.443746311,0.443766017,0.443861408,0.443927395,0.443978133,0.444052169,0.444132102,0.444184664,0.444207478 +Climate Solutions,ssp2_2p0,ARE,cdd|Hazard|Risk score|Population weighted,risk score,2.817795603,2.81936693,2.81977883,2.819926405,2.819927242,2.81982854,2.819605195,2.819342519,2.819120862,2.81892696 +Climate Solutions,ssp2_2p0,GUM,cdd|Hazard|Risk score|Population weighted,risk score,0.556226265,0.556600485,0.556737931,0.556814851,0.556861518,0.556889693,0.556905136,0.556913796,0.55692027,0.556925405 +Climate Solutions,ssp2_2p0,IND,cdd|Hazard|Risk score|Population weighted,risk score,2.290271312,2.290621198,2.290926518,2.291316093,2.291749793,2.292211381,2.292673702,2.293112967,2.293516866,2.293875086 +Climate Solutions,ssp2_2p0,AZE,cdd|Hazard|Risk score|Population weighted,risk score,1.464081802,1.46809762,1.471382485,1.473988011,1.476116798,1.477781419,1.47903917,1.479945442,1.480631231,1.481196432 +Climate Solutions,ssp2_2p0,MDG,cdd|Hazard|Risk score|Population weighted,risk score,1.208767169,1.208517195,1.208661457,1.20903276,1.209518814,1.210075457,1.210701814,1.211365893,1.212040546,1.212698092 +Climate Solutions,ssp2_2p0,LSO,cdd|Hazard|Risk score|Population weighted,risk score,1.46932756,1.469796071,1.47033546,1.470908961,1.471477535,1.472018043,1.472532429,1.473030839,1.473471044,1.473857999 +Climate Solutions,ssp2_2p0,VCT,cdd|Hazard|Risk score|Population weighted,risk score,1.923991027,1.925814812,1.927380839,1.92870721,1.929816167,1.930734308,1.931485566,1.932105842,1.932624546,1.933064072 +Climate Solutions,ssp2_2p0,KEN,cdd|Hazard|Risk score|Population weighted,risk score,0.850180177,0.850167333,0.849869738,0.849386048,0.848789483,0.848132471,0.847501665,0.846888212,0.846314707,0.845773403 +Climate Solutions,ssp2_2p0,KOR,cdd|Hazard|Risk score|Population weighted,risk score,0.778427361,0.778149731,0.777921248,0.777765474,0.777616268,0.777479287,0.777359924,0.777260425,0.777192055,0.777144855 +Climate Solutions,ssp2_2p0,BLR,cdd|Hazard|Risk score|Population weighted,risk score,0.477380338,0.476686017,0.476037552,0.475459971,0.474958601,0.474530392,0.474153887,0.473822,0.473535865,0.473294112 +Climate Solutions,ssp2_2p0,TJK,cdd|Hazard|Risk score|Population weighted,risk score,1.896827423,1.904408869,1.912234898,1.920349178,1.928304074,1.936054859,1.943193806,1.949598217,1.955168033,1.959586073 +Climate Solutions,ssp2_2p0,TUR,cdd|Hazard|Risk score|Population weighted,risk score,1.588037274,1.589702615,1.591122637,1.592237168,1.593064881,1.593736209,1.594228079,1.594570045,1.59478087,1.594855585 +Climate Solutions,ssp2_2p0,AFG,cdd|Hazard|Risk score|Population weighted,risk score,1.910188573,1.919558668,1.926972692,1.932543635,1.936498852,1.93934013,1.941376061,1.943020796,1.944420054,1.945616636 +Climate Solutions,ssp2_2p0,BGD,cdd|Hazard|Risk score|Population weighted,risk score,2.269540055,2.269575484,2.269545429,2.269454923,2.269321874,2.269158605,2.268981544,2.268803001,2.268629381,2.268476492 +Climate Solutions,ssp2_2p0,MRT,cdd|Hazard|Risk score|Population weighted,risk score,2.975044842,2.974827144,2.974445792,2.974122858,2.973861101,2.973790091,2.973638904,2.973535175,2.973481184,2.973448614 +Climate Solutions,ssp2_2p0,SLB,cdd|Hazard|Risk score|Population weighted,risk score,0.321738796,0.320488192,0.31968408,0.319175927,0.318920406,0.318781167,0.318708593,0.318701827,0.318745966,0.31883277 +Climate Solutions,ssp2_2p0,LCA,cdd|Hazard|Risk score|Population weighted,risk score,0.238180485,0.23018879,0.22481231,0.220998399,0.218441835,0.217501235,0.218674356,0.222009265,0.226324257,0.230723839 +Climate Solutions,ssp2_2p0,CYP,cdd|Hazard|Risk score|Population weighted,risk score,2.118985723,2.119109138,2.119295137,2.119535095,2.119772641,2.120028161,2.120335984,2.120683713,2.120990379,2.121259892 +Climate Solutions,ssp2_2p0,PYF,cdd|Hazard|Risk score|Population weighted,risk score,0.384932363,0.385192988,0.385448067,0.385679659,0.385894409,0.386078083,0.386235645,0.386366186,0.38648347,0.386579803 +Climate Solutions,ssp2_2p0,FRA,cdd|Hazard|Risk score|Population weighted,risk score,0.856395155,0.856439829,0.856523377,0.856618286,0.856687672,0.856779672,0.856933132,0.857115729,0.857291226,0.857467224 +Climate Solutions,ssp2_2p0,NAM,cdd|Hazard|Risk score|Population weighted,risk score,2.718652106,2.718760388,2.718298822,2.718103536,2.717540387,2.716973019,2.716522495,2.715930342,2.715323335,2.71480433 +Climate Solutions,ssp2_2p0,SOM,cdd|Hazard|Risk score|Population weighted,risk score,2.081855498,2.082167272,2.082469374,2.082617125,2.082762166,2.082879903,2.082967559,2.082995105,2.083002134,2.082996615 +Climate Solutions,ssp2_2p0,PER,cdd|Hazard|Risk score|Population weighted,risk score,1.965321479,1.980174863,1.994981786,2.00936356,2.023099717,2.035782145,2.046617533,2.055995794,2.064047667,2.070930322 +Climate Solutions,ssp2_2p0,LAO,cdd|Hazard|Risk score|Population weighted,risk score,1.555029016,1.554583837,1.554866232,1.555387409,1.55603368,1.557005521,1.557998683,1.558975687,1.55985373,1.56042894 +Climate Solutions,ssp2_2p0,SYC,cdd|Hazard|Risk score|Population weighted,risk score,0.463694712,0.463877948,0.463947293,0.464016794,0.464016794,0.464019288,0.464018075,0.464017136,0.464015122,0.464016782 +Climate Solutions,ssp2_2p0,NOR,cdd|Hazard|Risk score|Population weighted,risk score,0.466301938,0.467629158,0.468643591,0.469421047,0.470070635,0.470596537,0.471057074,0.47145538,0.471796054,0.472103191 +Climate Solutions,ssp2_2p0,CIV,cdd|Hazard|Risk score|Population weighted,risk score,1.371267294,1.373538297,1.375156929,1.376300923,1.377027283,1.377447476,1.377720312,1.377861042,1.377947866,1.377965001 +Climate Solutions,ssp2_2p0,BEN,cdd|Hazard|Risk score|Population weighted,risk score,1.885759303,1.887992968,1.889593192,1.890862087,1.89192139,1.892713,1.893334076,1.893821732,1.894180267,1.894439679 +Climate Solutions,ssp2_2p0,ESH,cdd|Hazard|Risk score|Population weighted,risk score,2.830353929,2.832426964,2.833119259,2.835470953,2.835606919,2.838226802,2.838291332,2.839878897,2.841208454,2.842164574 +Climate Solutions,ssp2_2p0,CUB,cdd|Hazard|Risk score|Population weighted,risk score,0.723514975,0.723567001,0.723613417,0.723652403,0.723684165,0.723711273,0.723733032,0.723752869,0.723768418,0.72378117 +Climate Solutions,ssp2_2p0,CMR,cdd|Hazard|Risk score|Population weighted,risk score,1.707822705,1.712877543,1.718160984,1.723272852,1.728310684,1.732670286,1.736683925,1.740366939,1.743860029,1.74714056 +Climate Solutions,ssp2_2p0,MNE,cdd|Hazard|Risk score|Population weighted,risk score,0.811210312,0.811935726,0.812462361,0.812891093,0.813291382,0.813654213,0.814026352,0.814313676,0.814510856,0.814672914 +Climate Solutions,ssp2_2p0,TGO,cdd|Hazard|Risk score|Population weighted,risk score,1.700085017,1.701883469,1.703010268,1.703527754,1.703682125,1.703586159,1.703260235,1.702776794,1.702163764,1.701473136 +Climate Solutions,ssp2_2p0,CHN,cdd|Hazard|Risk score|Population weighted,risk score,1.176060872,1.176982347,1.177907156,1.178783861,1.179617362,1.180281545,1.18081415,1.181244595,1.18159919,1.181885931 +Climate Solutions,ssp2_2p0,ARM,cdd|Hazard|Risk score|Population weighted,risk score,1.092310573,1.097669487,1.102844913,1.107444441,1.111409033,1.11476019,1.11747462,1.119658488,1.12142082,1.122808753 +Climate Solutions,ssp2_2p0,ATG,cdd|Hazard|Risk score|Population weighted,risk score,0.853830751,0.853826238,0.853823732,0.853822504,0.853820425,0.853820311,0.85382022,0.85382022,0.853819207,0.853820475 +Climate Solutions,ssp2_2p0,DOM,cdd|Hazard|Risk score|Population weighted,risk score,0.733419838,0.733368339,0.733246276,0.733072633,0.732854254,0.732579372,0.732262425,0.731941453,0.731667376,0.73146611 +Climate Solutions,ssp2_2p0,UKR,cdd|Hazard|Risk score|Population weighted,risk score,0.617076955,0.617534424,0.61794619,0.618299171,0.618598452,0.618860505,0.61911954,0.619350742,0.619556783,0.61974315 +Climate Solutions,ssp2_2p0,BHR,cdd|Hazard|Risk score|Population weighted,risk score,2.731295227,2.731499124,2.73164516,2.731759144,2.731844681,2.731908076,2.731950954,2.731976222,2.731989198,2.731997254 +Climate Solutions,ssp2_2p0,TON,cdd|Hazard|Risk score|Population weighted,risk score,0.58777055,0.589041236,0.59115263,0.593914153,0.597306015,0.601113091,0.60449435,0.607390918,0.609871159,0.611907341 +Climate Solutions,ssp2_2p0,FIN,cdd|Hazard|Risk score|Population weighted,risk score,0.43576412,0.435829268,0.435891746,0.435939722,0.435980901,0.4360205,0.436053617,0.436084582,0.436109677,0.436129043 +Climate Solutions,ssp2_2p0,LBY,cdd|Hazard|Risk score|Population weighted,risk score,2.602822908,2.60360639,2.603864644,2.603995677,2.604350782,2.603696982,2.603476676,2.603258744,2.60339025,2.603034742 +Climate Solutions,ssp2_2p0,IDN,cdd|Hazard|Risk score|Population weighted,risk score,0.859387401,0.860842821,0.862612122,0.8645179,0.866530792,0.868575155,0.87060696,0.87234667,0.873838141,0.875133485 +Climate Solutions,ssp2_2p0,CAF,cdd|Hazard|Risk score|Population weighted,risk score,1.689482827,1.690892974,1.692127191,1.69337737,1.694163797,1.69471275,1.695086327,1.695634287,1.6961203,1.696478842 +Climate Solutions,ssp2_2p0,USA,cdd|Hazard|Risk score|Population weighted,risk score,0.875630008,0.878061783,0.880335186,0.882527366,0.884545859,0.88625338,0.887750605,0.889111495,0.890351128,0.891427284 +Climate Solutions,ssp2_2p0,SWE,cdd|Hazard|Risk score|Population weighted,risk score,0.494229957,0.494177215,0.494171355,0.494132358,0.494106668,0.494059406,0.49404137,0.494026824,0.494017234,0.494027157 +Climate Solutions,ssp2_2p0,VNM,cdd|Hazard|Risk score|Population weighted,risk score,1.272573712,1.273297783,1.274985691,1.277334122,1.280207855,1.283440932,1.286817977,1.290174594,1.293139092,1.295749928 +Climate Solutions,ssp2_2p0,MLI,cdd|Hazard|Risk score|Population weighted,risk score,2.610022088,2.610176915,2.610270295,2.610375019,2.610422794,2.610722592,2.610721704,2.610891462,2.610998026,2.610949643 +Climate Solutions,ssp2_2p0,RUS,cdd|Hazard|Risk score|Population weighted,risk score,0.583660156,0.582144838,0.580744687,0.579404958,0.578191076,0.577090249,0.576031886,0.575149239,0.574363932,0.573674484 +Climate Solutions,ssp2_2p0,BGR,cdd|Hazard|Risk score|Population weighted,risk score,0.855917441,0.855887147,0.855755136,0.855624844,0.855481817,0.855301722,0.855162228,0.855076819,0.855027865,0.855003207 +Climate Solutions,ssp2_2p0,MUS,cdd|Hazard|Risk score|Population weighted,risk score,0.745500545,0.742850081,0.740504797,0.738614271,0.737182729,0.736115214,0.73538121,0.734946234,0.734653603,0.734402694 +Climate Solutions,ssp2_2p0,ROU,cdd|Hazard|Risk score|Population weighted,risk score,0.711008901,0.71225376,0.713380632,0.714386309,0.7152225,0.715969173,0.716629335,0.717177609,0.717601442,0.717902742 +Climate Solutions,ssp2_2p0,AGO,cdd|Hazard|Risk score|Population weighted,risk score,2.32409762,2.322951607,2.322024072,2.321392606,2.321024261,2.320818924,2.320620122,2.320510178,2.320369716,2.320236196 +Climate Solutions,ssp2_2p0,PRT,cdd|Hazard|Risk score|Population weighted,risk score,1.747247997,1.748255711,1.74918896,1.749986108,1.750691037,1.751354897,1.751983696,1.752550394,1.75303808,1.753464537 +Climate Solutions,ssp2_2p0,ZAF,cdd|Hazard|Risk score|Population weighted,risk score,1.67023553,1.67226256,1.674244646,1.676192409,1.678046272,1.679804969,1.681457823,1.683020649,1.684332428,1.685406639 +Climate Solutions,ssp2_2p0,FJI,cdd|Hazard|Risk score|Population weighted,risk score,0.466468943,0.466546848,0.466612886,0.466670605,0.466716788,0.466759493,0.466790028,0.466813243,0.466835902,0.466849493 +Climate Solutions,ssp2_2p0,BRN,cdd|Hazard|Risk score|Population weighted,risk score,0.315977517,0.316243573,0.316559516,0.316910053,0.317280492,0.317646321,0.317977295,0.318271903,0.318528956,0.318727283 +Climate Solutions,ssp2_2p0,MYS,cdd|Hazard|Risk score|Population weighted,risk score,0.372614467,0.372208919,0.371864364,0.371520786,0.371191532,0.370893472,0.370638426,0.370428661,0.370260306,0.370128378 +Climate Solutions,ssp2_2p0,AUT,cdd|Hazard|Risk score|Population weighted,risk score,0.400368994,0.401027381,0.401607811,0.402143887,0.402668807,0.403155259,0.403580039,0.403956286,0.40430519,0.404661198 +Climate Solutions,ssp2_2p0,MOZ,cdd|Hazard|Risk score|Population weighted,risk score,1.543848731,1.546441139,1.548715535,1.550771108,1.55254241,1.553958182,1.555132964,1.556159291,1.557088236,1.5579135 +Climate Solutions,ssp2_2p0,UGA,cdd|Hazard|Risk score|Population weighted,risk score,0.631072514,0.634212002,0.636254891,0.637529267,0.638284696,0.638683301,0.638858092,0.638891221,0.63882417,0.638694485 +Climate Solutions,ssp2_2p0,KGZ,cdd|Hazard|Risk score|Population weighted,risk score,1.152597119,1.154771722,1.157102333,1.158067686,1.159463835,1.160318802,1.160641355,1.161153983,1.161777487,1.162558533 +Climate Solutions,ssp2_2p0,HUN,cdd|Hazard|Risk score|Population weighted,risk score,0.593871997,0.592904249,0.59202965,0.591226644,0.590471267,0.589786563,0.589187782,0.588660035,0.588189743,0.587776207 +Climate Solutions,ssp2_2p0,NER,cdd|Hazard|Risk score|Population weighted,risk score,2.822647194,2.822877463,2.823177497,2.823401883,2.823652371,2.823847325,2.82400936,2.824159972,2.824256,2.824346113 +Climate Solutions,ssp2_2p0,BRA,cdd|Hazard|Risk score|Population weighted,risk score,1.195162957,1.193314638,1.191811542,1.190289139,1.188643379,1.186938997,1.185584361,1.184463244,1.183544115,1.182741781 +Climate Solutions,ssp2_2p0,KWT,cdd|Hazard|Risk score|Population weighted,risk score,2.702228294,2.70295344,2.703042984,2.703071823,2.703041973,2.702942607,2.702725368,2.702400098,2.702034463,2.701606651 +Climate Solutions,ssp2_2p0,PAN,cdd|Hazard|Risk score|Population weighted,risk score,0.944617118,0.946544729,0.948074732,0.949230809,0.950074373,0.950648923,0.95104471,0.951304407,0.951502905,0.951677862 +Climate Solutions,ssp2_2p0,GUY,cdd|Hazard|Risk score|Population weighted,risk score,0.59535766,0.594884165,0.594931127,0.595492576,0.59599247,0.596505547,0.595261746,0.595814984,0.596463426,0.596420923 +Climate Solutions,ssp2_2p0,CRI,cdd|Hazard|Risk score|Population weighted,risk score,0.897852457,0.897367796,0.896507782,0.895425264,0.8942068,0.892924648,0.891596932,0.890248902,0.88904387,0.888047318 +Climate Solutions,ssp2_2p0,LUX,cdd|Hazard|Risk score|Population weighted,risk score,0.657552696,0.660455128,0.662741864,0.664663022,0.666237317,0.667457542,0.668222597,0.668539722,0.66856328,0.668396593 +Climate Solutions,ssp2_2p0,IRL,cdd|Hazard|Risk score|Population weighted,risk score,0.650557719,0.651476642,0.652410041,0.653256473,0.654007361,0.654720662,0.655411486,0.656050908,0.656654743,0.657233087 +Climate Solutions,ssp2_2p0,NGA,cdd|Hazard|Risk score|Population weighted,risk score,2.069760036,2.073057229,2.075811331,2.078133503,2.079990704,2.081270542,2.082201882,2.082855629,2.083278396,2.083535526 +Climate Solutions,ssp2_2p0,ECU,cdd|Hazard|Risk score|Population weighted,risk score,0.882252447,0.883973454,0.884681162,0.884564452,0.88378862,0.882488364,0.880950969,0.879285875,0.877550949,0.876045604 +Climate Solutions,ssp2_2p0,CZE,cdd|Hazard|Risk score|Population weighted,risk score,0.398061829,0.398523491,0.398945372,0.399353724,0.399746741,0.400094592,0.400385559,0.400632845,0.400846806,0.401021959 +Climate Solutions,ssp2_2p0,AUS,cdd|Hazard|Risk score|Population weighted,risk score,0.85422987,0.854088357,0.85312578,0.852472546,0.85231592,0.85164568,0.85077381,0.850111239,0.849576465,0.849197438 +Climate Solutions,ssp2_2p0,IRN,cdd|Hazard|Risk score|Population weighted,risk score,2.232459956,2.233760218,2.234616681,2.235230632,2.235655372,2.235782373,2.2359088,2.236162556,2.236413031,2.236642839 +Climate Solutions,ssp2_2p0,DZA,cdd|Hazard|Risk score|Population weighted,risk score,1.986896646,1.987814215,1.987883541,1.988644296,1.989025452,1.989911434,1.990679113,1.991338715,1.991425781,1.991918396 +Climate Solutions,ssp2_2p0,SLV,cdd|Hazard|Risk score|Population weighted,risk score,1.917697905,1.915398368,1.912649033,1.909838682,1.907070471,1.905022139,1.903430798,1.902051358,1.900701656,1.89925165 +Climate Solutions,ssp2_2p0,CHL,cdd|Hazard|Risk score|Population weighted,risk score,2.411972956,2.413460929,2.414651676,2.415614253,2.416419255,2.417001535,2.417506219,2.417821322,2.41818567,2.418324693 +Climate Solutions,ssp2_2p0,PRI,cdd|Hazard|Risk score|Population weighted,risk score,0.422131658,0.422154328,0.422155266,0.422156598,0.422156606,0.422156677,0.422157652,0.422157835,0.422157513,0.422157998 +Climate Solutions,ssp2_2p0,BEL,cdd|Hazard|Risk score|Population weighted,risk score,0.597978407,0.598343289,0.598656519,0.599006711,0.599348252,0.599638374,0.599895717,0.600142993,0.600372,0.600574103 +Climate Solutions,ssp2_2p0,THA,cdd|Hazard|Risk score|Population weighted,risk score,1.769535369,1.769106792,1.768237218,1.76691665,1.765218319,1.763340102,1.761317954,1.759380823,1.757699525,1.756226426 +Climate Solutions,ssp2_2p0,HTI,cdd|Hazard|Risk score|Population weighted,risk score,0.78198103,0.784610927,0.787041083,0.789247671,0.791288932,0.793295553,0.795230367,0.796857917,0.798163133,0.799218638 +Climate Solutions,ssp2_2p0,IRQ,cdd|Hazard|Risk score|Population weighted,risk score,2.499700034,2.50072113,2.501592119,2.502351433,2.502990076,2.503558518,2.504067766,2.504518754,2.504904343,2.50523208 +Climate Solutions,ssp2_2p0,SLE,cdd|Hazard|Risk score|Population weighted,risk score,1.870851337,1.870145844,1.869573542,1.869093354,1.868669523,1.868300134,1.868027745,1.8678398,1.867734172,1.867711349 +Climate Solutions,ssp2_2p0,GEO,cdd|Hazard|Risk score|Population weighted,risk score,0.729401072,0.731136153,0.732519738,0.733796394,0.73494853,0.735963139,0.736785386,0.737367169,0.737795427,0.738009026 +Climate Solutions,ssp2_2p0,HKG,cdd|Hazard|Risk score|Population weighted,risk score,1.363360095,1.363195528,1.363653814,1.364687372,1.366058713,1.367898809,1.36964553,1.371130358,1.372227733,1.372612344 +Climate Solutions,ssp2_2p0,DNK,cdd|Hazard|Risk score|Population weighted,risk score,0.654279558,0.654121821,0.654021461,0.653946411,0.653884121,0.653836471,0.653798186,0.653763293,0.653729208,0.653691942 +Climate Solutions,ssp2_2p0,POL,cdd|Hazard|Risk score|Population weighted,risk score,0.446791415,0.446533366,0.446290176,0.446050738,0.445818888,0.445613773,0.44544214,0.445291027,0.445158638,0.445053588 +Climate Solutions,ssp2_2p0,MDA,cdd|Hazard|Risk score|Population weighted,risk score,0.689756214,0.691114043,0.692388164,0.693558514,0.694609304,0.695513394,0.696240876,0.69687478,0.697422,0.697815786 +Climate Solutions,ssp2_2p0,MAR,cdd|Hazard|Risk score|Population weighted,risk score,2.116013685,2.116795685,2.117471638,2.118053313,2.11853702,2.118957898,2.119314886,2.119603648,2.119840779,2.120041225 +Climate Solutions,ssp2_2p0,HRV,cdd|Hazard|Risk score|Population weighted,risk score,0.676211431,0.675671398,0.675242417,0.67487413,0.674514489,0.674192425,0.673893798,0.673582967,0.673284059,0.673024515 +Climate Solutions,ssp2_2p0,MNG,cdd|Hazard|Risk score|Population weighted,risk score,1.79608302,1.798685745,1.798756685,1.798003244,1.798861674,1.799005875,1.799025306,1.799025352,1.799378626,1.798127754 +Climate Solutions,ssp2_2p0,GNB,cdd|Hazard|Risk score|Population weighted,risk score,2.820976652,2.819828023,2.819338487,2.819308217,2.819548284,2.819990232,2.820429705,2.820840211,2.821213289,2.821540542 +Climate Solutions,ssp2_2p0,KIR,cdd|Hazard|Risk score|Population weighted,risk score,0.625355516,0.633072814,0.639749014,0.644120905,0.647682957,0.650619242,0.65259429,0.653516286,0.654432786,0.654886846 +Climate Solutions,ssp2_2p0,CHE,cdd|Hazard|Risk score|Population weighted,risk score,0.365661655,0.365409793,0.365110504,0.364867584,0.364628706,0.364383091,0.364188817,0.364061021,0.364002757,0.363989146 +Climate Solutions,ssp2_2p0,GRD,cdd|Hazard|Risk score|Population weighted,risk score,0.989432959,0.991077807,0.992374588,0.993623343,0.994748716,0.995666629,0.996394488,0.996920135,0.997318837,0.997668746 +Climate Solutions,ssp2_2p0,BLZ,cdd|Hazard|Risk score|Population weighted,risk score,0.839159118,0.837792619,0.836718563,0.835801076,0.834961259,0.834230895,0.833543092,0.832994888,0.832599401,0.832321981 +Climate Solutions,ssp2_2p0,TCD,cdd|Hazard|Risk score|Population weighted,risk score,2.618734496,2.617817266,2.616571961,2.616148084,2.615598588,2.615263638,2.61517353,2.614866019,2.614648226,2.614357982 +Climate Solutions,ssp2_2p0,EST,cdd|Hazard|Risk score|Population weighted,risk score,0.414048668,0.413969974,0.413894092,0.413824135,0.413765916,0.413711334,0.413660399,0.413616482,0.413577414,0.413540284 +Climate Solutions,ssp2_2p0,URY,cdd|Hazard|Risk score|Population weighted,risk score,0.621160124,0.621180947,0.621152776,0.621124782,0.621168511,0.621237581,0.621306976,0.621333706,0.621354042,0.621468256 +Climate Solutions,ssp2_2p0,GNQ,cdd|Hazard|Risk score|Population weighted,risk score,0.603363561,0.602714985,0.602268825,0.601958959,0.601741662,0.601609038,0.601507366,0.601432107,0.601388104,0.601384588 +Climate Solutions,ssp2_2p0,LBN,cdd|Hazard|Risk score|Population weighted,risk score,2.281288747,2.281896858,2.282405755,2.282999988,2.283736878,2.284514719,2.285489612,2.286703174,2.288155359,2.289848745 +Climate Solutions,ssp2_2p0,UZB,cdd|Hazard|Risk score|Population weighted,risk score,2.021025765,2.022618359,2.023931737,2.024894397,2.025684457,2.026220491,2.026523366,2.026646797,2.026666022,2.02656856 +Climate Solutions,ssp2_2p0,TUN,cdd|Hazard|Risk score|Population weighted,risk score,1.985597463,1.985517178,1.985425421,1.985235511,1.984985993,1.984680764,1.984380557,1.984120798,1.98388346,1.983714714 +Climate Solutions,ssp2_2p0,DJI,cdd|Hazard|Risk score|Population weighted,risk score,2.114564427,2.11538034,2.116157277,2.116832962,2.117500863,2.118162384,2.118696567,2.119111182,2.119365395,2.119471903 +Climate Solutions,ssp2_2p0,RWA,cdd|Hazard|Risk score|Population weighted,risk score,0.979615692,0.981841767,0.982785192,0.98321412,0.983380457,0.983250922,0.983031263,0.982781671,0.982504751,0.982216494 +Climate Solutions,ssp2_2p0,TLS,cdd|Hazard|Risk score|Population weighted,risk score,1.306234208,1.305301973,1.304181822,1.303235263,1.302377996,1.301605106,1.30082235,1.300053217,1.299349071,1.298725954 +Climate Solutions,ssp2_2p0,COL,cdd|Hazard|Risk score|Population weighted,risk score,0.721833931,0.725424793,0.72814766,0.730096383,0.731448458,0.732265618,0.732662228,0.732695741,0.732695764,0.73266732 +Climate Solutions,ssp2_2p0,REU,cdd|Hazard|Risk score|Population weighted,risk score,0.452440619,0.457206026,0.458269488,0.458770298,0.459063591,0.45925401,0.459379254,0.459481688,0.459555791,0.459612915 +Climate Solutions,ssp2_2p0,BDI,cdd|Hazard|Risk score|Population weighted,risk score,1.401178363,1.403051248,1.403484553,1.40327186,1.402894219,1.402448269,1.401644901,1.400611448,1.399450114,1.398161529 +Climate Solutions,ssp2_2p0,TWN,cdd|Hazard|Risk score|Population weighted,risk score,0.740630532,0.751879866,0.760514662,0.766674983,0.771938113,0.77494515,0.778133022,0.780915689,0.783384158,0.785603897 +Climate Solutions,ssp2_2p0,NIC,cdd|Hazard|Risk score|Population weighted,risk score,1.911033022,1.913069816,1.915408895,1.917797144,1.920304484,1.922943826,1.925378026,1.927539153,1.929440545,1.931201318 +Climate Solutions,ssp2_2p0,BRB,cdd|Hazard|Risk score|Population weighted,risk score,1.574801591,1.57505998,1.575310997,1.575557772,1.575797742,1.576017798,1.576198517,1.576348173,1.57647315,1.576578323 +Climate Solutions,ssp2_2p0,QAT,cdd|Hazard|Risk score|Population weighted,risk score,2.929722042,2.929621386,2.929543682,2.929471952,2.929401626,2.929344079,2.929288219,2.929229397,2.929177345,2.929129476 +Climate Solutions,ssp2_2p0,COD,cdd|Hazard|Risk score|Population weighted,risk score,1.279879955,1.280504167,1.281065859,1.281287363,1.281305746,1.281380475,1.28149088,1.281608104,1.281745345,1.281909223 +Climate Solutions,ssp2_2p0,ITA,cdd|Hazard|Risk score|Population weighted,risk score,0.944122342,0.943328119,0.942427849,0.94155764,0.940663758,0.939742397,0.938870572,0.938087288,0.937395472,0.936778689 +Climate Solutions,ssp2_2p0,BTN,cdd|Hazard|Risk score|Population weighted,risk score,2.187335113,2.186453962,2.18580574,2.185100824,2.184485944,2.183980369,2.183527776,2.183123177,2.182840863,2.182685576 +Climate Solutions,ssp2_2p0,SDN,cdd|Hazard|Risk score|Population weighted,risk score,2.842447552,2.841761148,2.841338162,2.841156718,2.841114158,2.841169683,2.841300788,2.841485841,2.841683036,2.841927099 +Climate Solutions,ssp2_2p0,NPL,cdd|Hazard|Risk score|Population weighted,risk score,2.160372218,2.162994102,2.16499993,2.166541993,2.167736515,2.169023269,2.170351801,2.171671052,2.172937243,2.174110118 +Climate Solutions,ssp2_2p0,MLT,cdd|Hazard|Risk score|Population weighted,risk score,2.058642415,2.059328104,2.059655662,2.059847026,2.059967524,2.060046549,2.060100528,2.060138676,2.06016542,2.060185028 +Climate Solutions,ssp2_2p0,MDV,cdd|Hazard|Risk score|Population weighted,risk score,0.940718641,0.944311501,0.947163077,0.949372357,0.951024389,0.952288042,0.953285787,0.954140494,0.9548382,0.955432911 +Climate Solutions,ssp2_2p0,SUR,cdd|Hazard|Risk score|Population weighted,risk score,0.581683742,0.580546455,0.579467553,0.578392933,0.577249196,0.576186704,0.575276085,0.574466387,0.573796897,0.573349299 +Climate Solutions,ssp2_2p0,VEN,cdd|Hazard|Risk score|Population weighted,risk score,1.470686405,1.474225735,1.476747664,1.478511155,1.479640605,1.480236678,1.480356891,1.480315704,1.480268372,1.480205175 +Climate Solutions,ssp2_2p0,ISR,cdd|Hazard|Risk score|Population weighted,risk score,2.485371904,2.485512445,2.485436212,2.48518692,2.484805155,2.484351823,2.483820187,2.48324285,2.482672492,2.482130263 +Climate Solutions,ssp2_2p0,ISL,cdd|Hazard|Risk score|Population weighted,risk score,0.331587163,0.331313174,0.331297364,0.331279514,0.331324534,0.331373056,0.331391928,0.331370043,0.331429248,0.331430597 +Climate Solutions,ssp2_2p0,ZMB,cdd|Hazard|Risk score|Population weighted,risk score,2.68748472,2.684373603,2.682201142,2.680804746,2.67987664,2.67941062,2.679206178,2.679209622,2.679394223,2.679658674 +Climate Solutions,ssp2_2p0,SEN,cdd|Hazard|Risk score|Population weighted,risk score,2.900190249,2.901071333,2.901614376,2.901964883,2.90215899,2.90226546,2.902331312,2.902367773,2.902381074,2.902363976 +Climate Solutions,ssp2_2p0,PNG,cdd|Hazard|Risk score|Population weighted,risk score,0.238682664,0.238979296,0.239361576,0.239776325,0.240283466,0.241037429,0.241809706,0.242745295,0.243571057,0.244429621 +Climate Solutions,ssp2_2p0,MWI,cdd|Hazard|Risk score|Population weighted,risk score,1.964093694,1.967947663,1.970888078,1.973049851,1.974524248,1.975434728,1.97596232,1.976244603,1.97636544,1.976361829 +Climate Solutions,ssp2_2p0,TTO,cdd|Hazard|Risk score|Population weighted,risk score,0.582533312,0.582527868,0.582515958,0.582497923,0.582473535,0.582441337,0.582402875,0.582358861,0.582315453,0.582275453 +Climate Solutions,ssp2_2p0,ZWE,cdd|Hazard|Risk score|Population weighted,risk score,2.294397791,2.293854837,2.293608725,2.293674354,2.293921734,2.294310348,2.2947523,2.29526508,2.295940852,2.296751383 +Climate Solutions,ssp2_2p0,DEU,cdd|Hazard|Risk score|Population weighted,risk score,0.415206595,0.415403726,0.415594749,0.415782559,0.415961374,0.416138911,0.416306002,0.41645455,0.416587012,0.416706875 +Climate Solutions,ssp2_2p0,VUT,cdd|Hazard|Risk score|Population weighted,risk score,0.5130101,0.513577264,0.514028781,0.514433345,0.514762343,0.515098857,0.515399099,0.51567244,0.515917002,0.516128673 +Climate Solutions,ssp2_2p0,MTQ,cdd|Hazard|Risk score|Population weighted,risk score,0.585048669,0.586910779,0.588030765,0.588790511,0.589320931,0.589585911,0.589526649,0.589156875,0.588659651,0.588152104 +Climate Solutions,ssp2_2p0,KAZ,cdd|Hazard|Risk score|Population weighted,risk score,1.055125734,1.055357225,1.055707298,1.054997373,1.054526279,1.053523961,1.052398996,1.051792482,1.051055399,1.051089973 +Climate Solutions,ssp2_2p0,PHL,cdd|Hazard|Risk score|Population weighted,risk score,0.889513058,0.889513376,0.889777124,0.890250403,0.890840975,0.891476998,0.892133732,0.892800545,0.893456628,0.894092326 +Climate Solutions,ssp2_2p0,ERI,cdd|Hazard|Risk score|Population weighted,risk score,2.062155596,2.060978102,2.060397612,2.059579853,2.058922662,2.058415875,2.057884495,2.057418152,2.057037048,2.056730305 +Climate Solutions,ssp2_2p0,NCL,cdd|Hazard|Risk score|Population weighted,risk score,0.660682835,0.661799955,0.662652394,0.66326885,0.663816025,0.664238389,0.664520756,0.664660035,0.66466706,0.664645155 +Climate Solutions,ssp2_2p0,MKD,cdd|Hazard|Risk score|Population weighted,risk score,0.85379321,0.853470457,0.853083628,0.852809683,0.852643754,0.85243956,0.852163865,0.85193507,0.85173358,0.851553246 +Climate Solutions,ssp2_2p0,PRK,cdd|Hazard|Risk score|Population weighted,risk score,0.720797559,0.720952881,0.721058522,0.721123611,0.721147554,0.721148816,0.721136215,0.721113501,0.721091041,0.721082058 +Climate Solutions,ssp2_2p0,PRY,cdd|Hazard|Risk score|Population weighted,risk score,1.031028255,1.03138589,1.031729634,1.032040569,1.032518541,1.032907678,1.033317494,1.033765249,1.034255583,1.034517117 +Climate Solutions,ssp2_2p0,LVA,cdd|Hazard|Risk score|Population weighted,risk score,0.411499467,0.411551391,0.411594838,0.411629653,0.41166006,0.411686991,0.411711268,0.41173537,0.411758035,0.411780127 +Climate Solutions,ssp2_2p0,JPN,cdd|Hazard|Risk score|Population weighted,risk score,0.58596586,0.588402949,0.591087638,0.593679264,0.595986678,0.598030867,0.599836302,0.601426146,0.602822787,0.604049046 +Climate Solutions,ssp2_2p0,SYR,cdd|Hazard|Risk score|Population weighted,risk score,2.307434601,2.30923243,2.310804608,2.312141365,2.313298523,2.314336378,2.315214868,2.315950296,2.3165558,2.317067141 +Climate Solutions,ssp2_2p0,HND,cdd|Hazard|Risk score|Population weighted,risk score,1.268517389,1.263623543,1.259524467,1.256249089,1.253573117,1.251351329,1.249670464,1.248438816,1.24756677,1.246981482 +Climate Solutions,ssp2_2p0,MMR,cdd|Hazard|Risk score|Population weighted,risk score,2.298589004,2.300018555,2.301551899,2.303163232,2.30480524,2.306434872,2.308066318,2.309668099,2.311298288,2.312886868 +Climate Solutions,ssp2_2p0,MEX,cdd|Hazard|Risk score|Population weighted,risk score,2.057940072,2.059408864,2.06079747,2.062093211,2.063243591,2.064223286,2.065034264,2.065737988,2.066325624,2.0668377 +Climate Solutions,ssp2_2p0,EGY,cdd|Hazard|Risk score|Population weighted,risk score,2.971352296,2.971030109,2.971112416,2.971366744,2.971716964,2.972157538,2.972634674,2.973129747,2.973559224,2.97397738 +Climate Solutions,ssp2_2p0,SGP,cdd|Hazard|Risk score|Population weighted,risk score,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409,0.342773409 +Climate Solutions,ssp2_2p0,SRB,cdd|Hazard|Risk score|Population weighted,risk score,0.753803087,0.753777901,0.75379436,0.753834397,0.753879332,0.753926961,0.753960827,0.753983421,0.753998421,0.754004076 +Climate Solutions,ssp2_2p0,BWA,cdd|Hazard|Risk score|Population weighted,risk score,2.55702153,2.556917358,2.55708631,2.55733521,2.557499513,2.557555949,2.558185119,2.558398269,2.558414193,2.558365437 +Climate Solutions,ssp2_2p0,GBR,cdd|Hazard|Risk score|Population weighted,risk score,0.66448666,0.664087271,0.663791147,0.663557517,0.663374696,0.663225448,0.663099727,0.66299245,0.662896915,0.662812253 +Climate Solutions,ssp2_2p0,GMB,cdd|Hazard|Risk score|Population weighted,risk score,2.875918404,2.87632564,2.8766349,2.876868668,2.877038919,2.877172751,2.877300003,2.877426735,2.877544475,2.877649934 +Climate Solutions,ssp2_2p0,GRC,cdd|Hazard|Risk score|Population weighted,risk score,1.406886646,1.413161515,1.418686949,1.423300122,1.427310107,1.430924956,1.434231878,1.437156845,1.439754558,1.442065692 +Climate Solutions,ssp2_2p0,LKA,cdd|Hazard|Risk score|Population weighted,risk score,0.914812417,0.91473578,0.914681848,0.914625031,0.914566768,0.91450864,0.914450955,0.914396725,0.914345177,0.914297725 +Climate Solutions,ssp2_2p0,GUF,cdd|Hazard|Risk score|Population weighted,risk score,0.836559437,0.837108295,0.8376742,0.838672445,0.839357616,0.840294862,0.84124758,0.841613915,0.842440999,0.842916087 +Climate Solutions,ssp2_2p0,COM,cdd|Hazard|Risk score|Population weighted,risk score,0.481578196,0.483198236,0.484216679,0.484962214,0.485389023,0.485668165,0.485871346,0.485986786,0.486022601,0.486010035 +Climate Solutions,ssp2_2p0,FSM,cdd|Hazard|Risk score|Population weighted,risk score,0.145229005,0.145287599,0.1453186,0.145306003,0.145260561,0.145195352,0.145125835,0.145057756,0.145004095,0.144965972 +Climate Solutions,ssp2_2p0,GLP,cdd|Hazard|Risk score|Population weighted,risk score,0.826122778,0.823464594,0.822486935,0.821892829,0.821708207,0.821695451,0.821680108,0.821673367,0.821667895,0.821663344 +Climate Solutions,ssp2_2p0,MYT,cdd|Hazard|Risk score|Population weighted,risk score,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004,1.172197004 +Climate Solutions,ssp2_2p0,VIR,cdd|Hazard|Risk score|Population weighted,risk score,0.696861102,0.696897932,0.696918261,0.696952141,0.696958885,0.696966183,0.696974775,0.69698796,0.697008701,0.697019179 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Population,people,8075.599826,9510.118149,9856.399164,10075.22427,10148.04844,10112.90663,9951.099288,9647.112156,9270.816257,8819.998804 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Population,people,5481.619914,6025.856383,6395.655504,6739.31859,6955.775775,7030.309858,6919.14836,6487.728209,6208.461135,5857.562282 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Population,people,6074197.525,7813193.034,9042418.048,10062318.9,10903816.07,11450185.03,11727755.56,11915740.9,12056386.18,12077162.39 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Population,people,18734.97001,34019.85602,41798.17153,49093.41794,55385.23091,60619.12845,64534.80135,67221.40992,68727.26167,69068.79489 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Population,people,159302.2632,328844.2255,384281.1008,428641.2261,464866.6931,484825.3859,483849.2563,472349.6675,463146.2988,455626.0185 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Population,people,105341.5701,136561.0082,166514.5775,195034.3054,218150.4958,238204.9363,251241.2086,257052.7138,256723.1433,251241.0367 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Population,people,25022,31994.69142,38131.30237,43582.72058,48558.46603,52052.98572,54451.85114,55582.53515,55808.44404,54878.14802 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Population,people,2024106.182,3461052.562,4052879.443,4602713.823,5025824.072,5266102.25,5358950.717,5400575.59,5536858.301,5772200.246 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Population,people,50705,64110.78564,87734.03518,113935.5495,139650.5105,163172.2346,182344.7476,196129.2277,204169.482,206069.9564 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Population,people,1873546.85,2658380.105,3201427.061,3691808.373,4117287.876,4460006.814,4698347.284,4839017.046,4881147.121,4837279.105 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Population,people,104707.5006,129954.3096,148850.2474,165331.0226,177614.9745,185930.1407,190533.1355,190945.9528,187907.7664,182591.8524 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Population,people,1328586.271,2073979.19,2305454.895,2485302.733,2607996.584,2664050.241,2659613.583,2605407.76,2513213.619,2394990.979 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Population,people,67468.6401,115508.4648,144445.2997,174789.3206,201359.7251,229613.0148,250603.4095,271701.7738,290830.4085,306311.5986 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Population,people,118105,126716.439,122982.6263,117839.2444,106261.3069,97751.52963,85586.36465,77210.76232,67383.9978,61517.66178 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Population,people,562599.2098,716555.0241,794516.7392,854451.2742,904323.906,912956.0653,905852.5891,891655.193,876519.8157,846169.4093 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Population,people,968609.5106,1269411.096,1625950.151,1983987.029,2292854.882,2568293.343,2756093.112,2889688.149,2941489.475,2910233.019 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Population,people,21866.38011,32593.04915,37301.7114,41793.82699,45839.05705,49200.8522,51938.37529,53122.67669,53260.30074,52482.87732 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Population,people,588579.6649,840094.5191,1153916.593,1527865.492,1960824.871,2410446.276,2837870.163,3227698.209,3535425.38,3766980.533 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Population,people,857.9200037,1007.448093,1032.400766,1045.901683,1020.388634,967.8488065,926.2218928,865.2691353,804.8172317,758.4520154 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Population,people,674.0799963,869.7576218,834.6974361,791.0105944,718.4065792,631.790103,548.2299706,450.587512,353.5458201,268.161157 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Population,people,1123555.075,1613291.939,1778791.6,1907704.545,2000126.405,2052225.928,2035275.395,1986067.487,1905836.595,1824309.107 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Population,people,1266561.772,1524469.13,1589761.075,1616581.502,1609719.409,1574159.148,1524083.583,1463642.106,1395485.475,1326151.033 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Population,people,2730.699953,3643.169234,3914.864377,4073.959513,4132.78469,4058.621821,3914.153229,3693.623158,3505.410676,3207.065253 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Population,people,143711.2015,228209.8865,259354.505,287896.6739,312502.5427,329330.4074,337354.6481,336796.5825,327013.0886,310438.273 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Population,people,704509.6891,1010137.617,1267191.11,1546880.528,1785590.576,1996504.728,2177719.725,2288460.028,2352887.983,2359228.957 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Population,people,22494.32016,31057.37468,33250.42168,34387.23398,34953.4577,34562.91117,33568.00866,32010.71038,30530.97527,29047.00955 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Population,people,377.7599916,895.1606309,1052.814042,1194.772731,1313.878715,1391.967063,1426.524534,1431.472672,1441.050003,1480.396944 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Population,people,11239486.57,13866408.35,16588896.94,19182120.17,21424631.14,23167061.71,24336364.57,24854467.94,24754508.67,24191927.66 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Population,people,8340.000331,13858.71661,15957.11502,18266.44552,20738.98021,23197.5303,25622.24363,27921.83506,30061.91924,32013.36592 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Population,people,201782.2506,279563.9318,361157.3286,448125.4899,532444.0519,605786.8285,665467.808,708920.4445,734559.16,742470.1438 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Population,people,1632790.085,2799369.399,3516415.836,4216972.22,4864333.045,5404730.325,5821429.434,6114886.453,6269206.206,6276156.283 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Population,people,21354.74943,32540.4544,41932.9513,51969.8302,61572.18969,70147.07277,76382.96702,80294.85107,81365.09609,79466.31436 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Population,people,188428.982,230379.1801,249897.9393,262639.5649,268516.9881,267541.1542,260644.5965,249770.7949,236263.4579,220959.4056 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Population,people,41958842.72,55461590.04,63484655.35,71085993.04,77732455.99,82863672.97,86653737.51,88957204.08,89818847.64,89182403.85 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Population,people,167062.4604,420469.8844,527426.8578,626193.023,712713.2049,782345.3655,832823.3697,863479.5168,872699.4491,863390.3909 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Population,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Population|Low,people,452608.6095,582083.2974,619931.6864,650249.4049,678753.7772,708483.7163,742508.7102,778279.8126,812811.4665,848908.1147 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Population|Low,people,6157658.982,6049265.617,6750645.211,7235840.519,7604642.655,7763655.206,7754474.586,7641996.766,7440820.568,7148146.84 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Population|Low,people,14763097.04,16809898.18,18951998.01,20670697.91,21928297.86,22591397.91,22711098,22338698.17,21662198.29,20764998.47 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Population|Low,people,80667605.05,110000348.4,136157481.2,159908910.6,179443644,193652413.2,201409126.2,202173960.4,196656961.8,186201051 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Population|Low,people,1242002.501,1430600,1612200,1753800,1852700,1898300,1892800,1845600,1769300,1670900 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Population|Low,people,3191404.461,5240500,6332600,7281500,8057700,8614300,8929900,9003800,8843200,8483400 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Population|Low,people,17377940.85,21001604.03,22539347.86,23860761.47,24906812.52,25607029.22,25927835.64,25924428.99,25689088.5,25259795.97 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Population|Low,people,9784562.179,11385799.68,12828361.89,14047428.41,14967857.93,15547533.16,15778465.35,15688539.06,15333354.29,14783306.45 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Population|Low,people,122.2499982,1595.248682,1581.957406,1623.451262,1615.293888,1661.332307,1591.374557,1590.77338,1594.878891,1570.566671 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Population|Low,people,16519559.58,20833900,26597000,32575600,38254900,43231100,47311700,50283000,52074500,52672000 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Population|Low,people,8654742.942,11684875.84,14079287.64,16403944.47,18510158.78,20219916.54,21541942.17,22470748.85,22944481.66,22996920.56 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Population|Low,people,27159016.37,34666568.03,40089184.78,44630059.27,48407878.33,50892671.18,52249122.35,53239586.01,54004254.78,54233250.21 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Population|Low,people,75453.69085,560592.464,609192.4019,639592.4987,651492.8178,646293.1761,623893.5989,585894.2352,538294.81,487795.3859 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Population|Low,people,10127670.48,12901679.01,15067247.7,16951120.26,18473504.82,19579769.49,20182460.58,20267233.53,19887409.3,19153277.59 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Population|Low,people,230133.4951,214185.7233,190569.8116,164202.0048,136883.3372,111420.1117,88451.3929,68843.15616,53548.61632,42253.84669 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Population|Low,people,9361680.805,13637600,16640400,19396100,21735500,23533600,24700000,25213500,25117700,24493000 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Population|Low,people,5716453.642,10368700,12769400,15039600,17107500,18883300,20326200,21411900,22120500,22468300 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Population|Low,people,7201285.713,5365040.32,6574845.223,7739070.53,8730008.308,9518831.56,10115671.95,10481942.89,10580385.39,10427365.8 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Population|Low,people,31481837.24,40671395.61,40960870.13,41338909.09,41607278.23,41291829.76,40742975.25,40708837.6,41554098.96,42696344.71 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Population|Low,people,3270529.744,4522174.754,5561860.524,6545488.231,7381448.367,8028235.989,8480172.403,8719004.999,8737897.409,8566077.604 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Population|Low,people,66874.31851,122305.992,123039.4552,119819.3069,113895.8207,105654.5438,95132.29457,83297.21379,71235.92752,60067.82115 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Population|Low,people,2350816.679,4637269.137,5340544.253,5889827.686,6377214.326,6642811.027,6651017.427,6543627.078,6468433.816,6439037.182 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Population|Low,people,34329541.48,51819580.87,67072814.45,83082971.15,98355898.81,111840116.6,123098700,131655203.3,137184570.1,139612809.8 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Population|Low,people,1566249.596,1505209.628,1436833.875,1316017.661,1166715.008,1008572.008,853829.4899,709113.2988,579942.0933,470228.0279 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Population|Low,people,499560.3788,921856.7649,1082884.732,1226221.566,1348345.992,1439273.993,1494910.92,1522298.63,1523786.101,1499599.666 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Population|Low,people,185.7000074,287.4230956,301.5027736,312.8129727,320.7953182,326.4521464,333.433669,341.4506414,345.3422329,348.6683702 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Population|Low,people,22800284.4,30565173.02,38231449.01,45877724.74,53036201.74,59129081.22,63761664.97,66945653.24,68679946.09,69054543.31 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Population|Low,people,165611038,207363615.7,243670000.4,276424246.4,305099903.6,326566112.8,341063154.6,348573177,349697349,345369676.9 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Population|Low,people,5942006.976,10083260.42,11789108.94,13386762.65,14625828.54,15340711.39,15636806.81,15785106.33,16205696.66,16914777.89 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Population|Low,people,1171645370,1382139403,1506355395,1594131062,1642217295,1656722301,1639655828,1596893308,1535521168,1462178154 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Population|Low,people,5650744.111,8457409.968,8846255.514,9017138.47,8964589.409,8726100.374,8396362.715,7994253.199,7598935.769,7249180.853 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Population|Low,people,11865989.09,17027642.22,21067440.73,24971760.55,28513970.15,31567527.18,34050381.18,35853915.24,36939105.34,37317299.7 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Population|Low,people,2120633.85,2298900,2487400,2609900,2677300,2678000,2612400,2494700,2342500,2167600 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Population|Low,people,8201.790326,105383.403,97759.07987,87539.25598,75515.09185,63173.7226,51509.5893,41022.72742,32212.47753,24982.73989 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Population|Low,people,10441598.19,14298719.86,17820910.8,21317760.41,24415619.63,26915003.2,28777855.24,29944300.19,30405920.45,30200183.93 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Population|Low,people,4225333.2,5522487.978,5540892.338,5403622.073,5102259.533,4722903.585,4336575.14,3973711.015,3665276.938,3420254.358 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Population|Low,people,6886357.372,9384107.116,10804273.71,11959921.75,12862911.45,13364849.69,13555327.27,13430121.35,13004180.58,12350711.76 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Population|Low,people,60736673.5,77347129.55,83609931.25,87979588.65,90146510.47,90327646.25,89071785.49,86777039.57,83816684.71,80484497.2 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Population|Low,people,32083686.43,38695816.65,50963411.59,64227523.15,77016037.06,88617807.71,97851214.89,104197858.5,107634459.5,108012057.6 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Population|Low,people,138761477,171046867.5,187828736.8,198757032.6,203855650.1,203158384.7,197492430.5,188393580.7,177011531.7,164603980 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Population|Low,people,3304258.005,4702200,5683800,6572000,7341200,7950900,8379800,8631800,8704700,8622900 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Population|Low,people,2859.889936,25247.92207,24340.23363,22944.77519,21167.30066,19246.80124,17347.9638,15578.47705,13961.79356,12590.85371 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Population|Low,people,606515.7237,1205001.029,1286095.433,1343493.475,1394592.275,1436091.983,1458293.667,1466196.395,1466499.699,1473201.633 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Population|Low,people,400.439991,3254.079649,3580.646078,3833.486783,4014.249509,4135.744558,4214.244836,4253.819805,4262.734629,4253.110348 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Population|Low,people,17093365.87,19042171.91,19835381.67,20645185.74,21319841.63,21949525.49,22648992.42,23431633.94,24217866.41,24973833.69 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Population|Low,people,2108541.638,2686599.155,3139799.119,3507199.091,3797899.067,3993299.199,4084499.194,4081899.194,4001099.294,3855499.448 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Population|Low,people,8620890.257,16144227.96,20864209.36,25630291.04,30032274.63,33761661.49,36639152.03,38496246.79,39298845.45,39157847.76 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Population|Low,people,18036465.39,27607946.41,30184110.38,32101317.08,33324496.23,33763432.19,33474500.35,32602422.85,31294739.29,29703789.38 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Population|Low,people,6387876.862,6672598.87,7454908.69,8033751.256,8395196.744,8520057.717,8419414.131,8139821.443,7735296.523,7251425.465 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Population|Low,people,16902909.98,24952590.12,30114253.47,34715387.28,38664082.96,41888515.7,44226772.63,45620721.92,46094248.63,45842967.07 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Population|Low,people,7306580.371,12021500,14929600,17731400,20192300,22210600,23754600,24726500,25101600,24972900 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Population|Low,people,357858.7824,597196.4436,737395.6716,870095.0417,993994.4697,1103293.769,1194893.374,1273593.218,1342192.835,1398592.515 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Population|Low,people,119330.7769,168900.6977,161638.9148,150707.6914,136763.849,120307.0335,103754.0982,89583.29376,77185.99674,66164.33465 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Population|Low,people,15765192.78,20882052.62,25190119.23,29028492.54,32243781.46,34648535.15,36190122.52,36863938.14,36665856.95,35766147.99 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Population|Low,people,69606.71881,66146.84927,66332.07814,65574.35239,64210.88503,62668.29425,60983.73852,59117.34607,57226.8307,55482.67114 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Population|Low,people,5153074.179,7889725.2,9449989.393,10857373.96,12000279.88,12845503.1,13399248.92,13646311.22,13598703.56,13329038.62 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Population|Low,people,839063498,920063423.6,925196304.1,898641756.3,853822120.9,790826363.5,720489283.7,653027181.2,591064740.7,536925465.3 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Population|Low,people,1283635.145,1244952.532,1200721.299,1139561.582,1073778.127,997708.2501,922176.5638,851086.0806,790393.9635,745848.5829 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Population|Low,people,517150.973,693521.2839,756937.4242,802175.1072,827484.2133,832688.4236,819691.9928,791191.9939,752699.2075,707554.3736 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Population|Low,people,398666.7412,387957.5814,360017.8323,335206.6895,315829.317,298595.9064,282927.1971,270989.1541,264692.459,260844.0204 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Population|Low,people,181070.7562,1505200,1740100,1949100,2121900,2231100,2285200,2314000,2354000,2405200 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Population|Low,people,5301566.711,6664496.09,7346196.16,7857396.298,8243696.456,8417296.636,8385696.849,8264497.035,8095297.206,7849697.38 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Population|Low,people,64060221.75,92483916.67,99835387.3,104445258.3,106302824.1,105847328.1,103768001.3,100387587.4,95972162.09,90832169.08 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Population|Low,people,3865092.493,4797182.487,5577548.392,6225185.669,6688780.727,6980775.881,7080464.943,6971742.601,6685038.131,6290699.142 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Population|Low,people,68713141.86,81910971.81,88089193.1,93677172.05,98650098.71,103779759.8,109320344.8,114727438.8,119695696.8,124618559.4 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Population|Low,people,47041192.77,60305003.78,64050049.62,65581445.01,65696405.82,64174176.88,61241475.25,57550345.85,53518194.14,49571599.09 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Population|Low,people,15456508.53,20121000,25746000,31415600,36468400,40637500,43830400,45851200,46638400,46342900 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Population|Low,people,6463383.714,6416993.507,6134735.567,5831441.315,5626632.663,5455863.49,5276348.425,5173971.203,5150879.278,5153032.273 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Population|Low,people,1325664.501,1178489.732,1073124.172,965810.8483,869716.0737,777535.2404,688199.3312,614994.8299,559278.9537,513627.3747 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Population|Low,people,90301.3572,267816.646,263046.9313,252378.2241,236230.148,219469.367,202902.4232,186349.1847,170733.9054,156624.7438 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Population|Low,people,1465486.261,1381857.329,1291181.448,1187404.014,1074525.351,957567.9462,840690.4703,738499.4823,653426.3103,580619.2628 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Population|Low,people,18517855.39,32364269.65,41592466.64,50755963.98,59105861.9,66183960.29,71761559.2,75536658.87,77283459.35,77204360.45 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Population|Low,people,7704227.735,10127652.82,9670373.935,9224932.274,8742858.084,8239424.412,7788715.809,7478383.832,7330574.484,7257227.145 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Population|Low,people,36948509.68,46148550.5,50506009.47,53770516.56,55950696.84,56917943.89,56872792.25,56071551.21,54737730.99,53058234.06 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Population|Low,people,20024911.31,28307587.83,34818227.92,40748595.29,45780705.75,49728093.06,52481861.63,53879917.09,53896077.52,52814129.03 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Population|Low,people,2174364.3,3238187.237,4405544.785,5720505.201,7078878.477,8372073.184,9508361.683,10436276.42,11117051.86,11527720.6 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Population|Low,people,3752346.145,3415625.856,3783595.258,4041182.904,4222014.797,4293083.982,4265183.684,4159294.033,3997559.459,3781074.059 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Population|Low,people,16040965.25,23836100,33344200,45169200,58617100,72551800,85861400,97693900,107383800,114481000 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Population|Low,people,101823742.7,122779957.6,129096718.2,131765030.4,131169261.4,127677000.5,122288636.6,115734655.9,108795812,102055472.6 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Population|Low,people,1635506.743,4319300,4921000,5409400,5785300,5972400,6056100,6178100,6347200,6477100 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Population|Low,people,746936.5614,1163445.909,1306878.559,1425573.344,1514221.294,1569206.029,1595184.455,1597578.682,1581528.898,1548092.284 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Population|Low,people,46423.19003,57895.27221,54568.67189,49816.36001,44186.9873,38186.53774,31418.4969,25992.98906,20714.44106,15903.51453 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Population|Low,people,1500090.59,1763571.87,1892479.428,1971525.754,2005221.579,1996704.508,1953501.991,1887053.648,1812594.191,1740072.394 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Population|Low,people,153749668.8,205257369.1,258181427.9,318861506.5,382398245.1,442920013.3,496976586.7,542358194.1,577655653.2,603219315.6 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Population|Low,people,4640462.998,5892016.799,6605060.193,7177922.78,7592651.803,7847004.726,7952959.566,7921607.996,7778568.226,7540486.986 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Population|Low,people,3931055.971,5634268.314,6200907.049,6723722.292,7247261.448,7753008.664,8235404.945,8700931.226,9143838.125,9586074.756 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Population|Low,people,70024132.35,82093970.77,88691787.34,92937179.51,95550313.24,95249750.96,92482093.01,88264566.43,83851908.65,80337215.7 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Population|Low,people,30516119.68,43058700,47686800,50930400,53615900,54843500,54433800,53256900,51705800,49630900 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Population|Low,people,5492666.963,6491188.477,6699589.456,6715690.654,6572391.867,6278693.063,5851394.187,5321295.201,4726996.11,4122296.876 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Population|Low,people,15050991.52,18202249.81,19093128.28,19540070.69,19562344.58,19249966.23,18718029.7,18036903.16,17239764.65,16419913.72 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Population|Low,people,4922.610071,6051.85616,5883.794182,5619.567316,5271.069032,4886.415927,4486.115427,4093.960916,3732.290179,3413.556089 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Population|Low,people,60081622.43,64944082.42,65557727.06,64273196.47,61284507.97,57521454.17,53926994.35,50819841.42,48033395.36,45621337.95 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Population|Low,people,266843.9958,471978.3796,515822.1036,541661.4575,550420.6803,541325.2141,517039.2062,483129.5453,442317.0302,398039.5151 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Population|Low,people,31254386.94,41091900,50811500,60320100,68980000,76290900,82243000,86684900,89471000,90569700 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Population|Low,people,4782432.692,8047800,9621700,11018200,12108100,12862300,13271700,13334400,13096900,12628600 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Population|Low,people,64546.11916,60958.90506,58564.19418,55688.35497,52314.53034,48232.5229,44097.49788,40343.93537,37058.43642,34117.81732 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Population|Low,people,1846662.52,7486600,7874400,8108600,8283000,8488600,8689700,8905500,9202600,9584400 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Population|Low,people,27287140.32,36814850.26,39657349.09,41332750.98,42043654.89,41753160.66,40497368.48,38566177.55,36270386.94,33708996.57 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Population|Low,people,241945.7795,281224.9662,265728.7302,250910.7238,237352.8698,225449.7405,215064.8459,206768.7992,200768.7399,196693.4504 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Population|Low,people,2816515.793,3180228.798,3483675.57,3685322.707,3848658.462,3919415.268,3890518.85,3826536.594,3734471.691,3585632.786 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Population|Low,people,1169316.173,1967800,2312100,2610100,2845500,2985600,3037600,3008800,2898400,2729700 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Population|Low,people,3.709999917,668.5756639,781.7867926,874.3550894,953.4924987,1004.538537,1023.013589,1019.558391,995.1323128,949.8678026 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Population|Low,people,9378.180373,104155.4525,99470.70217,92305.96573,84027.48705,73838.68315,62828.51943,51890.52497,42221.1726,34421.83392 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Population|Low,people,11696.65998,16638.8554,18406.9913,19772.37519,20675.51421,21171.51684,21226.8915,20937.32658,20370.8193,19589.7301 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Population|Low,people,11219570.2,16176700,20805200,25419500,29638900,33273000,36169800,38212100,39372800,39728400 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Population|Low,people,6417.280054,8666.90443,8916.603331,9051.299438,9053.369277,8932.239969,8676.880677,8307.431832,7843.492272,7333.526102 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Population|Low,people,3369814.76,6294600,7111300,7731000,8198100,8571500,8800800,8840900,8778600,8717200 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Population|Low,people,24134742.59,33106058.8,36547927.08,39130104.66,40930374.56,41612817.37,41426498.66,40534653.32,39159636.43,37567779.42 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Population|Low,people,8769207.939,11838100,12562200,12877500,13001700,12855500,12431300,11894500,11349000,10764600 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Population|Low,people,568522.4823,1019200,1200800,1358600,1485400,1583200,1648600,1685900,1702100,1707000 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Population|Low,people,4829572.483,6474493.08,8081033.293,9730082.72,11238415.69,12469233.64,13381907.43,13954478.1,14169995.52,14035091.12 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Population|Low,people,749916.8389,1402252.808,1767472.485,2128209.259,2447744.825,2714407.43,2898144.263,2979782.457,2961907.461,2852896.215 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Population|Low,people,9402306.279,10763708.55,11561805.07,12018631.07,12141318.86,11981226.58,11592140.81,11035530.15,10398631.87,9762869.352 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Population|Low,people,7300291.322,10866853,12978635.65,14744373.21,16175312.67,17078921.28,17501745.15,17438578.19,16885633.38,15983594.23 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Population|Low,people,5792836.211,9334307.622,9540469.005,9404792.531,8916350.14,8205692.998,7454216.418,6694877.861,6046612.749,5557863.891 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Population|Low,people,4832176.05,5848901.658,6385715.833,6742588.779,6908797.643,6880426.83,6666431.995,6294397.663,5818001.27,5294559.455 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Population|Low,people,21641.80023,280100,269700,257800,243600,228100,214100,202100,191100,180800 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Population|Low,people,1174339.088,2757900,3277900,3768000,4203200,4519500,4697800,4775500,4860900,5038400 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Population|Low,people,40307801.7,55996991.09,71944993.16,88141493.77,102963042.9,115598284.7,125583709,132372532.9,135592442.9,135533264.8 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Population|Low,people,17183585.49,20794433.5,20297190.94,19799737.67,19205486.68,18455955.41,17755708.42,17384691.35,17294999.16,17293821.23 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Population|Low,people,2600771.104,836600,924000,988700,1031600,1052000,1048100,1025000,992800,955800 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Population|Low,people,34556192.72,43065995.17,51819510.91,60094407.05,67163451.11,72586815.56,76118184.01,77567868.63,77051781.23,75040018.3 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Population|Low,people,31945346.98,30596800,34239800,36879600,38881400,40094000,40352300,39713500,38215300,36226400 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Population|Low,people,25752.49942,429500,427700,415300,401000,389500,376200,360700,347400,338400 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Population|Low,people,628.5999859,224810.094,227474.8266,223980.523,219216.3134,211146.2716,201725.0476,192410.9737,181857.0197,173374.5833 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Population|Low,people,1053.420023,1144.643039,1097.447523,1032.948226,959.3072965,876.8339817,803.6640881,733.7330738,670.9101806,612.7106464 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Population|Low,people,17186898.07,22696664.79,25170383.41,27099580.73,28439092.87,29200373.58,29428555.86,29195547.87,28618665.34,27796485.36 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Population|Low,people,5103558.174,8818400,10401300,12115300,13943500,15798500,17653500,19503600,21289400,22944200 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Population|Low,people,13330258.58,18783500,24607300,30888700,37072900,42545700,47086800,50492600,52622800,53471500 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Population|Low,people,10123746.43,17132300,21366700,25521700,29389000,32638300,35163300,36966500,37942300,38044600 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Population|Low,people,2768.320073,4264.202491,5056.41693,5717.452837,6249.387045,6683.981563,6927.754459,7063.129926,6982.620888,6808.09838 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Population|Low,people,13664296.85,20473600,27173600,34728000,42576800,50012000,56427100,61529000,65195600,67286800 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Population|Low,people,2885.079936,5580.191577,5267.416572,4890.821848,4491.454857,4072.432996,3667.079263,3298.124639,2979.767988,2690.930692 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Population|Low,people,12419348.95,17415673.69,20416912.52,22924695.59,24817287.9,25948588.7,26334575.23,26070853.52,25204736.97,23848187.47 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Population|Low,people,3695.170043,22431.30029,21657.73682,20682.83539,19250.26513,17669.17733,16420.98182,15543.19179,14882.48972,14272.81856 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Population|Low,people,6477803.888,6972916.79,7187238.922,7244795.139,7279674.423,7148328.37,6903639.305,6647362.602,6358568.855,6016993.695 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Population|Low,people,17405474.87,28293941.78,31950296.05,35066947,37534513.41,39318572.24,40374349.76,40644948.43,40180335.97,39103691.9 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Population|Low,people,5246473.374,5407270.953,6467366.231,7475561.76,8322758.171,8934155.668,9320654.259,9470554.07,9384854.999,9094556.803 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Population|Low,people,4155.440053,12566.23449,14008.38635,15227.99793,16270.48634,17126.09292,17841.76263,18414.18998,18806.30614,19096.16734 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Population|Low,people,152165.4011,151977.1305,143005.0346,132207.9255,121046.0865,110055.2086,98956.76462,89029.98168,81233.10658,75244.8087 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Population|Low,people,277432.7254,327279.5596,330540.946,324374.4064,310241.8748,291245.8842,270765.376,249919.6714,229080.6623,209452.7821 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Population|Low,people,3763315.833,4607423.182,5142170.403,5559429.061,5862476.7,6044549.997,6089246.458,6003977.478,5813998.247,5554574.507 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Population|Low,people,828320.4769,1049215.106,1010920.098,961620.0341,910518.4211,859962.6604,803489.6108,749896.2213,708734.9145,675192.2705 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Population|Low,people,19517233.23,19773100,21879300,23704900,24679200,25057400,24979500,24287100,23021500,21269000 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Population|Low,people,4778913.285,6480794.878,7422412.942,8203493.063,8801243.923,9200509.326,9375595.238,9328651.47,9106194.866,8750482.212 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Population|Low,people,45907079.98,54212082.27,56784944.72,57422153.31,56317400.47,54162751.46,51387891.25,47954178.59,44138836.8,40548588.74 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Population|Low,people,102949214.2,126525558.3,138420379.6,147044683.7,152221092.5,153719046.2,151698754.9,147116183.1,140673508.8,132783023.6 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Population|Low,people,76849083.64,102360307.3,117185845,130665361.2,141904676.1,149973759.8,155335707.7,157823835.5,157704847,155012674 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Population|Low,people,24743.31969,21345.32105,18998.53105,16817.29409,14918.09092,13261.64906,11827.22935,10656.50462,9740.461253,9023.200448 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Population|Low,people,1974893.486,2402600,2726100,2970100,3133700,3198700,3176600,3101400,2988100,2845000 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Population|Low,people,3438.450137,4016.931113,4059.44227,4098.626078,4161.21548,4217.570319,4273.111754,4349.745771,4425.376826,4508.263649 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Population|Low,people,912781.7174,2265500,2811400,3310400,3745300,4091500,4335000,4473200,4500800,4434800 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Population|Low,people,6905625.434,10120804.02,10082384.02,10092280.1,10055526.31,9923488.042,9789943.767,9753117.429,9834368.489,9979008.024 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Population|Low,people,2855094.793,3570485.937,3678765.634,3719935.251,3679791.159,3571868.964,3430926.896,3261822.083,3072770.006,2863189.073 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Population|Low,people,6209.439861,49744.27166,60681.41302,70615.15602,78785.2534,84607.15246,88100.65949,89309.55555,88081.85034,84799.44994 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Population|Low,people,62829.48027,312225.8349,309300.4399,303885.0968,292322.7098,280396.4821,272003.1133,266386.8202,262295.8091,256334.8412 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Population|Low,people,22452.75988,273700,343200,413300,478600,536500,586200,626500,656200,673600 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Population|Low,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Population|High,people,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Population|%,%,0.021615279,0.020925181,0.020090664,0.019308964,0.018560878,0.017938287,0.01739502,0.016840203,0.016315196,0.015771853 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Population|%,%,0.055325552,0.052275109,0.049252665,0.047402906,0.045923624,0.044691653,0.04334627,0.040881228,0.04003186,0.039177874 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Population|%,%,22.36381653,22.53666996,22.5543393,22.54467321,22.5235197,22.49735248,22.44452015,22.38004627,22.32358192,22.26763279 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Population|%,%,0.327737636,0.328101459,0.32733074,0.326427684,0.323748244,0.321019782,0.317495653,0.313944162,0.310694883,0.307405522 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Population|%,%,6.776102957,7.090980603,7.195197364,7.277316617,7.289168061,7.298179855,7.274506582,7.218167568,7.159804887,7.075707274 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Population|%,%,0.462016592,0.446784452,0.435541744,0.425116026,0.411322216,0.402854315,0.394030304,0.383970809,0.373794985,0.363828491 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Population|%,%,0.014984788,0.015318697,0.015548356,0.015673798,0.015829263,0.015859606,0.015891122,0.015876719,0.01589448,0.01582927 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Population|%,%,34.06318322,34.32358048,34.37702569,34.3814526,34.36155468,34.3265341,34.270307,34.21203876,34.16506214,34.12413759 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Population|%,%,0.156801228,0.164578638,0.171176003,0.176520015,0.18053221,0.183401204,0.185671801,0.187594431,0.189093966,0.190224977 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Population|%,%,56.70098545,56.53481572,56.32546994,56.17480787,56.08467112,56.09436434,56.06753484,56.06034716,56.07484601,56.09805408 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Population|%,%,4.965871219,4.837129071,4.740755697,4.714046038,4.676662747,4.656052406,4.664784809,4.677869443,4.696402649,4.735879975 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Population|%,%,6.104426746,6.241510949,6.365512343,6.474519897,6.56912854,6.647959836,6.715381931,6.772869507,6.822062241,6.862811955 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Population|%,%,18.85330993,19.34167194,19.58845941,20.0884175,20.25751762,20.81147601,20.97275166,21.33336792,21.66818719,21.9013012 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Population|%,%,0.009109927,0.00894523,0.008663233,0.008574368,0.008163001,0.008127446,0.007826173,0.007802243,0.007533089,0.00757911 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Population|%,%,10.61193535,10.7518197,10.81534316,10.87447851,10.96987889,10.84618661,10.80234911,10.78897929,10.82751492,10.77964011 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Population|%,%,6.266677295,6.308886716,6.315350543,6.315292494,6.287237395,6.320008227,6.288085694,6.302317385,6.307011978,6.279781841 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Population|%,%,0.118082547,0.100706795,0.089683744,0.082342633,0.077554114,0.074339496,0.072376278,0.070326976,0.068915487,0.067979127 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Population|%,%,3.669228476,3.524462975,3.460621617,3.382538304,3.345141386,3.322379701,3.30517574,3.303889198,3.29232657,3.29048535 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Population|%,%,0.000483893,0.00047021,0.000457466,0.000453235,0.000443303,0.000431087,0.000430013,0.000423893,0.00041895,0.000420481 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Population|%,%,0.111936754,0.114728614,0.116594138,0.121525671,0.12502725,0.127634364,0.131533102,0.131635265,0.130556064,0.129172041 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Population|%,%,3.681841224,3.746727001,3.730155096,3.745708938,3.7304725,3.741967468,3.738991941,3.729220979,3.685924199,3.67575262 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Population|%,%,8.335624754,8.299863509,8.254554057,8.204123434,8.161677081,8.112173464,8.078338536,8.051368108,8.032264515,8.014449948 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Population|%,%,0.010007234,0.009895883,0.009871687,0.009856457,0.009829713,0.009720482,0.009665172,0.009577333,0.009664633,0.009513945 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Population|%,%,12.2901919,11.5972094,11.21727023,11.03010129,10.98234204,11.03062726,11.10596023,11.19371784,11.28253825,11.37261505 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Population|%,%,6.279293024,6.244398531,6.090742266,6.085408951,6.024483283,6.000374863,6.020823242,5.988836071,5.975922422,5.938394089 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Population|%,%,0.256514845,0.262351008,0.264686294,0.267033461,0.268837596,0.268856996,0.270028144,0.26912195,0.269019079,0.269838262 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Population|%,%,0.03216788,0.032458053,0.032118553,0.031708406,0.03125901,0.030799138,0.0303658,0.029975347,0.029645745,0.029382283 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Population|%,%,32.51774663,32.19086526,32.0054348,31.91270423,31.89190526,31.90914686,31.9645849,32.03514589,32.12001311,32.23149356 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Population|%,%,0.163415406,0.157156815,0.153414621,0.150771714,0.148735828,0.146833752,0.145139738,0.143162468,0.141206043,0.139527052 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Population|%,%,1.513715952,1.488348454,1.46768369,1.450774846,1.43620826,1.423849716,1.413278898,1.404008596,1.395895239,1.388534348 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Population|%,%,16.12831866,16.33971737,16.45745874,16.52308514,16.55154325,16.55947254,16.5554127,16.54169709,16.52299994,16.49683867 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Population|%,%,0.170549064,0.185286891,0.203629187,0.224720796,0.245900236,0.26789336,0.287399273,0.305148142,0.319828838,0.330138486 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Population|%,%,0.173687669,0.172830574,0.17142316,0.169666651,0.167637668,0.165474089,0.163422147,0.161542135,0.15985641,0.158430295 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Population|%,%,54.57648838,54.15959342,54.15190025,54.38089045,54.75558773,55.22989305,55.76299178,56.34371511,56.93241021,57.51124744 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Population|%,%,18.30256426,18.55969474,18.7602923,18.9159323,19.02953581,19.12123587,19.21161176,19.30339615,19.389874,19.46853051 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Population|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Population|Low|%,%,1.570437862,1.560390249,1.551170979,1.540451925,1.5326011,1.524650444,1.517888821,1.512283003,1.506531609,1.501262001 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Population|Low|%,%,99.99231488,99.99281977,99.99326349,99.99365033,99.99398633,99.99427115,99.99451426,99.99472373,99.99490093,99.99505967 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Population|Low|%,%,99.99998862,99.99998917,99.99998948,99.99998989,99.99999026,99.99999074,99.9999912,99.99999179,99.9999921,99.99999265 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Population|Low|%,%,97.33669625,97.30479695,97.28299985,97.27091551,97.26427766,97.26115851,97.26019071,97.2607426,97.26238786,97.26482157 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Population|Low|%,%,46.51407364,46.20997979,45.94278768,45.72866761,45.55479808,45.42178197,45.32315438,45.2542305,45.20880291,45.16937037 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Population|Low|%,%,98.75480482,98.77333334,98.79065638,98.80656681,98.82122441,98.83560912,98.84708127,98.85844759,98.86873446,98.87705637 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Population|Low|%,%,0.452120692,0.390992324,0.354937717,0.342500266,0.325598446,0.323720247,0.302715343,0.297618967,0.294638627,0.286495197 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Population|Low|%,%,37.74189023,38.01900757,38.17366545,38.24966941,38.25519525,38.21380265,38.14488468,38.0562795,37.95550389,37.84716348 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Population|Low|%,%,99.99333356,99.99356203,99.99372634,99.99385938,99.99396484,99.99404898,99.99411001,99.99415133,99.99417631,99.99419248 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Population|Low|%,%,99.99852892,99.99865572,99.99875277,99.9988272,99.99889759,99.99894416,99.99897401,99.99901609,99.99903586,99.99905409 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Population|Low|%,%,72.37293386,72.62087273,72.87347926,73.11969812,73.37715062,73.63279252,73.87160274,74.09618658,74.30739884,74.50462934 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Population|Low|%,%,6.353906832,6.379891675,6.406569339,6.441315111,6.485210459,6.531073369,6.577778902,6.624630115,6.666909403,6.701641029 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Population|Low|%,%,94.84057279,94.70336482,94.65111746,94.62238846,94.63731404,94.68459356,94.73199552,94.79487129,94.8726295,94.94528387 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Population|Low|%,%,87.05634688,87.00582646,86.9245986,86.85319886,86.78416264,86.7047356,86.61733464,86.53758488,86.46835832,86.40798322 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Population|Low|%,%,88.98798059,88.64923457,88.42526151,88.26765871,88.14511676,88.05014355,87.98319642,87.9375189,87.91083464,87.90228428 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Population|Low|%,%,4.192294714,4.207726701,4.231941088,4.269045745,4.316688295,4.365168724,4.403661277,4.434476884,4.459492144,4.479998594 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Population|Low|%,%,99.99466129,99.99502183,99.99521145,99.99537675,99.99552059,99.99565003,99.99575162,99.99582937,99.99588505,99.99591853 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Population|Low|%,%,82.73549753,82.82174939,82.86620079,82.88462823,82.8841611,82.86540062,82.8342255,82.79357907,82.74908046,82.69984888 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Population|Low|%,%,51.67350325,52.35875984,52.86364514,53.21973717,53.46018181,53.61037622,53.71348074,53.78182016,53.82792773,53.88197867 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Population|Low|%,%,43.14809204,42.82924944,42.71734641,42.72102448,42.70431342,42.67929877,42.60826336,42.5092466,42.42048107,42.38072763 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Population|Low|%,%,0.006169214,0.005991851,0.005854423,0.00574633,0.005639465,0.005526998,0.005439907,0.005370325,0.005279655,0.005204938 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Population|Low|%,%,99.99955075,99.99958458,99.99960507,99.99961799,99.99962619,99.99963,99.99963139,99.9996314,99.9996303,99.99962828 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Population|Low|%,%,99.17857568,99.28335661,99.35847397,99.41136887,99.45756447,99.49880207,99.53520548,99.5672169,99.5952787,99.61979536 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Population|Low|%,%,99.99656845,99.99663233,99.99668299,99.9967331,99.99677661,99.99681507,99.99684608,99.99687267,99.99689416,99.99691338 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Population|Low|%,%,99.99908341,99.99911752,99.9991433,99.99916957,99.99919589,99.99922142,99.99924547,99.99926782,99.9992881,99.99930614 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Population|Low|%,%,83.9403167,84.47863882,84.90095987,85.23137425,85.49103003,85.69030053,85.84096914,85.95324221,86.0406233,86.11217054 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Population|Low|%,%,62.17178499,61.97233322,61.88406777,61.8653441,61.89163234,61.94521075,62.01927618,62.10610278,62.20296329,62.30349222 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Population|Low|%,%,98.6725425,98.76607593,98.84639016,98.91441354,98.97128683,99.01837399,99.0569025,99.08871358,99.11531548,99.13785673 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Population|Low|%,%,26.40772645,26.704816,26.86202308,26.93057752,26.9338542,26.89072088,26.8287718,26.75327639,26.67001186,26.58062102 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Population|Low|%,%,10.85700287,10.77115174,10.69067695,10.61915763,10.55570745,10.5009418,10.45479345,10.41661909,10.38666339,10.36321381 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Population|Low|%,%,99.77416509,99.78846359,99.80300127,99.81823737,99.8332204,99.84721811,99.85949484,99.87002401,99.87926618,99.88686955 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Population|Low|%,%,93.87816638,93.99346645,94.09365849,94.18022639,94.25439998,94.31687269,94.36820075,94.40906869,94.44314394,94.47180347 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Population|Low|%,%,99.21627924,99.33593462,99.43362449,99.50751432,99.56193734,99.60403294,99.63660318,99.66356493,99.68691984,99.70687381 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Population|Low|%,%,99.99961101,99.99963024,99.99964691,99.99966423,99.99968118,99.99969714,99.99971161,99.99972435,99.99973542,99.99974486 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Population|Low|%,%,14.72559409,14.23219959,13.90076164,13.66573865,13.50816889,13.44989604,13.52140592,13.72553044,13.98977311,14.25917747 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Population|Low|%,%,99.98280637,99.9834906,99.98409651,99.9846301,99.98510717,99.98551717,99.98585307,99.98611534,99.98634344,99.9865368 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Population|Low|%,%,1.1028825,1.111366,1.117903865,1.121230413,1.123810053,1.124454747,1.124098382,1.122676116,1.121477145,1.119828949 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Population|Low|%,%,28.95514764,28.90573299,28.87023515,28.8413089,28.8139065,28.79283337,28.78039696,28.77288923,28.76593301,28.75983602 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Population|Low|%,%,99.99996348,99.99996856,99.99997194,99.99997408,99.99997543,99.99997994,99.99998026,99.99998024,99.99998237,99.99998569 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Population|Low|%,%,99.9995403,99.99955379,99.99956558,99.99957489,99.99958256,99.99958976,99.99959614,99.99960201,99.99960672,99.99961123 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Population|Low|%,%,82.87175938,83.0843919,83.34031068,83.62788702,83.93910508,84.25439492,84.52132153,84.75140012,84.9488709,85.11577818 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Population|Low|%,%,93.18882389,93.18231022,93.20616493,93.23466357,93.27270928,93.32549474,93.37888882,93.43551136,93.49146128,93.53540058 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Population|Low|%,%,95.99816545,95.9881138,95.98290806,95.97866535,95.9768522,95.97749913,95.97928067,95.98179261,95.98629084,95.99214162 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Population|Low|%,%,99.99938524,99.99940449,99.99941302,99.99943015,99.99944363,99.99943521,99.99944547,99.99946751,99.99946617,99.99946481 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Population|Low|%,%,1.494698131,1.482287204,1.471156571,1.462031717,1.454532246,1.448208606,1.443013285,1.438673055,1.43479063,1.431477784 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Population|Low|%,%,81.09844932,81.29709305,81.46473888,81.61246415,81.74426846,81.84777123,81.93872508,82.01883192,82.0924567,82.16153358 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Population|Low|%,%,10.36680372,10.52121032,10.62673472,10.70601672,10.77544639,10.83476733,10.89579034,10.94157803,10.97140159,10.99755622 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Population|Low|%,%,95.15419007,95.140608,95.14401894,95.15248202,95.16856247,95.18712931,95.20501429,95.22165932,95.23501872,95.24619755 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Population|Low|%,%,64.72043766,64.94957639,65.17336304,65.38810624,65.59067768,65.75240749,65.88285331,65.98920381,66.07716573,66.15039184 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Population|Low|%,%,42.67217584,43.10777465,43.52331808,43.89344356,44.22297794,44.50676942,44.73544988,44.9169348,45.05980066,45.15915372 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Population|Low|%,%,6.229405197,6.222098168,6.199933034,6.166877621,6.124431681,6.070175202,6.006961847,5.943226246,5.888743605,5.849006974 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Population|Low|%,%,0.911195233,0.888838544,0.86933741,0.852695883,0.838379558,0.825751597,0.81453058,0.804413331,0.795383397,0.787261139 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Population|Low|%,%,99.99993285,99.99994133,99.99994773,99.99995288,99.99995701,99.99996004,99.99996243,99.99996412,99.99996548,99.99996662 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Population|Low|%,%,33.93426321,34.04963521,34.18500314,34.3277014,34.47563373,34.62364704,34.76888026,34.89359696,35.00096721,35.09467147 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Population|Low|%,%,96.62864358,96.63945381,96.65289119,96.66587476,96.68383,96.70003991,96.71577187,96.73436752,96.75420275,96.76956547 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Population|Low|%,%,24.57576021,24.72186252,24.85875001,24.99052211,25.11179989,25.21419477,25.30387229,25.38525442,25.46019776,25.52456525 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Population|Low|%,%,61.61097295,61.64750142,61.70209963,61.76870964,61.84628881,61.92816615,62.00983917,62.08945775,62.16244102,62.22850329 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Population|Low|%,%,4.577956384,4.481619549,4.394862315,4.303748366,4.21970971,4.141446924,4.061419467,3.998994606,3.942761849,3.893144522 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Population|Low|%,%,17.04292254,17.17489444,17.26612454,17.34542929,17.40859652,17.45309182,17.49852097,17.54571424,17.58904782,17.62740664 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Population|Low|%,%,21.43304722,21.29415966,21.17077918,21.07014728,20.99263734,20.93374351,20.8919299,20.86543329,20.8466307,20.8305285 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Population|Low|%,%,7.094783941,7.188562291,7.267383254,7.332822909,7.382770629,7.420936376,7.450485837,7.473707734,7.492389927,7.507069324 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Population|Low|%,%,99.99988622,99.99990622,99.99991978,99.99992903,99.99993553,99.99993999,99.99994315,99.99994555,99.99994741,99.99994877 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Population|Low|%,%,99.241428,99.25081897,99.25763839,99.26326505,99.26718537,99.26897762,99.26862783,99.26706796,99.26571449,99.26449385 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Population|Low|%,%,78.72803177,78.65488341,78.56858761,78.47178729,78.37724951,78.2856096,78.19145896,78.09201597,78.00697872,77.93443957 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Population|Low|%,%,88.9688846,89.14821038,89.31162911,89.46415226,89.60269655,89.71785163,89.81529583,89.89965042,89.97495462,90.04260371 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Population|Low|%,%,6.737955614,6.852001179,6.923963356,6.963903143,6.984338471,6.992939618,6.993432457,6.988897765,6.980941657,6.971573941 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Population|Low|%,%,53.92919221,54.14494961,54.34482287,54.36739589,54.43616856,54.43171739,54.35085931,54.27691187,54.19905173,54.12901463 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Population|Low|%,%,57.43168014,57.30550061,57.20391932,57.09949884,56.9859124,56.86832079,56.77436687,56.69809973,56.63392668,56.57895189 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Population|Low|%,%,27.09222537,27.40098702,27.63716369,27.80955374,27.93147816,28.0110321,28.06298849,28.09423515,28.11706901,28.13638946 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Population|Low|%,%,7.708968129,7.636891203,7.622387469,7.653458289,7.690043038,7.714452069,7.538027088,7.593628121,7.649350465,7.660652469 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Population|Low|%,%,35.0522267,34.83667568,34.57151729,34.2832308,33.98450239,33.68885097,33.3909133,33.09343145,32.82495819,32.59600237 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Population|Low|%,%,99.9666925,99.96779187,99.96891829,99.96996668,99.97091447,99.97167633,99.97231756,99.97284712,99.97330491,99.97370066 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Population|Low|%,%,33.89457685,34.03763539,34.10207395,34.10198771,34.050209,33.95722235,33.84454142,33.72088013,33.5905697,33.47771472 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Population|Low|%,%,22.41841137,22.43021571,22.35938921,22.3032703,22.28431836,22.22090954,22.13979226,22.06834679,22.00932025,21.96323777 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Population|Low|%,%,97.3123446,97.28767955,97.25627191,97.22469117,97.19346597,97.16100509,97.1336282,97.11269863,97.09543465,97.08014248 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Population|Low|%,%,99.99979937,99.99982248,99.99984262,99.99986084,99.99987625,99.99988952,99.99990065,99.99990981,99.9999177,99.99992422 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Population|Low|%,%,99.05511144,99.10085159,99.13770186,99.16552408,99.18594415,99.20157398,99.21409974,99.2194378,99.23023371,99.23196782 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Population|Low|%,%,0.178623371,0.165600114,0.164655347,0.164223598,0.16396258,0.163797799,0.163685023,0.163607917,0.163531971,0.163468829 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Population|Low|%,%,93.14489434,93.18621496,93.2418998,93.30899678,93.38392472,93.45909183,93.53215766,93.59948691,93.65937026,93.71121677 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Population|Low|%,%,4.137766072,4.136315177,4.128095968,4.113811584,4.094691238,4.069991986,4.043127644,4.021053228,4.003702402,3.986734058 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Population|Low|%,%,1.468946873,1.617547765,1.735595358,1.852634983,1.966489882,2.070865266,2.153408433,2.207844107,2.242703729,2.249180389 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Population|Low|%,%,99.99955976,99.99959327,99.99961948,99.99963946,99.99965485,99.99966629,99.99967524,99.9996825,99.99968829,99.99969318 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Population|Low|%,%,6.856190489,6.79549986,6.746438767,6.703823977,6.662910755,6.62639216,6.592834246,6.560548249,6.531826133,6.509148533 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Population|Low|%,%,99.65763715,99.6999435,99.73019868,99.75429588,99.77596926,99.79160983,99.80551678,99.81835382,99.82816144,99.83663613 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Population|Low|%,%,0.53045467,0.547115928,0.563246969,0.576371186,0.587125923,0.596165304,0.602481501,0.606158378,0.609016103,0.610847462 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Population|Low|%,%,98.09678332,98.2598609,98.38842945,98.51223664,98.62381109,98.71481704,98.78698024,98.83909519,98.87862436,98.91331587 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Population|Low|%,%,4.50714973,4.276241429,4.132687764,4.017142461,3.901776601,3.798944346,3.703226012,3.621121857,3.552636781,3.491930499 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Population|Low|%,%,0.242455001,0.250836549,0.258444779,0.266795362,0.275706346,0.285092719,0.293564322,0.300972097,0.307190392,0.31291714 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Population|Low|%,%,99.75137135,99.77324217,99.7936491,99.81125611,99.8270166,99.8407296,99.85248317,99.86290645,99.87206369,99.88030517 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Population|Low|%,%,48.58624434,49.18781019,49.49339025,49.65670676,49.73740653,49.73151961,49.70030838,49.6579438,49.6049301,49.54494182 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Population|Low|%,%,99.76637711,99.77606432,99.78391491,99.78943402,99.79390185,99.79805984,99.80179288,99.80514661,99.80817701,99.8109441 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Population|Low|%,%,21.16438827,21.38206185,21.54789851,21.66377855,21.74320528,21.78832676,21.80670825,21.80198025,21.79609142,21.78876323 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Population|Low|%,%,94.2502243,94.39423391,94.44983843,94.47887484,94.49797375,94.50696829,94.50900799,94.50728204,94.50261854,94.49416922 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Population|Low|%,%,38.06773187,39.57462128,40.73606974,41.56924617,42.28102853,42.68773734,43.11886218,43.49526293,43.82905609,44.12929367 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Population|Low|%,%,90.64826961,90.72143534,90.80163571,90.88149209,90.96507759,91.0542961,91.13247932,91.19407816,91.24129649,91.28078642 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Population|Low|%,%,63.28037085,63.33705958,63.36421163,63.36273564,63.34635756,63.33333593,63.32220969,63.31081583,63.30008005,63.29225006 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Population|Low|%,%,35.35704089,35.20798334,35.05045191,34.90016775,34.7513755,34.6038999,34.46673025,34.34325164,34.23335523,34.13507958 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Population|Low|%,%,99.97694398,99.97770238,99.9768691,99.97721945,99.97700336,99.9774329,99.97738767,99.97791923,99.97791744,99.97764133 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Population|Low|%,%,54.7203482,49.6379099,44.88453564,40.86490111,37.5563326,35.02758321,33.26600389,32.1918979,31.41423729,30.77291149 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Population|Low|%,%,0.218154568,0.202699316,0.190860439,0.180806621,0.172817023,0.165659169,0.161443168,0.158542151,0.158121655,0.159726446 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Population|Low|%,%,68.21381271,68.37951322,68.49102559,68.56730259,68.61142563,68.62941198,68.62074593,68.60726658,68.5956773,68.58537211 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Population|Low|%,%,0.047230808,0.049092256,0.050086346,0.050566051,0.051016654,0.051804173,0.052198664,0.052907737,0.0530913,0.053378011 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Population|Low|%,%,0.420573957,0.413837999,0.410043326,0.408589962,0.410365907,0.415639212,0.423792819,0.434535526,0.44527316,0.454933338 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Population|Low|%,%,99.18675661,99.16567227,99.14587874,99.12781751,99.11255375,99.09828526,99.08672149,99.07823968,99.07444504,99.07599924 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Population|Low|%,%,5.797881228,5.902973762,5.969607724,6.015949794,6.047836986,6.059388658,6.043791615,6.001232351,5.948237299,5.895422785 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Population|Low|%,%,37.94275734,37.93566577,37.95261716,37.85634112,37.81432969,37.71170112,37.60459354,37.56229962,37.47521043,37.4568514 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Population|Low|%,%,25.86633167,25.86330809,25.87642607,25.90141905,25.93269325,25.96637605,26.00108177,26.03607866,26.07023721,26.10300964 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Population|Low|%,%,99.9994442,99.99946282,99.99947786,99.99948847,99.99949742,99.9995038,99.99950926,99.99951503,99.9995205,99.99952503 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Population|Low|%,%,4.330244195,4.432534212,4.510105071,4.563379661,4.614431747,4.652565314,4.67796608,4.690318386,4.688682657,4.686176034 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Population|Low|%,%,7.59029711,7.394761119,7.220288529,7.088136687,6.98235386,6.884474454,6.791350259,6.719243901,6.666100983,6.62307972 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Population|Low|%,%,1.27652161,1.274780744,1.270221871,1.263376357,1.252682587,1.240637619,1.228601656,1.216906173,1.207288943,1.201211129 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Population|Low|%,%,64.91275395,64.92163032,65.03314029,65.19947765,65.4192057,65.65952266,65.91591658,66.1835982,66.45860621,66.68877198 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Population|Low|%,%,0.827362647,0.831711028,0.838215792,0.845103873,0.851227848,0.856661089,0.861449667,0.865673069,0.869385112,0.872645846 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Population|Low|%,%,66.90795348,66.76826504,66.64104492,66.53279046,66.44303634,66.36354625,66.3087652,66.27251297,66.2485531,66.23182292 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Population|Low|%,%,99.77141128,99.77634883,99.78148514,99.78669407,99.79197317,99.79686301,99.80207974,99.80784987,99.81419868,99.82100213 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Population|Low|%,%,94.89521652,94.919536,94.952599,94.9917012,95.03305249,95.07516391,95.11394635,95.14908378,95.18002613,95.20687096 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Population|Low|%,%,99.95874168,99.95733304,99.95858294,99.95919574,99.95919778,99.95978234,99.96087923,99.96246306,99.96250536,99.96335453 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Population|Low|%,%,0.262987682,0.246732488,0.231255095,0.21802982,0.207230246,0.197563523,0.190185073,0.185621052,0.183412003,0.183018954 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Population|Low|%,%,0.006245278,0.005998562,0.005820214,0.005683648,0.00557883,0.005493674,0.005419918,0.005356342,0.005298006,0.005244436 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Population|Low|%,%,90.10974466,90.53326311,90.89861986,91.20738984,91.47458139,91.71261198,91.93471346,92.14005941,92.3302178,92.50185879 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Population|Low|%,%,16.82404362,16.80465919,16.80070164,16.80339349,16.81406228,16.83113103,16.85230414,16.87658561,16.90239009,16.92952551 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Population|Low|%,%,5.526896327,5.71247952,5.827466919,5.910701935,5.956396265,5.984802466,6.004679627,6.014516502,6.015287191,6.010735039 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Population|Low|%,%,70.00191786,69.5690363,69.41212745,69.31685602,69.28720308,69.28502152,69.28250466,69.28135767,69.28045671,69.2796868 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Population|Low|%,%,100,100,100,100,100,100,100,100,100,100 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Population|Low|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,STP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TKM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LTU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KHM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ETH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PSE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BOL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BFA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GHA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SAU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CPV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GTM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BIH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NLD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,OMN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ALB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GAB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NZL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,YEM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,WSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SVK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LSO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VCT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TJK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AFG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LCA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CYP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PYF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NAM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LAO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NOR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CIV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ESH,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CUB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ARM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ATG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DOM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UKR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BHR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TON,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FIN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,USA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VNM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BGR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ROU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AGO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZAF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MOZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KGZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NER,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KWT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PAN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LUX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NGA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ECU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CZE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,AUS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DZA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BEL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,THA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HTI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,IRQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SLE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GEO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HKG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DNK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,POL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MAR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HRV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,CHE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BLZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TCD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EST,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,URY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GNQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LBN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,UZB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TUN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DJI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,RWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TLS,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,REU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BDI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TWN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NIC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,QAT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ITA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BTN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SDN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NPL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MLT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MDV,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SUR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ISL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SEN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PNG,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MWI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,TTO,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ZWE,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,DEU,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VUT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MTQ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,KAZ,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PHL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,ERI,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,NCL,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MKD,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRK,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,PRY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LVA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,JPN,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SYR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,HND,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MMR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MEX,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,EGY,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SGP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,SRB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,BWA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GBR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GMB,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GRC,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,LKA,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GUF,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,COM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,FSM,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,GLP,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,MYT,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 +Climate Solutions,ssp2_2p0,VIR,cdd|Exposure|Population|High|%,%,0,0,0,0,0,0,0,0,0,0 diff --git a/rime/test_data/table_output_cdd_R10_EU.csv b/rime/test_data/table_output_cdd_R10_EU.csv new file mode 100644 index 0000000..bbff832 --- /dev/null +++ b/rime/test_data/table_output_cdd_R10_EU.csv @@ -0,0 +1,4159 @@ +Model,Scenario,Region,Variable,Unit,2010,2020,2030,2040,2050,2060,2070,2080,2090,2100 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Absolute,days/yr,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.40998985218712,125.52545284356762,125.65786334900875,125.81233239547136,125.97726518277192,126.12873224327765,126.2347680841953,126.28897567314904,126.2947902106648,126.2668671574095 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,32.71740017861694,32.94282274514661,33.02155406317187,33.05436950846081,32.99579957246641,32.853463886774215,32.66264181997305,32.43123253048759,32.19686325920976,31.959416644996836 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.38413508274134,117.10649266604844,116.77935339207168,116.56073084674293,116.39734816892684,116.25961186352959,116.15140888872101,116.03885824502595,115.91984955455283,115.82105863655737 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.54393749729379,53.87473201249038,53.28059295019123,52.69868821843022,52.13737331424959,51.61948643297078,51.15926487129766,50.73829542244681,50.34614139114693,50.026212999755465 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,59.60166685197847,59.737344575609036,59.77010556731248,59.7514183364548,59.690630219899404,59.62868359470945,59.62632402155739,59.688451236944566,59.79004260867011,59.907626005187325 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.20677343599904,43.34385457483604,44.15760156164386,44.619840034923975,44.845469832546684,44.88729607904567,44.893140661519425,44.9361446006675,45.00059917017509,45.13906878606298 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.310061974172555,21.8455709292323,22.37431260490904,22.89422938737859,23.40702052839302,23.888433936487335,24.35795192750572,24.785785791577954,25.150384737228876,25.450937707568055 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.7155541745295,155.73770661420482,157.15779416748086,158.35079068414476,159.26558719439763,160.02178743835287,160.61701550853775,161.0988751565809,161.6403243630692,162.1148195549949 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.36956413236254,38.46853193357887,38.5608908810261,38.653910855768636,38.73356874750788,38.80507784675337,38.88321327817528,38.97048616206663,39.06636632756612,39.16253112421192 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,53.53752373149113,53.641851694929045,53.72397092147768,53.78835024293867,53.82879154412978,53.84784459812698,53.85243005861386,53.84725809745906,53.823791643984435,53.77715298943878 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.93217298938053,82.9674899189418,84.59129343317578,85.9915608899423,87.14426173368055,88.04239513097902,88.72948195397464,89.20425102007758,89.5564747495147,89.84247830489895 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Difference,days/yr,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Difference,days/yr,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6693297967027874,0.6417861322144974,0.6158612318445686,0.588877523547726,0.5628118161532218,0.5384396588745055,0.5153535275406367,0.4936587412206609,0.4724520980394986,0.4513519292128789 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,0.32275938564103307,0.38292596292515413,0.428299889287509,0.47063071260910216,0.5012106466577239,0.5232027085193326,0.5413545482191388,0.5580261352901557,0.575439252930561,0.5934111602762866 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.4633159449477893,-1.5418124052021007,-1.6254555594456064,-1.709956552126124,-1.7891219128038909,-1.863025808592053,-1.932430922016903,-1.9976919923286975,-2.058951542813988,-2.117788555763791 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,3.06694927707444,3.0646879294426235,3.0685321586412906,3.076194568968572,3.084794615964279,3.084420052293279,3.070010857640265,3.048570479415776,3.0296761835885007,3.018191119467267 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,3.3458675893825083,3.3416061228027343,3.338380377075687,3.3328265938405273,3.3262491034875787,3.3169493353948,3.304999112763223,3.2913737365479236,3.2774785008599094,3.262124057025196 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.5896574686237306,-1.529402350895886,-1.4923428992532417,-1.4781137698834883,-1.4824686017464006,-1.4993119411666018,-1.5146436240286252,-1.5256963187750165,-1.5333621629815195,-1.5324136570340257 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,2.354129231218361,2.3301578434046677,2.304479291729558,2.2782509994926032,2.2513463498283968,2.2240586499257904,2.196765819117868,2.171291501330414,2.149543972073786,2.1319212572029818 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.025533463028482962,-0.13049791361825033,-0.22097137787664642,-0.2978269276814299,-0.3581463165034098,-0.4126907579805067,-0.46168429360182117,-0.5079612503673889,-0.5617190875662789,-0.6102439848924797 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,0.9472422259630768,0.9469500627685619,0.9461263054432847,0.9449551448044861,0.9438502133171099,0.9425959192152751,0.9410092356870852,0.9389646096791583,0.9364344982575743,0.933618956717083 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,1.6773446356209196,1.626440616031625,1.5796863588905745,1.5396614856459727,1.5074492839462346,1.4829479221868838,1.46400947786251,1.4489537842245934,1.4375994620312047,1.4289944480563355 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.867480289681937,0.7925433725308422,0.7125798457180076,0.6288649393377984,0.5462540094017497,0.4656172485627233,0.38669941097808125,0.31112265119237414,0.23620874516750892,0.15992794136190014 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Risk score,risk score,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Risk score,risk score,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area,km2,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|%,%,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|Low,km2,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|Low,km2,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|Low|%,%,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2264439409513126,2.2266988906573313,2.2272024370910093,2.227867872921234,2.228645081401754,2.2292919576566033,2.229413153938242,2.2289521000687116,2.2279354981382564,2.2265221505778667 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.6969041216231573,0.7028860492407728,0.70544561358252,0.7070100404226408,0.7064022424020281,0.7038383587570275,0.7001387696642045,0.6955680344751027,0.6909808957475081,0.6864085188456572 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.88731661907443,1.8826269690256594,1.8778809573453654,1.8743617525438467,1.8718072690307397,1.869654403470585,1.8679165183846937,1.8663745719048217,1.8649869882661994,1.8640266346225622 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1462669121324742,1.1343515458857059,1.123919098139399,1.1137888115854746,1.1040206898922431,1.094825783986878,1.0863342595424572,1.0782885794667707,1.0706160500890864,1.0641868684815974 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2507859643517751,1.2531309688229855,1.2539839619415636,1.2539412296027157,1.2531689273556998,1.2522946735147495,1.252375613059516,1.2535704861520836,1.2553365501478388,1.2573321992987276 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8406794527149736,0.862729972916997,0.8782537308450548,0.8869251939613604,0.8909222866201402,0.8913354208079652,0.8911568483145879,0.8916967905283215,0.8926498651670864,0.8951138912761232 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.49107027245100915,0.5016251801433873,0.5120771208810241,0.5223518291148032,0.5325103150909366,0.5420492904746227,0.5513803657198345,0.5598981458301028,0.5671692778607976,0.5731471433462961 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.397759237746563,2.4116433478827197,2.4213238628993086,2.429422806909598,2.435669322639215,2.4407992396580376,2.444859328014065,2.4481779820740863,2.45188113682007,2.4552462358378766 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.7702632837297936,0.7718338453598906,0.7732767631341398,0.7747187348023943,0.7759297607902252,0.7770022561182742,0.778202955838652,0.7795693002687227,0.78108441492846,0.782613223749737 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1773331846075505,1.1787697312849357,1.179829130097674,1.1806146280361915,1.1810559195966912,1.1811520292680522,1.1809998290450217,1.180689565852371,1.1800269461401327,1.178910419481451 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.4954900510741667,1.5219143907275383,1.541954368412708,1.5582035507040946,1.5706507021040557,1.5792331702683178,1.5846879557092013,1.5871897612498225,1.5879453785717512,1.587738817361502 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population,people,209967.77308388054,265463.6771994641,304388.9754351851,336380.31030668796,360071.98505566193,374024.3531555975,382251.22685096826,383461.3585811119,379497.8654834391,369239.2063838683 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,58379119.042564146,62588390.97349315,70191601.44907816,75924144.5456346,80054563.1157788,81754147.16955845,81185900.12714413,78566804.4212976,73806570.66752851,67356155.28962103 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2607924.3727803994,3234035.507749728,3388262.5024121273,3450218.3863108936,3427563.3547723675,3332552.351439249,3187138.6669969093,2999106.759455683,2788167.245682859,2558113.1319212527 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8304618.953732632,22617085.236508984,26406191.405227076,29534786.12382554,31900064.701505374,33166319.55093213,33253067.29129109,32404733.294108886,31008174.389934994,29168514.648075186 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,246902.0,266269.8486866911,259560.84723479487,244761.75752282288,223745.23538791557,197942.77400733886,179375.292863692,157057.90678311535,140545.5198723849,122876.60998548473 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population,people,69748532.14216104,88483574.34447584,97610091.69994639,104133182.7327348,107433334.53399676,107566810.13073337,105913161.80537911,103387424.52290244,100556804.81974857,96625526.60736243 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545663492.1542244,1826081001.0507455,1973942451.2703521,2077904870.3920057,2133155004.5865893,2137555618.5682752,2102375904.6334486,2030136291.878489,1925697429.4965277,1798111842.3605566 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,97645794.12440826,112911637.829074,114764299.63817619,115003914.9113243,113280036.18780272,109295547.29595257,104095505.2890929,98681317.32763954,93360164.33806175,87920719.02848497 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826470428.7746899,909738743.4182239,1049317021.1164,1164765512.0984368,1257840339.4203527,1312824109.2969403,1331627102.4321423,1318996268.781891,1271753370.5439696,1194253213.5770464 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|Low,people,232907552.4191729,306232317.29616755,319994207.8382792,325044586.1365452,322281452.5742359,313032275.0716021,299357558.4460067,282702268.7910912,263671830.319803,243271944.2821391 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,278630797.6709763,347659952.3496119,368651870.08419394,380385821.87336373,383425523.76187056,377869515.3772992,366214075.57542115,349941618.75227123,329963638.2349859,307727163.9505147 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,59863171.01837814,67856042.10451435,70690620.46848053,71554552.8452667,71465164.00526915,70024252.03595474,67926120.73220165,65658596.16034743,63394981.74522056,61644242.61696033 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|Low,people,4085988.1309295315,6115822.186338389,6780290.228542847,7341912.654036815,7840575.442785091,8234038.045753543,8519846.460042793,8641800.436389776,8657765.122854438,8555073.973719686 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199127672.24370283,495120405.74851096,553023246.4191369,597834955.403699,631514360.3285153,648094886.4536875,649004842.3867245,637506430.6688242,615830442.5187056,587706022.5454472 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,64473746.44338477,77178872.67824015,81798800.28436533,85413261.4486385,87905200.8319535,89655032.86247304,91431176.63450435,93167012.67178449,94169502.06106672,94114370.9086024 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,852350285.3766574,959341035.6570128,968482842.0255005,948084869.9148984,911112990.6246809,852520833.3898532,781630768.2235689,711068125.7564979,640245544.8541931,574399575.5173686 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|Low,people,4161218928.356525,4949465491.358059,5196752588.342569,5304156591.70367,5268635162.545183,5100914225.086768,4874318794.107123,4643534888.063659,4423020834.1799,4177734585.538482 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013448777879805581,0.014400483206357438,0.015284303126786837,0.01605394011552201,0.016747920559267875,0.01736881423282566,0.01805379133364915,0.018759413482069224,0.01957482849018778,0.02039947828757317 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.009136806830257,5.835255017967541,5.658420382188851,5.5014713419302845,5.36388829622593,5.242454401588855,5.127661154766941,5.005958997845992,4.874219074497821,4.735000596451588 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.49175675128113144,0.49042595737400985,0.4854996171200907,0.4795778628514829,0.4726963570261469,0.46636153197591024,0.4607430154639141,0.45485256256171636,0.4498943659891967,0.4442107181189589 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.1244515602927825,4.519650370682871,4.726648341814618,4.892665574290707,5.0046178411762465,5.0721139116335925,5.080254861858245,5.042050360564245,4.997107983520817,4.92807793282456 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.017930729963508335,0.01728322439623187,0.01677810538309332,0.01623562619263588,0.0154992607223686,0.014689353833874949,0.014539543470322316,0.014004322867619524,0.013916639481639391,0.013547189242904756 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|%,%,1.091692965666867,1.1870362774154006,1.2643504313884273,1.3347376852740813,1.3954971318793232,1.4481488067930783,1.4939375636877805,1.529717958415424,1.559259220000876,1.5824476648913839 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,99.00226438369862,99.0585569615274,99.11769878299361,99.16918241918141,99.21880079589694,99.26307241229297,99.29557636695914,99.31682885916541,99.32914078020022,99.34086860951746 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,17.779630824146487,18.293420495830855,18.500723677181913,18.60614239221938,18.530899330333078,18.290871394865903,17.963166031531095,17.56030309227321,17.15195146058856,16.74565535096355 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.07106572961123,84.81696821090843,84.58956195735445,84.39902909971923,84.27895690817729,84.18435967562041,84.10490682597236,84.04110729039814,83.98716375382959,83.9535697114365 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|Low|%,%,46.95951639099237,46.33383519940246,45.78876115094985,45.25672723969119,44.73862043505653,44.24294349353783,43.77289881075638,43.312815264602264,42.85705722764747,42.45828193982186 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,52.539321039999805,52.72096257542253,52.823635019147495,52.873354404701345,52.87833644875555,52.879531210438515,52.94108450101926,53.073083022010955,53.242423693583184,53.436145093592636 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.899454367318192,23.401088288053078,24.41202061949165,24.95374099046508,25.171802575632938,25.15211834497284,25.1014465039266,25.10257490803201,25.136001586477093,25.2710455388484 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.3864119972010323,3.8879864884971043,4.39708392982791,4.915252496509883,5.445415069764324,5.951264074561422,6.45449759318871,6.914408366283101,7.307351880613333,7.628099673318365 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89586061186684,98.94162320092656,98.98990621398444,99.03598059414124,99.07465907145789,99.11292944616025,99.15205647113964,99.19351902828744,99.24386976500854,99.29408869935153 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.903592061814606,20.991212195816807,21.07048936397751,21.150445575807865,21.215547791397498,21.27278192089984,21.34026148882862,21.420338517906103,21.51148188808321,21.605478300852564 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.90011746121178,62.26956027335727,62.60307499506151,62.888711466278814,63.11454080685023,63.26565965953983,63.35629813278675,63.403542157978286,63.39630345778302,63.32775417141775 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|Low|%,%,65.13073885809644,66.39870886301344,67.31390435619745,67.986567833159,68.43653592380802,68.67251003943925,68.75375845437297,68.70563554106145,68.58447847774623,68.41925287802377 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Absolute,days/yr,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,124.33416464184876,124.43892169990178,124.56125166863454,124.705334672216,124.85969701449685,125.00120937632771,125.09858590890524,125.14569352003807,125.14564907665954,125.1124184586099 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.186638082152676,33.41219811211189,33.49100889438569,33.525301233868696,33.4688292136802,33.32855898624559,33.13955777732545,32.909737826105285,32.67712299305516,32.44194993111013 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.16546555210994,116.87882507461826,116.5435763847552,116.3188517302243,116.15042573234632,116.00847523129379,115.89701847668378,115.78235230371853,115.66248370581782,115.56351550508877 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.560105160224275,53.896490769604085,53.30662123145515,52.728505482130714,52.17081870364715,51.656018171961904,51.19806366109375,50.78024676214326,50.39405571853159,50.08321745286285 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,60.09987031712918,60.237457201931676,60.27171299488084,60.25406836229071,60.19413042263043,60.13314808294008,60.13161963785072,60.1945675903409,60.296999685919175,60.41570514928328 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,41.91213306261476,43.02667191585076,43.82480391522339,44.27935848542519,44.50250599051814,44.54553765451256,44.55287657629914,44.59608464683956,44.65989592043531,44.79577263376281 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.58213273444136,22.119531206823012,22.64885844119908,23.168129871312996,23.67939442871226,24.158342146766923,24.624578459485132,25.04879515417494,25.410073997811345,25.707701221352913 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.9971165756555,155.00399701085044,156.4121078335303,157.5937738810128,158.4983359661957,159.24693981185575,159.83558366094027,160.31114115329243,160.8466234744607,161.31332640454832 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.72400604036253,38.8218396763434,38.913290749944494,39.005649427305855,39.08454550260547,39.1554837095348,39.23352935347952,39.32114238719873,39.41772539603583,39.51476240220092 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.729552326406484,52.82806334446387,52.90573401293667,52.96693055839985,53.00567824939376,53.02407296322674,53.028713771997694,53.024025737769065,53.00188991736442,52.95769982325874 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.53184071114943,82.55890198761739,84.17845765869836,85.57754412353258,86.73170426178186,87.63405614655889,88.32790387989598,88.81177214644694,89.17484507824584,89.47270613581163 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Difference,days/yr,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-0.009165721566967128,-0.04670593743177262,-0.08205439921258365,-0.11838347847135039,-0.15381873776813504,-0.1870079352413765,-0.21790806458481773,-0.24623719875137856,-0.2731613172518397,-0.2997185723638941 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,1.857463875805959,1.9209974952038753,1.9721628523244983,2.0231619938575225,2.065548525595392,2.1013487910696664,2.13461208249809,2.1676092348552767,2.202307447006892,2.238653813503063 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.467931489238887,-1.5603390383643463,-1.6557438335651502,-1.7488113218676042,-1.8345551054448117,-1.9138124142905082,-1.9876507484958938,-2.0565474554309544,-2.1206381104185144,-2.181898643618304 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.0476969542580425,4.050560673103557,4.05740686312564,4.0676784484101685,4.078639222023036,4.078683615195741,4.061887833613466,4.03896233264623,4.024132555393164,4.023540184262865 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,4.2410002712394546,4.238870282721597,4.23767073726431,4.233677962200633,4.228578391806367,4.221427880091797,4.211485816026902,4.199556772923836,4.187749217545253,4.175542774440683 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.801269668177427,-1.7601318686190233,-1.7347163597043478,-1.7236944087897705,-1.7254391551336945,-1.7362405584905598,-1.7463089503542133,-1.7542007030536078,-1.7604324439551307,-1.7608923213001895 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,3.6719243822283065,3.6399324019698853,3.5997028480212245,3.553753151451498,3.5024186167614113,3.4471092453054712,3.387689931968148,3.329614977548944,3.278559083402689,3.2360661267959134 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.4166277104191006,-0.5334677998688212,-0.6332857677855599,-0.7186812590874423,-0.7867637369442175,-0.8474094225433112,-0.9020866418778009,-0.9541343348438345,-1.0137695341923876,-1.069793699623155 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.3414693651754668,2.3347930594846806,2.3284938452274306,2.322771847427714,2.3167487025981557,2.3114706610310165,2.307816260044601,2.3054140042692803,2.3038968055541815,2.3028015447149217 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,0.8079974213682869,0.7510431504492667,0.6999493575215572,0.6572024618167358,0.6240568334902322,0.5996384534723744,0.5814982133692529,0.5676151834173522,0.5584061744096933,0.5532373224127879 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8667898067182648,0.7831608606305508,0.7001085227527701,0.6179357933379669,0.5411022477087558,0.47004493395135,0.4034087239716682,0.3424013845732673,0.28371147376083183,0.22508011352871612 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Risk score,risk score,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area,km2,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|%,%,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|Low,km2,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|Low|%,%,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.215663872897004,2.215703598561733,2.216012890620737,2.2164818762842424,2.2170598913304365,2.2175177393349133,2.217469950215705,2.216863934758545,2.21572012100298,2.2141864426044924 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.7443395358506444,0.7506275227349141,0.7535686845905964,0.7556507851820093,0.7556388085576877,0.7537147548014711,0.7506997094809154,0.7468515998426644,0.7430156508427366,0.7392228822361427 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8953408852022036,1.8900836670084469,1.8848270177055444,1.880879664898128,1.8779749678571196,1.8755217480000674,1.873516321847279,1.8717378094575918,1.8701427539632327,1.8689912112374962 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1735774814590552,1.1617027892784348,1.1512325447892435,1.1410433564014297,1.1312032900177094,1.1218779384978121,1.113178413218676,1.1049620382308694,1.0972848538457707,1.0910500696116072 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.280549031170304,1.2829524487711466,1.28384296465955,1.2838094255006496,1.2830366740417964,1.2821881311062258,1.2823005820159257,1.28353226082836,1.285359419843193,1.2874635549029758 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8263550576410575,0.8477398592780568,0.8628662427892293,0.8714240465879062,0.8754800937715473,0.8760712215106856,0.8760476008344872,0.8766688037793753,0.8776553896663306,0.8800653782552905 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.5477867458186483,0.5580834961066424,0.568009871989255,0.57754278580503,0.5867641366596473,0.5952161363521135,0.6032935151563524,0.6105338694164806,0.6166525325626524,0.6216529135061771 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.390553582855849,2.404116678525849,2.4135129859487012,2.4213588731680393,2.4273663889187227,2.4322959179724966,2.4361501088544784,2.439239390907457,2.442692998847761,2.445737628395981 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8175422854627337,0.8188982634991012,0.8201533808802431,0.821432630373269,0.8224740248655752,0.8234054449533427,0.8245169291539414,0.8258375231281094,0.827339398856111,0.8288708342173443 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.167071569741902,1.1685077385106237,1.1695899039754916,1.1704151219202716,1.17091614919889,1.171067223427459,1.1709655043011604,1.1707012772373278,1.1700903598064296,1.1690377700791021 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.503046085870166,1.5292195972646516,1.5491474393415887,1.565390262037669,1.5779358706322406,1.5867160089212557,1.5924375895870342,1.5952727135979303,1.596407714612741,1.5966184010856175 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,56613.0,75547.37776781761,91153.07673476619,104967.89640838755,116147.9921724695,124210.41430005187,130473.11493035377,134339.11509118148,136565.0484465009,136241.10253677506 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,59048056.09986882,63315610.4789067,71000751.59976609,76785804.08176951,80939540.35039264,82632553.50787295,82038055.96334207,79379127.21371566,74563106.14275245,68045485.44549294 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2639061.372763807,3269212.1052233255,3422490.3145293165,3483278.2400022233,3459084.8291624663,3362224.7206419455,3214790.657750882,3024777.325343613,2811971.7977178115,2580523.7818379463 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8093756.805890419,22064583.06799218,25767756.45764691,28826529.827211827,31140101.703294575,32378680.234382663,32461671.959113915,31628236.9991291,30256965.53193471,28452106.421785936 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,198436.0,213724.07837424925,208440.04413032788,196232.98365059722,179180.8801568782,158497.92736370175,143569.09236882837,125598.8223690114,112314.85086763598,97992.72183091432 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population,people,70035923.27852304,88841991.75789215,97990878.50277111,104520534.40121153,107808543.73160492,107921439.77169181,106249134.01858695,103712924.48400705,100874949.47362302,96941522.96530391 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545058891.254312,1825411407.9452522,1973279216.3323839,2077274721.016322,2132573625.450827,2137030340.7391183,2101904170.9242957,2029713376.337115,1925318502.1856756,1797771970.7786448 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,113943750.93356645,131708206.07986778,133984074.32228437,134516690.88913503,132882599.71680297,128672011.7551167,123018681.80962938,117088608.13329521,111217899.49753189,105207183.88464953 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826726804.2557662,909471735.2751808,1048536233.286806,1163422476.7250254,1255967008.68336,1310512322.290687,1328944733.4997706,1316025350.4055934,1268597486.609277,1191025213.753857 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|Low,people,249970759.82996273,328739118.75841784,343491854.2123553,348884432.11792344,345878245.8651363,335851573.21227956,321041165.9379621,303076079.6329264,282648289.32276624,260809421.4400589 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,287749609.8234063,358834068.19273746,380331142.5184097,392279691.69022816,395276053.7382481,389413292.8377535,377232484.7758674,360283499.9218653,339531822.0336394,316471988.96094203 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,58844311.18754874,66879487.70016865,69813523.02266236,70772358.21530329,70762555.4834415,69391020.97195154,67349751.30873302,65122073.350639306,62887304.703842424,61161630.08984791 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|Low,people,5584198.462279933,8344220.579784951,9253124.217019128,10020935.996417386,10701918.964657936,11250226.48306217,11651581.44195838,11831914.61421293,11863833.481760552,11731337.636665126 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199127672.24370283,495120405.74851096,553023246.4191369,597834955.403699,631514360.3285153,648094886.4536875,649004842.3867245,637506430.6688242,615830442.5187056,587706022.5454472 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,62909775.93064803,75268139.04962853,79736466.93920521,83221923.40033567,85611438.76089214,87280914.04112904,88981757.66987863,90649021.43901974,91606399.543887,91538705.05045396 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,860569802.3336115,968258007.6569698,977051246.7785114,956002240.7617978,918269906.3403156,858788410.2917883,786986767.7958319,715651031.1541752,644114970.6750355,577653818.7118666 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|Low,people,4210485576.2548037,5004674423.675844,5251545715.0843315,5357239902.378937,5318975595.26618,5147639146.360066,4917161189.737465,4682822455.215604,4459084996.717054,4210647948.4597883 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.003626154866181628,0.0040981830595692315,0.0045770752825773425,0.00500965208533214,0.005402356825183943,0.0057680404860226304,0.006162267708096078,0.006572039008404256,0.007044143443834728,0.007526956414765479 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.077992492877375,5.903055311314681,5.723649150451466,5.563907280759967,5.4231843419030055,5.298781882629415,5.181482894406916,5.057716920569374,4.924181017052797,4.783459103104335 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.49762802198065587,0.495760319489642,0.49040407468969266,0.48417315862823035,0.47704349362729725,0.47051392032556305,0.464740476175459,0.4587458293284697,0.45373543178681125,0.4481022781789045 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.019727825282206,4.409241951356177,4.612369934905133,4.775337445158899,4.885391613421917,4.951660500193557,4.95934902334638,4.92123055968684,4.876047267904381,4.807039353607672 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.014410990316152724,0.013872547806816798,0.013473638508013197,0.013016597860144263,0.012412202535620706,0.011762147664430048,0.011637216174902891,0.011199222606967305,0.01112127436988547,0.010803731867501387 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|%,%,1.096191166164075,1.191844565002498,1.2692827898160624,1.3397026047723803,1.400370883228363,1.4529231093012895,1.4986765545847647,1.5345340483631422,1.564192451379269,1.587622774578192 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.96353871123266,99.0222338593521,99.08439572455765,99.13910818465848,99.19175928202003,99.23867974117871,99.27329630256207,99.29613929728104,99.30959538141192,99.32209161391161 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,20.74721030724768,21.338753408376867,21.599071697336594,21.763056559798507,21.737582022154776,21.533569091873414,21.22863038312193,20.83587352858712,20.432740529705537,20.03808955664936 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.09745522237799,84.79207444734786,84.52661958707179,84.30171261808826,84.15343830656326,84.03611719024127,83.9354897356188,83.85181238796143,83.77874776142869,83.72664789527246 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,50.399851235299145,49.739179348005244,49.15109737790998,48.576005434228634,48.014291343493035,47.4681474057199,46.94353649742336,46.434286871469574,45.94147920963051,45.51909995515604 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,54.25878709753778,54.41546359343581,54.49714239675365,54.52659371570756,54.512646822876945,54.49498182411647,54.533941169980096,54.641560415110625,54.78633107232045,54.954664720122636 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.526729802408457,23.06431008635687,24.10912723999212,24.680960553384466,24.924326434696653,24.924667109173228,24.88845471087639,24.897451667387706,24.934708509861274,25.073198625129955 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,4.628108565531821,5.304637035346326,6.000740738807617,6.70880096165052,7.432667567681013,8.131255688556895,8.82704925806666,9.466857051357536,10.013346940468155,10.460203274539777 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89586061186684,98.94162320092656,98.98990621398444,99.03598059414124,99.07465907145789,99.11292944616025,99.15205647113964,99.19351902828744,99.24386976500854,99.29408869935153 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.396523628562267,20.47152832825006,20.539254521130093,20.607815832571845,20.66195803356592,20.7094659493556,20.768561078477752,20.841418758173642,20.925983057051297,21.01419248263767 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.49704230987895,62.84834915527651,63.15693972251392,63.413889397666836,63.610314057406036,63.730777192903965,63.790437012030964,63.81218434718979,63.7794491048197,63.6865356222041 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|Low|%,%,65.90185261921351,67.13935486408306,68.02364360781118,68.66696857918478,69.09042914777274,69.3015575951601,69.35806355734168,69.28693348220001,69.14369849322374,68.95827891107386 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Absolute,days/yr,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.28175939332314,125.38527219118149,125.50916899123783,125.65697527411528,125.81626603606415,125.96300830937555,126.0646823803356,126.11466306773708,126.1154782961443,126.08107830990977 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.96242690105898,34.20474211917232,34.290873543082874,34.32889699822195,34.26967515862792,34.12131826268681,33.92180816659437,33.67946868457379,33.43473869229856,33.18705837615652 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,116.86211131664311,116.54963024950378,116.18691521740018,115.93676082345651,115.74454632339128,115.58069366887075,115.44923478827926,115.31633909027227,115.1800264857509,115.06554509767615 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.86897601309177,54.21787102066696,53.64012979360003,53.07389209951809,52.527988193610554,52.02465271700738,51.578197733128576,51.17085967772115,50.792358329782004,50.48623269437853 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,61.57860155545083,61.72779547966838,61.77085273868024,61.75980335758688,61.704747433111706,61.64811373713654,61.65195303350851,61.72158586271155,61.830143622996765,61.95444958976022 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.31831507047034,43.42964976484812,44.224385675397286,44.675545689313964,44.89555351668149,44.93539358525315,44.940061139660884,44.9810607357288,45.04277394402048,45.176917367974035 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.917513836074683,22.449150495096355,22.972057067063428,23.484567990483253,23.988606561200193,24.460336840390436,24.919084621125716,25.336128498895587,25.691184324198254,25.983564136893815 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.3358867987667,155.32169347965745,156.7169046186302,157.88623728884437,158.78043764302043,159.52275668241168,160.10550659301055,160.57456332863862,161.1034998770198,161.55989661411056 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.83150164682811,38.92916988448682,39.020191193579294,39.11199632880491,39.19006240986254,39.26014892282586,39.33756849560086,39.424801366016816,39.52116128453117,39.61797541957484 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.01141254015846,52.10642178386271,52.18152080741904,52.24084566103622,52.27850774083447,52.29604183371303,52.29967994212295,52.29421636780583,52.27151406725351,52.227170718526544 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.81548100358867,82.84440634894017,84.46304324984685,85.86086797878471,87.01336964202592,87.91282507236458,88.6015254859339,89.07753027228296,89.4298642401809,89.7142828447394 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Difference,days/yr,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Difference,days/yr,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6414944843680598,0.5994329494596137,0.5617223279221235,0.5247919199766636,0.48969148480632246,0.4571786140467497,0.42627501801398815,0.39690762219298004,0.367461780363524,0.3365763070968862 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,3.7080580940401067,3.80543706169561,3.873609996170892,3.936098041850185,3.977971371687167,4.003733110100622,4.023324154687232,4.040089748227303,4.0603986517646735,4.081846161577789 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.6506105199555419,-1.7660121946714709,-1.8855506734965968,-2.0008702161318013,-2.1081045696729865,-2.207474837930079,-2.2998552199297473,-2.385903852968488,-2.4656498610358293,-2.5419558124273522 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.181325922671341,4.209359378454643,4.2405987516361225,4.274147554136801,4.308232552962638,4.332777916208966,4.342900179737128,4.3464404098271086,4.3535061112212325,4.369858668519134 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,6.863626227081654,6.870528284486529,6.876577803134861,6.878032704871437,6.877492247569168,6.873856450998784,6.8665186539530305,6.856358679777116,6.845154606996016,6.833529789656594 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-0.45864394529313995,-0.44764659535353185,-0.44618144771656193,-0.4530945001725318,-0.4678975697839203,-0.4891110483046655,-0.5078074171345085,-0.5235381824417209,-0.5376892343358455,-0.5463364916068408 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,5.493891666471877,5.414574409218579,5.32492723791089,5.229366165323655,5.127811441190791,5.023389680926055,4.914273251665396,4.809361518061419,4.717792546623151,4.641704718837917 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.07578444243940935,-0.22250381540255337,-0.3436763609087364,-0.4477713673524906,-0.5313275619107252,-0.6037147427205237,-0.669105485411309,-0.7319466442594046,-0.8033637334791011,-0.8738620089592337 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.6287281254642068,2.6189787308941925,2.6096317168650587,2.601047534544074,2.5915985399648194,2.5832745674627233,2.577726198718129,2.574453966495208,2.5728398335102693,2.571896305800658 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.11321114121213427,-0.17324564530685743,-0.22676972220770508,-0.2714450784498811,-0.306076503470336,-0.33230008492045604,-0.352849119723717,-0.36874015800706883,-0.3798126421144136,-0.38618302795554826 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.303074604869888,1.2133657107994582,1.1244141938706536,1.038881181405672,0.960282843514633,0.8877963025901762,0.8186971907145287,0.7534295166486041,0.6881060379827398,0.6203978842530393 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Risk score,risk score,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area,km2,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|%,%,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|Low,km2,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|Low|%,%,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2316245767567517,2.2315679515653177,2.2318233730707115,2.2322595097866658,2.2328156183550774,2.233256641432879,2.2331850434428975,2.232543508315016,2.231344206492157,2.229726212396031 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.8274783509631286,0.8353464130064955,0.8391865547614752,0.8419498947727341,0.8421621575204247,0.8400849707978616,0.8367447324408231,0.8324391270017603,0.8281879927530861,0.8239525234890932 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9045373300013337,1.8983488214424369,1.8921749016481912,1.8874018475560013,1.8837492183044398,1.8806158380061095,1.8779899415687678,1.8756450973036425,1.8735366686712023,1.8718993367604913 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.184780444877164,1.17363297197128,1.1638613637890056,1.154345123432522,1.1451707334761556,1.1365322636940702,1.128571741853008,1.1210680238733939,1.1139549196567953,1.1081151606146258 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.393861232917596,1.3968597327440662,1.3982405770183295,1.3986023691340237,1.3981690708542511,1.3975996412103742,1.3979370700894127,1.3993503866516483,1.4012920722259037,1.403494778223857 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8581293462198328,0.8786602132622895,0.8930768740323601,0.9010736158436659,0.9046575756347107,0.9048412645766285,0.9044801546268769,0.9047964727694175,0.9054983003927968,0.90764977641645 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6221031931846529,0.6307254402689296,0.6388825075133763,0.6466146859799501,0.6539913182036456,0.6606218654391779,0.6668428995022163,0.672327170323699,0.6769262053693812,0.6806651932625085 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.410667220999226,2.423046101730017,2.4315976146495255,2.438716212254529,2.4441397661604825,2.4486149562334716,2.452050010244678,2.4547095795951805,2.4576605956952546,2.460106392983188 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8382107897576597,0.839430399430562,0.8405536936546971,0.8417124634603409,0.8426080665336023,0.8434098291663161,0.8444473098307738,0.8457480225455819,0.8472716794275276,0.8488429978889626 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.154323409482234,1.1558783123754017,1.1570943591690586,1.1580533956955785,1.1586813953927833,1.1589142163674273,1.158851074254808,1.1586166069488686,1.1580230176528592,1.1569967515183046 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5274136855670308,1.5533627095792264,1.5730813525295715,1.589188130045943,1.6016536764939124,1.6103774047703978,1.6160387204927404,1.618796491462783,1.6198033428718737,1.6198154529664222 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,75584.0,100373.7335111896,120492.5044632559,137981.16343706008,152106.05294881226,162144.8240804366,169615.48682770762,174276.47075307905,176537.07560101425,175911.491447311 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,61404238.10347897,65805536.58264203,73684208.38697633,79553921.09488547,83702883.83664592,85303067.03931123,84566204.36739084,81730307.26582223,76707877.3187772,69966906.01159482 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2795804.174866507,3461870.5340746483,3623525.0883468445,3687643.1995345727,3662181.113448053,3560375.964344243,3406059.565802319,3208085.0536838598,2985378.505583055,2742555.8694155663 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8380338.3599001765,22867593.46068655,26713298.97302139,29890560.48460149,32296629.048129432,33587804.09292638,33674808.70961183,32798458.836061433,31362474.31040217,29475571.322206672 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,117962.0,126522.50900207981,123450.71172789103,116255.25144082765,105545.89079181392,92522.07382936562,84220.84104779782,73109.17450176721,65351.419319931265,56545.69405014088 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population,people,72773926.63824563,92291172.3659326,101682839.87855567,108318271.13638096,111565941.87209736,111528831.09764121,109671938.50017631,106948665.14834683,103944804.51216553,99841613.35590295 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545488649.155505,1825900501.254667,1973778410.7054176,2077764495.778437,2133040886.0093503,2137467165.2449722,2102310131.5174851,2030089644.4143097,1925666272.0506122,1798092442.0029333 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,146809690.5515626,169020573.0299353,171671594.10062215,172218027.0131845,170129710.78555292,164901308.14923835,157883071.80907878,150614220.66870967,143432185.57389942,136048387.27499485 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,832420979.343543,915772385.1087261,1055828167.398916,1171534950.2542732,1264708004.9028988,1319615787.8768117,1338186853.9788907,1325194726.282163,1277440903.9930649,1199303144.0344803 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|Low,people,256411927.61036992,337306072.58422244,352494472.55171883,358068074.7752068,355015553.51162064,344746374.0163861,329564282.63581634,311138758.68200386,290161813.03635937,267700327.61962435 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,328615069.2240337,409557996.12600166,433985762.2151218,447606758.18366367,451117369.26108897,444518430.88888466,430563133.924598,410999288.2450131,387039946.5501403,360463577.5581498 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,61269010.65299237,69266609.21319836,72090036.10340327,72975710.0934733,72929400.49476199,71519235.49447972,69426717.30061093,67135780.77212389,64832174.51209038,63045218.897952765 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|Low,people,4756257.01791385,6934455.278566897,7526155.778946292,8008962.400787339,8427994.161545364,8744424.326907761,8954394.259392664,9006216.858307032,8965200.58784363,8816184.791482951 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199413631.3449214,495795230.5193256,553738296.7749332,598569528.410053,632256680.607961,648823532.4292988,649701477.484489,638157131.8555052,616420693.458728,588233303.6808671 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69168550.04107049,82723236.31502852,87604003.86270325,91404907.85199901,94002668.19938897,95814216.50467694,97661128.11891897,99470271.48253794,100499734.04787256,100402636.7475985 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,854009921.0210507,960955388.9340256,969708688.8637136,948800525.0595129,911309963.426636,852195234.6929691,780857065.7610861,710032990.6497781,639041781.232376,573139252.5923549 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|Low,people,4298363685.962963,5105627045.661675,5354945970.201098,5461095942.317839,5421186979.860956,5246247557.738267,5011459451.119149,4773066740.529141,4545524123.462265,4292694839.0069585 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.00484127831779754,0.005444926699712725,0.006050297846987131,0.006585228882359397,0.007074863352606286,0.007529625556482706,0.00801096867986414,0.008525824837083834,0.009105935214278486,0.009718639267638756 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.320521332532558,6.135196664770201,5.939973130329444,5.76448532493686,5.608336383304186,5.470027573546537,5.341159492740185,5.2075246036499445,5.065822668765688,4.918531057366081 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.5271838373076732,0.5249760452258525,0.5192100794330531,0.5125797403458151,0.5050525670624166,0.49824345247710616,0.4923909246396753,0.48654677029532634,0.48171607068646977,0.4762387937547858 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.162057261969414,4.569710295576977,4.781619899575363,4.951602346674495,5.066832542709297,5.136571398564109,5.1446866290724556,5.103312522259804,5.054205023122801,4.9799557619897055 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.00856673809023568,0.008212409046847183,0.007979897866163115,0.007711485750171464,0.007311365878789662,0.006866072715910629,0.006826651318429286,0.006518898063003816,0.006471014822206542,0.006234182553206366 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|%,%,1.1390459606089116,1.2381164582825115,1.3171050270135425,1.3883804825262014,1.4491773207380043,1.5014886420893323,1.546956259401825,1.5824099929072404,1.6117943991688182,1.6351178975308018 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.99106540483113,99.04876547400791,99.1094618035959,99.16248296154099,99.21349283264163,99.25896484729684,99.29246989135473,99.31454680636179,99.32753365216219,99.33979679166262 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,26.731536394576764,27.38393025140172,27.67453585906287,27.86264394203566,27.830645626199235,27.59662854366407,27.24497877788574,26.801743598210702,26.351087771668425,25.91220169188301 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.68357364392438,85.3794980571547,85.11445100498688,84.88954328645357,84.73911044684502,84.61987354859103,84.51921747768043,84.4360479313572,84.3627710171626,84.3085695421895 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,51.69853872232743,51.035384236602376,50.4393042603377,49.85466574279587,49.282718475520554,48.72530904910745,48.189810440543894,47.669569947490906,47.1627227356613,46.72177064641146 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,61.96448046971121,62.10750372683266,62.18524132679024,62.21701598348015,62.21374048244185,62.20646356278168,62.24359132103139,62.33325268594798,62.452168762574324,62.59370730901821 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,22.413745882489515,23.887541733063873,24.895289306462722,25.449351520729408,25.687542969579763,25.689103743307264,25.655977575035514,25.667331688386458,25.705846054818416,25.845375498838298 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.9419218341123585,4.408412737764276,4.880784968418417,5.361827944558704,5.853387516014086,6.320152768335259,6.783703963066777,7.205982324171011,7.566834448155582,7.860918156220839 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.03788091018177,99.07647576895928,99.11789860511246,99.15766828962424,99.19111743444691,99.22436102613639,99.25848526495157,99.29476559998878,99.33899138189494,99.38317388449752 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.425735021236683,22.49917557428953,22.56584723998383,22.634126084132276,22.68714570728885,22.734194250449267,22.794347486995157,22.86954176721457,22.957519806423633,23.049051581136847 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.0206449521897,62.374345813586565,62.68231417020746,62.93618256441273,63.128185489864045,63.24149694640031,63.293584475812196,63.31124265811211,63.27710830761991,63.188803127973856 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|Low|%,%,67.27730685829289,68.49366752024744,69.36299443604761,69.99815395844628,70.41809615788763,70.62910140819638,70.68816939562656,70.62218585477366,70.48404543033946,70.30197053084171 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Absolute,days/yr,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.25386492280545,126.36182797327538,126.4895368648325,126.64002162652916,126.80137548550844,126.94986167899263,127.05339528906862,127.10562462917444,127.10935800589442,127.07870101464923 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.17842964480953,35.427152858479666,35.51076713016076,35.54320731925302,35.47289605797532,35.30819013477259,35.08936561835161,34.82517962920659,34.55848014740885,34.289086605340586 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.50560046888981,117.161075284369,116.76478323767589,116.4842564017536,116.26439273553721,116.07535525201142,115.92144050586481,115.76839547106152,115.6143403511153,115.4838515291979 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.49987919243936,54.846478505849404,54.26615242026294,53.69686760763886,53.148531806041476,52.64471914099996,52.200669202725805,51.79751032551948,51.423832684631996,51.123401095849836 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.63583044591374,62.79526761294032,62.84714566567537,62.84342501101359,62.79461350180591,62.7438778048737,62.753580750859626,62.82852130486125,62.94136785377621,63.06841415213556 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.445987838544006,44.5718776320808,45.3766117603226,45.831071742181116,46.05032651420911,46.08583082397024,46.085909541942016,46.123829216720345,46.18308265724188,46.31704433609267 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.198822491750786,22.739070759953307,23.27062192392408,23.791539600449138,24.303736096758488,24.783354682278972,25.249620635330707,25.673358800764614,26.033933503407173,26.330732260340902 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,154.37717641276845,156.25013521517846,157.57271481103916,158.68060636995295,159.52669569449964,160.23213222066673,160.78856574517204,161.2388018554871,161.7471430740713,162.18368543592814 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.75334584232751,38.8494946715691,38.93909795639712,39.02950940527834,39.10630117793915,39.175253398389124,39.251598723417146,39.337723020955146,39.43293629601115,39.52864753326529 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.587616268230875,51.67957742627685,51.7529969165213,51.81142170351483,51.848948648702226,51.866707166955386,51.87047174402271,51.8652000321698,51.8430342679873,51.79967516523492 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.38340205500442,83.41971136983699,85.04297275869877,86.44459886922785,87.60005679014199,88.50092083713831,89.18947041278082,89.66332212058157,90.01199541735073,90.29218368421233 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Difference,days/yr,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4276277099148822,1.3891198794860606,1.3543208692436148,1.3188651391537554,1.2846249754414254,1.2526842520735473,1.222382637809164,1.1939293498438877,1.1659890042202923,1.1375391082334796 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,7.121295872590979,7.206744377032944,7.252620947459922,7.288392897449269,7.297018689019403,7.282781569673101,7.258274458428494,7.227524155305133,7.2000704474004555,7.174947744421217 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.236625524432412,-1.3791541890632046,-1.5261504295548456,-1.666222189214485,-1.7961031258318425,-1.9164707622647839,-2.027820013542693,-2.1308723725504355,-2.225635188798991,-2.315731628177431 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,5.324669450193211,5.361960747800869,5.40024367913595,5.440148857366513,5.481468696342774,5.51715634446766,5.544007140565443,5.5678426073282505,5.596390328270397,5.6336526517652015 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,8.91801588541564,8.946249798497414,8.96986990824302,8.985427095652673,8.997107825924203,9.003829510185998,9.004199961927494,8.999107968004784,8.991751843137122,8.981769390648559 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,2.4615030084552467,2.4332056930545094,2.4071383413092122,2.3780233157977198,2.3459872109857165,2.3095342063142072,2.27715475661005,2.2494586699683383,2.2233525699007584,2.2041741822705703 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,6.8904172718525265,6.816832098893345,6.732713310668365,6.642496247358099,6.5460949684593555,6.446823431480738,6.341799955730644,6.2398528333310885,6.1500739261701165,6.074983287234564 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.964143704136717,0.7285173191506482,0.5439130134683984,0.38581163604070606,0.2591772112033805,0.15127283437389394,0.05670541820843983,-0.031403385651179935,-0.1313427948990358,-0.23018816584397492 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8435096742187556,2.831595217267728,2.8202553034446955,2.809804457974445,2.7984857562158596,2.788520006221718,2.7817327068175515,2.7773790936812666,2.774842848900257,2.7731111188947906 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.6297969888921214,-0.6965003569852989,-0.7547485868980518,-0.8027414377252781,-0.8392858666471088,-0.8662600660618623,-0.8868193673797538,-0.9022579490517157,-0.9116393639294971,-0.9147844115777984 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.1939307216324315,2.08822291018957,1.9866748915291874,1.8928729491669574,1.8096127967300095,1.7340075194808446,1.6617844988917811,1.592367327457243,1.5218129970022412,1.4486539257978674 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Risk score,risk score,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area,km2,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|%,%,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|Low,km2,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|Low|%,%,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.259649743156618,2.259571472805408,2.2598010240360678,2.2601809096293333,2.260668055980698,2.261041264185744,2.260914375553888,2.2602382981604676,2.2590283987298854,2.2574212289918445 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.9566943381475315,0.9646039447260247,0.9678890016822107,0.9699163018850724,0.9690084443529327,0.9654499653394314,0.9604310826713427,0.9543024831748589,0.9482567967671655,0.9422865375032663 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9373597311361714,1.9299261908922818,1.9225074867016891,1.9166139812567915,1.9119634199469118,1.9079284182336536,1.904497773089557,1.9014339624197447,1.8986895637435632,1.896468601696473 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.217111130966457,1.2061189272788362,1.1964870178121279,1.1871022249413326,1.178102521428811,1.1697596276887503,1.162263654894331,1.1553292170938942,1.148818845885635,1.1436037232722138 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.4823514473201487,1.4860529929424198,1.4880097809435255,1.4888205886630204,1.4887721597205037,1.4885145714712755,1.4890651773727095,1.4905918907110836,1.4926082444797335,1.4948031884949418 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9625732392457721,0.981214256294654,0.9942932692687682,1.0012223467258552,1.0039211760437965,1.003331693060811,1.0023053566436617,1.0020496290729246,1.0022131798370983,1.0039099977431523 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6754149062704361,0.6841476841044395,0.6923581220292736,0.7001003815762278,0.707443974393136,0.7140135687818794,0.7201179239823468,0.72545355837504,0.729897703206955,0.7334924480160653 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.462952920711712,2.472163880172582,2.4784477563286234,2.4836094417400623,2.4874952821455363,2.490718466938963,2.493140268620803,2.4949452381575905,2.496940193717143,2.498474789671081 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8473392196370971,0.8484190558670377,0.8494148218676881,0.8504557350840846,0.8512316267956037,0.8519286268303299,0.8528889394696091,0.854133862115308,0.8556183229759015,0.8571630749203636 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1458637814718238,1.1470580940406092,1.1479658603730793,1.1486706883741038,1.1491024249766668,1.1492044919229571,1.1490606467907356,1.1487799591525685,1.1481928357342612,1.1472338495292995 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5659560343283536,1.5913764471567033,1.6106765328792414,1.6265236855070748,1.6388509892585352,1.647491911972613,1.65308388369493,1.6557514560623303,1.6566476219356576,1.6565478507108424 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,209799.31164251268,269531.0174429343,313764.6583550832,351123.73924998485,380088.97133392515,398753.2584539559,411205.9074189652,416590.5112128797,415861.16057190625,408327.4633078044 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,91172603.2008582,96984696.42220199,107271992.59971003,114330640.64034021,118788902.7137347,119656954.87969978,117414258.8505901,112465099.95257626,104845065.38909982,95189195.6799719 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,3604639.482748991,4436668.396885314,4621909.578382797,4685476.486712878,4639312.646885579,4500515.176237165,4302921.152945543,4058092.2561824988,3784475.465554197,3487685.745511829 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8336120.698464006,22417104.522362772,26062530.918243136,29065371.655476198,31346723.57860053,32573655.417240277,32670445.63062069,31868824.40500281,30527749.63983026,28755903.467110686 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,64674.11991506815,67685.5634096693,64870.43313406915,60472.18390228671,53388.386259625615,46440.99976217338,42066.85820920799,35625.93938410736,31799.394338909937,26634.474205178252 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population,people,103387836.81362876,129618962.92956318,140991579.74472743,148274144.6782906,150914342.21321106,149292644.45648205,145555425.5631024,140960784.5496172,136333297.7666514,130598140.97951292 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545211268.2558289,1825575953.080096,1973440632.31616,2077427334.2175496,2132712592.8187044,2137153534.218293,2102012341.177213,2029807936.9606652,1925400999.8267303,1797844015.8806522 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,179520916.48178837,204615848.54623908,206390366.82176727,205930283.2588442,202586547.44437215,195737404.39347237,186846528.28017586,177771451.1712121,168871600.09531525,159750264.89754376 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,834927611.8233514,918761833.073762,1059615070.4407173,1176182504.1347651,1270189506.4561043,1325786797.5461059,1344862085.53057,1332169321.6917043,1284474781.5699766,1206155016.5245674 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|Low,people,260016911.3388801,342153851.57992905,357686375.16582227,363467888.3600325,360492060.352207,350200647.7359236,334916269.6996446,316322842.5991183,295122178.89067423,272395541.7782769 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,350600866.5579649,437168739.67444664,463429401.48522484,478142608.16823024,482063150.4958838,475154993.39867204,460291549.3859594,439347478.0746614,413680456.1065555,385178561.2951585 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,84136238.70265017,92752212.27150531,94955778.61395419,95206223.96624172,94652867.4658915,92624965.38764371,89787698.95308986,86681375.43963434,83554826.75234093,81028807.13027671 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|Low,people,15940088.109850196,22078768.72332293,22850235.7334969,23237692.87130975,23409879.326568235,23371867.27008402,23080144.065041333,22505935.40764834,21850855.65669871,21077688.033574544 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200668122.37812382,498821845.0416261,556987683.5895565,601936907.5347165,635681258.416368,652199129.820163,652936568.946836,641181498.7277374,619159887.8790843,590672981.1090022 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,72900399.43074448,87172681.24380001,92304635.17144701,96300277.90987678,99028903.1318376,100931060.16313185,102872129.0757471,104774828.4889236,105856605.13859962,105752093.15615314 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,830729652.009148,934153756.9626317,942167139.4251604,921489501.4235121,884834506.0551007,827344399.6760758,758091939.6461668,689364794.4476161,620535713.0673118,556690444.5790626 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|Low,people,4374652075.08833,5189820389.47519,5439125943.95578,5545010079.799005,5504130892.708244,5327223362.3722515,5089836549.063164,4848780620.51674,4618703532.469081,4362886084.565909 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.01343798765008131,0.014621122299014262,0.01575508489397628,0.016757578580976026,0.0176789646558323,0.0185171666293597,0.019421325887857104,0.0203801334284793,0.021450478736041126,0.02255899990562676 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,9.384667919866292,9.042099144286844,8.647616193862785,8.284410008851742,7.959201576882199,7.672957904982929,7.41582630950747,7.16582128035022,6.924015205753961,6.691606674733497 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.6796998486909743,0.6727994608839268,0.6622672620763753,0.6512778463108447,0.6398090889362381,0.6298077062058298,0.6220441199628274,0.6154611388930591,0.6106571235328397,0.6056289576307753 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.140096759781539,4.479687532882651,4.665133894463143,4.814903439845654,4.9178073321111855,4.981477988259326,4.991244530921949,4.958665023520346,4.919685355408644,4.858366462073271 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.004696819709134165,0.004393380574498245,0.004193247845218226,0.004011262963734486,0.003698315706029782,0.00344639141957349,0.0034097946480145785,0.003176644639013604,0.0031487357772123966,0.0029364600999770302 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|%,%,1.6182100284907222,1.7388810564924848,1.8262739186882653,1.9005189648513714,1.9602903757152506,2.0098947311896436,2.0531038271414856,2.085652530304692,2.1140185581356814,2.13882118409525 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.97329870638472,99.03115986186967,99.09250091569348,99.14639173580068,99.19822302964312,99.24440055758124,99.27840520225291,99.300765322294,99.31385068116818,99.32607191304757 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,32.687691762658126,33.150911894785764,33.271419406907214,33.31684991887903,33.140092841669,32.75712304391787,32.24303682076125,31.634362493916292,31.024768523526607,30.426535494241115 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.94158879973087,85.65821094572085,85.41972811670297,85.22630551981973,85.1063869752855,85.01558725759641,84.94082178918055,84.88044094064273,84.82729145135951,84.79024222953144 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,52.42538630940592,51.76886721793306,51.18222642234234,50.6064945717522,50.04295881480768,49.496198005898215,48.97239294621892,48.46382345659203,47.96897755260779,47.54122694296127 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.11017747845257,66.29454042018558,66.4041811468545,66.46147706862618,66.48148305666689,66.49378232624225,66.5412266660093,66.63261507021393,66.75084029136103,66.88540986787635 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,30.779153338549587,31.986874579785372,32.79165482070297,33.201960728777856,33.33908661978726,33.27010319128878,33.18018308254714,33.139997614185255,33.12934557257759,33.21774407500634 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,13.210930595473428,14.036044846216589,14.818599344549247,15.557135215444696,16.258565534697208,16.89233803232201,17.485143073518454,18.00726934382681,18.442622190626544,18.793841607579832 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66091822569152,99.68129461739109,99.69953147157015,99.71550066564863,99.7283797678879,99.74058998123597,99.75272806625999,99.7653453125331,99.78042499015089,99.79536218554274 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,23.635670251949197,23.70934150976291,23.776679203906852,23.846341332988498,23.90020621350402,23.94828670900227,24.010607926055087,24.089130154840557,24.181209354768544,24.277105949885964 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,60.32996517993083,60.634687261063505,60.902018629425406,61.12457778113279,61.29417988150352,61.39731389672324,61.44832175612001,61.468329438174166,61.4446608620543,61.3753162894079 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|Low|%,%,68.47136062849228,69.6231489428047,70.45338359845282,71.0737319700283,71.495489808446,71.71926123274908,71.79370235069554,71.74244668391042,71.61878383429563,71.45150085197443 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Absolute,days/yr,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.0809886232155,126.17443317763995,126.28584403962428,126.41835499240861,126.56097340573257,126.69096283701323,126.77675645824954,126.81259174879838,126.8015340659404,126.75672487000391 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.9530805877064,36.207392126062764,36.2913793926437,36.32339312577089,36.2490627877344,36.076865823418615,35.84831684278608,35.57297626279498,35.295376623095656,35.015510422113984 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.8765855711918,117.49436817373731,117.06786054469359,116.76646288319519,116.53179214541186,116.33121367606982,116.1682257445058,116.00775984859044,115.84797766473773,115.71332655017375 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,56.66414999605971,55.99031273439972,55.39013771969995,54.801684002557906,54.23497464110166,53.712837028830556,53.25123994697174,52.831419939462116,52.4415093912444,52.12586530100115 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,63.719962450091344,63.886179943402965,63.94422565569441,63.94483373646423,63.89900670441818,63.850140568534265,63.86042031549855,63.93480742847984,64.04612438066854,64.17006556084664 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.99612809462119,45.12572047234716,45.93633811319048,46.39595618630268,46.619865208598284,46.658623990267564,46.66062831108877,46.699756560222625,46.75941401708593,46.89408949095636 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.666968386635755,23.220998314999168,23.76571434638838,24.2991965613233,24.823474077080892,25.314156098804375,25.790801332362598,26.22364373261784,26.591738183054385,26.894561620945655 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.71439133238286,154.47910877759148,155.73038628398686,156.7774638083703,157.57556459106277,158.24505543456303,158.77718032436826,159.21142897242513,159.7027651382953,160.12305639864047 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.774706202296414,38.871061502849905,38.960871347481756,39.05153394457625,39.12856712256387,39.197760201009864,39.27434740866851,39.36071223994862,39.456182843638864,39.552134615825274 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,50.87826529848535,50.96672976952047,51.03812791691727,51.09563177786199,51.133544358049,51.15214574969668,51.15684669766902,51.152706733198954,51.13234142174011,51.091791216157134 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.47265522414233,83.49751583023483,85.11156517023744,86.50595825973451,87.6560800331002,88.55305734095018,89.23915176126715,89.71177189886967,90.06028057387819,90.34152114074752 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Difference,days/yr,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Difference,days/yr,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4987022014656635,1.4467635008641377,1.3980230312757171,1.3480386000837126,1.2990234988720177,1.252549445381336,1.2079503981953892,1.1657206346274411,1.1245184199304281,1.082488570785598 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.166212923945377,9.256689963673281,9.301150125923641,9.335373382123764,9.336666773842914,9.309907080623715,9.269167703284396,9.220895548829457,9.177084850744668,9.136853912578598 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.1694513546897718,-1.3569967450597549,-1.5384944655560047,-1.7029331446409515,-1.8497351159782804,-1.9832624750787002,-2.1052329852690383,-2.2170638182855376,-2.318916346095729,-2.4144806643482704 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,7.473413546747995,7.4909594979504055,7.509616058030452,7.532668631492212,7.558704078227973,7.577204680648228,7.585174440786222,7.589917045073356,7.598963879020703,7.615244169015724 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,11.289632643231746,11.319893873268187,11.346195258802494,11.362434455187497,11.373832364230235,11.378355353554978,11.372802772127521,11.358286042227682,11.340951857503187,11.318683408561471 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,3.9653970745460825,3.9081483446081897,3.8685835390978935,3.833177171185614,3.8002051726515376,3.764870370708943,3.7318698091003926,3.7019890830945266,3.6720775050184455,3.6485391848530755 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,9.082413428804736,9.016431350278399,8.937537163832092,8.850613850805033,8.755808789489098,8.656405661347096,8.548969162524202,8.44301712399067,8.348596375502053,8.268956822878632 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.060538941951330215,-0.23382612714261936,-0.4590953277927602,-0.6523034795960825,-0.8073965538138033,-0.9372025572393257,-1.0478574180983924,-1.148122206906323,-1.2611800988691586,-1.3737098672736066 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.9265263112882565,2.9152425678125202,2.9045571335500577,2.8949210583945186,2.8843632972519084,2.8751517541404787,2.8692317834178898,2.8658258559425076,2.864376814940317,2.863724732829639 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-1.2713307054141751,-1.3443261515885108,-1.4072394894449434,-1.4583440957765557,-1.4961714432109876,-1.5234986419533116,-1.5437758870701765,-1.5582604137759226,-1.5653732496343498,-1.5643436346439141 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.70396443330886,2.5701682706250795,2.4450744373272073,2.332490702173101,2.2346984319313057,2.1469940659250653,2.0636398045380324,1.9839176623425305,1.903576126119214,1.8210036954620858 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Risk score,risk score,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area,km2,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|%,%,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|Low,km2,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|Low|%,%,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.277361708834687,2.27697542108056,2.2768886237719603,2.276925128619568,2.2770529792279732,2.2770648707154377,2.276574238220658,2.275540613594873,2.2739806779702993,2.2720117821361554 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0430916715237453,1.0512749628147378,1.0545488300254675,1.0565802913433213,1.0554155444400146,1.0513662849946268,1.0456881136211789,1.038842299169817,1.032135549476699,1.0255684062112875 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.958325578292446,1.9493212427620397,1.9405683399665092,1.9335701196467499,1.928025280604164,1.9232306603253781,1.919132774584565,1.9154735487368157,1.9121996232848124,1.9095030665351922 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2864070652279564,1.274772548824257,1.2644919254331894,1.254527514703078,1.244997611660029,1.2360780297297578,1.2279827057651096,1.2204543461075508,1.2133278833952683,1.207459838457553 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5786038969758294,1.5826121648431883,1.5848296573823248,1.5857692429165806,1.5857768153592542,1.5854712261405421,1.5858125875829152,1.5869906642603526,1.5886334883536277,1.590363364647838 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,1.031551099241016,1.0486062670651763,1.0608628080749327,1.0673608593772128,1.0698920191177586,1.0692687286796536,1.0681641675175255,1.0677636797817707,1.0677314976343364,1.0692111855808857 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.7656542335076285,0.7743336435643338,0.7823700947393485,0.7898542052483603,0.7968633825757626,0.8030270041894008,0.8086315346016488,0.813426648102893,0.817357146917234,0.8205002024725538 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4488930187212112,2.457372255174135,2.463193481218683,2.4679421669182866,2.47148939420002,2.4744753676470794,2.476742488769619,2.4784482373179877,2.480329175250607,2.4817055192057182 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8512487722878618,0.8523750634744629,0.8534145379276221,0.8544988160738524,0.8553216397335316,0.8560612215186109,0.857053255231642,0.8583194620273876,0.8598187541933879,0.8613714725583971 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.149480959176908,1.1504909263297394,1.1512397789484443,1.1518177848993547,1.1521635397757826,1.1522029159892855,1.152013753561476,1.1517127204548387,1.151138164112988,1.1502405178299693 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5994484946172671,1.6239074967144065,1.6423692863199735,1.6575046780386287,1.6692307862109208,1.6773296286556987,1.6823914778014373,1.6845455948408552,1.6849420805019448,1.6843445438570033 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,402211.8189434558,489279.8237082622,538476.5036048372,571192.8498419602,588941.8045870386,592196.2752263366,587273.528512434,574491.1635261227,556185.8949708908,533360.4638946382 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,518084.9957356751,615261.5409596155,635149.9143364809,638307.3623916403,624644.5490075042,595917.3860381158,561260.3368767616,526279.2822003243,492787.6206664905,457492.6183744408 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,100309052.42972234,106858651.11796759,118299730.34026892,126172706.95528525,131121082.67403257,132108281.90033461,129718357.79409039,124399433.23302495,116171693.52009894,105710034.0483822 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4891790.920032736,6029685.744234432,6299715.986692024,6407082.146286802,6366027.623901278,6196589.802479748,5942141.9942631405,5616479.98946514,5242065.153619342,4829533.564796533 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population,people,170.0,283.4453323647862,277.38649990733046,331.87047717348827,328.77509142476333,371.00864793170456,364.8753867886337,361.89444521509523,365.61742886028895,372.9627391417219 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,7172140.214848682,19154540.55691769,22254936.191746786,24823289.1364902,26789691.081396267,27869745.39101447,27999357.123666376,27377564.072119318,26295781.75063699,24840923.060436636 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,28596.360035419464,29526.771484896133,27868.217312300163,25447.244314762727,22467.900648248065,19717.46143602497,17132.439704555563,14817.138939655159,12629.55956700605,10989.35944743087 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population,people,113322046.73931831,141789031.36518106,154056364.06986254,161849766.89615673,164555832.14705393,162675286.70005322,158622810.93546534,153763388.8701277,148949427.25610653,143004696.7518634 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544382961.1986578,1824594986.939019,1972392022.797097,2076347290.6406546,2131632783.6463447,2136099174.5742698,2100993973.770191,2028832694.0020416,1924474561.6207223,1796969296.4368834 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,219360065.2728987,249515776.3852929,251844754.2400201,251636850.09169838,248189204.3480804,240731394.055164,230902570.64548478,221014598.10180333,211335491.97285116,201294187.8690065 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,821760091.1065568,903668240.8106875,1041605394.865748,1155581531.1782427,1247388462.7386143,1301503968.2605119,1319795792.264694,1306961948.0146384,1259845306.869464,1182772146.1541412 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|Low,people,282376226.257987,371744330.8664238,388644478.3746695,394937253.9802741,391692521.2346609,380421886.3166906,363686817.9515231,343390722.66279244,320298247.6184883,295523782.5590903 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,382535241.2818601,476806003.2574018,505317705.18082273,521233063.535564,525412581.06725097,517710357.23798317,501158162.30178916,477850760.9373675,449407557.4124552,417882117.37042 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,110335929.70549457,119192417.10362023,120522732.20794617,119969489.60006472,118809026.07286005,116092214.90176582,112406280.32006535,108355276.43840486,104271134.98457265,100895439.49335085 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|Low,people,23144207.457021374,31010827.68012692,31233603.438037958,31072241.644567437,30750727.831143267,30279258.7531759,29566069.523487102,28571907.413129434,27543004.898902938,26420882.96443337 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200668122.37812382,498821845.0416261,556987683.5895565,601936907.5347165,635681258.416368,652199129.820163,652936568.946836,641181498.7277374,619159887.8790843,590672981.1090022 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69320193.73868856,82943659.26201575,87872436.48542999,91716174.98228964,94360864.16101049,96211802.47017902,98080217.6052686,99893562.84445666,100909361.14865215,100784383.72049601 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,849518666.7103485,953538464.2476385,960007388.0367337,937451925.9524137,898970421.472245,839703148.7980043,768807543.4178917,698686999.6320785,628633769.4364433,563757469.6699133 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|Low,people,4503401705.107637,5326827127.780914,5569758855.73043,5667629196.587499,5617597584.548349,5430665170.040487,5183385625.246557,4933589699.267606,4695792152.359896,4432417945.55411 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.025762322160944946,0.02654173240893606,0.02703855517757133,0.02726050106029309,0.027393274030277096,0.02750020689026784,0.027737029981261603,0.028104832565813656,0.028688550036632267,0.029466738673891733 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0943344262014381,0.09968182465588996,0.10239014306515343,0.10326985549855727,0.10218239368946914,0.09972820064181587,0.09685348651923721,0.09365119920255874,0.0905340024835913,0.08713547611486466 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,10.325109883453894,9.962669920903418,9.536605399300429,9.142487355008075,8.78549346058565,8.471394637612132,8.192947091542148,7.9262287260724245,7.672030814480093,7.431200194217968 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.922408347377486,0.9143728931529813,0.9026779056601777,0.8905797891001216,0.8779409029321354,0.867158504520627,0.859015156479293,0.8518103957888032,0.8458515472532341,0.8386378797041898 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0001408937131183517,0.00018019353553535184,0.00017988783370352247,0.00022218014137610507,0.00022833997969562322,0.0002681515953070261,0.00027642367933344267,0.00028955609402523975,0.00030858947643596903,0.00033255082975862415 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,3.5620111006388298,3.8277180911263935,3.9835830784399904,4.11216968660543,4.202880690057944,4.262110635892906,4.277616525127737,4.259842398588576,4.237684530105114,4.1969228204497835 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0020767495189766305,0.0019165437611007568,0.0018014114682009634,0.001687975893409908,0.0015563944833404905,0.0014632348626619548,0.0013886965582620794,0.0013211942138758744,0.0012505630024030906,0.0012115807240306812 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|%,%,1.773698707065761,1.9021465307766217,1.9955029954138472,2.074525886561774,2.1374854721889087,2.190062362573453,2.237423297301669,2.275079569753126,2.3096474493123678,2.3420048137284235 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.92024429015429,98.97794585312235,99.03984701872471,99.09484604666739,99.14799818853238,99.19543856717308,99.23030753408104,99.25305520627607,99.26606419634498,99.2777460040098 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,39.941720102595866,40.42539020352903,40.59895126299787,40.71157984096307,40.59999727599798,40.286974888800884,39.84553609777022,39.32946413350696,38.826153808944774,38.339121101982826 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,84.58621662742554,84.25100173931128,83.96789750953346,83.73355689532825,83.57865080662887,83.45845982518287,83.35764714836067,83.27432904643709,83.20074988067904,83.14647404420899 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,56.93353816849835,56.24599230661467,55.612097834992284,54.988048847765,54.374159278468866,53.76756762913518,53.17930291668023,52.610893424639194,52.06108028852178,51.577801611452365 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,72.13180315606931,72.30534113457932,72.40630034262077,72.45101923104541,72.45981687264504,72.4490330112982,72.44903565518567,72.47212605858536,72.51571024869135,72.56431044031699 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,40.363659601648855,41.10514243686933,41.62084593796598,41.83783492731784,41.847484577083726,41.69934048906291,41.53866291413112,41.42635698200071,41.343326273511906,41.36206623450474 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,19.181607798830505,19.714385955624365,20.255294555072393,20.80219699040465,21.3569116144424,21.88475008505187,22.398775080559265,22.86072643220406,23.24692640534278,23.55808135954063 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66091822569152,99.68129461739109,99.69953147157015,99.71550066564863,99.7283797678879,99.74058998123597,99.75272806625999,99.7653453125331,99.78042499015089,99.79536218554274 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.474900738580818,22.559126499879312,22.63499259055677,22.711203558836935,22.77359478505155,22.828530945991055,22.892164003801796,22.966862095558106,23.051092415032883,23.136687782279424 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.69447720853981,61.8929230226959,62.05521863803377,62.18340314830741,62.273401799770575,62.314457953668544,62.316891693274826,62.29955897583564,62.24652015357442,62.1544582782813 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|Low|%,%,70.48652942283779,71.46113943792314,72.14548095723335,72.64541499956447,72.96935677639897,73.11187601945896,73.11324070245838,72.99727986503031,72.81413944983413,72.5902323540902 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Absolute,days/yr,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,117.62464248241734,117.7333931167437,117.85673989368946,117.99441273913234,118.13788426646452,118.26916898462275,118.36487647474776,118.42065418040158,118.43950364016318,118.43348459436378 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.97974823335955,36.229805292119266,36.31444227734579,36.35169142382496,36.28698587912084,36.12687073126806,35.91099251017173,35.64845150900239,35.38287514070154,35.11587267982301 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,114.58698469967472,114.16306267673727,113.68995769364723,113.3382521304216,113.05474549439865,112.80922065762628,112.60357435792137,112.40229320506037,112.20382535226355,112.03070387899493 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.95992218985979,55.3098787709942,54.728932186530514,54.158927260338785,53.60987245509595,53.10364229964631,52.65724152191665,52.25177451202792,51.872601012430124,51.56158842428686 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.365781338237234,62.52136196649861,62.573565702937415,62.57029571933107,62.52244572267221,62.47116642682833,62.47501231892715,62.539351709349816,62.63826456911588,62.74746325804708 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.11733135341188,44.24214652044291,45.047470645313325,45.50388055903378,45.72589425008344,45.76461288522068,45.76730061695679,45.806668066095135,45.86666824738714,46.00107037475315 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.92603391034251,23.447221436361183,23.959122610969118,24.46047001347415,24.952985294688375,25.413573083461934,25.86054623431387,26.26622899170422,26.611283913517255,26.895247996317106 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,149.7364823425828,151.43497866124136,152.61523249614336,153.59949399624475,154.3465662675214,154.9703837279829,155.46072417358835,155.85486250301872,156.30323935806888,156.68505429505183 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.29334786109677,38.38808997813891,38.47634361447848,38.56521205512118,38.641087485248065,38.709184547556276,38.78385430588231,38.867430972837845,38.959427774251544,39.05162967197417 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.834645365477776,51.92998842905207,52.00852565502111,52.0729318733845,52.11753361860197,52.14167628827399,52.15106900170529,52.15070741663661,52.13385297683155,52.09684610377373 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,78.7975717088111,80.69822307907154,82.20827160052728,83.50866551034972,84.57650744689,85.40709421605135,86.04536484397511,86.48952514399201,86.82221675014063,87.09327500672212 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Difference,days/yr,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-5.104954561366007,-5.142236383365822,-5.1786724206681845,-5.220386040491415,-5.263864503291419,-5.304482256832594,-5.337188549274921,-5.360632228031577,-5.376130585210035,-5.386090707524569 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.761408793369103,9.852098714994863,9.906539473011208,9.95973201516438,9.988276597998558,9.993562274571604,9.986831259764388,9.973205651466195,9.9618690840749,9.95507293188601 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-4.336362638961469,-4.554399720391808,-4.7707305765574235,-4.973272830255586,-5.157933514868542,-5.327005586085607,-5.48360036718668,-5.629638383266379,-5.764925442935489,-5.894238308363072 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,6.031679212495071,6.071805171271865,6.106433018583568,6.14394753405421,6.183379738951145,6.213962545582484,6.23571167818749,6.254302393322174,6.269849927587052,6.281474074198083 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,9.178025408472323,9.186606836073615,9.196548459965136,9.198774005718084,9.198718009414973,9.191486786145203,9.170287632579974,9.13693502293806,9.098610934313136,9.052426252767862 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,1.8586507703460888,1.8375094723779954,1.8173395841637898,1.79229119237606,1.7630654385353646,1.7287733523867432,1.6973830233727325,1.6696249284428493,1.6430478044329926,1.6245070605079537 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,10.861892476536406,10.655102292773341,10.437899522605525,10.218620201922523,9.99577567416344,9.775768713484549,9.550973800653452,9.33761220522664,9.151972523009773,8.997859046377371 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-1.5936714354214767,-1.9125828075659517,-2.1690733270984137,-2.3903176901752965,-2.5685450510509074,-2.720047317483735,-2.8522675769307324,-2.9747792125164456,-3.112165633890305,-3.247336149490286 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8482129905752815,2.8420222646838296,2.8357852692857026,2.829707776383536,2.8237233556338293,2.818409466277582,2.8136890068272,2.8088970502569635,2.8040752896739085,2.7988727118521646 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,2.1611633519779585,2.094336722501546,2.038767496256638,1.9954864501120795,1.9659000546646181,1.9458366281435915,1.9317841653738272,1.9225608541374282,1.9212300255259347,1.929358885452083 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.000019937178102,0.7260430582218345,0.47984759775725794,0.2552277850642214,0.056883930464176634,-0.11623055244912162,-0.2682575184470852,-0.39824165245298626,-0.5172683291711412,-0.6336900190671056 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Risk score,risk score,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area,km2,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area,km2,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|%,%,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|Low,km2,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|Low|%,%,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.1198858782641934,2.1201872164891915,2.1207268502484977,2.1213670153141653,2.1220659542469322,2.12263670701528,2.122771793299493,2.122433526648675,2.121651755604072,2.1205613749736187 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.071648171291701,1.0799150180859665,1.0837775317399543,1.0867966355408132,1.0870270505437398,1.0846378304573872,1.0807413560537464,1.0757208025521865,1.0707376963139572,1.0659237918010618 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9071955303313033,1.8981166475128988,1.889219625317073,1.8819912136946364,1.8761662529633747,1.8710894556272966,1.8666838517985644,1.8626775833018847,1.8590340698797294,1.855932849107866 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2633965042187463,1.2529940942880675,1.2436767668505684,1.2346014821006073,1.225896482183546,1.2177419427599832,1.2104318750790741,1.2036477233461145,1.1970003608247382,1.191213341774168 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5020121429951576,1.5050897913128438,1.5066282207377224,1.5070200714860416,1.5065949021098588,1.5058596829253552,1.505621519059979,1.5061003371351787,1.50695888318947,1.5077700557668674 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9472134780700541,0.9661201630305507,0.979417642907615,0.9864404962084959,0.9891348822474519,0.9885021016188383,0.9873943135338913,0.9870289060079274,0.9870774324585545,0.9887154637474038 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.8439617444751343,0.8472367154368394,0.850008271949746,0.8524869859008734,0.8546846225997283,0.8563463349343593,0.8575712221294807,0.8583570694192564,0.8588738895666308,0.8592236643035054 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4114939221725407,2.4201622456689447,2.425785057238313,2.4303847945206174,2.433799739283721,2.436571949025788,2.4385519724733062,2.4399110187628077,2.441405991417305,2.4424694034358323 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8650270677222903,0.8663912633792125,0.8676475468938664,0.8689196552916622,0.8699692718723201,0.8709062527003784,0.8719928543151285,0.8732574913260785,0.8746834757656569,0.876122041918246 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.2855085990792672,1.2869218454275986,1.2880993835443435,1.2890983851839577,1.2898509673056973,1.2902191707409036,1.2902814147722594,1.290177807103917,1.2897895384735478,1.2890970741807635 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5741772900823257,1.5952606130237015,1.6108792137203782,1.6234157900456336,1.6328376433870109,1.6390139514903392,1.6425671567205395,1.6436864761951386,1.6433544014008739,1.642174335172015 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,30953.93942117691,36447.15867635533,38934.57890658499,40727.063792672416,41672.57790387077,41483.31180567587,40705.45243804639,39201.28053297153,36844.516693793834,33955.743310230515 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,957436.6714203842,1112092.235116915,1129757.5003967518,1124447.9223805275,1093705.698393141,1038586.3138583697,974226.9257914906,910569.6408410263,850411.1040534138,788835.097378158 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,85998265.32631803,91203080.66565444,100577920.33130978,106955912.85914229,110943229.93818404,111633175.33013685,109482056.53720257,104861112.47404747,97823553.19453202,88932382.68055333 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4250700.210177725,5245333.167217524,5484730.363416468,5580058.88143299,5543944.337796313,5394463.257775407,5166694.247317779,4873542.780006107,4536935.070200222,4167320.289752063 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population,people,653.3399881720543,994.8420280652555,1058.2232588981733,1152.0611887423688,1205.469646941286,1281.1861607163046,1285.6037066234178,1276.1663440423954,1259.6866041322614,1256.9873748830878 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,5836822.934919346,15629493.64523108,18150511.84988916,20233059.240735475,21820165.454949167,22678316.994911708,22752937.299156193,22214889.22908149,21297896.352726713,20081193.462134257 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,21691.0,22705.0705882925,21841.799696446444,19937.28368934904,18083.073288036376,15802.04605200951,13818.238231841919,12315.106119467142,10571.816025434971,9433.964437991488 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population,people,97096523.42224479,120930165.3206576,130870071.78307325,137072431.84558535,139083520.65979892,137291299.08978295,133686916.77473876,129409735.30230276,125203785.41356869,120074034.86449884 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544276570.466969,1824481451.586232,1972284027.5093617,2076249180.9053416,2131546645.5407608,2136025462.7127817,2100931496.992753,2028779971.4782662,1924430147.6309133,1796931803.5865345 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,227849906.98239675,259393654.9992547,262200383.60619637,262462832.4253227,259505861.88531336,252508719.89077875,243105741.38524568,233653157.71041486,224350673.8969128,214585460.41492635 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,791420434.2308854,870171375.8533597,1002829916.534993,1112560187.6279554,1200945918.2342992,1253026599.90044,1270628805.8512588,1258260439.9121735,1212907286.0204277,1138719219.396481 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|Low,people,286232667.15359557,377076611.6785766,394295104.70266664,400709567.5526196,397408799.4615348,385922672.28982514,368936375.1711424,348280469.76957315,324524816.00849634,298746608.39832073 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,354378388.6125759,441772987.8783094,468258389.4312131,483078111.3520476,487007124.9286824,479960293.6218958,464800938.5766757,443452907.41712004,417344636.4933821,388370602.8728097 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,78868956.8883284,87153023.0047111,89363744.76266347,89616350.31584948,89025722.88592535,87001209.63579185,84224880.40958565,81218300.10424778,78215322.90834105,75821558.17756099 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|Low,people,37323778.13873573,48240623.41415163,46962785.69582575,45275544.71930992,43516430.56053152,41733078.745247416,39759116.42421877,37595733.75865294,35596985.27161295,33659142.202135876 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,201298079.19670445,500288945.61300063,558528578.3904004,603510979.2800124,637266222.161635,653750435.2532909,654415584.4273603,642558646.3396441,620403225.0453882,591777535.9904535 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,68551228.78723553,82072658.29990777,86995246.47764745,90839292.67448507,93503874.81396031,95375410.05090693,97247110.28149575,99044474.96812409,100038144.50082661,99892036.50834277 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,1148785607.141444,1288890267.317048,1297158347.7180629,1266283170.2601414,1214016806.5963676,1133823388.7366946,1038023410.9062133,943307614.8051875,848751502.9708852,761216024.9092238 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|Low,people,4738985617.598871,5577818971.847345,5805329549.611194,5880531501.804598,5803223618.24296,5587295990.997534,5312913322.144289,5040150896.250262,4782532085.577589,4500672590.048231 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.00198265024039694,0.0019771318696980636,0.001955024505310182,0.001943722100180274,0.0019383041536153935,0.0019263877617493712,0.0019225255351365737,0.0019177761046529267,0.0019004720729222345,0.0018759639724589055 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.17433285998642836,0.18017603214594133,0.1821239828322992,0.18192109523036082,0.17891369808828847,0.1738099050623882,0.1681167690360819,0.16203552316495265,0.15623590727038889,0.15024400181666744 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,8.852057892808412,8.503066236896041,8.107980764817327,7.750036473455349,7.433518708362491,7.158436013760171,6.9148323486052545,6.68132595413671,6.460311386960514,6.251765458192176 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.8015226775147883,0.795429590712266,0.7858997021482075,0.7756241528248389,0.7645671343706182,0.754907915549293,0.7469139363591926,0.7391345490622855,0.7320728446625079,0.7236460012040847 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0005414793933074159,0.0006324468314247286,0.0006862680400144575,0.0007712801692055757,0.0008372194910308556,0.0009259948920236551,0.0009739525317870171,0.0010210760258775394,0.0010632043194831384,0.0011207880858968202 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,2.898831794113867,3.1232957743478744,3.2489004348193484,3.3517626298256267,3.4232403712994026,3.4681872658703066,3.4760919744046297,3.4565502894525597,3.4322526233906627,3.3927571410310087 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0015752625075473642,0.0014737561606965291,0.0014118616924219554,0.0013224871750915762,0.0012526490991732313,0.0011726714800336603,0.0011200588010067155,0.0010980964013749086,0.001046807841514869,0.001040097880039184 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|%,%,1.5197393888479989,1.6223179763355065,1.6951693091673838,1.7569398686875322,1.8066148185227269,1.8483232022805482,1.8856948781340315,1.9147434709708502,1.9414415278515043,1.9664666548987773 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.91342979049115,98.97178695425383,99.03442424442203,99.09016370419013,99.14399167258746,99.19201556110906,99.2273567451134,99.250475953892,99.26377328429473,99.27567462433666 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,41.48757522829641,42.02575833710904,42.268343556689935,42.46308342230098,42.451231161822776,42.257938551678656,41.95136748309916,41.578491035327794,41.21727822689125,40.87061847471914 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,81.46326527378707,81.12801445224059,80.84205406977323,80.61622590596181,80.46686540404828,80.34986653743668,80.25228469091059,80.1712659335874,80.10094190325457,80.04964297396675 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,57.71108530068536,57.05278181390327,56.42065990564292,55.79174173184174,55.167684316445985,54.54503047357756,53.94690784427425,53.36005159033868,52.74806411666694,52.14028179604073 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.82247649787844,66.992752554207,67.09612039217147,67.1475084451857,67.16330814980788,67.16624203201071,67.19311846950862,67.25525547837742,67.34208678654667,67.43970086610483 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,28.852249103938764,30.05591724260444,30.860523861915134,31.252563329244804,31.35706678672556,31.25009774887191,31.12449683732005,31.051356280766324,31.012241451731303,31.083033357026085 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,30.933445232776695,30.667813143729113,30.455821701226238,30.311002690841466,30.22291265301537,30.16315577816893,30.120862209310374,30.080798318686973,30.044670140338177,30.012048104436634 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.97378343935002,99.97447039896964,99.97534814439327,99.97625781511246,99.97703562208142,99.97783059083926,99.97868543494053,99.97962412020426,99.98079441538097,99.9819789057477 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.225587947844794,22.322230502517538,22.409037898496305,22.49406571381082,22.566764036961697,22.63007701688747,22.69771470552096,22.77164547090828,22.852077227205488,22.93183502554447 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,83.4280990336984,83.66016588822004,83.8487764562026,83.99555720812526,84.09726792238413,84.14115153129536,84.13860273138005,84.11155268647774,84.04229951314322,83.92433308011297 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|Low|%,%,74.1738514666446,74.82827764916159,75.19684484024441,75.37431200047844,75.38053202983944,75.2205630410439,74.94026851123124,74.5739568878582,74.15915076810731,73.7080467307881 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Absolute,days/yr,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.41078077595971,125.50356723946632,125.57011380465511,125.65405739795551,125.75080753320916,125.84103813532741,125.90668891186048,125.9435651950265,125.9481171892117,125.92651555235093 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,32.71806927781255,33.02935651754958,33.238660266370935,33.41173976437387,33.510062376804576,33.51857296372713,33.47761737843654,33.398018872361696,33.30405528261287,33.21547275324287 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.38700939864104,117.01748776733143,116.70095431849076,116.57335467446705,116.52631612108006,116.52346806434089,116.54408371513414,116.55916875809737,116.59186490216568,116.65674032931729 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.54305951219373,53.84111871750325,53.19407545812326,52.55151965524848,51.94793845916965,51.41316456422748,50.96756195832355,50.6228251552829,50.39120220405385,50.27391018022127 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,59.605384626054196,59.70565890490791,59.76342861715151,59.78933459859213,59.78754157734752,59.77793361300068,59.82458079702721,59.9439077714022,60.089731041170154,60.26413223648785 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.20673998854345,43.498268257094416,44.54217316525711,45.23064373293766,45.62767904650276,45.753958110726984,45.78699990790228,45.78438424123906,45.79692208966456,45.8829896301385 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.311351983300835,21.817452065710928,22.35275611020858,22.895465614053656,23.451742967588086,23.983162804413638,24.47761904858167,24.928718068212433,25.328429004568235,25.65078649380044 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.72764761893222,155.84941212964023,157.32417250819358,158.55084073879902,159.51254924517073,160.36794929086125,161.0798085808564,161.655381017267,162.05916594945708,162.23207607867863 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.36841942214812,38.47327559003146,38.579269643129365,38.68936764999631,38.784223182503055,38.86744491696862,38.95076859088096,39.03168351325982,39.114236054275736,39.20603131532131 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,53.5392563205262,53.61763068944718,53.681914293520855,53.73410691273604,53.781267338275285,53.814312707059415,53.838807073770006,53.85633398044272,53.86514277390169,53.87041564483566 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.93391138227082,83.26916356942306,85.3332009659303,87.26405150762915,89.02102681992493,90.49737076638374,91.71750123915682,92.71672166888516,93.52018089932386,94.15617889892336 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Difference,days/yr,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Difference,days/yr,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6693289711389101,0.6401458105608734,0.6126014772185259,0.582895730627354,0.5517033415594944,0.5205265242298153,0.4896452368750841,0.4591214882432996,0.42946735471701647,0.40289819283586453 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,0.3227725769207167,0.39345375957245027,0.4528281241913675,0.5095134484047704,0.5546982099138223,0.5897849961907636,0.6238438459067521,0.6548113771146068,0.6795131006420282,0.6989020656570251 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.4632369931306874,-1.547766512855776,-1.639944294506857,-1.7350327508490602,-1.8238060208536453,-1.8997006358584776,-1.9691933740000023,-2.031607183889199,-2.0853331888966946,-2.134046524826369 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,3.066706301205477,3.0348209155912342,3.0040598663175855,2.9786402375954326,2.9505879387416143,2.9151012107562293,2.874980855894662,2.8326765574252497,2.7921240203082647,2.753071315722804 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,3.3460235922882813,3.3371455883599035,3.3293597223840243,3.3199043005037296,3.3090094426144288,3.296467588579166,3.2834500143104575,3.271322999351306,3.2605730466816936,3.251274684869805 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.5894348430651029,-1.503735902581138,-1.4444899254058652,-1.4129589283126716,-1.4091145678058357,-1.4275495991692917,-1.4489248461527435,-1.4733138128524856,-1.4928639838556779,-1.5011226226599121 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,2.3541607632164694,2.329217694808833,2.301922893468578,2.2737204219771208,2.2441354300901866,2.2142578103136232,2.185624181042136,2.159374640884734,2.1359425628787454,2.117405104773663 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.02630518120643731,-0.14269261251511917,-0.23991320556036083,-0.3212642745850924,-0.38508734926687466,-0.44538670547797393,-0.5001358688812556,-0.5491963437326131,-0.5865064856200931,-0.6068802757707621 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,0.9472901514191427,0.9469970717464488,0.9463448304912304,0.9453372089898465,0.9444323416988897,0.9434185234029896,0.942210871140856,0.9408782576669192,0.9394040145386239,0.9374055412016795 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,1.6772432471752217,1.6437946983004867,1.6130259761419425,1.5850798795392058,1.5589958130228132,1.5372967973211011,1.5188925889769584,1.5028812911421765,1.4894459822287778,1.4783436744747958 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8674542979545901,0.78809600101749,0.6992382779903459,0.6019078682435087,0.5000504526732945,0.4008153081664045,0.3055653837759871,0.21572412267253396,0.1335585184621409,0.06073617289191183 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Risk score,risk score,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Risk score,risk score,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area,km2,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|%,%,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|Low,km2,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|Low,km2,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|Low|%,%,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.226450748015157,2.226440522195396,2.226064675622418,2.2257088385404473,2.225381434481725,2.2249449849435274,2.2241982116783166,2.223096581028805,2.22162759464269,2.219991773635021 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.6969179933478974,0.7048986800584423,0.7104590781058103,0.7152292024946012,0.7181771530878529,0.7190075656171856,0.7187849471953439,0.7177106669520987,0.7162319878005403,0.7147551147058229 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8873451192402924,1.8821308469147218,1.8778060319525813,1.8752761426424713,1.8738098689672598,1.8728055567474338,1.8720953427130322,1.8714605931906807,1.8711708208705289,1.8713780131282827 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1462486473278752,1.1330873124236804,1.1209062578478497,1.108903684612405,1.0975978832267062,1.0873635110018114,1.0785669214374642,1.0714251776615211,1.0662378852749868,1.0630984221806765 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2508520139486206,1.252749828464571,1.2540109976689744,1.2547212550144238,1.2549551728140524,1.2550447590375493,1.2560542632621894,1.2583047121110786,1.2610142434509897,1.2641823104644923 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8406826159778142,0.8658097674016761,0.8857047238716831,0.8985853302596458,0.9056244936751408,0.9073295785414643,0.9073381573296988,0.906658825609885,0.906336154240028,0.9076106177529567 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.4910982696196769,0.5011194297569435,0.5117293934297752,0.522477060482158,0.5334952001622335,0.5440197860704237,0.5538437731220643,0.5627961543601193,0.5707437419737176,0.5771736908837057 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.3978189661770615,2.4123246070286606,2.4225185595122416,2.4310676680672216,2.4379078170310833,2.4439276159058547,2.4489759427798368,2.45312239497416,2.456116526041552,2.457585599643948 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.7702465060667308,0.7719230752474973,0.7736180150776583,0.7753748354184884,0.7768678917615723,0.7781638667300418,0.7794710750736978,0.7807473734309508,0.782071174651486,0.7835527180956765 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1773593991567022,1.1784963182527968,1.179391396290592,1.1801020432683589,1.180727148503464,1.181108978675476,1.18135522907969,1.1814767310893353,1.1814502817306796,1.1813919963688764 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.4955097384273888,1.5265012082033653,1.5530710312909097,1.5769921971564351,1.5980210045228664,1.614719577871033,1.6277072818747285,1.6377207973322627,1.645191581995665,1.6507433073294457 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210050.1130848527,269409.89961630595,321439.1445417219,370866.20379881695,413991.5528148942,448280.27736869897,475111.2260311652,494031.0565102368,506416.6393585185,511460.8461285625 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,58380057.642563775,62636105.5594998,74422386.21624741,85745302.57952599,95539027.2806543,103607229.7132942,109282091.41915394,112318337.51520577,112952970.76539819,111515802.22511661 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2610483.9727694057,3224301.3967136443,3420225.5728357295,3521009.284428227,3533541.467986725,3466363.2055390365,3349094.1680093566,3197275.99047916,3023601.6075297827,2841756.329901362 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8315244.123720679,22664459.904410306,26947226.988564,30716701.85316874,33804754.47560134,36033591.79923392,37132834.611945294,37293477.13239891,36777770.072895736,35585418.08992696 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,247074.0,271594.0417136058,266826.0562244035,256229.26542638117,234576.71401054805,215853.4931223206,191006.19805760734,172522.8524581734,152121.07899597852,138912.96950335862 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population,people,69762909.85213871,89470501.26859576,101599828.84744559,112675832.29143351,121904948.93543927,129314298.3966436,135587374.71772304,141305176.39788717,146775811.345158,152419803.9369872 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545678261.6929336,1836740147.7030513,2030185452.9447792,2177704967.2784686,2274438931.843932,2322381019.6970253,2323329295.0118217,2284226870.892028,2213928533.81724,2121537533.7058964 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,97655613.64964367,114283799.7588632,118752007.45323433,121938985.49759457,123484895.3827064,123118223.85913756,122037163.58575931,121113362.22975366,120550037.53470524,120447439.34226908 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826488212.3046908,926921497.3591743,1153714271.8808644,1385415331.5174775,1604423165.4166126,1794606098.855722,1947073506.1748452,2055545018.1765988,2117501878.1209536,2136469614.5022278 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|Low,people,232899517.10217202,306532283.82470286,323095800.791308,330736560.9130461,330125864.0980017,323741995.27628183,313729319.56631404,301002264.2264465,286659684.67749286,271902647.7625483 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,278678469.5909165,349250035.9135925,376797736.12892085,395137766.8728495,404315106.50952286,404643465.9468086,397862449.93040824,385896315.65932864,370304104.9885115,352644781.49682945 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,59864239.216374315,68544755.0767597,72483337.68347508,74353366.82508151,75261871.48314308,74627863.05246046,73150881.62918113,71676234.70481424,70694337.87516409,70057453.06083886 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|Low,people,4089395.25093008,6142997.795091379,6885616.1976493215,7546980.677767977,8199622.100667075,8784234.261011008,9234630.13717889,9599790.052286454,9957249.127179129,10251109.536669308 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199134144.72175997,498589122.8108357,571151913.6510379,634435787.5646892,687029007.2377691,723233843.1970651,743482189.4089868,750870231.8564308,748605281.6068383,738064723.4381915 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,64471591.10337204,77439426.21279562,83215490.56009142,88431568.32191513,93050089.2559821,97833664.8589192,103077594.47349423,108258960.23563722,113113599.71124442,118071881.26664953 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,852353245.4534541,958608322.1335468,969467061.3397642,947184942.4980625,905486185.1746995,844138793.8553643,773861554.415944,705188163.4976391,641224850.3565054,584791238.290642 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|Low,people,4161312690.086248,5054789524.410275,5511991412.468333,5889239354.855204,6173438633.354036,6350201058.504851,6482488009.925941,6611169146.952844,6740123605.87252,6898557822.216266 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.01345392292136777,0.014530123880465484,0.015693264627681967,0.016887777699199538,0.01805782997660478,0.019156900221991312,0.02030050905736231,0.02147400270330426,0.022713325199974908,0.023939549864028513 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.009117401724416,5.7293613596315955,5.45370651574269,5.2202542947711255,5.014068414267363,4.854085625684483,4.712613543077734,4.582157979300666,4.468703018892411,4.36993410662173 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.4922189733049516,0.4868137585580617,0.4799803940709951,0.47218935218208674,0.4638488286673621,0.455314704367271,0.448515770331209,0.44311980283205743,0.43853273018384287,0.43478863282154745 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.129618020553736,4.499415430198303,4.6733458145429045,4.798655396921835,4.879300411867811,4.943035486611224,4.957448978012434,4.932172372728876,4.880526682015434,4.790922233270132 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0179431221333828,0.01760699835929811,0.01716537722697274,0.016926747424391514,0.016257613387356207,0.01608148394584435,0.015547029137085458,0.015427061746676622,0.014969903837450211,0.014996909619112831 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|%,%,1.0919047627318568,1.1790651368095162,1.2505685916407687,1.3180722337465294,1.3775797343238063,1.4335961433658861,1.482147090059965,1.521757429033996,1.555492747491732,1.5820100702855933 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,99.00226135869701,99.06117748590155,99.11747868093714,99.16405702416473,99.20838056754351,99.24510115173054,99.27100184647895,99.28828026923696,99.29705078765153,99.30115660074196 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,17.781193914873715,18.483079319477717,18.95790099325497,19.34381893654028,19.576381145132697,19.625194168073527,19.58060268483182,19.460416598137503,19.306227995784386,19.159834810281644 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.07125377106973,84.78605371364858,84.54470975412465,84.34538239209343,84.20315493900017,84.07880118334548,83.96439760082386,83.85836378297982,83.77368891804461,83.7211520688991 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|Low|%,%,46.95816234304772,46.234109369890604,45.55975572988116,44.893993056798514,44.27171612989596,43.70385606142341,43.20949461823001,42.798710961783115,42.492640146486515,42.303834062695 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,52.54612999547151,52.73071643765248,52.87824502238016,52.99044424208774,53.07454016488891,53.15084114016517,53.28234270655498,53.48249566749238,53.707627934344785,53.954640939950615 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.89989273357928,23.61705777396925,24.940580524283806,25.778589735794945,26.21601215922577,26.289774613228555,26.2530358871557,26.175555138560703,26.121422196327664,26.178731477701824 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.3891657683007654,3.9004795090406197,4.438945113277621,4.991627033673548,5.572897952590859,6.13253308680822,6.657201410344335,7.1348706235986965,7.55950321798803,7.899530037828343 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89642929479906,98.98138327432953,99.05250756458219,99.11346376152639,99.1641847421153,99.2121621391436,99.25918822449252,99.30480335526146,99.34229410696251,99.3668441432006 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.90270809242335,20.997595511512596,21.093855140097563,21.194184302468972,21.277598941536414,21.34969744466138,21.424147638330464,21.497568490774633,21.57605679662203,21.66672806728773 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.89999103085122,62.14501263916844,62.36747659691188,62.5719324417217,62.75577858721453,62.88989937149976,62.98878390818663,63.05820467431163,63.101539979702935,63.13349558395116 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|Low|%,%,65.13141661023177,66.61330849427186,67.84581643515082,68.89181747017926,69.76258163976671,70.39920457324162,70.86206042607635,71.1976448452759,71.43011706116785,71.60216496345474 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Absolute,days/yr,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,124.33491725284705,124.4168797104507,124.47372077727239,124.54759114482329,124.63329061810589,124.71298927297632,124.76902311537509,124.79705996856481,124.7938187686118,124.76589721016173 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.18732342639395,33.49992883125103,33.70912658578411,33.88292494924519,33.982170161668655,33.991159441978056,33.95041343832849,33.87120580941362,33.77786365289553,33.68988595396984 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.16830856405447,116.79288221540591,116.46960466321102,116.33626200234436,116.28440942004966,116.27704226187574,116.29416488346111,116.30685587509811,116.33806726966739,116.40180925353974 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.559242738527466,53.8653165091129,53.225684148990645,52.59030481037245,51.992364912387224,51.46194271318878,51.019271292481804,50.676834611568886,50.44703155985384,50.3296349094922 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,60.10381947485399,60.20568793323466,60.26533931415817,60.29290244940178,60.292631080259525,60.28426474064028,60.33194954694105,60.451959108634426,60.59830083924551,60.77310922946792 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,41.91208150030759,43.176996943772444,44.20006856212387,44.87609972804736,45.267255903527335,45.39367905291701,45.428612449037885,45.42788215025789,45.44138366395732,45.526119225716876 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.58342168172141,22.088815541298285,22.62323490632565,23.164516537468977,23.718620359395402,24.24740667663442,24.73893466739457,25.186926922878673,25.58361988123745,25.903400713847873 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.00897620929254,155.11251078873883,156.56923545237154,157.77801084147796,158.72185669434012,159.5630035860675,160.26175791019946,160.82471495921178,161.21748469078895,161.3810590738489 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.72286371535542,38.826618954564644,38.93179152472232,39.041299057653724,39.13538699484403,39.218061721515014,39.30119891446285,39.3820353855743,39.464737621948714,39.55720082116016 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.73122926682573,52.805378613593966,52.86635792320522,52.91613422639617,52.96154490666653,52.99346864320445,53.017292433743215,53.03442851793322,53.04325610021261,53.04848745151859 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.53356938126505,82.85913649258579,84.91639036620525,86.84263408708507,88.59642818080583,90.0719770687829,91.29347234011512,92.29547115585513,93.10309108219325,93.74359603095593 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Difference,days/yr,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-0.009184468328631307,-0.04861388747225463,-0.08559155840922336,-0.12467024331010443,-0.16593411143127448,-0.20663980802045512,-0.24624263392158385,-0.2848814667042412,-0.3218334141027189,-0.35453217031490264 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,1.8575025178941587,1.931709631657759,1.9934840423833664,2.054148872387432,2.1053630134306114,2.1477720672215637,2.1898207944285,2.2299100307817636,2.2642720604928677,2.293441557823176 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.467884548653805,-1.5660808426325585,-1.6716240717311521,-1.7773971936669808,-1.8745439735457106,-1.957491941777649,-2.032652800466681,-2.0995678849584447,-2.1568041464721364,-2.208397389627641 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.047510219232371,4.025318846127756,4.002581055233391,3.985059109003424,3.9616172262826934,3.927390729408974,3.8849846965715527,3.8389925736013497,3.793855916295754,3.7466897590046435 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,4.2416361301820595,4.234954211219633,4.230087200757002,4.223272659666404,4.214933773617806,4.204591633225826,4.193358432499731,4.182098301597348,4.171745059456974,4.162522764478306 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.8011124907984093,-1.7424114255785397,-1.702499055744908,-1.6805299627714352,-1.6786308433702688,-1.6923105321638388,-1.707544223458007,-1.7266562251892053,-1.7426826847836425,-1.7508140574996114 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,3.67193725195688,3.627356957900787,3.578198810927761,3.525568674191665,3.4672325652446836,3.4068752863511373,3.3469198930072093,3.2899797954530854,3.23776458078359,3.194963450150001 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.4174585680260771,-0.5477314555461739,-0.6587557608686825,-0.7536796301478289,-0.8311538472186661,-0.9026018677737004,-0.9678644282558904,-1.027216888147657,-1.073663447179567,-1.1018828821258855 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.341540739253755,2.334857170937731,2.328898742318851,2.323404005757097,2.317451602353037,2.312441963251169,2.308764334844491,2.305506663637173,2.3030587720414033,2.3021580273288507 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,0.8078674242974481,0.7698108819537148,0.7356554027261161,0.7055193559278703,0.6783090671480467,0.6561365692462622,0.6376689721011053,0.6218989820139006,0.6091035221662664,0.5984781361623562 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8667933958530661,0.775488867980175,0.6783531308938578,0.5761900774143054,0.4718798639338643,0.37341277026249,0.2809220685629376,0.19489845704473044,0.11764225147430725,0.04941945263686375 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Risk score,risk score,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area,km2,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|%,%,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|Low,km2,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|Low|%,%,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2156699011369536,2.215429197444824,2.214846324362207,2.214280058596131,2.2137243349008124,2.2130706619755105,2.212125304705029,2.2108402081828284,2.209208199263391,2.2074380139891736 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.7443549592416676,0.7527330861401579,0.7586367349524373,0.7638322671115333,0.7672358855424327,0.7685304226743251,0.7688121820456815,0.7682774681420593,0.7673113054940983,0.7663049803562912 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.895368326207593,1.8895799113055083,1.8846902839601358,1.8816671895187755,1.8797928506896753,1.878445125002472,1.8774413953705678,1.8765628943370607,1.87607538226252,1.8761172146744294 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1735600151559957,1.160527951697941,1.1484179110529118,1.1364783260925697,1.1251414899404701,1.114779276211616,1.105761392988649,1.0983696865540549,1.0929276028166637,1.089461106453376 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.280637078718935,1.2826016164126306,1.2839526343803327,1.2847375622188015,1.2850338429529915,1.2851664680005086,1.286214916171342,1.2884854860312949,1.2912116082868403,1.2943927879821848 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8263570062990134,0.8506230082574066,0.8698988300301991,0.8824643011323708,0.8894243216403965,0.891260318981774,0.8914296777734367,0.8908953721022091,0.8906636715725057,0.8919225220972999 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.5478137511920149,0.5570944221124545,0.5668768583649898,0.5766899945375562,0.5865968806617367,0.5959371170897444,0.6045412646300325,0.6122953271404467,0.6191165359189282,0.6245976334809811 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.390615113373271,2.404776711782269,2.414564234203565,2.4227060184374016,2.429122698735924,2.434786706109727,2.4394834927248983,2.44326967069476,2.4459312501599517,2.4471011304513355 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.817526982823481,0.8189875218290571,0.8204955035884365,0.8220849711869507,0.8233990852323293,0.8245506855075277,0.8257560091728574,0.8269454657015868,0.8282066751560417,0.8296792030815645 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1670977227021537,1.1682181449634232,1.1691160377437901,1.1698499100051056,1.170519145432741,1.1709433608961388,1.1712285115622547,1.1713856785867187,1.1713940506435871,1.171363237849449 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5030675614098208,1.5337002934685076,1.5599914185205597,1.5837062584301853,1.6045809611368687,1.6212104219174879,1.6341868406103093,1.6442261595227612,1.6517584542335952,1.6573722878275539 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,56649.0,77260.54840196301,98018.30827127668,119254.42825137409,138914.73457688512,156093.43833782198,171023.16046423523,183140.70146306005,192535.04941047495,198326.17869943508 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,59049255.899873815,63392102.95072693,75351045.84712312,86839243.4099085,96770254.17907055,104945728.34508346,110699900.67831066,113789404.97269653,114450149.68752125,113012353.55912474 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2641670.972752724,3261716.8453886365,3458410.3719082093,3558939.5713284113,3570057.947890561,3500850.4193460164,3381325.3816365306,3227461.8123839763,3051522.26654745,2867810.904120772 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8103691.285880629,22104349.962143257,26277727.776060656,29946853.74224293,32950516.10993434,35114867.74774714,36174783.129096754,36316798.23039466,35798062.03800957,34617272.90938096 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,198596.0,218529.31425511604,214168.3574174702,205904.88190299695,188003.0109810549,172909.92255603874,153301.62352801554,138434.91359592197,121884.22829726627,111204.09485664072 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population,people,70049863.15850717,89857233.79072767,102051373.09390812,113183478.05617596,122452199.94925202,129888877.65827796,136194567.66270825,141953843.9937536,147472726.07009548,153169253.8552486 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545073571.7930212,1836066692.1307364,2029476878.9466817,2176973912.0659676,2273702630.378602,2321656728.627175,2322628579.820839,2283555934.633755,2213290789.991777,2120935757.8564758 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,113952036.77883524,133007957.35832667,137993503.36436644,141639370.19895762,143491310.3934954,143215710.0016013,142163696.64132228,141348202.32088208,140958012.42872322,141047948.21105126 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826745572.8557653,926611068.4311608,1152718890.6803668,1383566073.7882757,1601651563.5877,1790982937.3829591,1942626876.6816344,2050318733.0955877,2111607044.5429666,2130045741.2727525 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|Low,people,249962210.29294994,329172143.5594927,347074701.90488106,355391783.8048152,354755870.93079585,347806718.98001534,336869262.45570105,323004660.29255235,307401178.9420937,291333824.81231475 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,287802311.68335783,360464335.55751115,388702724.1368136,407430542.75589883,416704189.41634244,416836976.03597736,409616236.13712645,397035728.0623704,380747937.66983896,362362771.6156215 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,58844906.675545104,67511968.14678141,71499223.1452553,73423229.12579507,74375689.00928646,73788376.01306714,72357275.45279521,70918087.01206428,69964647.6287366,69357108.83239552 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|Low,people,5587049.4022804145,8375406.639996535,9386904.652917597,10289731.531005891,11177802.708634079,11983605.218899123,12612959.714992959,13126515.280981805,13628532.967199938,14042383.418840703 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199134144.72175997,498589122.8108357,571151913.6510379,634435787.5646892,687029007.2377691,723233843.1970651,743482189.4089868,750870231.8564308,748605281.6068383,738064723.4381915 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,62908039.09063497,75521879.59971061,81117293.26936083,86164650.80833267,90624515.66612625,95247464.38305132,100321405.25229573,105334868.38622792,110035102.45806879,114841683.43458526 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,860579912.0304313,967642267.6057911,978331292.2090656,955556443.7502285,913260691.0239413,851195850.5441879,780170016.9256963,710794289.4981027,646203577.2708948,589273562.0238647 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|Low,people,4210589755.324582,5110591514.2101,5568666736.706309,5945669196.192136,6228590965.786637,6403304308.403085,6533332636.743175,6659939386.281015,6787115668.973365,6944163389.293867 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.0036284259426448444,0.00416690456049328,0.004785438476237592,0.005430374224788748,0.006059299135884022,0.006670528627976626,0.007307461974799133,0.007960560103413861,0.008635401860398594,0.009282899131488793 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.07799864397714,5.798512884979297,5.521759118424602,5.28685443665917,5.078685524969257,4.916795409418165,4.7737542755567235,4.642171897219619,4.527935174751413,4.42857898552051 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.49809942814488883,0.4924628443464356,0.48533909176973633,0.47727604072865987,0.4686423556668062,0.4598446784720862,0.4528322233431272,0.44730334391221954,0.4425822460979295,0.4387749818918064 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.024554068317942,4.388220752386746,4.557237342828168,4.678387413400579,4.7560016133973,4.817006263263056,4.829543543532004,4.803003706573378,4.750516319903494,4.660579286089076 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.014422530428945542,0.014166898703932862,0.013777817268566198,0.013602271089609689,0.013029768453706942,0.012882108616543816,0.012478049571112537,0.012378904762532249,0.011994361261138169,0.012005486354533433 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|%,%,1.0963960559214538,1.1841615968455148,1.2561265444323035,1.3240106304149064,1.3837639123477505,1.4399660082899526,1.4887845019752586,1.5287431231051305,1.562878472634897,1.5897888318850666 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.96353035691237,99.02485590711896,99.08288476339703,99.13076766593231,99.1762639540956,99.21414915036601,99.24106175181943,99.25911674432484,99.26844729839736,99.27298974679172 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,20.748456614369797,21.51133083746634,22.029666955518945,22.468993982800384,22.748050071806617,22.828757828050293,22.809861999001097,22.711737597905067,22.57458878847784,22.436802333119584 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.09774414857925,84.7576585972986,84.47176776429073,84.23279785028659,84.05769604557378,83.90905302896338,83.77264389169709,83.64515136890884,83.54047450653054,83.46942180142159 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,50.398413000633525,49.648867965744905,48.94102182721124,48.2406790181607,47.57473715721891,46.95249613979308,46.39652616226066,45.927173108471514,45.56722963010251,45.327023782693715 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,54.266473132676694,54.42388177412403,54.54894209008883,54.638982320759474,54.70085802380038,54.752486470515336,54.85642758155507,55.0263393151473,55.22236534152175,55.441493135215914 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.52699442907864,23.26121160359221,24.601959419489063,25.45610752454405,25.907327694541404,25.994041569916536,25.96821947804469,25.89868600869531,25.851803050404932,25.91703022112809 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,4.630375744606104,5.31794134865114,6.051448896047465,6.805702077748342,7.597027407439133,8.366108339156284,9.092623305530532,9.756045471660052,10.346727043394832,10.821094948115881 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89642929479906,98.98138327432953,99.05250756458219,99.11346376152639,99.1641847421153,99.2121621391436,99.25918822449252,99.30480335526146,99.34229410696251,99.3668441432006 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.395779835337812,20.477655345047662,20.561994191996128,20.650877557003795,20.72294732904677,20.78532527511585,20.851287890334348,20.91691572384274,20.988843307242117,21.07397205052857 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.49743181029916,62.73066857662646,62.93772775173375,63.12496172595507,63.294599803582265,63.41566313007798,63.502263844684556,63.55950668002575,63.59148564425679,63.617402912050714 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|Low|%,%,65.90268406941928,67.34868138035925,68.54341977973412,69.55192892006458,70.38582734162972,70.98791452409944,71.41785860300274,71.72286604314931,71.9281270034951,72.07551858624038 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Absolute,days/yr,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.28246340623973,125.35900790233742,125.41162036957601,125.48334242026345,125.56797199559692,125.64750773681993,125.70345121624912,125.7308794840408,125.72633126290755,125.69669171341732 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.963133997841396,34.29781925450366,34.52348856686888,34.71112047833178,34.819190453741065,34.83158756651269,34.7915780816365,34.71055697138049,34.61430769636225,34.52408960667595 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,116.86503031451208,116.46482841591038,116.11370443429576,115.95446304308017,115.87862489681405,115.85058125209282,115.84961897887602,115.84672253145605,115.86522856526656,115.91761498977274 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.86804248623694,54.185393236932946,53.556624332911205,52.93203995034877,52.345640406592565,51.82635055838416,51.39476021015118,51.06254613519456,50.84204264736101,50.73412302473464 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,61.58254430520777,61.69441246391543,61.763144556567156,61.79895821133515,61.80632537848868,61.8055386410527,61.86140754823864,61.99055498845294,62.14603310415181,62.329786892072015 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.318248925448934,43.580985473398556,44.60115681027753,45.27477359098374,45.66305948718624,45.7867528350426,45.81995965749049,45.817337385765434,45.82980894248416,45.914159579015184 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.918782083236067,22.41755535372415,22.94479564059717,23.47866030964024,24.024687306997954,24.545573080583914,25.029468943045668,25.47027317775706,25.86045722197307,26.174889280902075 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.34759708912583,155.42164591049854,156.85301616004944,158.03555112128268,158.95307313602848,159.77407656942492,160.45338640525227,160.99697477170852,161.37234005878392,161.52058119617666 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.830369404693684,38.93407970057315,39.03912672776499,39.14843018408187,39.24203734251417,39.32417540494196,39.40691316637199,39.48741094614899,39.56990898813004,39.66246641824549 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.013009375260566,52.08421073763426,52.14300870966193,52.19129073432906,52.23560947235456,52.266673209116284,52.28959030412613,52.30572698121608,52.31366545274225,52.318230563029246 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.81718593257864,83.14519937327854,85.2017702544826,87.12698928494383,88.87896969432202,90.35136637419829,91.56730299142684,92.56183803651341,93.36082726638584,93.99152834831347 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Difference,days/yr,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Difference,days/yr,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6414422981905421,0.5944753766670938,0.5507542596929442,0.5067068389833946,0.4610772348854086,0.4168026729034124,0.3736993612139252,0.33102526898096357,0.28940880176558853,0.2518974867239341 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,3.7081082981988143,3.8264876619173402,3.9228553178139194,4.0142774281681985,4.0871180197925066,4.141702974844679,4.191806687337187,4.235673513317177,4.271834786122785,4.304273604597665 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.650467768849432,-1.769902940558588,-1.8990588472944268,-2.026068490138078,-2.1428585186734828,-2.2425214325881067,-2.332114950178668,-2.411207574436212,-2.4783431197295354,-2.538838344731978 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.181040975438179,4.185330759411573,4.188887651475074,4.196718168232218,4.200506531732163,4.19452956501697,4.1813854210887635,4.163457349808541,4.1445332945652416,4.12293411941666 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,6.864049143726445,6.863536165061808,6.864861818316189,6.864323942819511,6.862166595680021,6.857576485708482,6.850917130982208,6.842764495818641,6.835621303292193,6.829701749892273 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-0.4585295360190619,-0.429794512291481,-0.41702961430593083,-0.4158122005371181,-0.4305884959319416,-0.45636197114664795,-0.47968486213744443,-0.5060778733333102,-0.527234859276082,-0.5393547034420375 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,5.493838893754645,5.400946529621435,5.299774410273049,5.194166343360672,5.080757362179897,4.966600812931494,4.855084613342126,4.750330821956741,4.655005644847366,4.576706102252581 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.0767316147352117,-0.24320801465754485,-0.385056880848503,-0.5092656603248327,-0.6144877285093252,-0.7086164051355239,-0.7951782938817314,-0.875046678680317,-0.9392247579570393,-0.9817360247489294 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.6288313797452587,2.6192110066217014,2.6106370121059435,2.6027067378036084,2.593723669538817,2.586065207047457,2.580609247481592,2.575861872472601,2.57248439765637,2.571947072706067 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.11339221011390771,-0.15437435714527664,-0.19069709559282008,-0.22214633608010056,-0.24998672688757193,-0.27272355242491436,-0.29201494925148597,-0.30888083629666524,-0.32257233127886326,-0.3334014877115579 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.3030506659543506,1.2052267127810943,1.101182841284506,0.9946557855398784,0.8873192566766912,0.7862243176181508,0.6900439911276091,0.5991489868827674,0.5165577239420264,0.4421789366895946 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Risk score,risk score,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area,km2,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|%,%,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|Low,km2,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|Low|%,%,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2316300597480585,2.2312343778630988,2.2305115458703497,2.2298254438236653,2.2291532094080697,2.228396135881236,2.227351380816555,2.2259615311244927,2.2242194280170238,2.222345604150229 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.8274939607837792,0.8378031385300392,0.8452236983414083,0.8517860630507742,0.8561955567103026,0.8581046117414362,0.8588267802846513,0.8585564956592555,0.8577422826142257,0.8568903691186874 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9045663281678393,1.8978606805721803,1.892041686241646,1.8882044323507599,1.885610428872604,1.8836603362427966,1.8821426271382662,1.880835012993498,1.8800054072559453,1.8797591530312219 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1847595709830456,1.1724730912974501,1.161095782086935,1.1498676851861145,1.139287971508597,1.129695669756349,1.1214663017021707,1.1148228207653441,1.1100715247699409,1.1072845122815802 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.3939350723478112,1.3962844316884262,1.3980155462851758,1.3991796411806008,1.3998486093154041,1.4003343440799514,1.401680099561837,1.4041810573874556,1.407121637525893,1.4105037522305464 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8581326849374318,0.8817345731794024,0.9003271423819491,0.9123128714942343,0.918739442347301,0.9201155522809636,0.9199198406244703,0.9190497856009131,0.9185641395074072,0.9196316695165838 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6221278059475421,0.6296534661024266,0.637548294559724,0.6454258939642714,0.6533023543432511,0.660648177625949,0.6673336040018482,0.6733036214549498,0.6785144584526218,0.6826721859729927 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.410723863634739,2.423487415600039,2.43213944283396,2.4392348713927032,2.4447037881492033,2.449582557612729,2.4535389121600772,2.4566070037866194,2.45864639356774,2.459319736212984 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8381967019955391,0.8395279076153151,0.8409254362734706,0.8424170592832381,0.8436050140907659,0.8446468387714771,0.8457820666334249,0.8469187955323776,0.8481574927746586,0.8496710072554906 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1543486268643555,1.1555249903549438,1.1564995172830534,1.1573353479103323,1.1581300307410267,1.158661256631947,1.159030680158579,1.1592512587377741,1.1593157268950796,1.1593452835645308 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.527433835289871,1.557771744830353,1.5837643352744144,1.6072480435258847,1.6279309367220114,1.6443957930033894,1.657211318404748,1.6670873346204906,1.6744762442227048,1.6799517401574393 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,75727.0,102584.63725152728,129507.84815277609,156504.00125091214,181314.41260035208,202983.3440693364,221508.99400978012,236515.05143903143,248067.82278558856,255001.96767298155 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,61405697.57347922,65965811.20020248,78388744.82311538,90261986.6640383,100449240.08888689,108771428.66221811,114579666.71347673,117642106.31744382,118223169.83226584,116657641.57103488 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2798666.2448564805,3460233.7971885875,3673849.0453172335,3785518.019186909,3802085.744591128,3732999.478777932,3609898.3149812277,3450102.806918735,3266300.16111691,3073582.2189071756 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8390400.269886132,22904804.276002415,27230468.26676578,31028458.63245292,34137566.88247658,36379822.83633207,37469749.17937559,37602833.93105389,37048504.69229909,35804548.92219964 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,118105.0,129887.26002615906,126691.0020046111,122006.70648632303,110598.37453531663,102308.52216046794,90042.82946042856,81575.74409873478,71431.79083333594,65401.34256227435 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population,people,72788596.08822182,93444265.11271854,106116026.00608635,117618076.09579097,127120511.79398356,134683460.18658805,141068410.88073817,146893960.08864054,152493164.27613324,158284562.1619002 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545503413.2742143,1836559324.4842665,2030006443.708673,2177530013.070097,2274272372.1762376,2322226752.8550067,2323189460.0684013,2284101992.445269,2213818329.166235,2121441273.3292618 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,146817017.01676175,170510218.88383216,176373466.3542364,180633183.1162946,182712617.6825127,182285043.5092823,181016899.39731833,180150451.8342394,179857840.16525844,180159267.14550945 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,832437342.3235894,933038264.186132,1160739681.0255713,1393242112.0351489,1612856919.903358,1803514083.238509,1956288985.208288,2064850907.4241846,2126697571.8449426,2145374470.662952 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|Low,people,256403810.45216697,337798660.72684413,356285851.8738416,364929672.5629651,364369097.80720955,357295978.4621005,346101057.09745413,331865186.15681213,315816236.9433488,299282748.8011691 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,328671841.2840413,411521087.1144822,443661862.8166724,464986048.98710793,475557339.22046953,475693116.2959147,467274120.4824711,452563246.5592205,433585869.987137,412204944.9720528 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,61269884.81098795,69955072.55179222,73838064.61931577,75670020.11422068,76570340.45269284,75934471.92126155,74447890.50119051,72958913.70886844,71968980.91246253,71323156.33039592 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|Low,people,4759562.147914486,6959106.878564771,7628818.572171925,8210526.392620081,8782714.717777532,9290849.999067657,9668037.165263792,9968853.7338926,10273557.534524374,10526830.529566657 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199420024.5729791,499247378.69089633,571851476.0770795,635161076.8903204,687767845.3687992,723965941.1550264,744189720.8547242,751541294.7008244,749238775.2516278,738666079.9254122 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69167061.34105779,82999918.55206846,89113486.84894349,94620591.2898435,99481188.43833274,104525256.2132815,110065530.39665194,115537354.06196083,120662046.37608232,125904166.99523528 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,854022278.4090638,960362233.0135534,971037974.1951994,948484348.1004534,906563813.340843,844989645.5793285,774506878.6078631,705650126.302266,641552437.5965818,585090485.7760608 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|Low,people,4298472235.632778,5213285994.299015,5677137455.458021,6058694190.154199,6344641755.356686,6520869682.8769865,6652131449.377539,6780264690.146454,6909373055.112936,7069054735.433387 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.004850391204763828,0.005532712382210803,0.006322817139526602,0.007126572211455526,0.007908723771736173,0.008674331362261097,0.009464616057899227,0.01028057808723745,0.01112610584382853,0.0119356786873149 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.320549529310404,6.033931490012186,5.744363089360125,5.495234250302004,5.271765647009395,5.096032678564036,4.941062914363503,4.799347355824553,4.677205321405467,4.571425721981664 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.5277016216288283,0.5224354714531089,0.5155728693843693,0.5076616267553381,0.49910069970858356,0.49033798632726977,0.48344305723822084,0.4781598085697452,0.4737328898382045,0.47025798685197423 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.1669429831095375,4.54712930375469,4.722467174694427,4.84735897709754,4.927337788240804,4.99053095452011,5.002429028564446,4.973085722005079,4.916454024296503,4.820424170655753 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.008577075854048486,0.008420379032415805,0.008150249160237055,0.008059878333332765,0.007665149637931867,0.007622173877511807,0.007329073650189568,0.007294535322776315,0.007029446850953281,0.007060665587105973 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|%,%,1.139261749685435,1.2314324125494132,1.3061574089086967,1.3758861783915572,1.436517896882142,1.4931194113309052,1.5420619738493953,1.5819447011316594,1.616083800864069,1.64288212451969 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.99106214002569,99.05142512055363,99.10873911277714,99.15609030261325,99.20111542858177,99.23850868123985,99.2650269917925,99.28285218922468,99.292107991775,99.29665101619173 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,26.732532334948672,27.576558594141083,28.15675107048249,28.654786439907316,28.9659057708422,29.056456962036414,29.043775536853484,28.94645791755371,28.80444121023323,28.65832446832269 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.68360364130385,85.34555796748438,85.05953495089967,84.82188411734782,84.6457742872321,84.49614772437319,84.36180023775162,84.23800842172405,84.13749364161004,84.07010382169871 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,51.6971950238389,50.95000118806041,50.23988656500524,49.53534662461705,48.863924396539645,48.233507675477924,47.668008156486955,47.18702770261692,46.814625237411015,46.563753046526166 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,61.97261425798048,62.13256842188834,62.26168163886948,62.357535441882504,62.426524992011466,62.48337458397971,62.57805889901397,62.722060022820756,62.8857964822745,63.06734415645725 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,22.414114381535125,24.102981886619187,25.406724569406247,26.235078344372038,26.67179192844622,26.75006452725543,26.718517911493166,26.643978670209183,26.592400352819872,26.651693376493785 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.9445796050511537,4.418665720953876,4.918064839655878,5.430500918443262,5.969198612812913,6.486216479533743,6.969642497400301,7.409170541178842,7.799643280033504,8.112001308149011 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.03840643554709,99.1120621731983,99.17382977473541,99.22677063781173,99.27082693647411,99.31259026759777,99.35364777974162,99.39355339617967,99.42636072193548,99.44780573700473 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.425053703184517,22.50531547658671,22.588907064883596,22.677492762599275,22.748186989860102,22.80996626976328,22.87655416440069,22.9428786013064,23.015898817232962,23.103988177028175 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.02120031295758,62.25871581833905,62.46853611162272,62.657772403823266,62.83046486702871,62.95328939656398,63.04131033987659,63.09951357113373,63.13377712602537,63.16580205258845 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|Low|%,%,67.27819003688239,68.70201549047135,69.87856055233594,70.87408561712311,71.69725249097817,72.29126047678123,72.71648478272763,73.01868499136968,73.2237797116937,73.37180267912589 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Absolute,days/yr,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.25457616170564,126.3369989111898,126.3955410088613,126.47221896623405,126.56118292458592,126.64458867887552,126.70410094835086,126.73505268973409,126.73407046776242,126.70803861378221 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.17917150302354,35.525504960012015,35.756875991399234,35.94767935279347,36.05456231631315,36.060285959972965,36.01016520181787,35.91651273618451,35.80768438252258,35.70663157217181 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.5085263298428,117.07653893002642,116.69189846516629,116.50231590173895,116.39945316235276,116.34845593241563,116.32748610685162,116.30729879584571,116.31206142218115,116.35271564350253 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.49897098420575,54.81772266779008,54.190461485356025,53.5667246394949,52.98216075658203,52.46618525118047,52.03972382250258,51.714257151267915,51.50172499322937,51.40275882348655 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.639718793293945,62.76491069041406,62.844939257250694,62.890248886963235,62.906062790622194,62.913335979395264,62.97681313072719,63.112894756719776,63.274259955006734,63.4624539582417 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.44590213794195,44.72593138228961,45.76032809308425,46.442353198493215,46.83279098629103,46.95377262333666,46.983885629798394,46.97704389134511,46.98686732525422,47.071243812752265 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.20010205482573,22.706859361588233,23.24273502218365,23.785274100195384,24.34012210510345,24.869668966757803,25.361559734035062,25.809543505273897,26.205970129510593,26.525185191076403 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,154.3885693520432,156.3440196695172,157.69537167053525,158.8091831562328,159.66774056653264,160.43853271148782,161.0772237850389,161.5878858938498,161.93976935779972,162.07762008032987 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.752233085505814,38.85446428868961,38.95803146987732,39.06580563014709,39.15800763818346,39.23889534265558,39.3204744632457,39.39986300424927,39.48129744376106,39.572780526856555 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.589117208293786,51.65742096422939,51.71429951680689,51.761234400476624,51.804370706749545,51.834429104514925,51.85627949018742,51.87117123995514,51.877987006232786,51.881430491387036 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.38508219059769,83.72393212765535,85.78947963106418,87.7231877851448,89.48285988601823,90.96093229693773,92.18016655602541,93.17622209625503,93.97594617518676,94.60626932502386 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Difference,days/yr,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4275806050567394,1.3856126259485222,1.3470606075775031,1.3069087789013254,1.2644987038182696,1.2228038177936233,1.1817847178602117,1.141018473630851,1.1012367866926505,1.0656607168981127 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,7.121374951491937,7.235200675261858,7.320423648376312,7.396639793244076,7.4494445193783125,7.4773689148123,7.495273032031939,7.503328338292198,7.506042504987486,7.510597361404311 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.2364408930054653,-1.3838264094890522,-1.5421793181453323,-1.6956787774836461,-1.8360942727520704,-1.9562830878699207,-2.0637890414000415,-2.1581236884229864,-2.2374733760182584,-2.308402205312991 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,5.324596603699157,5.352599093958578,5.379102429250138,5.408139892101773,5.433734448218768,5.4517030429357405,5.463618608205973,5.471617699044209,5.477426291411766,5.478220120907782 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,8.918245727606909,8.943269141605349,8.965816405988171,8.982556890527544,8.99530891017332,9.003460729837697,9.006486349134809,9.004333260284952,9.000603780614995,8.995570269851433 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,2.461574244923137,2.450169683781911,2.432339545084148,2.4104050531561123,2.3743812075570347,2.3316303617442977,2.296146260377579,2.256641848899664,2.225532809693208,2.2060351518143286 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,6.890335931529815,6.802015061381143,6.705843217484328,6.605449630352664,6.497361137200948,6.388797234193759,6.282090723501572,6.181111561642449,6.088574047485344,6.011540433384844 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.962923040223913,0.6991001961326048,0.48515626811751345,0.2986896319313224,0.14008298607908146,-0.0008804788735817688,-0.12806993259252974,-0.24338816392969864,-0.33487899918407,-0.3933014182824395 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8436317719470265,2.8319091527293785,2.8213373450801007,2.811437660375862,2.800488389141342,2.791111542167152,2.784289551398555,2.778258039943093,2.7737621755020214,2.772412957926587 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.6300193572232449,-0.6762765882228475,-0.7166068572836481,-0.7512363386965213,-0.7818582320131024,-0.8067059058233811,-0.8277416012522237,-0.8461083922507283,-0.8607482588257256,-0.8723885636013314 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.1939014808738992,2.08053929594818,1.9636285227190282,1.847985020866777,1.7344480321104458,1.6284346036763646,1.5267958651783464,1.4300947503758155,1.3423652807343838,1.2624847196674585 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Risk score,risk score,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area,km2,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|%,%,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|Low,km2,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|Low|%,%,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.259655166785839,2.2592623723255394,2.2585648701294683,2.257882844541307,2.257193387793773,2.2564125133953863,2.2553407059860504,2.253923947858673,2.252159470421921,2.2502767402993027 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.9567120489560187,0.9674461010066358,0.9748984900739781,0.9813388224774023,0.9853229347904908,0.9864416999159505,0.9861451444726789,0.984704060162493,0.9827883296707186,0.9810297460941284 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9373880517450965,1.9293886288614832,1.922251156435161,1.9172011584897921,1.9135271926517121,1.910659090130872,1.9083423903295564,1.9063545829196387,1.9049840948892958,1.904281013431886 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2170945070737564,1.2052946674842648,1.1944015312715215,1.183619764563739,1.1735301476113054,1.164504507720163,1.1569095476929339,1.1509595323079294,1.1469159954217043,1.1448202503662952 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.4824155723885766,1.4856003160859366,1.4880184116680715,1.4897287836348925,1.4908593790644675,1.4917283834011517,1.4933583527557241,1.4960264724732737,1.499052527991982,1.5024354427708946 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9625805841229096,0.984534651202561,1.0018018042393675,1.0127137110192068,1.0181182868929595,1.0186193661641114,1.0177195968345727,1.0161581353690063,1.0151295381396008,1.0158017171213856 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6754391162570504,0.6829570315873178,0.6908369905618239,0.6986863276989814,0.7065041862803358,0.713784700588946,0.7203767184041637,0.7262329547179198,0.7313181919123369,0.7353428797204548 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4630001909625427,2.4722293483430677,2.4782811070658384,2.4831070219938796,2.486663919614192,2.4898770522221114,2.4923843899007836,2.494198988503891,2.4952891181312924,2.4954235886554312 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8473262387714963,0.8485214120809066,0.849793799307536,0.8511659099396132,0.8522317001355951,0.8531675056285207,0.8542191654415497,0.8552829163266766,0.8564634062632726,0.8579452507814446 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1458903930334208,1.1468188920068503,1.1475783668847976,1.1482236499143161,1.148845656055779,1.1492442330802528,1.1495098389539835,1.1496485926283284,1.1496588476984564,1.1496470980560571 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5659761676567723,1.5958170656805073,1.6214000132436837,1.6446057954527096,1.6651054054373118,1.6814336677967663,1.694111440246539,1.7038521262813373,1.7111460897614772,1.7165261199989916 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210094.1816432774,273602.96445418824,332418.93088134844,389534.65329296945,440472.6693198714,482845.95038597286,517424.4295723576,543797.9777625911,563018.1406655754,573498.7419056161 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,91174739.84086624,98174464.17773028,116466604.75793041,133599496.14860746,148003687.35060146,159440569.13473645,167085529.4041249,170628411.5683197,170653685.67905068,167651852.100401 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,3608289.672736842,4467926.9059083555,4748550.4253724795,4897084.638690709,4922316.49312642,4836850.619383749,4682931.877481813,4484816.906544781,4256332.846660701,4016279.8295113323 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8346416.218451325,22487065.473953575,26648460.987688567,30305685.5218848,33308294.086215757,35473829.299141705,36544928.2259552,36711177.80577905,36218542.81311266,35069926.46607009 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,64808.6599149704,70538.13814552643,67678.65274524875,64536.181236776116,57677.4623751739,53595.89887931451,46683.24568510765,42261.07144436789,36815.557785788325,33308.92509701271 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population,people,103404348.57361266,132377379.19242063,149810957.9089666,165280677.56585643,177790848.3409648,187453040.20751563,195512248.88499972,202787622.69430614,209860427.40201107,217274766.7644992 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545225976.7945383,1836230558.467277,2029644870.3386848,2177144217.5813446,2273872054.8774076,2321822715.9657035,2322789523.8233914,2283710324.177631,2213437388.0453024,2121073487.2746964 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,179531630.78698298,206336878.71825576,211850770.06841105,215686897.5879533,217134142.14898425,215860731.1256653,213680551.57836935,212053872.924163,211200268.58594087,211086503.62773773 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,834944155.5933453,935907645.5139111,1164387505.1454747,1397780186.2755246,1618285733.0994034,1809770244.2283905,1963302030.009702,2072520374.2697005,2134862240.948985,2153851939.3341756 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|Low,people,260010176.9918704,342670923.33542496,361578011.0087117,370512340.6996879,370113978.2069582,363119750.2100638,351930285.2273642,337620095.3765487,321426695.8701851,304691500.44796014 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,350650989.478126,439366870.6867342,473977130.6263634,497026160.74569863,508578050.92285705,508952374.47172236,500061355.3446486,484298580.96153355,463896467.7598435,440854746.947303 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,84138386.34064448,93526230.73300102,96835345.15293589,98058687.67362091,98529974.39531627,97437089.08572808,95409324.41826908,93426278.28097595,92089024.20234688,91111109.59145437 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|Low,people,15943018.859851567,21937773.50676543,22776373.642152835,23334940.812214036,23807391.04864673,24179261.657670278,24301542.52945377,24335375.068984788,24475588.512876093,24624791.025992963 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200673775.5261855,502156052.4424095,574961871.8263097,638404007.0154645,691087803.4226649,727267697.2994435,747386564.6038151,754574516.8177239,752102433.2467781,741386698.4834538 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,72898646.28073151,87463258.3660525,93891234.01808853,99680502.77676754,104788938.11870837,110092508.34793995,115919980.72020692,121675976.37126277,127064357.39273044,132580370.98586178 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,830746571.8959476,933772049.2704425,943798078.4872203,921579454.995922,880579126.4416739,820594707.7749577,752037481.8242366,685122267.6987973,622875376.2268927,568041312.8204256 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|Low,people,4374763328.5482235,5298493663.847652,5764297679.831751,6147993572.339781,6435884705.727001,6613684350.800689,6746443291.366744,6876322633.596285,7007455280.815909,7169422812.728495 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013456745557259722,0.01475626906525648,0.0162293184826934,0.017737864932322038,0.01921290547557602,0.020634036697824428,0.022108463752328087,0.02363721691306931,0.025251962768484657,0.026843309380824184 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,9.384706660104378,8.980075892938642,8.534726088856399,8.133662399782063,7.767512764807276,7.469924414826531,7.205293369634232,6.9609856668090995,6.7514881212199525,6.569719554659089 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.6803599089777961,0.6745797065512693,0.6663920422495896,0.656729657984902,0.6461536564243613,0.6353313485194626,0.6271453393279034,0.6215638528809558,0.6173238098461685,0.614490692860567 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.145099086680328,4.4641985646301565,4.621532066125991,4.734445191484847,4.8076424625650445,4.866248084526904,4.878960062666985,4.855161568903398,4.8063154517730355,4.721520764512359 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.004706564430717858,0.004572872345652824,0.004353883653733062,0.00426332112263548,0.0039974039555230375,0.003992993464795904,0.0037998022486222735,0.0037790017343414745,0.003622938802517383,0.0035959992862842167 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|%,%,1.6184488424295758,1.7445029422539005,1.8439881323607281,1.933439207361693,2.00911506679241,2.078130251918684,2.137204229813178,2.1838801607824005,2.2240474763358353,2.2551588452540927 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.97329205193425,99.033693734434,99.09108641965031,99.13852270442105,99.18365405365802,99.22124248692985,99.24793855245585,99.26582758049366,99.27502237710651,99.27943634050499 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,32.689229237038376,33.37079187015046,33.82044657967905,34.21554047624726,34.422839434378574,34.40846227972192,34.284588882562325,34.07267895448564,33.82396738712922,33.57798689845672 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.94163242459818,85.60802196262868,85.32684917155895,85.09816632559289,84.93068864681926,84.78925411489234,84.66422645855472,84.55089329413774,84.46050844348959,84.40230767752008 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,52.42432553723382,51.68488209363177,50.98613420077713,50.293134828849894,49.63434483891483,49.01969323657686,48.470859486595245,48.00530293034581,47.64628460556706,47.40527089872449 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.11688553911483,66.33680025164807,66.51600167706484,66.65431468698108,66.76116166846793,66.85205391902295,66.96897511800478,67.120352558416,67.28194085581475,67.45076299513701 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,30.780005889268274,32.22441151229336,33.319791838645145,33.997312932923194,34.321004193662155,34.324969337955714,34.241342853794094,34.11848723088613,34.02671774202194,34.04596039994245 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,13.213086641819032,13.929328788866979,14.683227989317077,15.433896860309515,16.180765308774355,16.880255890761077,17.518867653322726,18.086828123142233,18.58176769125937,18.97592408794806 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66105953539751,99.68950066562955,99.7132528093358,99.73339091954804,99.75002203642084,99.7655203524176,99.78044497802763,99.79470596965008,99.80637721629597,99.81408700156736 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,23.634892476839404,23.715544020725652,23.799992957710018,23.890189751277145,23.961900699155013,24.024876790027484,24.093371540803147,24.16185810421294,24.237119134484587,24.32910202153421 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,60.33086120521812,60.53491761354605,60.71614696317458,60.88040973877865,61.02956576508633,61.13582146965604,61.2124044193346,61.263904330441775,61.29580822312406,61.325189856258554 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|Low|%,%,68.47227164679447,69.82490394117961,70.9513954210424,71.91870214007987,72.72833810667888,73.32021668373584,73.7474363920018,74.05316152498868,74.26323021338466,74.41355253652439 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Absolute,days/yr,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.08163040499845,126.15268350742959,126.19749894264511,126.25799941220308,126.32844534613267,126.3927504987545,126.43296229964173,126.44446177442363,126.42432296191768,126.38095395347452 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.953837498953746,36.309354055802096,36.54610898786552,36.74172330964201,36.85039671005452,36.854244186382076,36.80044910467569,36.70184490412794,36.58785291357678,36.48200559899669 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.87947500124132,117.40424164077105,116.98173793214026,116.76328553768862,116.63880080404886,116.57025410851384,116.53577732362459,116.50459480581121,116.5014720995584,116.5366425707072 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,56.663189706315,55.958898112110006,55.308109973350625,54.66117982148659,54.05423971776158,53.516183489792496,53.069344752330665,52.7262638454313,52.49967969313239,52.391323423551334 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,63.72392832730371,63.85301979652537,63.93702082799564,63.98536690642559,64.00361830127734,64.01279858876846,64.07743173725996,64.21398160327152,64.37513946801265,64.56233185091978 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.99600336212994,45.277118469579555,46.315669966156236,47.001621081418726,47.394794544733,47.51734996931109,47.54865544639284,47.54139328929392,47.550617912134264,47.634769344882045 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.66827776544081,23.187282340356663,23.736003259798576,24.29141050764482,24.859233770013116,25.401002710753882,25.904072208879317,26.36195561388783,26.76694537984437,27.092837577860266 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.7255649702761,154.56929641856703,155.843368477029,156.89006242690192,157.69096904295378,158.41363133472095,159.0142253646017,159.49476413148136,159.82567486976924,159.95493079568115 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.7735932956227,38.87600036164969,38.97975779781357,39.087767210450025,39.18020679466322,39.26132600158441,39.343144390788936,39.4227546247746,39.50439558076549,39.59610265560114 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,50.879648940904076,50.94510665179159,51.000181977842104,51.0462425188975,51.08914829427694,51.11923130818164,51.14117673904973,51.1561446838724,51.16327073702426,51.16699402138526 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.47428478948619,83.8009911424503,85.85568558718417,87.77980265663939,89.5308358832778,91.00111745253407,92.21379133747705,93.20418343682972,93.99974401250877,94.62717527702195 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Difference,days/yr,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Difference,days/yr,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4986029946857582,1.444358427904314,1.3914845797800524,1.3354803103177755,1.2755701432853153,1.2162009691000708,1.1574414166393816,1.0987058791681172,1.0410478195668882,0.9890891788784392 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.166294886465264,9.29032889702031,9.38178310720818,9.464507525079561,9.518934277048068,9.543311244053008,9.555562819643953,9.556365805428069,9.551682579296552,9.549287869851293 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.169284848065853,-1.3678026722127514,-1.5696607014958848,-1.7570527399331846,-1.9227764393385598,-2.063585460069812,-2.1875662227029586,-2.2956760537003933,-2.38583276622484,-2.464660818852516 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,7.473212900599972,7.472218325677586,7.467430673921628,7.467110059939056,7.463363450326547,7.450186410825479,7.431021995205765,7.41004944716295,7.3901176782097115,7.370304790019633 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,11.29001000469076,11.315090312422264,11.33796920629425,11.353275305490202,11.363551478992822,11.367543300138383,11.363635957866025,11.351854279469537,11.33730661761345,11.32041943450028 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,3.9653702581915358,3.9171874356198977,3.879229077352708,3.846350435699165,3.8039095945448884,3.7595553331039713,3.7238455026975776,3.681078767024845,3.6462149285819665,3.6218915884258394 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,9.08235015260106,8.997006138888782,8.903547841571104,8.805210660133389,8.698017926648658,8.589450295254325,8.481449697351284,8.377921702225194,8.282045127326867,8.20113086046017 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.0592543408298217,-0.2661778707344854,-0.5255990667230502,-0.7523732599765839,-0.9466150237742914,-1.1174686889238161,-1.2694288702510055,-1.4055741316048551,-1.5127177423146145,-1.579825729624662 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.9266359109050715,2.915524592482689,2.905653533125613,2.8966274805238212,2.886492404532917,2.8779013870196053,2.8719362913576925,2.866735217672729,2.8630814607762236,2.8627127306887923 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-1.2716405159548494,-1.3223430390074749,-1.365918611607727,-1.402612273253867,-1.4343361192568553,-1.459699864324859,-1.4809338037914503,-1.4992847625358696,-1.5133768972960584,-1.5242520120694827 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.7038998102372322,2.5587037525633303,2.4122783384743007,2.2704606499840736,2.133348571196702,2.006092363497626,1.8848764844616819,1.7700042562490463,1.6663557816408694,1.5725244537481267 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Risk score,risk score,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area,km2,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|%,%,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|Low,km2,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|Low|%,%,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.277365191987547,2.276692226809036,2.275657257746515,2.274584001746355,2.273446600318426,2.2722088711687745,2.2706745033528994,2.2687852953815546,2.266547866207648,2.264233365899138 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0431102101021785,1.0543863927694188,1.062184709254106,1.068993182054552,1.0731145116523126,1.0741290611992085,1.073639541502989,1.0719392894820419,1.0697511731169673,1.0677254049776994 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9583539732187196,1.9486625629519339,1.9400054832353193,1.9336478775357115,1.928899931925223,1.9251511184179868,1.9220907024818243,1.9194669379589167,1.917585893801451,1.9164717921691572 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.286386597404718,1.2737136960167186,1.2618714113962552,1.2501836639381065,1.2391997660348364,1.2292313596618394,1.2207212327263464,1.2139427515314185,1.2091982529728964,1.2065975673284859 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5786707259241037,1.5819511526580396,1.5844657602157977,1.5861910402183546,1.5872838581404707,1.5880347682041496,1.589434685120084,1.5917698625576626,1.5944147901615613,1.5973754064770542 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,1.0315579707552487,1.051738597947513,1.0679558477100382,1.0782371117469562,1.0832457466836152,1.0835903750721472,1.0825827871617648,1.0808222833224264,1.0795769295466597,1.0799860995566897 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.7656796465098824,0.7729458028672141,0.7805279113883085,0.7880405285558073,0.7954576133409754,0.8023002960526132,0.8084192281622069,0.8137840170250259,0.8183856312618663,0.821971088743073 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.448939211453547,2.4573653162918063,2.4628628284490244,2.4671819048391717,2.4702801985056975,2.4731344921264884,2.4753528988631595,2.476928249509651,2.4778343207951545,2.4778534622102213 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8512356280827742,0.852475226759176,0.8537883283929951,0.8552014415465885,0.8563129315213722,0.8572895056793671,0.8583739339267413,0.8594658212962265,0.8606676599766577,0.8621597247470628 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1495064718062906,1.1503144190167873,1.1509730534254448,1.1515405230234859,1.1521053036166267,1.1524619480085803,1.1526953045159805,1.1528076668576206,1.1528082278189735,1.1528031194294925 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5994680008003306,1.628240708455214,1.6528225120400377,1.675116148397448,1.6947720205430452,1.7103290784866196,1.7222878271043705,1.7313637257492964,1.7380745487200442,1.7429383410481027 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,402382.1689426899,499185.1967636888,575516.3982589275,639147.1527458172,689742.7629610735,724030.9081879742,744786.495058047,754612.7943139876,755661.377251926,747031.0614578235 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,518188.7457357347,626446.6029407105,669274.6498607846,698730.8783250508,714974.6605390678,718316.0085536279,716773.7663756523,713800.2761991896,711474.8703139285,713513.7119712629 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,100311942.72973245,108367364.90779853,128920791.38239147,148223004.7691881,164476645.33745262,177403542.376231,186193187.13261664,190499865.90779588,190933274.00387052,187983604.08322036 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4896510.100017054,6085448.630767516,6493262.872899379,6721983.301417079,6781264.366417074,6689354.723612385,6495192.041428221,6232604.169106931,5922022.204221924,5589710.678812605 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population,people,170.0,285.1849831679198,283.00376446204405,343.5209893109755,349.01691432853846,402.50788245978464,402.0290149006646,405.4228009834822,416.5517624210622,434.6023367236962 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,7180181.654842485,19201230.22439394,22729125.666831475,25846361.45122306,28416098.59170781,30281220.622091778,31234161.15273914,31436063.764518708,31075235.886641603,30148298.399757944 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,28601.540035426617,31484.512358218777,29581.630200371583,27778.21484335331,25109.43416764717,22885.046499788703,20290.35949247283,17856.025281595605,16188.783124821735,13856.980195454595 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population,people,113337976.93930584,145054773.92771375,164271561.92698354,181331713.76180556,195118865.90387458,205757392.11696005,214788774.59807187,223119873.50468224,231350858.53630704,240045988.8912053 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544397522.3273656,1835233888.8960867,2028530528.1902227,2175941123.715006,2272607559.0291753,2320526228.8024173,2321484476.5809875,2282413691.2660165,2212162519.329596,2119832834.633369 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,219364973.8175276,251176979.95453525,257477133.3391681,261905669.00857946,263674928.15836272,262521157.43276685,260508436.45694458,259350016.83660588,259197205.7086535,259942306.19840762 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,821777212.806585,920617484.5996747,1144827240.83125,1373737886.905785,1589916192.662275,1777566455.5283813,1927894583.194408,2034655481.0056112,2095410918.3677382,2113692589.498372 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|Low,people,282369998.36096567,372377703.8766168,393037077.25155896,402840716.4742908,402396463.193671,394644692.5175758,382233469.7982414,366399089.0080663,348507274.83959883,330036526.7640509 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,382570996.42202336,479115351.06651545,516587478.1240927,541408940.8653231,553682455.4284382,553716093.5970563,543508120.557435,525702650.5104067,502864975.7791429,477220826.1122388 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,110338627.90407525,119887986.02832009,122247791.90036452,122598978.29222196,122459195.18559074,120815894.69795144,118151191.69143821,115572802.05293609,113798858.91818011,112390866.63101712 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|Low,people,23147610.927022878,31049634.51613311,31457106.213628717,31537125.02137688,31578826.499255028,31577787.97823568,31331869.71165758,31045243.41967551,30954192.653168052,30928573.590786662 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200673775.5261855,502156052.4424095,574961871.8263097,638404007.0154645,691087803.4226649,727267697.2994435,747386564.6038151,754574516.8177239,752102433.2467781,741386698.4834538 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69318301.73867501,83220592.4114011,89383222.78114949,94936699.76290615,99852874.58804682,104948817.98477304,110530492.39516976,116040073.22384179,121188625.8778403,126430115.31610008 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,849546636.1871641,953823928.5304503,963002199.972714,939345344.9335024,896685753.3969249,834954658.4380212,764715200.0418301,696309083.2815624,632775315.2467052,576875162.5019245 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|Low,people,4503505656.0175905,5437410188.516085,5899963944.111426,6278716042.178605,6560234725.785942,6730932566.00942,6856834002.697698,6980734684.682196,7106874694.525385,7265031040.387175 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.025772986295421924,0.026922628895972227,0.028097794835549226,0.029104229293707685,0.030085777007903665,0.030940883563313454,0.031823169313484584,0.03280068524337958,0.03389221693885324,0.03496570163897245 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.09435212404162603,0.1013149919411263,0.1068448679013095,0.11084333316809632,0.11334678966561955,0.11450044274541615,0.11500482248138601,0.11469296605233958,0.11394352370564292,0.11350017012310802 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,10.325208041907421,9.912426508669995,9.44737458342013,9.023955294957368,8.632044681055378,8.311504779897385,8.02928022254325,7.771664894051157,7.553799534146323,7.366453422543914 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.9232599009795258,0.918797517960151,0.9112378134629238,0.9014599747044876,0.8901781857504151,0.8786619831189184,0.8698459690196977,0.8637947861770378,0.8589096390739364,0.8552255653788917 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|%,%,0.00014089080298122084,0.00018107741858891852,0.00018244382800871591,0.00022720724089439153,0.00023721040108944216,0.0002810026273823038,0.0002898208250074717,0.0003013231765610526,0.0003162444113088782,0.00033490562179425246 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,3.565909444330212,3.8118848591497443,3.9418179966489766,4.037796195098638,4.101514231149577,4.153933611361095,4.169941829216323,4.157512174481677,4.123782317255008,4.058914039836679 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0020771142494090743,0.0020410895391402414,0.0019030369393577492,0.0018350551244468182,0.001740238688203825,0.0017049782357596577,0.0016515422716087604,0.0015966928476108893,0.0015931028640043025,0.0014959861582978008 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|%,%,1.7739265331781096,1.9115688907622632,2.0219803337869706,2.1212028537665444,2.2049293141968644,2.2810548212010597,2.347921832035189,2.4028442108505264,2.451797603986352,2.4915080714481657 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.92022870251962,98.9799402073442,99.03668213654245,99.08373857591896,99.12849821562644,99.16583814174663,99.19217661311794,99.20946695643516,99.21784315850147,99.2213660776573 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,39.94210872069908,40.62276589964793,41.10436620444779,41.54746588288903,41.80107110303696,41.84619081038729,41.79802316304754,41.67219272469694,41.510732403055876,41.34958513158969 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,84.58634590686536,84.20942196439988,83.89346405232654,83.63444863184922,83.4418016371659,83.28047959931202,83.13733754912164,83.0061506755789,82.89971510513392,82.82859606853248 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,56.9326050514026,56.165540781296286,55.42217877332804,54.68137020735154,53.963605786718375,53.27543256312421,52.64447415684853,52.09731145184882,51.66054038904229,51.348563825121005 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,72.13555227283317,72.33813348630636,72.4957626454343,72.60632290388888,72.68202757232078,72.73187041008264,72.78743180815947,72.85866329217029,72.9337986172133,73.01477201126242 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,40.364734390688135,41.30733984336096,42.06388661517216,42.50552326511081,42.65628380917292,42.56081457232587,42.40314547826541,42.20621053984298,42.048460012614704,41.99767747086815 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,19.184032297677266,19.714879808381248,20.279429450702278,20.858880198909535,21.462644910013974,22.045385383706407,22.58699743624948,23.073816622141262,23.500297721097255,23.833634323547194 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66105953539751,99.68950066562955,99.7132528093358,99.73339091954804,99.75002203642084,99.7655203524176,99.78044497802763,99.79470596965008,99.80637721629597,99.81408700156736 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.47408822876503,22.56515089460102,22.65728100153574,22.753253730823573,22.833179802752344,22.90239780325954,22.973194123388293,23.042706269987473,23.116342170347625,23.200502089768236 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.69616815654747,61.83484821218597,61.9515809919033,62.054041217768955,62.14585437505069,62.20566431866803,62.244312580038574,62.26423380729089,62.27003964523442,62.278883710301926 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|Low|%,%,70.48730170828318,71.65558141409971,72.6212798192548,73.44788239388681,74.13354822400295,74.6200465650704,74.9541510430484,75.17760592590193,75.31685189373975,75.40589851159676 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Absolute,days/yr,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,117.62528659476922,117.71727333727905,117.79097997483512,117.87598253189427,117.96849684684923,118.05522664341757,118.12290499586659,118.16882825977524,118.19057348587687,118.1924753968085 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.98045936157913,36.325914917490095,36.55485931659299,36.7469279468667,36.855409083280065,36.861440712079755,36.811577666256355,36.71885472066298,36.61083544494097,36.50923668764238 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,114.58991804295195,114.07192832022206,113.59801529906754,113.32203190996681,113.14117322361432,113.02485438244054,112.9456129015039,112.8730613672471,112.83401247197872,112.83443189207031 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.95892515010231,55.27854020479344,54.64713286165137,54.01829628846951,53.42818700293162,52.90370189055463,52.46731931024419,52.131289460515504,51.90864454139664,51.80281918093699 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.36972260602161,62.485155180360756,62.55834303724263,62.597442420308695,62.60765788212468,62.60871470507223,62.662135870341515,62.78363940804309,62.92905048385403,63.09994277045964 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.1172152919434,44.391530413027645,45.42235094613872,46.10302936986615,46.49304672897863,46.615026507332125,46.64697198294808,46.64157477114176,46.65324413565255,46.73934427115432 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.927256730555886,23.41471830230896,23.92997602818943,24.45165801740176,24.984912256654308,25.49355170498227,25.96543612481108,26.394918020987234,26.77473138462207,27.080364548262445 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,149.74685708059943,151.5104726608844,152.69722380540586,153.66517748083416,154.399080897278,155.06063675730692,155.60429983799025,156.0325846876217,156.32275344257334,156.4257408459883 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.29226046591593,38.392759807474796,38.49432327083443,38.59982763596866,38.69053591405916,38.770059612805284,38.849862044429656,38.92733666775443,39.0064813282399,39.094737017554884 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.83584513300945,51.90531893312039,51.964545366034756,52.01509779701675,52.0623384305995,52.09606818659773,52.12106351136859,52.138618851820794,52.148179914647436,52.15390384478565 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,78.79913210116084,80.97734890976497,82.8975136747631,84.69140335784643,86.32020359718706,87.68897102273115,88.82282478080313,89.75377228029728,90.50914961650145,91.11203370998055 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Difference,days/yr,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-5.105032382025385,-5.140950547906872,-5.169422261764831,-5.203102387380071,-5.241624278923156,-5.2791394305912815,-5.312310639514893,-5.3403824655407695,-5.362099410786124,-5.376356675467449 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.76139749356207,9.871591201120735,9.95412432131388,10.036780008043452,10.096891298598157,10.131469208169982,10.159026192257977,10.179497366000977,10.19296224190314,10.203614368558776 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-4.33607281626567,-4.565557721260189,-4.803645337297908,-5.029636571199015,-5.232337478716089,-5.403406957508233,-5.556412268377466,-5.691921295100012,-5.806275495527287,-5.9089293503440015 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,6.031232297880072,6.047353436065615,6.053093567984361,6.0611535224059745,6.0655981309991684,6.058058184117506,6.04385466331984,6.026177598828693,6.009017034710554,5.995446937663353 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,9.178197864862009,9.171775543035281,9.16757151330846,9.158812643790178,9.147025580524264,9.129470109390121,9.102279637856556,9.064704301213691,9.025515496098118,8.985445632997456 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,1.8586779977271632,1.8482722758467656,1.833461143480291,1.8143094707656295,1.7797393950189742,1.7382410750502229,1.7043023333088303,1.6655364429339605,1.6360854153687159,1.6189010143570044 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,10.861645161954456,10.646825311874563,10.415893180419134,10.180267213625932,9.93488399305863,9.69385640539697,9.461456833807894,9.244999732029395,9.048929698777597,8.88671946567896 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-1.5953241100372841,-1.9564189662834248,-2.2585201782208073,-2.5241182515925424,-2.7519780075954725,-2.9536805392230425,-3.1356739456010096,-3.30054932806301,-3.430960564800195,-3.5143071273513455 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8483021062066722,2.8419478899113524,2.8355790973464443,2.8291545666686004,2.8229240076140103,2.8174865257012867,2.81286621763666,2.808199498705159,2.8036250315781257,2.7995028664051707 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,2.1604705785442806,2.112461929467232,2.0723853310614087,2.0401937909977845,2.0128025203513964,1.9910801612929852,1.9727597915010695,1.956808745971547,1.945456340951698,1.9372854089563902 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.9998323064721897,0.6878148447380489,0.38627036926643976,0.09332730989970467,-0.18681503527941645,-0.4366000506577741,-0.6575681761637064,-0.8519335516433646,-1.0155366377863242,-1.151614994602725 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Risk score,risk score,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area,km2,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area,km2,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|%,%,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|Low,km2,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|Low|%,%,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.1198910785291454,2.119978522067709,2.119794097318922,2.119595300467399,2.1193767497225298,2.1190644146686446,2.118505506331162,2.1176657677314177,2.116541473490771,2.115299035045221 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0716633256088448,1.0824658981145658,1.0900449548847657,1.0970069203990296,1.101576567240502,1.1032900931743275,1.103731444487624,1.1031464852090314,1.1019868681181195,1.1007428056526465 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9072244365589595,1.897414109869459,1.8885583542408257,1.8819599805735827,1.8769474152086438,1.8730009488988644,1.8697249830516975,1.8668680193904867,1.8647500692566603,1.8633644524721034 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2633720745972765,1.2519403083234066,1.2410932035462958,1.2303045175521283,1.2201782078246544,1.2109435031808629,1.2030653473572472,1.1967606525670462,1.1923475229262321,1.1900522795851727 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5020751574885036,1.5041836004559619,1.5056801182183488,1.5064891398622264,1.5067338799173593,1.5066494715467182,1.5071337633502973,1.5084422530021708,1.5100812246406181,1.5120779557090946 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9472184042486624,0.9692935366332855,0.9867323282952237,0.9977437185450418,1.0031250134310379,1.0035541222132933,1.0025515157134568,1.0008688836129473,0.9997660637430706,1.0004144248792246 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.8439803973558206,0.8463346727633088,0.8487195363622928,0.8510598870693402,0.8532928823754884,0.8551897348892408,0.8566661864302224,0.857812031784336,0.8586650500941323,0.8591900973942532 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4115310467831708,2.4198504295857663,2.4249123168827436,2.4288945491698377,2.4317128789226055,2.4342593726249846,2.436141853230099,2.4373755770029804,2.4380107556546884,2.4378621940030394 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8650127046999757,0.8664783679354602,0.867974043238905,0.8695417688217569,0.8708561055913052,0.8720032671371437,0.8731868534396503,0.8743467228942204,0.8755611480631684,0.876958341635037 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.2855211736434748,1.2865324846207744,1.2874171583996696,1.2882426358816526,1.2890586524020087,1.2896184515145548,1.2900081256645297,1.290240782781478,1.2903590455959173,1.2904684312803432 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5741927738556514,1.598845526504929,1.6196197536235901,1.6382273422698377,1.6544130326636057,1.667023899581909,1.6766377117921862,1.6838947838853915,1.6892673393206297,1.6932337100073744 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,30981.98942065239,36917.3157780675,40450.27143872973,43070.65080758879,44666.182872428486,45088.28871693485,44666.78285944309,43541.72825870806,42269.84927464028,41116.10233928469 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,957795.4214211628,1145417.5117661743,1208723.2051419192,1249962.549813275,1268433.1827854705,1263442.5497059051,1249875.7748810507,1235330.228226039,1223414.9341755444,1219518.9278665204 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,86005080.0363115,92361621.7482983,109266798.2043012,125011880.11825225,138174654.74580297,148563239.7723364,155445776.78392103,158545394.08311403,158480905.0723134,155659709.33645153 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4255211.390164204,5275138.461683882,5618781.209353744,5808244.834837322,5851819.0540339835,5764777.23337096,5588466.937416908,5350963.202582712,5072339.069303626,4775829.888508529 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population,people,653.9899881482124,1002.1811211595353,1079.6529968456512,1195.0016808764544,1252.8589159564008,1363.2917054787335,1390.4654198858134,1429.6625454281416,1460.32056622343,1496.085190369145 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,5842226.104912963,15654448.744542304,18507522.782099195,21020163.273812767,23084490.37486937,24565516.9729241,25304528.187382177,25428157.681215167,25101726.84118284,24324529.15318907 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,21696.0,24247.016505374027,22710.14040590564,21689.07881172439,19827.10977058553,17718.454884354545,15884.933413194167,13936.316613268347,12765.978059418907,10987.901459569894 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population,people,97113644.93221864,123544104.60401799,139114327.06788638,152799264.44059646,163753545.8174191,172110745.46577063,179100064.00091442,185456900.02626866,191775504.47103834,198506422.4064796 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544291114.9356768,1835120452.3213294,2028415413.511465,2175825653.317082,2272494338.3929186,2320417687.900203,2321382072.359636,2282318034.805902,2212073790.707534,2119751118.3761907 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,227856432.5670131,261129795.64730182,268017878.07590327,273033480.8040627,275394912.5806619,274837396.56424683,273478816.3894752,273046014.3732805,273585442.88398147,274954170.82241374 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,791439592.7808583,886462796.9317839,1102094067.7254336,1322409703.0811384,1530535050.3838675,1711225041.71296,1856058050.8600838,1959015454.5471075,2017732045.1173315,2035551630.4050736 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|Low,people,286225874.23539144,377680571.94183576,398689158.0939227,408625220.40894896,408163551.9406204,400213041.77804375,387547215.8595275,371334812.86477697,352999360.02336574,334220745.6635584 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,354420043.98273116,443749526.7460319,478398144.7112304,501374057.2867006,512760212.9492819,512863448.4583264,503606403.83027226,487411717.63744336,466580213.8384597,443140306.796587 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,78869537.00691484,87862759.76496047,91150183.24382475,92366344.46070707,92756818.27552682,91605437.34684613,89570066.6889089,87581983.18615006,86234968.98638776,85283810.2481377 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|Low,people,37326285.038735494,48478835.99259499,47511029.22364302,46123936.11872252,44764856.09297643,43489356.11592361,42037865.18449684,40706546.27072398,39788761.81988787,39132592.08657098 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,201303476.2647586,503597652.16591364,576484029.0250688,639973238.5010844,692678478.4344902,728835727.857187,748893487.7731899,755995468.8656448,753436902.7361163,742648858.9456744 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,68549278.79722168,82346645.18742804,88488159.93245697,94023874.88588963,98941212.41879877,104029729.80723782,109587160.08558756,115068723.97503269,120181253.36455564,125359856.47139582 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,1148781154.8296773,1289330383.7870624,1301313804.3930595,1268947690.6236143,1210879694.081527,1127159619.5038474,1032038295.2428722,939472441.1474106,853559879.824984,778006907.8862419 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|Low,people,4739062790.438979,5689620867.438241,6139431272.998997,6497143352.160634,6751480576.244116,6892587620.435171,6990721245.504097,7090056383.080523,7194672171.717973,7335675463.890531 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.0019844278657812713,0.001991067040793766,0.0019748584599258616,0.0019612668092911,0.0019482869409533322,0.00192681206766597,0.0019085182170414151,0.0018926243158453378,0.0018958477232205071,0.0019244894103162455 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.1743959766631401,0.1852479771285441,0.19296393671790693,0.19828809582412976,0.20108800648358224,0.20139427438908772,0.20053990304473107,0.1984920609498622,0.1959313172825912,0.1939915147514013 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,8.852588434344078,8.44837178222923,8.007120970155672,7.610840296230335,7.251666588335856,6.960312409467731,6.703347853001916,6.468044832669981,6.269902368520956,6.099787288289609 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.8023400271790043,0.7964546937404661,0.7885166523763205,0.7789219352547527,0.768169678601098,0.7572166233363032,0.7484159679200261,0.7416055937462872,0.735674532961096,0.7307018289935443 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0005420069092463574,0.0006363321390988673,0.0006960191008060628,0.0007903826643044211,0.0008515093502968396,0.0009517541589171266,0.001002379978060138,0.001062570873058319,0.0011086694606773921,0.0011528869005053189 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,2.9014376299757645,3.1077673383576143,3.2096829172065333,3.283833024138761,3.331962179318712,3.3698617340360655,3.378301406628133,3.3629488706411643,3.331078729630274,3.2748505929969314 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0015756169317932005,0.0015718944978851054,0.0014609822311245223,0.0014328010436390275,0.0013741410207679773,0.0013200576170729137,0.001292960778901573,0.0012461909471746645,0.0012562720774913277,0.0011862431973200566 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|%,%,1.5199889404339284,1.6280957917028545,1.7123257986936453,1.7874327058452588,1.8504873519221132,1.9080434568398867,1.9577976138349897,1.997240459089149,2.0323880591589667,2.0603566672559515 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.91341320108988,98.97382221581476,99.03106202104952,99.07848051144448,99.12355966317176,99.1611997328344,99.18780109490419,99.20530906584099,99.21386358537765,99.21754124838985 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,41.48823872799646,42.23243133157876,42.78712003236008,43.31272885972404,43.6590706693392,43.80941426179335,43.87909296726113,43.87285673801319,43.815025234854716,43.73755492124159 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,81.46366450186133,81.08527262550439,80.76195757350482,80.50954074777123,80.3253672503405,80.17232870984081,80.03950321258786,79.92032730551321,79.82654391675301,79.76651127469661 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,57.71004266715555,56.965369690154844,56.21917898785562,55.4665554882369,54.737004492083265,54.027137124565314,53.37632887210173,52.79910889271995,52.326419022921066,51.9995633775834 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.8275584097163,66.99850553480448,67.1364286160075,67.23739478851051,67.310155072063,67.36578239765542,67.44373338774196,67.5518112482902,67.671182114334,67.80045358318841 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,28.852524027834903,30.27306569591942,31.363601037843996,32.023756299418565,32.31003731161474,32.270605142504,32.14569835424659,31.98420005563695,31.86365557250689,31.86844326102508 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,30.934883949490434,30.78150322019525,30.628900151460535,30.506701455838204,30.424569791853862,30.361202511258114,30.304899193243795,30.254405522751437,30.207466859113623,30.155671007139617 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.97378920140325,99.97569129481113,99.9772342192566,99.97854097418234,99.97961640445416,99.9806204938135,99.98162796887739,99.98263107003284,99.98346554808283,99.98401370033837 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.22475884528817,22.328181288744577,22.43039624793365,22.534479156918703,22.624711630797485,22.701830293664162,22.7771273566411,22.84982018499936,22.9241890904574,23.004104716396608 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,83.42731556390976,83.5851840073514,83.71574597755094,83.82788366585756,83.92143273049862,83.975473656955,84.00318738290231,84.0079975051183,83.99696744738027,83.99287210063788 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|Low|%,%,74.17415991868934,74.9792782128406,75.56882730656963,76.00302635443555,76.29471075403468,76.41217678928986,76.41771347085398,76.35492377747042,76.24730724445138,76.13913780534386 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Absolute,days/yr,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.41023081478595,125.49316821039662,125.53981967866729,125.59731793805888,125.66358560755238,125.71695447827418,125.75225668228533,125.77042890051185,125.76786332784499,125.74984004340162 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,32.71776338401656,33.16563179283219,33.666946236088386,34.21159263152365,34.80807929039099,35.44412225691542,36.134401163548645,36.93033937507856,37.83725327921324,38.83752383063953 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.38452405488634,116.88937718335053,116.58317634388563,116.49125569521019,116.51866416415568,116.64775475928256,116.79789244567986,116.94735908706743,117.11085271673846,117.26012669965885 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.543707130656976,53.79930461984344,53.122077877245324,52.43507283644756,51.81151848429422,51.33218749523257,50.98474625197631,50.80297446391986,50.80549177672646,50.93691403637847 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,59.603569541225745,59.739114557720136,59.920434091164566,60.076379907381764,60.20825638977787,60.341199663992825,60.49901145732864,60.66531986339339,60.81030905578363,60.94126807894882 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.20674180049183,43.805756232950344,45.52203123810961,46.9122133704323,48.01342890353865,48.79425385805289,49.24633401856309,49.44745580001889,49.53502874912963,49.58330393424192 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.3102068390762,21.727216374699438,22.106578041299997,22.488295485505567,22.8838646163602,23.27616783306538,23.6786762527521,24.069439427524326,24.397676567055793,24.717492139104984 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.72206297307545,155.62981837685,156.79423710547405,157.78838305933309,158.5992051735966,159.35107473980136,160.04427757464603,160.6149833995535,160.98598672029084,161.15765573033482 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.36896469429825,38.5245499554465,38.730624386491606,38.94681594588306,39.15840786757797,39.353461253468886,39.53631450580292,39.70855854221924,39.87542942256429,40.04076831018924 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,53.53844022505898,53.58926509445789,53.63347047413114,53.678063044315735,53.72679261649069,53.766897642504325,53.813611007945894,53.859401751045795,53.904818003818754,53.94336000953555 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.93281570269512,83.61991634134638,86.41074305576677,89.15178036437725,91.8288416503522,94.24752836352008,96.33685317785357,98.14532492818549,99.65848550519718,100.88553813218955 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Difference,days/yr,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Difference,days/yr,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6693280376447435,0.6371214098714857,0.6036252630260874,0.5689487570812647,0.5317890227913492,0.49561600030104913,0.46263795070399677,0.43281441794367054,0.4080315904894781,0.39031530572481477 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,0.32275825790936163,0.4046185459967885,0.4870563539593817,0.5741857890270213,0.6603664565445542,0.7466635892860982,0.8385872415463016,0.9350035889739666,1.0313514405492255,1.129566463477959 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.463298475318541,-1.5574889587361116,-1.6645267207376908,-1.7756396974180875,-1.87699519696629,-1.9637219905749672,-2.034445579862768,-2.0894337592056402,-2.1310191981235076,-2.163547377831867 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,3.066892726141017,2.995204761517818,2.918463575088449,2.8469903052082945,2.768428270639851,2.6783607528106006,2.5855854318499087,2.492949212520282,2.403111716387206,2.320533359234581 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,3.3459714838500276,3.330131734670261,3.3140880520671594,3.2969058496138137,3.279619839381132,3.261613428848558,3.2453596381777574,3.2322748259289105,3.222498868961876,3.2162518040762 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.589561666521642,-1.467155254087655,-1.3437365202755824,-1.2455673220206216,-1.177576403795796,-1.1376716948215453,-1.1204827903552665,-1.1226235468867936,-1.1304504173835244,-1.1372383314493417 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,2.35413838289549,2.3321661468687007,2.3106282708130856,2.2876201393401305,2.2630647030306363,2.2377289407336614,2.2115529412415587,2.1872117522242918,2.165389526475964,2.145573092856918 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.025897842079121245,-0.13885160106860958,-0.22733863333856602,-0.3028276731419812,-0.36474004492017525,-0.42517093627012403,-0.48174815107053537,-0.5285809808164716,-0.559885754252507,-0.5776525062894061 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,0.9472667250441356,0.9466008082964448,0.9455094580846418,0.9440785565666884,0.9429846841831261,0.9422234349185642,0.9416311754518186,0.9415165868373768,0.9421636592007341,0.9434373380724482 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,1.6772958159075617,1.6598016436177516,1.643381374592622,1.6270183997532972,1.6105634678764875,1.595470382861233,1.5817988532678668,1.5690767938808257,1.5581892979056926,1.549940952536691 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8674713605123553,0.7840593252422934,0.6844704870101554,0.5705591810864415,0.4483575669994298,0.32897157574279634,0.2202770249486844,0.12481861641771719,0.046594423304938376,-0.013664047596910674 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Risk score,risk score,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Risk score,risk score,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area,km2,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|%,%,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|Low,km2,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|Low,km2,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|Low|%,%,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.226445915427821,2.226324527178341,2.2256134096013565,2.2248602010953262,2.2240147451489185,2.222990611826709,2.2218589316880255,2.2206539159124774,2.2194397720204653,2.218394303774516 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.6969114028199007,0.707958977837933,0.7200909135015234,0.7332499908082124,0.7474543075353294,0.7624429813992158,0.7786722328728123,0.7972377928022095,0.8181463522400506,0.8410395847845461 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8873213880016608,1.8815145039125711,1.8779945035649939,1.8763461798214265,1.8758759940691683,1.876440389920777,1.8770987175949085,1.8778055661118782,1.8788562270559968,1.8798545801048407 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1462621865720157,1.1314250676449618,1.1175695962974412,1.1037251969099622,1.0910052332527638,1.080690230682337,1.0727110690750608,1.067797950060066,1.0662693145900948,1.0672139222545691 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2508204383043657,1.253279333111742,1.2565921621202831,1.2595354862274444,1.2621620410143728,1.264774001577618,1.2678187544815216,1.2710494057920885,1.273919483910082,1.2765441169011136 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8406798320733443,0.8718064739896028,0.9047214341968728,0.9312209250509647,0.9518328894758648,0.9660947304734719,0.9740835648330021,0.9772334088283159,0.9782964476742305,0.9787974613666123 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.4910736132804535,0.4993566029837882,0.506920311576982,0.5145219028255958,0.5223832952304522,0.5301679252472864,0.5381989225672454,0.5459575572417563,0.5524775752419028,0.5588494421822227 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.3977903735650883,2.4109943957561715,2.419511401546016,2.426861632647022,2.433016544466564,2.4386509617671246,2.443769454628833,2.44798699815196,2.450793948315112,2.452215148682276 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.7702544985500817,0.7728011780540279,0.7762300910517416,0.7798258995196586,0.783365271372359,0.7866506730271595,0.7897691474849989,0.7927560244443294,0.7956943401367426,0.7986794568417598 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1773465641207137,1.178127193034566,1.1787907555283346,1.1794661507938209,1.1801930268995489,1.1807712135958848,1.1814603386517533,1.182145070625446,1.1828361920078392,1.183478521317223 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.4954975754069328,1.5322231139144962,1.5702037318987585,1.6066004613085274,1.641635392976282,1.6727641596432032,1.699319260325279,1.722254861864845,1.7415817702312282,1.7575362946173563 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210019.61308434606,273748.3293274634,342394.46511455195,414452.98748106917,488986.62193121546,563425.4167704734,631783.0164038612,696758.0822201677,757184.3555591637,809416.4412553924 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,58377314.10256392,61751652.83429167,74882481.35640289,88827222.50391527,102934341.78004354,117021961.58297513,130259036.55740224,142341680.0495328,153178583.76415232,162543510.8902146 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2609523.5827748682,3242140.259180019,3552226.0072918637,3798126.405157202,3976050.2068803236,4108098.2848980115,4207898.6240016315,4290851.041758234,4373392.807240489,4469455.347674722 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8311334.893727805,22176098.07700498,25996590.921958968,29651441.908286918,33014886.697214637,36008932.58002347,38684507.57259072,41177126.32308,43451197.13542884,45174490.59516719 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,247027.0,275760.8682270412,278640.2303463963,271715.70220057206,263521.66187250795,244512.21389846294,235022.72990678894,225890.61279371512,221049.58687875306,209592.99731712881 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population,people,69755219.19215094,90404645.16456898,107032986.66621128,124924826.17041934,145125136.75571734,169070020.27331915,197876788.9550532,233427515.26419362,277892599.3977404,332895072.48796934 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545667973.2824366,1848865729.7871466,2100336927.0418513,2329446293.761056,2533614350.0789676,2715437385.5613484,2864020373.402516,2995721635.7541156,3115520530.368386,3226601887.9059668 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,97650840.86544347,116104137.40624687,124446061.68890353,132144843.072394,139764481.83281288,148010835.2234193,157867144.55235,170975466.74764743,188240627.91728687,209391599.52914387 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826473238.8746773,937473348.5110118,1222627315.4294853,1550570306.593174,1907311018.0629983,2277001207.8161774,2636707493.053486,2974442098.12834,3282663466.2000046,3552206765.6524816 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|Low,people,232905692.85541812,307321206.03954595,330024053.1065863,344933442.1991746,352884214.74564767,358306369.9457643,362272604.28892434,365923571.3765558,370967826.44054055,377579132.01512456 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,278653789.7409423,352146593.2566991,393284251.0588387,429946154.98632246,461448674.4244639,488218640.8413582,510924319.03554,531387177.72554195,551116545.9140376,571525788.5693098 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,59863918.11727906,69945029.71334738,77143915.12619503,82431283.46144728,87092692.25241949,90434795.8070493,92362950.79859285,94194994.61565024,96477183.42890754,98569957.93977661 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|Low,people,4086556.2109293174,6021824.50977714,6528825.5551293865,6913753.312247035,7274736.406689351,7606845.063158687,7913519.154088697,8241003.129720165,8585201.934452051,9009544.45702735 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199129424.10931122,502418635.0856686,592563949.2636974,682428690.4001458,770637505.0949192,852620833.8508981,927992204.5916195,1000827550.0047213,1073433150.9638531,1143019572.5776005 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,64472753.65337928,77555933.83283144,82848420.85832992,86864543.27134055,90458314.71484773,95117413.61423746,100582401.2369204,106571306.95952371,113683142.10237782,122036423.90772904 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,852351435.8565402,959768587.3956317,980185547.0356698,968891047.0283021,940356882.0825807,899408656.661186,857836607.3677514,825741449.5050085,805923169.5161121,794715363.7316568 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|Low,people,4161255623.5663567,5211232148.106589,6039433949.285336,6914235152.338544,7909369517.652466,9085587310.104145,10509367374.416683,12288732727.643276,14550516685.598303,17405182506.51625 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013452059302542278,0.014668530675123762,0.016160280913765,0.017646250575849023,0.019150970089017064,0.020596103329084285,0.02190166002627304,0.023095385577925787,0.024134509755383907,0.024910807831959928 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.008929074856755,5.582375104077245,5.175788958973271,4.829575963994326,4.541537065221474,4.31923895203832,4.14636069350233,4.011675377772899,3.9084513671848025,3.8300190401184895 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.4920497673962046,0.4859515213401757,0.47947176254212154,0.4714846212939107,0.4622289765640687,0.4536588605526017,0.44638892826964255,0.4399719459963351,0.4343980152029114,0.42986167132259956 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.1277621722987385,4.369865652646281,4.347559899999527,4.309298389982992,4.251878830402144,4.194287653498877,4.142369053276003,4.090354703906393,4.025701252781207,3.931485860386964 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.01793976220375016,0.01782091345252041,0.01766258085732516,0.017455900521158748,0.017471115815457326,0.016966960898518627,0.01711517910626544,0.01710290187460706,0.017159992749297834,0.016511624526122114 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|%,%,1.0917928730878057,1.1606902640568733,1.2181777104120308,1.2726576518428936,1.3218780112676274,1.3668047253026083,1.4054529375680784,1.4375743388509092,1.4623779283785716,1.4789428207204798 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,99.00226428036137,99.06962259165483,99.13137685562344,99.18131668569042,99.22801659447458,99.26323398268624,99.28535414520222,99.29895042109239,99.30416559880898,99.30272661029811 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,17.780448332883665,18.75588724159627,19.801148755790337,20.91427236341989,22.116809887430826,23.386018368912925,24.758250149944843,26.327284438703735,28.10424872554688,30.065081815645378 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.07104430909344,84.74798068170337,84.50656075378538,84.30520365393198,84.15193154825018,84.04330415931739,83.93076287373142,83.82995144865713,83.75929713667706,83.7007855458213 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|Low|%,%,46.95919382177478,46.0988631691068,45.28932736069008,44.48872363394873,43.76508899576241,43.17974807550626,42.72656987955037,42.457302803701964,42.38806340484975,42.46753286946287 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,52.54274509383907,52.78185366697649,53.08465526916181,53.37184138612394,53.64493339318794,53.914170729274325,54.20067819606369,54.48696503004361,54.741008695626526,54.96800204216965 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.899589576779764,24.023750586330177,26.211850976572954,27.967979134253802,29.31160488694042,30.22281613285748,30.721711233320498,30.900503821647447,30.945849734687254,30.961752133675102 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.3868890803473763,3.8241673269784635,4.229944032327889,4.641856830632673,5.072380016740752,5.495588386103967,5.936810577744158,6.361169424808912,6.71329916248152,7.064370139198924 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89613578804808,99.00307660466503,99.09788832458482,99.17861215368634,99.24787335718625,99.31249776953008,99.37017248489838,99.41780892724317,99.4522928135525,99.47572686553181 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.903150132306553,21.05250503818924,21.258540042469114,21.47487101074714,21.688875771891816,21.88838315060396,22.080971266646586,22.267930031357693,22.454084188317132,22.645106036112445 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.90004361179684,62.024583257197996,62.13247260877065,62.24471238060004,62.34433965688757,62.41091709102322,62.47066904904527,62.519530183296254,62.563499623155806,62.60725243230869 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|Low|%,%,65.13102941288614,66.90614632729134,68.7367890000927,70.43799493673714,72.04280307397086,73.45018145455013,74.64453676631615,75.68073886346666,76.57042502620925,77.32547531856956 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Absolute,days/yr,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,124.33439667268482,124.4059880790719,124.44192455844411,124.48855371664504,124.54262093169652,124.58444915479464,124.6097601985939,124.61905799824444,124.60936397354774,124.58639579585714 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.18700951478782,33.63557581865702,34.13453079552234,34.67692400131147,35.27005143213508,35.90095098064486,36.58467215198895,37.37325844893292,38.27225540077103,39.263556697823596 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.16584801968104,116.66881974672506,116.35787626629157,116.26076743593953,116.28316632147741,116.40740031051618,116.55430206089497,116.70197852345837,116.86500097030377,117.01478066211908 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.55987894215664,53.82671414989358,53.16018478253769,52.48328445971137,51.86716858219971,51.391769759969485,51.04552100476329,50.86142358514428,50.857907517625925,50.98031735936196 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,60.1018826071054,60.23828894050759,60.42092168775006,60.57824668145723,60.711634342575145,60.84581140138072,61.00451526744886,61.17151274989739,61.31716375756635,61.448787487538524 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,41.91209322347845,43.47720170507996,45.15642999558531,46.51735301090759,47.59607392690129,48.36142237881773,48.805333447780384,49.00366369903132,49.09070789839184,49.138903657388475 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.582274971827896,21.997188084743875,22.373837020098016,22.752161949818554,23.143970904697515,23.532237578330587,23.930563421378668,24.31708078072477,24.641489978917974,24.9578517141862 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.0035451281248,154.88936377616423,156.02613173279053,156.9934268510962,157.77754592107343,158.50625492329002,159.17953714545888,159.73306785068397,160.0904313771659,160.25167441965417 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.723408179214765,38.87819107512636,39.08387681864659,39.29984559435961,39.51118257674499,39.706077647765674,39.888984942393776,40.06130605193459,40.22840696919336,40.39380983772371 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.730439887657546,52.778526886625926,52.820470731112465,52.86308166966272,52.90989004555148,52.94840959442168,52.993294890625265,53.037281853953814,53.08082935885871,53.11760288525694 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.53248252744572,83.20746857249145,85.98536338465634,88.7148032648771,91.37977867151551,93.78734096530322,95.86702951176247,97.66657683902132,99.17169106277184,100.39168224611143 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Difference,days/yr,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-0.00917146836409768,-0.052321192597688346,-0.09641482526416151,-0.14142166439370696,-0.18992204695419673,-0.2366968046271407,-0.2787660613110453,-0.3166484120557234,-0.3479454368515003,-0.370244854192555 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,1.8574748670430123,1.937838634472833,2.010646700695595,2.0865856477946343,2.1581644408428273,2.225285282770523,2.2930266379573845,2.35997297605715,2.421923579646597,2.4805414408553506 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.4679230103467173,-1.5770320303330996,-1.700616101117929,-1.8264183774357055,-1.9403262101483818,-2.0374582659477616,-2.1157694214374003,-2.1761671642430533,-2.2211098329824956,-2.2556363477065764 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.047654549402302,3.991581859459054,3.9277497597992532,3.8679396858419244,3.794926364355502,3.7022609671796496,3.6010365401329043,3.493367517266283,3.3816185456713597,3.2720365733955323 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,4.241342038210025,4.227836105112307,4.215244933018252,4.201568680465831,4.188045191619872,4.173195716687539,4.158932431306907,4.1468697668191545,4.1377121538591775,4.1317024276228125 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.8012078995764549,-1.7170032911762967,-1.6349950635150687,-1.569231770182206,-1.525615638504403,-1.5021246915107764,-1.4933934688486734,-1.4980724509041943,-1.5060789279408338,-1.5128912578940645 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,3.6719334927122516,3.62642159723564,3.578203559867969,3.5251130853328316,3.4680902487608956,3.4091109084865043,3.3471691955717082,3.288046587277639,3.235568571320405,3.1868690803286497 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.4170074337493213,-0.5468822519992026,-0.6571038604733381,-0.7534186209174131,-0.8359671611396914,-0.9144580065001232,-0.9865619553874891,-1.046579772427667,-1.08822592468201,-1.113883674944138 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.3415057703075965,2.3348213610868793,2.3286453509588236,2.322705229371164,2.317012991264911,2.312521639759749,2.3094906339991956,2.307517761287712,2.307237321379384,2.3073623781412502 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,0.8079343379893117,0.7871943580603435,0.768227709391167,0.7499473469526855,0.731851629116087,0.71549218855319,0.7003362617952078,0.6861243721763539,0.6736458825851128,0.6636886878501107 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8667971899677465,0.7656853788560324,0.6457955909147535,0.5134956816230499,0.3724927763089931,0.23533561140287892,0.11014589328080057,-0.0012732308842568342,-0.09469496617987386,-0.16928616808965077 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Risk score,risk score,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area,km2,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|%,%,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|Low,km2,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|Low|%,%,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2156656638286463,2.215290625888372,2.2143364727339643,2.213338554181763,2.212220295533904,2.2109380374124252,2.2095820900740315,2.208178569341153,2.2068045506309315,2.2056462512934947 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.7443475236223817,0.7556778456279993,0.7678135656078467,0.7809651692240186,0.7950310039393944,0.8097202493536111,0.825521011812967,0.8434839161539172,0.8635874627022677,0.8854831073953021 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8953452537045188,1.8889439133770674,1.8847891122415583,1.882553095814951,1.8815916731891849,1.8817576094174966,1.8821135181092645,1.882609176350065,1.8835289635377044,1.8844484086853297 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1735729783528357,1.1589906182475747,1.1452858793225267,1.1315497016919123,1.1187632314009195,1.108163248236167,1.0997536836122315,1.0942609499035167,1.092003191410579,1.092118543908184 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2805942347623904,1.2831400739985157,1.2866011158763468,1.28969438332019,1.2924793056864996,1.2952229601677354,1.2983627654252865,1.3016635350056462,1.3045963427241267,1.3072741666620087 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8263550251557444,0.8563071782688177,0.8879509035166662,0.9134576379246702,0.9333242393121981,0.9470850193877658,0.954818835982567,0.9578981749817186,0.9589641510691733,0.9594731467297584 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.547789970362979,0.5551611279476103,0.5616811797373581,0.5680967358643627,0.5746719045825431,0.5811181225273643,0.5877273775634582,0.5941046380637427,0.5994074248822766,0.6046331024096031 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.3905855672814726,2.4033550775961015,2.411201171572315,2.417902236243409,2.423406189978085,2.428461895011883,2.4330782073256008,2.436872367402434,2.4393516904223467,2.4405220488926958 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8175342265429164,0.8198545002515376,0.8230594199448493,0.8264402081420964,0.8297622609450218,0.8328621047159722,0.8358364863962563,0.8387019493167226,0.8415504441706748,0.8444405631956808 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1670849010974111,1.1678364733985445,1.1684849038541365,1.1691635446387048,1.1699015689495627,1.1704940904604917,1.1711914467315934,1.171881967572944,1.1725757956117615,1.1732154420914729 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5030545326263591,1.5392422471501985,1.5765825580295894,1.6123705509400916,1.6467761719272047,1.677306802472886,1.7033102995523337,1.7257260107871137,1.7445735667645188,1.7600906758823067 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,56643.0,79025.03583141904,106188.93695157407,136189.60393441102,168403.8246175121,201691.5092123386,233215.92227703996,263253.3815107774,290704.7108674061,313756.45298438537 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,59046262.07986883,62537680.37878589,75931986.49380913,90174811.89483681,104600070.68460459,119017403.22593294,132592139.02510683,145013830.24033117,156187540.7661409,165880500.45404303 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2640690.5827582087,3282159.00540466,3597574.4310083375,3848131.315811882,4029441.8398807067,4164085.606493994,4265815.087312043,4350277.049548314,4434176.84275141,4531467.707850738 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8100091.99588703,21617159.82123507,25316998.281754367,28846208.155300386,32084250.110216536,34956771.09398092,37522536.7790117,39905902.842155784,42077870.685467094,43710278.03889269 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,198557.0,221691.56024430285,223994.8945733088,218386.4982822182,211790.88682943324,196302.58767287846,188758.93230539348,181517.2651515927,177543.64984188564,168154.13116592055 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population,people,70042244.65851407,90837589.46512705,107629153.88171546,125707874.45930551,146119006.69200736,170312128.6296585,199433079.46694228,235381373.764063,280363713.8477717,336048852.09203136 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545063354.3825243,1848189039.9340174,2099610298.7599053,2328678186.2395744,2532811706.193253,2714602970.874544,2863160598.4196615,2994838802.046112,3114616186.2605686,3225678367.5376935 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,113947948.96461822,134721852.56598842,143477116.09229478,151462149.159144,159190341.92398265,167453065.01289427,177386899.89892265,190777920.8074176,208581028.84065032,230415983.3363472 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826729974.495754,937041911.2268356,1221230477.8435757,1547855412.9179842,1902993159.032114,2270980624.5111184,2628916833.8173575,2964867449.1258173,3271419956.021843,3539437340.710087 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|Low,people,249968800.50620526,330241081.5303965,354924116.2892169,371190058.77008253,379778403.3137919,385375824.6386142,389213322.61458904,392518446.60508275,397135347.6914829,403325150.8351477 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,287774958.92337644,363402213.4685007,405536916.50184387,443005183.71457165,475113270.63160866,502291749.5487983,525239898.46826446,545876192.2750818,565795871.1565553,586458891.6911199 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,58844886.69644979,68850782.54228619,76022217.52772266,81288099.60244314,85920549.60161635,89239705.07870829,91153701.10380669,92968145.35941859,95235728.0005508,97322177.34264407 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|Low,people,5584471.132279707,8221685.943355852,8920814.56631169,9460265.697585806,9967357.203515805,10442297.903083328,10879285.092844771,11339172.167364933,11832208.898865988,12421349.856090523 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199129424.10931122,502418635.0856686,592563949.2636974,682428690.4001458,770637505.0949192,852620833.8508981,927992204.5916195,1000827550.0047213,1073433150.9638531,1143019572.5776005 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,62908955.270642355,75633930.72623967,80753754.4814749,84624504.5340809,88085600.94746466,92588175.25862199,97881768.7603267,103691847.49491365,110603384.77014098,118727266.75887401 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,860574580.9335064,969003613.4772791,989677896.1327885,978395506.7945852,949866117.0925016,908937826.6798296,867436408.9732596,835550805.5229921,816145222.0675918,805453526.1008471 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|Low,people,4210527355.4146676,5268092249.662442,6099346088.347727,6976185633.887044,7972803883.718285,9150712672.603718,10576815863.56978,12359637750.38114,14626822648.288519,17489060701.444454 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.003628065892912055,0.004234477576698881,0.005011888993291395,0.005798572936965553,0.006595470026130318,0.007372864341383714,0.008084762821734866,0.008726039217673561,0.009265927945888819,0.009656249006023418 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.077785633473547,5.653432321076413,5.248329518583193,4.90284500414068,4.61503022046834,4.392889992870271,4.220627205996767,4.086985709380666,3.985226865555579,3.908648654405411 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.4979265930334471,0.49194977220391506,0.48559279442556896,0.47769203617374323,0.468435930348542,0.4598415618316818,0.45253291373517557,0.4460653237518774,0.44043553928221496,0.4358258738292405 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.0228499705858765,4.259725217779985,4.233907701534049,4.192272293038443,4.132025200754862,4.071732842395049,4.017944260040617,3.9640769519302883,3.8984642058281165,3.8040570640518454 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.014419741015719013,0.014326710434546433,0.014198696046549759,0.014029858997124167,0.014041438135152682,0.01362164399160385,0.013746087178867893,0.013743253586503601,0.013782643917094198,0.013247092755331582 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|%,%,1.0962853306013682,1.16624876421604,1.2249628860501771,1.2806348684391688,1.3309307146394298,1.376846242823207,1.4165067508182048,1.4496072683792853,1.4753818847201756,1.4929540215132786 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.96353756728152,99.03336284207917,99.09708156655618,99.14861281286846,99.19658136013884,99.23273182464156,99.25554881823923,99.26968720132095,99.27534051607701,99.27430411076588 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,20.747856354818474,21.763461080334267,22.82926177203929,23.971579719746373,25.190824464683487,26.457930923848267,27.819526687925872,29.376522148260136,31.14106226071387,33.08382669704698 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.09747077563708,84.70897857174174,84.41001298421801,84.15759366603758,83.96142450762552,83.82108657234963,83.68277329783035,83.5601050927558,83.47241164885028,83.39989909152435 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,50.39951238827942,49.53689537561104,48.70637257956027,47.8752417712976,47.10053588448773,46.44190675372209,45.90396853050871,45.543047366033775,45.37805464095087,45.36326996876142 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,54.26262576639682,54.46891385817734,54.73849347758015,54.99293835805319,55.23348786090065,55.4682694917407,55.71932603707459,55.97262833200669,56.19906884044376,56.4042326713253 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.526804590700436,23.64791371521716,25.830722144262058,27.580110099918105,28.91711275031092,29.823423321468862,30.319491299775812,30.49803806128025,30.54764269989597,30.56981249635446 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,4.628343113658551,5.22119213308379,5.779683653613262,6.35157156535376,6.949835797808516,7.544069927012973,8.16176135545514,8.752623213253809,9.252334272103901,9.739561576108926 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89613578804808,99.00307660466503,99.09788832458482,99.17861215368634,99.24787335718625,99.31249776953008,99.37017248489838,99.41780892724317,99.4522928135525,99.47572686553181 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.39614041861031,20.530778613333663,20.7210578721797,20.921082996327232,21.11997843718852,21.306355779344273,21.488098285050388,21.666270882048206,21.84578704646512,22.031058097583532 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.49723042638679,62.621392375151984,62.73417819609875,62.85530979121684,62.97478857328485,63.072156268092726,63.16976025578962,63.26222794905897,63.357033554357166,63.453199135729946 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|Low|%,%,65.90221938690792,67.6361637524914,69.4186688080113,71.06910851755971,72.62059749012533,73.97667132577367,75.12360092394346,76.11741078309116,76.9719764021138,77.69811842583137 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Absolute,days/yr,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.28198270358477,125.34402086366362,125.37036025149375,125.40955578938353,125.45697164597301,125.49308458056228,125.51360875558187,125.51829778652275,125.50426707238273,125.4777370086377 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.9628100233261,34.44322684564223,34.97942190882465,35.561990946905084,36.199493526984256,36.87867055018486,37.61505865728357,38.46326494915367,39.42876688141523,40.49260369794724 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,116.86251416531687,116.34121765698507,116.00100012126931,115.87596485695255,115.87366262774617,115.97689795770829,116.10830172888501,116.24543380639565,116.40203818334463,116.54843069759335 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.86873358199151,54.14618871629384,53.49123606527566,52.82647124029257,52.224155847988555,51.76215673726733,51.428734629939036,51.25668539170064,51.26429974593886,51.39737429311739 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,61.580622761582354,61.7255099004799,61.91748307357371,62.08438494058182,62.22783104514699,62.37219236321446,62.54135595584902,62.71867760413402,62.8734672140449,63.01320585427254 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.31826680043978,43.88262445202171,45.5605644316472,46.92050742895302,47.99814048735295,48.76280124499833,49.20669486611934,49.405601614942334,49.49400250697958,49.54374073887855 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.917654573419284,22.326393221746134,22.696925585154524,23.06878873517762,23.45380586732513,23.835202401037073,24.226252635216667,24.605866563553374,24.9244001586604,25.235039391889206 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.3422746161041,155.1857408647032,156.27045162313388,157.18677874275724,157.92004797053858,158.60437182561316,159.23839318590666,159.75732683225493,160.08573515836383,160.22265717407282 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.83090796663466,38.986077924458044,39.192554382769494,39.40944787579041,39.62179123969577,39.81792297925645,40.00235263484651,40.17668031112447,40.34642447008909,40.51498864211264 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.01226213174652,52.05833647971421,52.09899082277526,52.140805250346716,52.18703362255611,52.225472156323626,52.27032588569611,52.31439682368165,52.35848016355814,52.39628940200369 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.81611616833833,83.49470762109316,86.27338413996979,89.00249569688532,91.66651190175148,94.07143250173375,96.14746590386223,97.94353194920808,99.44548868689836,100.66304731220042 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Difference,days/yr,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Difference,days/yr,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6414822394314147,0.5879118838952898,0.533045223039352,0.4791338719354659,0.4219994942829733,0.36743708689601984,0.3186866961049409,0.2744252214253905,0.2373148865734329,0.2104186410485247 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,3.7080746224457597,3.8511065672780362,3.9973339598871833,4.152951036050113,4.312379247828697,4.475066292042293,4.6465139466574055,4.829466381313471,5.018793771829267,5.214145381952299 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.6505775863130074,-1.7811342056761321,-1.929747704546665,-2.079001661139401,-2.2131438765138602,-2.3268258881937642,-2.4165278933230065,-2.48381511617802,-2.531970125613701,-2.567263101424468 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.181260940992584,4.154491630499018,4.12356844268703,4.097323279647026,4.062681285108153,4.010449496296587,3.949754628441935,3.8813740198317213,3.8065321598332207,3.731043607562864 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,6.86388104085257,6.852813456676309,6.842949591696223,6.8332115049761875,6.82470431417008,6.814549284066126,6.804137192571423,6.795753928164732,6.790553197836779,6.788678492961243 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-0.458608576177478,-0.4054852827650122,-0.35725669364468216,-0.3203130275710894,-0.300961203395436,-0.2956124256166933,-0.29829214343172816,-0.30827841584928917,-0.31709319912965056,-0.32275207260695304 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,5.493900724029172,5.4060784169249345,5.317209044448718,5.222099119316378,5.121423318684645,5.01838738330636,4.910317166047056,4.807273703884841,4.716576886489314,4.631701805671118 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.0762077876303797,-0.2499912191020102,-0.4085008835666846,-0.5504422317496985,-0.6771202973882032,-0.7946359507978095,-0.901113477900194,-0.9906430479068369,-1.0556762781427387,-1.0995437142483404 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.6287807542253256,2.619676947408302,2.6117813588251213,2.6045317947796742,2.597524756687082,2.592571730448096,2.589956356619781,2.5894241121495076,2.5918208277252326,2.595330571180899 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.1132972594367077,-0.13554375799930307,-0.15462209793561474,-0.17180193688098758,-0.18757686336788973,-0.20028379999942164,-0.21109894015179734,-0.22042518908727138,-0.2267908854209856,-0.2300987423704475 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.3030720063040675,1.1955168608940614,1.0679670535517143,0.9296815921974388,0.7839187987748739,0.6419007506699518,0.5119354108054412,0.39671582077436646,0.30046251039306576,0.22395150092980634 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Risk score,risk score,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area,km2,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|%,%,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|Low,km2,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|Low|%,%,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.231626265890637,2.2310472204953378,2.229884498262233,2.2286968663928217,2.2273825439525825,2.2259168800165177,2.2244003369924656,2.2228470805191574,2.221343787403043,2.2200912878722288 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.8274864142088294,0.8413486992315448,0.8562900059316821,0.8724534752068592,0.8897614105260102,0.9078952266869994,0.9274028310520005,0.9494847996654043,0.9740764570528365,1.0007762563640694 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9045420519985947,1.8971934027087143,1.8920715477126089,1.888977636714,1.8873142598738768,1.886934884994048,1.8869096970034074,1.8871804674586519,1.8880070163778038,1.8889205142210952 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1847751610185042,1.1710106224943213,1.1582032846580739,1.1453834526655846,1.1336288433100985,1.1240892457419576,1.1167295693192079,1.1122401809826352,1.1109167267487183,1.111899827071023 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.3939004529589023,1.3965845155617673,1.4001849049932589,1.403485889151113,1.4065298009255165,1.4095339262851798,1.4129103253799085,1.416441444054573,1.4196068933976735,1.4225148574482933 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8581298668116174,0.8875721344133792,0.918580628661353,0.9435203879888205,0.9628565733789533,0.9761809322620437,0.9836156557998008,0.9865226284190031,0.9875358612559301,0.9880580701570916 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6221064584492836,0.6279176050616444,0.6329233121728514,0.6377606575307637,0.6426892041025186,0.6474692096237972,0.6523354716519636,0.6570520499904074,0.6609094985568739,0.6647677449853491 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.410696978429803,2.4218509059946207,2.4280811128033997,2.4332666104303775,2.4373336701492727,2.441109102191593,2.444570512040741,2.4473624944408843,2.449053309477705,2.449616454467185 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8382033585590455,0.8404293615987805,0.8435885192255738,0.8469464470467922,0.8502459006197749,0.8533544846259614,0.8563814644910941,0.8593416660150516,0.8623321332274906,0.8653990637735234 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.154336281122983,1.1551230445203735,1.15584971978126,1.156650216248612,1.157550261377754,1.1583375312271218,1.1592423351482635,1.1601497102462466,1.161086757144429,1.1619684893620283 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5274216175885185,1.5632652574885957,1.6002140363867186,1.6356541766900108,1.66973314691588,1.6999523523031395,1.7256740684009257,1.7478633775549475,1.7665487024833635,1.7819626361164749 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,75712.0,105064.41606604293,140180.57743723143,178866.1353613139,219927.90946966823,262453.1647991199,302570.6672029231,340793.49201084615,375784.8295347976,405323.33905813436 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,61402522.16347847,65209863.27056447,79340527.12285534,94344156.08527176,109499567.23888223,124601536.01266493,138818720.96947554,151848002.9210193,163609565.723014,173879443.2502295 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2797454.214861309,3483751.8172570295,3825964.354837667,4099412.1049145516,4300057.239670775,4450362.46207439,4565293.78962579,4661891.474864289,4757134.525451857,4866507.0661765775 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8386910.749894388,22389316.991772052,26201569.53960879,29825863.03774207,33139891.358876668,36071087.100358486,38681068.87996154,41100164.78412557,43300706.89390465,44939204.24422093 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,118075.0,131754.09497415414,133009.43262176999,129667.05262816785,126181.26119897027,115914.41655441468,112021.70439617605,108083.90990843071,105712.02550504159,98874.0738227842 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population,people,72780674.12823416,94622330.29259093,112317739.78685355,131331511.62592344,152732181.60388774,178032867.07105136,208475201.10262743,246076812.35815033,293179732.28289336,351589053.2327177 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545493131.1837173,1848687042.6103418,2100161336.8055525,2329274226.797602,2533446908.305735,2715273623.7764645,2863860070.870707,2995564707.3976474,3115366744.9598594,3226450986.0488005 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,146813255.22257838,172500496.18431717,182735914.18695635,191948260.2943224,200754664.8954012,210226163.90932083,221757532.96799648,237435548.63443878,258340161.85921,283985237.48671496 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,832423734.1535419,943510497.984076,1229713489.1177335,1558672602.7987852,1916334093.6615777,2286955479.1424775,2647531725.941761,2986031519.3079686,3294975705.8305664,3565173462.9728913 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|Low,people,256410044.75601798,338941200.6004897,364450407.3279805,381340947.9593646,390348105.5846393,396239365.86786747,400291980.98893964,403756946.4966739,408529244.75239867,414901193.9156394 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,328641058.71402913,414782692.8436025,462442189.6443238,504685549.78155077,540753645.0736549,571096635.4842714,596461987.7629479,619116372.6341771,641003368.0863371,663773623.329671 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,61269802.53189305,71326193.88071339,78393071.72966284,83553215.76322171,88121320.05844045,91397442.14082499,93288966.01823716,95124992.21096055,97443068.39393863,99580095.39580467 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|Low,people,4756806.797913713,6845120.7221920425,7286211.6264009075,7594388.388602625,7879300.766865502,8140134.17766464,8377294.512922761,8645711.001960723,8944247.803286225,9330772.093447074 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199415345.31053007,503071180.01937574,593262212.8946823,683162620.0125197,771398426.6491939,853393213.4875149,928765836.7637229,1001602680.6379316,1074218774.878076,1143823288.6228843 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69167879.28106505,83105328.93402281,88654603.88541642,92823172.84141019,96535622.99259277,101389458.44429427,107107208.00858656,113383795.78780772,120860147.33003981,129642546.79847705 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,854015631.8915437,961817737.2685295,982617509.815793,971721654.7139878,943777411.9552869,903563209.7566742,862782184.9842952,831559230.5741855,812780419.4813926,802657211.4385928 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|Low,people,4298406689.842829,5373400236.618504,6216149682.460719,7104730760.349169,8114372600.017377,9307879578.507826,10753366277.759184,12560949409.79453,14860307121.270567,17763804152.98737 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.004849462861856849,0.005629771745876747,0.006616221174257437,0.007615620442990883,0.00861339068819379,0.00959401606734746,0.010489044046674572,0.011296255187106953,0.011977773401875577,0.012474334958436646 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.320321624414325,5.89499876608535,5.483923834295871,5.12953411948318,4.831199526235357,4.5989983465463045,4.418829613379263,4.279596069614044,4.174604668099012,4.09712805319793 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.5274858233932248,0.5221657177767569,0.5164203710213483,0.5088850547967251,0.4998958649014269,0.4914552241879631,0.4843026850416635,0.4780174012704249,0.4725141067795916,0.46804916891232584 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.165296354739026,4.4118810698265145,4.381839656954081,4.334647332360396,4.267977770237888,4.201527355388706,4.142000835226332,4.0827096829689875,4.011758512562865,3.9110091499758393 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.008574922669213487,0.008514545006496,0.008431265849688669,0.008330233229871793,0.008365640275956647,0.008043423851497495,0.00815781322636357,0.008183379036984895,0.008206383087135559,0.007789246793678404 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|%,%,1.1391466076946017,1.2148404247708622,1.2783252280803308,1.337925041182904,1.391167078208865,1.439262641469529,1.4807299297055891,1.515475630334017,1.54282471166063,1.561994000801049 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.99106539161944,99.0600478178447,99.12308937485662,99.17399055499612,99.22145880281525,99.25724764528927,99.2797970291325,99.29374872915191,99.29926383952794,99.2980824160691 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,26.73203298540447,27.86636142200375,29.07589819022694,30.379227082518845,31.76810516721759,33.21616909592019,34.778157858145455,36.56099523322142,38.57008046041756,40.77546290621469 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.6835442954434,85.29374150544139,84.9963487372049,84.74572913592662,84.55003612214261,84.41071277108662,84.27531611910631,84.1565809753901,84.07345195280507,84.006320336799 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,51.69821674141052,50.8419325506752,50.01366915181477,49.184480159148784,48.41140200207752,47.75107960922571,47.21058974778918,46.84702565625885,46.67996061937631,46.665264566279085 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,61.968306232023615,62.17012975987095,62.41944383252864,62.64969880627629,62.86439831749553,63.06641928983233,63.27481987146365,63.4824729675151,63.669238759914194,63.840181164981594 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,22.413894230413035,24.498133735662737,26.636287650326658,28.34863776151814,29.657796180905947,30.544527293777733,31.029721879684622,31.205587911999256,31.255665277870797,31.279045822220557 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.942384778187695,4.347002635584743,4.7206449501715655,5.0988315642773925,5.49391833895011,5.880864731261656,6.284740039013053,6.673560441090872,6.994059283086737,7.316244241539242 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.03813640933697,99.13166251201055,99.21466298056994,99.28527548920798,99.34586994514638,99.40246384576619,99.45301365748733,99.4948069966766,99.52507992608808,99.54567338238611 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.425388757527916,22.55888453171134,22.748381044825557,22.947978409911784,23.146010858688506,23.331703728419786,23.51336966908895,23.691390331279237,23.87164774806452,24.05649989598924 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.020901984073504,62.157008581976456,62.28663103446722,62.426559825468296,62.571115980062075,62.69920592043622,62.83082334869389,62.960013023745,63.095825249029424,63.232906958266724 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|Low|%,%,67.27768680184168,68.98819555312318,70.74804902317986,72.37864757247874,73.91008170590358,75.24724826959643,76.37757972338578,77.35719811217548,78.20066165910889,78.91871280760625 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Absolute,days/yr,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.25409055377881,126.323651848791,126.35814985320488,126.40446469624911,126.45858450784044,126.50064631906929,126.52618291244654,126.53516520011779,126.5246685310222,126.50076410549826 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.1788294464602,35.68088813915832,36.24387267726623,36.85577192081255,37.526581041809415,38.24225686605914,39.01852085171753,39.913993860191404,40.93558660205752,42.062919982902486 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.50600383594605,116.95541913688072,116.58291769724674,116.4276484800717,116.3991934524137,116.48102266347156,116.59638071233276,116.72222791971137,116.87224992817916,117.01496239232621 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.499642245577576,54.78351523570361,54.13742214450889,53.48022459062628,52.88711289273916,52.43646173224882,52.115284882276995,51.95630962747073,51.977852644432794,52.1247967158062 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.637820227391074,62.79748014069103,63.00241957777768,63.180473358306,63.334317561935535,63.488182426526585,63.665942513405625,63.850685015751694,64.01145478557379,64.1559455896569 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.44591456067416,45.03519132676161,46.743385730983675,48.12769160974649,49.224022046332486,50.001716996626094,50.452368356786984,50.65355420861766,50.74311939127448,50.79366837157185 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.1989595333945,22.61418865529908,22.99056400042142,23.368347080207233,23.759510586107208,24.14705901378696,24.544342185904984,24.92979005212597,25.25343055442573,25.568696841852823 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,154.38332776743178,156.12169567162567,157.13803010321755,157.9938669191691,158.67277617297052,159.30821670068144,159.89980401033978,160.38442183682753,160.69096406818102,160.81952474881948 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.75276081740625,38.905947287471214,39.109896769850764,39.32414031914975,39.53385870812951,39.72762574147756,39.909896698855164,40.08228296329964,40.25025808114944,40.41713402424064 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.5884167775378,51.631801641924476,51.67020755666022,51.709908202192075,51.75345258652682,51.78914054710206,51.83080752794292,51.87148586587582,51.912353394440316,51.94761840726335 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.38401923767881,84.07877815525833,86.87460126562354,89.62001948598454,92.29999924693729,94.7183839014914,96.80507605504042,98.61050556789462,100.12083164221127,101.34556274971087 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Difference,days/yr,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4276168139528087,1.3807327139070096,1.3330488189832066,1.2849995432962635,1.233211267326244,1.183113033861278,1.137825816931222,1.0963664211650985,1.0614448890386787,1.0361011682745316 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,7.121322239832113,7.2763786061591995,7.445308267672312,7.62652471308128,7.818651307850518,8.020157597525788,8.234561824960336,8.471894835592146,8.731686285777059,9.010668245904006 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.2365840488779902,-1.39457195946833,-1.5731488749253455,-1.7509653244800163,-1.9102134603674716,-2.0448234221121377,-2.150432105196987,-2.2289607132479774,-2.2837864061544018,-2.3230264934557066 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,5.324656232401402,5.340510389500666,5.354948279837929,5.370846505494105,5.378910630214296,5.370485101853521,5.351352722071535,5.320513271543234,5.2783179783518905,5.229765098000704 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,8.918173277361136,8.932956306506963,8.943386152603436,8.950103358439936,8.95573273405702,8.956731068953172,8.954406274475534,8.951483334391218,8.950036213506166,8.950500322767386 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,2.4614751648071276,2.4766986587778406,2.4952828986150974,2.5074701854892525,2.5054162265996114,2.4944550548976268,2.4793260472299514,2.4606753107455965,2.447656683959151,2.439646804251716 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,6.890409007760712,6.805708319317662,6.719176549262376,6.626556790699929,6.528670255930676,6.428524934813302,6.322828427688475,6.221598761658527,6.13265091147492,6.048808039878679 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.963549371083813,0.6973639780042804,0.4684124225603185,0.2643314524716746,0.08222207221473703,-0.0860175106075354,-0.23716579424506273,-0.36318216880274157,-0.4529066119143695,-0.5099639013750336 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8435692628256026,2.831949296809981,2.82114810670968,2.810958315213347,2.800987202390392,2.793521291101049,2.788732515324998,2.7863655536541487,2.7873188680079717,2.789421620440856 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.6299026696940537,-0.6559925906459493,-0.6785032268415233,-0.6990268445687507,-0.7186364971034787,-0.7351196616580574,-0.7500055012281515,-0.7635473304365911,-0.7738732455528189,-0.7806004398572354 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.193916378822829,2.0722070373653225,1.9313865575667715,1.7820659946858557,1.62738831876993,1.4769664841314907,1.3386219324641706,1.216506303264169,1.1149920449943134,1.0339282431839594 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Risk score,risk score,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area,km2,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|%,%,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|Low,km2,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|Low|%,%,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2596514189736774,2.259098657058968,2.257986133149392,2.256830961775831,2.2555306426803954,2.2540696745968263,2.2525518408699385,2.2509890279960656,2.2494743498866354,2.248213719821614 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.9567032446082678,0.9717734852679645,0.9883610335353002,1.0063699684682603,1.0258188344905392,1.0463453212534652,1.0684807689871982,1.0937414515653112,1.1221932227190703,1.1532950472426495 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9373642162479001,1.928753636640186,1.9223039124851804,1.91793748750372,1.9151714566857065,1.9138862254735751,1.913167635773005,1.9129504286987025,1.9134862564787494,1.9142352441887978 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.217106865863171,1.2042616831440232,1.1924942643191794,1.1806345961791245,1.1698999989353343,1.161449781129553,1.1551597243679406,1.15168427038003,1.1513009007106516,1.1531119549562558 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.4823859442882052,1.4859139489931905,1.4901707689325048,1.493988752097676,1.4974655353372714,1.5007962831779507,1.5044037003218669,1.5080879026853438,1.5113537990358261,1.5143206589246165 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9625744132535579,0.9907030012865272,1.020691221436655,1.0447631823038581,1.0633076102508414,1.075993666126338,1.0829269380058943,1.0854673296590642,1.0862809658555352,1.0866926080098556 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6754177381835003,0.681151527324465,0.6860343615331416,0.6907284194799378,0.6955034284597789,0.7001254523140067,0.7048038249909244,0.7093275070975888,0.7130199984067137,0.7167019004406294 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4629774520141794,2.4706651935168793,2.4742382194233787,2.4770359288798183,2.4789666285698972,2.4807815348802875,2.4824660871217223,2.4837562315104402,2.4843621525395063,2.484236539909665 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8473322169749018,0.8494088569252567,0.8524102565155137,0.8556156835466641,0.8587615241933514,0.861740955118043,0.8646664589467972,0.8675471894789744,0.8704779995866582,0.8734992228966297 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1458773902076491,1.1465269381388925,1.1471297535721279,1.1478055488725012,1.1485810091057396,1.1492623315847286,1.1500676680940183,1.1508816109774833,1.151738219714849,1.1525518358640725 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5659638134473999,1.6013824691179568,1.637955275026225,1.6731039274680535,1.7069607998342775,1.7369755752408782,1.762499583225096,1.78454701887307,1.8031502693730401,1.8185064812033864 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210058.86164289713,278522.90475936886,355073.69751358865,437323.03762671485,523039.5143145751,610070.4546951377,690894.6391728073,768074.0619949931,839800.174098325,901465.8956634046 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,91171041.64085926,98712628.73212507,121907885.34176356,146665659.2200545,171914158.3279563,197120332.13497478,220898651.5916102,242728538.71226615,262546669.42602,279844248.03226894 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,3606466.382743789,4522603.713365739,5002176.409219384,5394210.641496316,5691582.153175506,5918445.836244525,6096106.101753669,6248563.233047391,6395918.8169249175,6559853.3277622545 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8342745.988459114,22071369.70995026,25857022.552864403,29472788.353956535,32803257.02298008,35757466.889405444,38387850.78034645,40822734.02758588,43045749.25749346,44743761.36187836 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,64783.11991506815,71303.12470782328,71799.60248545541,70167.08948535965,68311.87989584621,61870.29818546143,60044.54063656317,58480.86812234568,57023.10204384872,52855.746344962725 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population,people,103395095.99362013,136198946.15460056,163768479.21018797,193504443.94779745,227098401.48334748,266639717.87923643,313966923.8772711,372163806.3139683,444997765.4477552,535307679.7857996 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545215738.384041,1848352004.0657258,2099778053.23945,2328849416.82503,2532984716.319297,2714777749.4394455,2863336491.695944,2995015410.173894,3114793280.671671,3225855711.828201 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,179525947.80279914,208744864.3646158,219305470.27439734,228703937.766086,237666793.96405008,247520309.938461,259805449.97483686,276913172.72198135,300042143.4622139,328501076.5345292 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,834930296.3333378,946270479.3104509,1233190009.6977823,1562986002.6984963,1921530605.1173406,2293034475.168698,2654477741.018824,2993804464.985907,3303497616.4608245,3574350025.905238 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|Low,people,260015349.60512286,343835960.17269987,369884586.02959895,387229243.1756,396611180.7184843,402875515.21274245,407287499.58404434,411086583.92977786,416171650.6946061,422825461.7442434 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,350623249.0980406,442933750.65603137,494120920.3120529,539513508.3951676,578293779.3011618,610909804.4269398,638117762.1834693,662330120.4879954,685662932.407657,709862212.4916219 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,84137360.69154917,95004180.22517906,101610618.05448681,106217059.78232813,110483741.95127286,113558760.219251,115331027.68044056,117360001.60866567,120137797.00631878,122735643.30365771 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|Low,people,15940432.099850036,21671467.59386829,21973330.09479635,21884902.920716815,21737323.84726724,21600999.32331629,21413654.571680665,21377888.1623632,21568844.85609153,21965577.56004063 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200669464.1037345,505925099.941678,596304286.9509,686349349.4719931,774690550.2541522,856719442.1182324,932079448.0242718,1004902896.566973,1077545683.9622226,1147211688.0369763 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,72899550.05073887,87568997.24688715,93389345.91854195,97755750.66217947,101637045.23766829,106721264.08874685,112711222.55871893,119287768.51207164,127119658.6290023,136318687.6811823 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,830737773.8490324,935333991.138062,955260625.1205176,944343882.755057,916817380.023475,877378922.3820089,837407756.0794326,806737159.3701111,788139588.5123851,777952305.7346975 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|Low,people,4374695162.018245,5460297572.508214,6307921182.73223,7202087508.773016,8218827059.123893,9421670086.5348,10879233239.115236,12702762215.566238,15022792060.753738,17952137637.016506 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013454573229358037,0.014924371528493203,0.016758713360010277,0.018619993431474427,0.020484638320885325,0.022301219911137257,0.023950848801330533,0.02545929077371323,0.02676780805829188,0.027743745431100246 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,9.38447291251233,8.92366270051039,8.426129523681013,7.974277733172809,7.5849760981726675,7.275641300820415,7.031569635504639,6.840920395880841,6.699049330864029,6.593980850796031 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.680032537918018,0.677875100778229,0.67518292320131,0.669616302930868,0.6616652347951144,0.6535762311683929,0.6466967274016708,0.6407103156390378,0.6352903939640008,0.6309112175312463 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.143362257036057,4.349228618463757,4.324219076327477,4.283334341542383,4.224623739690633,4.164997159005773,4.1106027987015885,4.055150931269883,3.988136993618113,3.8939999724882846 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0047047236378750254,0.004607930133387158,0.004551267714811384,0.004507762061581376,0.004528981628118866,0.00429324536944537,0.0043726539460919025,0.004427773853319425,0.004426681051214252,0.004163947502384672 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|%,%,1.6183165965990725,1.7486357088032367,1.863903056952684,1.971304814303446,2.0685347144249158,2.155582792038072,2.230002507079066,2.2919883168036645,2.341749696749474,2.378195159149907 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.97329798248778,99.04209511222957,99.1049992164898,99.15590333292373,99.20335723416147,99.2391208821375,99.26164640971926,99.27554121709974,99.28098522698659,99.27976210410003 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,32.688421431189525,33.72140929470777,34.894637732429786,36.196466951087515,37.60920678649862,39.10872137274427,40.74519963628644,42.63987109820721,44.7961692505271,47.16718227831088 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.9415512728396,85.5432449654608,85.23664174710422,84.98025062485219,84.77930993861705,84.63508635080242,84.49641927366034,84.37564916945738,84.29089405492779,84.22254804445245 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,52.42512988432283,51.5761573530338,50.75940357885849,49.94393896047583,49.188155478617816,48.55080654945988,48.03564389364189,47.69746727926763,47.553208282798174,47.5565323190324 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.11325120845883,66.38957996180174,66.69537019452638,66.97310596173179,67.22856298373425,67.46300272210229,67.69381333146657,67.91349062625177,68.10516001283479,68.272872941702 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,30.779369696594767,32.63072072085958,34.52511288446774,36.038217372695804,37.184012880442644,37.950719076142896,38.36133967143207,38.49974399398282,38.53518605622916,38.55242150206423 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,13.211240131877066,13.762493105799722,14.23624443937416,14.693406247271163,15.156558387313249,15.605707757134615,16.064763159589923,16.501433915852285,16.86601074891721,17.22317603798222 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66098510697094,99.69403586554489,99.72340657773404,99.74840872136227,99.76985173225245,99.78989992562023,99.80783789079386,99.82263593848634,99.83331405888295,99.84056202883987 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,23.635259127920317,23.77054423331371,23.96329500527482,24.16742271321754,24.36916114268609,24.55865682140067,24.743625486583998,24.925017423615508,25.107992830416766,25.2953260870549 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,60.33040160194805,60.445509228482244,60.55251967756039,60.66772270293317,60.78370375397725,60.882250550566596,60.98296848121719,61.08065450203662,61.182967203306085,61.286667665172565 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|Low|%,%,68.47173666914178,70.10385605437357,71.79253072516639,73.37045852502014,74.861509251527,76.16715946268923,77.27157083530346,78.23055895083719,79.05572001513956,79.75541625300264 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Absolute,days/yr,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.081198525862,126.14305453679826,126.16731028571445,126.2009760974315,126.23951825380307,126.2652585814347,126.27550526449825,126.27031672324442,126.24808780862648,126.21630122176379 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.95348867704524,36.47076152472875,37.05128710184748,37.68303626440851,38.37549214136469,39.113969431319305,39.91508376448661,40.83986916754841,41.89532560995588,43.060082482122745 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.87698355154707,117.27818951305393,116.86158995976331,116.67174602082962,116.6155227581802,116.67538112437951,116.77451374064832,116.88845167222343,117.03102012699327,117.16925019250414 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,56.66390066656818,55.92184726993022,55.24844581225693,54.562866262602135,53.94160410270358,53.464467532465704,53.1193350175359,52.94119103796434,52.949779114275145,53.08962893591713 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,63.722019803464875,63.88271440590409,64.08827429117633,64.26671023302066,64.42137622749829,64.57600980397872,64.7545157846944,64.94004253031198,65.10162532979668,65.24702200089759 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.996026506498836,45.585700542450724,47.298211236789555,48.68623634070486,49.78523852101534,50.564296023769714,51.01438170640639,51.21366314177491,51.301103970668954,51.349542773126785 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.667110662642376,23.091841218934835,23.476393709756202,23.862233698647778,24.261653997911196,24.65734560856433,25.062831955123706,25.456108735442946,25.786180765477965,26.107782577415513 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.72035183442887,154.36102796726274,155.31436821445908,156.11325581887093,156.74035703084778,157.3300757381384,157.88143795233273,158.33260021531157,158.61720595574022,158.73659085332392 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.77412146858437,38.927534914328454,39.131793414959866,39.34638708809153,39.556454989354066,39.75053332703435,39.93301499890219,40.10551866800073,40.27356176144358,40.44036328910089 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,50.87900647757579,50.92040966181316,50.957560671464904,50.99644705654432,51.03909874599504,51.07407700426018,51.114672483461604,51.154162704552235,51.193937773127324,51.22837535630583 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.47325417294809,84.1565319970091,86.94144804975174,89.67627751296342,92.34483349996316,94.75157698628819,96.82701170423876,98.62185643454981,100.12321015862513,101.34110288580376 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Difference,days/yr,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Difference,days/yr,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4986799829688169,1.4411084713178235,1.3801673934032,1.3173457369865949,1.2483982352143825,1.1808517700998762,1.1194899868210688,1.0632665324606723,1.0161112414031253,0.9824604159289173 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.166239691164987,9.341672346722847,9.536829661956178,9.748956137694371,9.974710481159917,10.21196241756828,10.465458772657428,10.748750953900137,11.060987923488888,11.397168024386788 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.169411307387287,-1.386233170127202,-1.6176372323756294,-1.8384063614926733,-2.033026585917921,-2.1956590030502143,-2.323054377749914,-2.4186473746469765,-2.4851841251569504,-2.532799327586261 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,7.473370858871186,7.450530967359977,7.4181531146650705,7.386047311528896,7.342309174660132,7.279491856399754,7.206815924722978,7.126508459774778,7.041661871909787,6.958968209741234 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,11.28990632117842,11.302168019888684,11.30759689735615,11.30746025588201,11.305972559866312,11.298332530147439,11.28597764139296,11.272881809328123,11.262552438226399,11.255588224562068 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,3.965294788185044,3.9379405887629115,3.9250263876445866,3.9129775728395955,3.8921045138596764,3.8676926111217607,3.8420604345083365,3.815369324151253,3.7963952229933056,3.7826566751654034 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,9.082413884287007,8.99718576484062,8.907665351718776,8.811011958382274,8.708565354049986,8.603496177323755,8.49187439445567,8.384448327969862,8.28972420784226,8.200324371055194 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.059882461223621,-0.26272891892297534,-0.533707783062365,-0.7762939889793341,-0.9941933801881914,-1.1940470735267603,-1.3729536362042276,-1.5221442797104807,-1.6277520912316075,-1.693113183489588 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.9265795007369775,2.916005577920859,2.9067504478168074,2.8983098197706982,2.890070486977553,2.8841897111651003,2.8806791467454023,2.879296795396552,2.8810973754726814,2.883682658808883 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-1.271478528115914,-1.2995976933611397,-1.323009199318412,-1.3438686583960926,-1.3634253320346172,-1.3792165304193875,-1.393518255110266,-1.4064360772768494,-1.4157862066882698,-1.4214589392734243 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.7039420612497445,2.547511160042103,2.3706069461511414,2.1862987022815745,1.9965103802564534,1.812483072169863,1.6429485198979565,1.492853251452947,1.3678908526272762,1.2679337958647905 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Risk score,risk score,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area,km2,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|%,%,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|Low,km2,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|Low|%,%,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2773629471503787,2.276587845656156,2.2751854954583735,2.273679161561073,2.2719471681002052,2.2700341641101285,2.268092804674271,2.2661362234981692,2.2642944308386053,2.2628142835458047 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.043100924415162,1.0591711674222248,1.0769853556319424,1.0964336022559338,1.117420006980867,1.1395536388684908,1.1634416359998436,1.1907559766901596,1.2215337176997891,1.2551584909973326 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9583300699012107,1.9478809709876574,1.939741038627396,1.9338970114084604,1.929900132373072,1.927639427808563,1.9261610458821403,1.9253774672778985,1.9255404700688867,1.926042577208022 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2864019156062756,1.2724432867295234,1.2593734865305395,1.2461589923914185,1.233987542106866,1.2240470370465988,1.2163084468728658,1.2115288655519714,1.2100781272506538,1.2111015655514383 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.578641590385257,1.5820392133828556,1.586075054216114,1.5896115745141788,1.5928035364285738,1.5957991283978425,1.5990323796717387,1.6023523052808766,1.6053125196749247,1.6080383802732479 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,1.031551194088336,1.0577429862231964,1.0862454044307646,1.1091604459982538,1.126804523797384,1.1388494895422359,1.145302498109456,1.1474952819057167,1.1480549008659005,1.1482290051674495 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.7656576927524176,0.7710393324936045,0.7754774140809293,0.7796653921930703,0.7838946787392989,0.7879464967110287,0.7920013482455327,0.7959138963255706,0.7990513658598415,0.8022131419957664 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.448916980054323,2.455820840647667,2.4588450993692015,2.4611215784993976,2.462552517852827,2.4639527500642155,2.4652703104760647,2.4662379476376604,2.4666032932951314,2.4663263077775444 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8512416993013574,0.8533650696958102,0.8564139258444913,0.8596667772262443,0.8628610868696521,0.8658790342542477,0.8688262190350018,0.871714139175027,0.8746422577566961,0.877644759509483 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1494940742109543,1.1501089075735649,1.1507075531987465,1.151392364150872,1.1521965668987941,1.1529333385239748,1.1538022473816447,1.1546881175748434,1.1556375234219405,1.1565511290496298 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5994563012359946,1.6337420806363467,1.669163045943832,1.7031881278465657,1.7359318139161402,1.7648942091634794,1.7894590716805308,1.8106757424700297,1.8286091450221553,1.8434479276969449 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,402285.98894301057,509732.64426213835,616608.4382256517,721301.7787857818,825908.1448960897,927526.6138275539,1018117.8997757316,1104695.8854349884,1187021.1026438707,1261318.350608743 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,518125.305735752,647040.050815467,733486.1434381315,816171.4768789411,904593.7908567858,1005261.0943753421,1122754.5314725533,1268019.6158184877,1449266.570050959,1668923.753503027 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,100307653.29972346,109287269.08013742,135819739.79177558,164309448.7912406,193486005.55226636,222703240.5400862,250480620.79623997,276207305.0244826,299789015.06860477,320639973.5282719 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4894042.120026991,6158584.187147919,6827041.424345621,7375323.963130241,7796891.336290625,8122452.997369564,8377354.887762255,8595535.300825495,8804747.342443096,9035388.970593508 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population,people,170.0,289.9643293387513,295.6081472260036,302.8694765414686,313.9555235868044,331.0148310342507,281.1173062201236,296.655319281014,319.9525920951767,362.8214859001773 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,7177424.464846138,18875365.179503858,22120108.278337266,25241009.6864705,28136679.55268215,30722698.84445335,33053528.630241483,35219286.5580239,37199231.23907011,38731098.33272154 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,28596.360035419464,31640.60800617008,31932.306464958354,30983.164691996782,30098.011836795256,27159.230488524307,26223.18693229812,25347.370812794223,24526.900214877165,23051.584071773195 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population,people,113328297.53931078,149747827.32945263,180927662.7138909,214703843.59680718,252914009.95538592,297886649.06974775,351847810.4377639,418331705.8936903,501713361.6782996,605489361.8354833 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544387397.6868696,1847336627.2523851,2098594725.776821,2327513918.9535084,2531505941.581197,2713166252.3431497,2861612403.8654084,2993185382.2815995,3112863282.2566013,3223835185.144489 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,219362056.56764632,253570014.61055848,264960695.06273597,274832141.9557324,283999604.7006676,294112847.8074225,306915431.76716405,324951937.83451885,349431076.9885702,379475252.41897786 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,821762861.506552,930839381.7709352,1212597484.9325023,1536363642.0954068,1888259669.1608026,2252892527.6743283,2607563758.8690424,2940446333.7767234,3244305809.849361,3510063304.821646 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|Low,people,282374802.93422717,373833881.3435223,402362840.3222721,421345163.0866349,431424924.91074014,437791998.8923495,441936065.1871496,445218674.8897123,449741461.93173903,455923125.8691358 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,382550728.741938,482834930.1956833,537927831.587041,586522188.2498764,627780976.2802907,662183911.5125554,690570307.2713381,715669065.6977055,739893687.6117591,765161233.6739095 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,110337186.46066672,121356732.21994837,127024460.7854904,130683993.4616541,134370227.30193746,137051284.39587876,138532415.020143,140606608.88618827,143718081.86972153,146640633.15711448 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|Low,people,23144688.877021343,30910025.191383865,30923407.054330274,30451331.29902017,29934816.75908005,29473491.174744688,28959070.35621313,28678955.7653921,28749494.835246745,29099620.318817098 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200669464.1037345,505925099.941678,596304286.9509,686349349.4719931,774690550.2541522,856719442.1182324,932079448.0242718,1004902896.566973,1077545683.9622226,1147211688.0369763 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69319218.04868254,83322327.21520992,88913078.1973538,93117756.43759799,96868803.66639163,101758668.27387449,107499560.39441448,113791311.89352642,121276224.12867126,130061654.84010726 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,849532263.3102398,956040009.2137257,975995055.4296975,964419782.6913201,935977255.2618898,895518500.0718484,854615284.4696901,823272080.8755739,804307219.6858193,793958849.9711057 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|Low,people,4503440668.237577,5602329109.707893,6451845253.961999,7345839301.418366,8361695938.153699,9564580406.477856,11023939097.518557,12851923286.07633,15180324067.389278,18122387247.873444 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.02576699814064461,0.027313514375925003,0.02910258952985904,0.030711015033619254,0.03234636996143734,0.03390587895087853,0.03529451018559371,0.03661726798944723,0.03783513509130683,0.03881865680687979 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.09434122785781557,0.1045252176623868,0.11670813876647139,0.12917365646534867,0.14314601703787708,0.15883333394564544,0.17608120819569104,0.1952532356515325,0.21637490591154113,0.2396291413121316 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,10.324928161038624,9.879614586878906,9.387700526096234,8.933578492835965,8.53674148609195,8.219897344686473,7.973212669171796,7.78446653392133,7.6493120449262415,7.555252110100084 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.9228168324218836,0.9230857136954937,0.9214992452506185,0.9155439958382432,0.9064143849387127,0.8969655826455527,0.8886997535426355,0.8813623116673717,0.8745532218345895,0.8690023955535834 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|%,%,0.00014089397378633359,0.00018414221677268928,0.00019152080381191285,0.00020334493942440578,0.00021890851227581668,0.00023914267294207492,0.00021089734726834877,0.0002289860490298576,0.00025019067518106466,0.00028448777661048126 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,3.564614057710676,3.7194464820931796,3.6992733402330247,3.668322192893201,3.6236305532422506,3.578551965101625,3.539399172719392,3.498529093811343,3.446464117774977,3.370724571460733 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.002076744238193597,0.002044759071467808,0.0020241403913464294,0.0019904592789964834,0.001995455883509342,0.0018846077027628743,0.001909664402508487,0.0019191306377409594,0.0019040136459558257,0.0018159914968416283 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|%,%,1.7737888147374128,1.922587549882721,2.0591973818533593,2.1872713199600793,2.303677198694358,2.4081908720120007,2.4990578297132986,2.5763154992240254,2.640209016292812,2.6899891849302615 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.92024156543503,98.9876871603349,99.04914871025379,99.09904156380581,99.14544159903448,99.18021235632041,99.20187844423207,99.2148814258904,99.21946841772554,99.21757785706492 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,39.9418548619625,40.96262810380834,42.15903714567011,43.49707591642709,44.94106931104099,46.47043880926204,48.133441927493585,50.03701559653773,52.16991681751952,54.48620926839671 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,84.58619289110688,84.14826732875949,83.81331067704738,83.5327809275102,83.31137235599658,83.1534613559469,83.00306958597243,82.8718345376407,82.78057654322578,82.70775754664386 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,56.93331467687807,56.07591212502779,55.216406869735465,54.344132002829646,53.50579437881058,52.758616109742526,52.12210900842209,51.657738315533194,51.38901070496996,51.27913248399598 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,72.13347230782958,72.37020922225987,72.60833207179105,72.80858041796088,72.98161317739236,73.1252219250418,73.25816681974581,73.38271789443769,73.49176338050285,73.59140234155139 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,40.3638648210661,41.68193049273599,43.16019262235016,44.339564408528375,45.223162924250374,45.80179268504229,46.07857169899107,46.12575299743867,46.09875628236138,46.06120395536457 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,19.182042281952302,19.62945087839267,20.034886829828654,20.44486023847949,20.872339263582305,21.29321347457629,21.725418472459847,22.137074052592208,22.48100406639383,22.81696814115113 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66098510697094,99.69403586554489,99.72340657773404,99.74840872136227,99.76985173225245,99.78989992562023,99.80783789079386,99.82263593848634,99.83331405888295,99.84056202883987 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.474455329080826,22.617788566286134,22.814704415305563,23.020806107977887,23.225896431025316,23.416666154391503,23.59950324366389,23.776540268797053,23.953829004603527,24.134269677660978 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.69530775259129,61.78362568585036,61.86684371257567,61.95746381587577,62.05397655402511,62.14097501455985,62.23608102268161,62.332566374401644,62.43805407149203,62.547654681797184 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|Low|%,%,70.4868321381295,71.9273754334564,73.43057803212065,74.8349137857116,76.16283605063174,77.32248256655414,78.29936835946107,79.14917442373098,79.88471413019073,80.51177902468778 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Absolute,days/yr,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,117.62485425016936,117.71286708070605,117.77703773738148,117.84600569309427,117.91919469996418,117.97992220741097,118.02386828028669,118.05235220193424,118.06252866535365,118.05760701080676 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.98013378835236,36.47678507065915,37.02866606885173,37.63102295188421,38.28884092073827,38.98669726221418,39.74316395233087,40.617638675965445,41.61656909746712,42.71846656324553 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,114.58740216325106,113.94182256368343,113.46155484214843,113.20105512199643,113.07842087873486,113.07929156605161,113.13046249657576,113.20667655441791,113.32001208060657,113.43575652779177 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.959664577842396,55.24202132353765,54.58695516815753,53.9187938362254,53.31320618083381,52.84659090822715,52.508163007321535,52.33324078242119,52.34142750724161,52.4794709421799 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.3678346513977,62.50738487337648,62.688319123205666,62.84332105226619,62.975386370375226,63.10737981888405,63.262551512640066,63.42561938759964,63.56764075354052,63.69661148131181 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.1172500357843,44.69591616700767,46.39453482040689,47.77132432556443,48.861092828579075,49.634226679858244,50.082092572949534,50.28173478410143,50.37096490729757,50.421643415600784 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.926158811363408,23.32468189267107,23.685284410548014,24.046889985658385,24.421290167313167,24.792045984476147,25.171778910452588,25.540469794543004,25.849502459613657,26.15109263319461 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,149.74202699401243,151.28899019257662,152.13395055986385,152.83321088520543,153.3697414905764,153.87422950211067,154.34752374461934,154.7322933107986,154.9666818198376,155.04867198896912 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.29277781388123,38.44233134602993,38.64067738775762,38.8488689513662,39.052748385617164,39.24094511660317,39.4174287389549,39.58398533843743,39.7459659018422,39.90648051965431 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.83530350794256,51.87821677659072,51.91667383767302,51.95694942098141,52.000394244882074,52.03561529671475,52.07571533453137,52.114283868654496,52.15295194947864,52.186275404278554 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,78.79814294746767,81.30457213443498,83.90283033774922,86.45001498362967,88.93223156923047,91.17360682673105,93.11107982997886,94.79113769651484,96.20255967596017,97.35126009471945 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Difference,days/yr,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-5.104970262485154,-5.141121006141111,-5.170227185065045,-5.203457402831738,-5.242199736042911,-5.27900897485682,-5.310877072297527,-5.33800935691051,-5.357881844907849,-5.369647244712828 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.761388890060953,9.89832556182244,10.036774112415642,10.19018401126896,10.343944980666167,10.49577945328675,10.656632396787842,10.833843977009565,11.024018477547482,11.22367267583691 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-4.336298516238599,-4.592014777004806,-4.871329223810837,-5.142694716638577,-5.382770519650786,-5.5831544898932775,-5.739820188392435,-5.857130531428329,-5.938888783126123,-5.997518603527702 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,6.031575979191512,6.0212971425371835,5.992897878846688,5.9626805916174614,5.920973578085152,5.858167370612728,5.785578098400678,5.706860422005012,5.626542073550263,5.553223098333294 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,9.178186754866752,9.144841478141032,9.102316304559562,9.056763576808757,9.011098219835494,8.960679531721864,8.906942577906483,8.855795160088405,8.812771343959321,8.77951225451212 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,1.8586282360356718,1.8712538592660728,1.8922170004152665,1.906507305013771,1.9051311862471838,1.8946684813912773,1.8789800630069573,1.8588103595651067,1.8451994272685877,1.836884811839895 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,10.861866739614852,10.671768720059893,10.486947145158089,10.294665571745906,10.094315022559586,9.891383086435031,9.678640185459747,9.47547414616926,9.297558223539392,9.130105263552663 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-1.594511475477916,-1.965754344702926,-2.2986553805100445,-2.5976327837455475,-2.867097036074335,-3.115270151035912,-3.338004699878329,-3.524481769836187,-3.65902910287155,-3.7471787336444264 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.848256842623916,2.840214886724715,2.8304222910028822,2.8204655015185036,2.8109198015821217,2.8030431496234334,2.795650068660405,2.789377437222489,2.7853521937355024,2.780852605207385 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,2.160831445292549,2.133075918727389,2.11002971691614,2.089888831791282,2.069917255854451,2.052933471145336,2.0364287197619144,2.0207670686917965,2.008921236506617,2.001353769582382 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.9999410676398391,0.6447003280005672,0.2560416899394015,-0.14133722157505932,-0.541804607177776,-0.9128985124227715,-1.238524338763981,-1.517906515473158,-1.7431966121116877,-1.9189088546127602 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Risk score,risk score,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area,km2,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area,km2,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|%,%,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|Low,km2,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|Low|%,%,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.1198875590515547,2.119924899214047,2.119525215412017,2.1190390600878373,2.118421130395452,2.1176292299828514,2.1167333297486723,2.115766933327806,2.114791869556178,2.1139512091154837 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0716557239066187,1.0861777081763146,1.101643483871621,1.1186278821431006,1.136596907175633,1.155153573106141,1.1751235653049228,1.1978745963880166,1.2233286675836952,1.250953626510828 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9072000029492435,1.8964214267909802,1.8878171733367568,1.8814870328104583,1.8770590544983698,1.8744482555690356,1.8727185682845737,1.8717487342457244,1.8717668547584827,1.872152677943652 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.263390396193904,1.250721904231882,1.238665568295189,1.226418946956584,1.215209442174057,1.2060672357156288,1.1990156773964618,1.1948178229566984,1.1938418581248067,1.195321198309643 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5020476474408586,1.503872275023856,1.5061828382658315,1.5080523306864317,1.5095871182867089,1.5109535271457895,1.5125897862986717,1.5144136903280838,1.5160656295857782,1.5177086105281505 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9472142461826683,0.9754236112193274,1.0057289035907704,1.0300203628860363,1.048660979513493,1.0613692023386994,1.0682308092811887,1.0706253434284823,1.0713244920374054,1.0716468871492093 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.8439641914499726,0.8454006443319734,0.8462646702410351,0.8468876562273735,0.8474827140936493,0.8479110194987383,0.8482137574640128,0.8485658796433204,0.8486168302537811,0.8488692670237074 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4115138578497377,2.41794549437381,2.4200802667064596,2.4216548443225308,2.422493716054231,2.423319500466792,2.4241758048578252,2.4248026801681646,2.4249298425025847,2.424471905026281 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8650193750835419,0.8673066383439708,0.8704272075972823,0.8737206006571412,0.8769627682977765,0.879987716825712,0.8828597402434204,0.8856168980570003,0.8883629305695386,0.8911218914929847 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.285515368575033,1.2861900322085482,1.2868521958581864,1.2876286863404294,1.2884934389929414,1.2892633531688242,1.2901337828624497,1.2910034062855045,1.2919541490614324,1.2928930981961204 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.574183206606376,1.603443334156606,1.633485051799774,1.662140256549177,1.6895845167311876,1.7138606908719694,1.7345389652826406,1.7525264720735356,1.7679327957892383,1.7808383859969017 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,30971.27942085266,37523.482812239046,42537.73603063125,46895.85577625234,50652.72715530523,53512.2209241363,55513.51970981746,57491.06770853896,59953.02084006725,62684.54942266747 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,957611.7014209256,1187612.9461478244,1329890.274856946,1465120.1107945538,1608046.5854651576,1769040.4372719345,1957433.581262131,2193708.5843233494,2492010.809536891,2854975.961941919 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,85998071.49631424,93010327.04687484,114693594.77757587,137800019.810403,161329603.7269143,184756135.80724487,206855366.23563665,227191659.1691277,245737781.76148847,262050707.93153575 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4253045.020172441,5323851.3523028055,5872548.513002368,6317848.619315852,6655501.842530828,6913244.091895662,7112157.223905365,7281441.408091801,7446863.37670142,7633093.239744706 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population,people,653.3399881720543,987.0019879761264,1035.3874911962419,1060.820787312201,1095.5774790400212,1122.1849896312747,1086.5982317865185,1126.1035716959134,1155.380004416174,1254.716808566353 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,5840129.9449175075,15373663.300760023,17979165.70247175,20470310.668226898,22772613.0101645,24813509.27597423,26649717.604605034,28355765.20468217,29922920.38644781,31129074.46034925 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,21691.0,24362.84560527596,24560.40516620069,23567.263076295487,22961.46997890632,21138.20731456922,20152.475060611865,19214.7079038572,18728.895099447578,17570.504175454786 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population,people,97102173.78223413,127365257.55562286,152687646.3952779,179943667.73964176,210724111.80365822,246924594.77305833,290319047.2104478,343802926.42098373,410936754.7132015,494520395.5592022 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544281003.7651806,1847223849.6504228,2098479849.6060913,2327397783.5984025,2531389566.183558,2713049534.7368364,2861495631.9404364,2993068660.316433,3112746619.684835,3223718607.9772105 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,227852633.56713775,263404212.55805615,274953208.80627316,284820573.2262592,293811525.27448535,303677404.70828336,316235148.1814039,333924068.0470431,357870073.7322009,387195077.93729657 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,791423882.0908668,896209670.8457862,1167050161.5056047,1478338675.7739744,1816668450.9765837,2167280205.6249156,2508533574.386873,2829023743.767494,3121821083.239701,3378084745.856435 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|Low,people,286231174.1992432,379087983.1171477,408024530.42469096,427287665.84363514,437603100.9592859,444127262.6602339,448459663.5313883,452002774.6037901,456972748.01185626,463893435.13824564 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,354397026.82265085,447101427.46857446,498071741.48396266,543113088.5414139,581422385.9144671,613480830.1522346,640075538.1868458,663677123.2040205,686449682.6033976,710180765.4190705 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,78869476.67350468,89335407.31523928,95991451.67442612,100667210.45130128,104918371.63281354,107946079.3419947,109636177.80571017,111489918.66667831,114044180.86621888,116438362.24058147 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|Low,people,37323988.4587344,48593577.154781245,47554569.957126275,45841193.21485541,44117479.08455335,42552412.47216812,40950029.02861222,39779142.6913521,39230044.198466726,39109182.03464399 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,201299295.79231143,507358110.03909,597830817.6541764,687947037.9244756,776339573.9300618,858383280.4318534,933733952.4846047,1006548312.5017531,1079203276.7366743,1148899588.2210279 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,68550198.96722922,82441718.88534117,88008126.32090686,92201788.49027623,95949507.4405242,100819742.79177442,106519991.58690509,112759134.14396274,120174604.6121085,128873223.3737581 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,1148782951.412044,1292436952.6671727,1318987364.011149,1302839330.075243,1263772377.801245,1208459465.9913352,1152539022.45965,1109538622.6520376,1083262788.8884745,1068706888.7735784 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|Low,people,4739011631.748902,5857843394.496919,6700408911.403202,7576779656.941999,8567068317.99768,9741690904.583345,11173553385.84739,12974922604.938038,15280255390.520447,18204153925.843437 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.0019837551423237568,0.002010658329937753,0.0020076894743628502,0.0019966945515971814,0.0019837942781486713,0.001956147519648169,0.0019244553968336127,0.0019056519183594952,0.001910943821945195,0.0019291957577228928 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.17436373541873915,0.19185134140973398,0.21160456830808128,0.23188132302290757,0.25446279451318743,0.27951205125586126,0.3069836373756645,0.3377934330212998,0.37205619420665215,0.409926119627057 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,8.852005614508338,8.40817225608294,7.927486252616986,7.492248938493266,7.117977949564383,6.819283214979291,6.5845486230163,6.403037991451285,6.270159610389483,6.1747109765101875 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.8019509103941984,0.7979709257534778,0.7926638621426011,0.7842731246716108,0.773724084235613,0.7634321819856978,0.754483062580331,0.7466187744107086,0.7396780515508958,0.7341329003555116 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0005414803951004525,0.0006267968699441194,0.0006708145442929811,0.0007122293774843791,0.0007639019478924081,0.0008107259639013871,0.0008151781464881253,0.0008692310264519211,0.0009034629208742131,0.0009838215459021858 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,2.900456758893428,3.0294257799572764,3.006759620065709,2.974987762075353,2.9328100398729466,2.890254948960521,2.8536737937457346,2.8167370563405894,2.7723226522653186,2.70912885735758 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0015752585019513847,0.0015744371773274153,0.0015568467683126743,0.0015140376374425282,0.0015223131883886707,0.0014668025423057644,0.0014675738820398932,0.0014548070845644707,0.0014539167824148124,0.0013841949463645588 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|%,%,1.519821205130784,1.6352214441503625,1.7377884452954264,1.833155928006857,1.9193888534005679,1.9962007598014597,2.06203951402593,2.117326503198517,2.1625075347616156,2.1969907311817156 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.91342688121117,98.98164408523043,99.04372680254664,99.09409684476937,99.14088380203285,99.17594572615359,99.19783037878088,99.21101245205324,99.21574991250853,99.21399004828858 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,41.48783505340652,42.55128042865547,43.748989036431325,45.077922866017495,46.49374119960624,47.981658599599754,49.595049857152326,51.41856950377082,53.42985557835542,55.59464526264228 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,81.46332267491128,81.0177270556319,80.66513330052987,80.37793745995478,80.15271640788984,79.9935410198989,79.85077493326168,79.73156486601559,79.65529893970731,79.59794165208272 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,57.71084863692183,56.86403905535017,55.99336277355383,55.1105823683396,54.27201857728028,53.522083121312924,52.89150469890863,52.44488240337527,52.21528239489977,52.17557866485152 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.82483184480814,67.01425647965902,67.22864346793176,67.41994382362222,67.59227384192141,67.74692207361254,67.90150120848776,68.05160854282924,68.18330591432445,68.30351061075692 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,28.852257313017702,30.68368907219119,32.6158404353604,34.155217815118775,35.31095175894937,36.074991700944906,36.46712200237895,36.57407351518085,36.58060858298283,36.574386211533046 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,30.933676773566717,30.85941308229835,30.81000827813955,30.777530848807583,30.761337151912898,30.742120003907107,30.721169780752444,30.70522632381675,30.676392340268087,30.665450295718028 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.97378629381578,99.97641473953936,99.97869711531283,99.98060371198945,99.98222407575722,99.9837022962051,99.98500359626728,99.98608432378411,99.98688803954713,99.98745811156078 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.225126420304107,22.378748039210627,22.58249774796484,22.79435820670626,23.00547996955066,23.200600978508763,23.384457366588737,23.56086812811534,23.736243029137462,23.913744069728732 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,83.42769402556944,83.52311633047844,83.60860503766946,83.69863631973297,83.78633247851758,83.85627932449297,83.93193204836138,84.00672323038845,84.09326552194112,84.19215862068958 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|Low|%,%,74.17393544088901,75.20788101082145,76.2595629697983,77.18759274942319,78.03347844316521,78.75428854445575,79.36202882683745,79.90667151781436,80.41059125544487,80.87504135973556 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/rime/test_data/table_output_cdd_R10_pop_scaled.csv b/rime/test_data/table_output_cdd_R10_pop_scaled.csv new file mode 100644 index 0000000..bbff832 --- /dev/null +++ b/rime/test_data/table_output_cdd_R10_pop_scaled.csv @@ -0,0 +1,4159 @@ +Model,Scenario,Region,Variable,Unit,2010,2020,2030,2040,2050,2060,2070,2080,2090,2100 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Absolute,days/yr,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.40998985218712,125.52545284356762,125.65786334900875,125.81233239547136,125.97726518277192,126.12873224327765,126.2347680841953,126.28897567314904,126.2947902106648,126.2668671574095 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,32.71740017861694,32.94282274514661,33.02155406317187,33.05436950846081,32.99579957246641,32.853463886774215,32.66264181997305,32.43123253048759,32.19686325920976,31.959416644996836 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.38413508274134,117.10649266604844,116.77935339207168,116.56073084674293,116.39734816892684,116.25961186352959,116.15140888872101,116.03885824502595,115.91984955455283,115.82105863655737 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.54393749729379,53.87473201249038,53.28059295019123,52.69868821843022,52.13737331424959,51.61948643297078,51.15926487129766,50.73829542244681,50.34614139114693,50.026212999755465 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,59.60166685197847,59.737344575609036,59.77010556731248,59.7514183364548,59.690630219899404,59.62868359470945,59.62632402155739,59.688451236944566,59.79004260867011,59.907626005187325 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.20677343599904,43.34385457483604,44.15760156164386,44.619840034923975,44.845469832546684,44.88729607904567,44.893140661519425,44.9361446006675,45.00059917017509,45.13906878606298 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.310061974172555,21.8455709292323,22.37431260490904,22.89422938737859,23.40702052839302,23.888433936487335,24.35795192750572,24.785785791577954,25.150384737228876,25.450937707568055 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.7155541745295,155.73770661420482,157.15779416748086,158.35079068414476,159.26558719439763,160.02178743835287,160.61701550853775,161.0988751565809,161.6403243630692,162.1148195549949 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.36956413236254,38.46853193357887,38.5608908810261,38.653910855768636,38.73356874750788,38.80507784675337,38.88321327817528,38.97048616206663,39.06636632756612,39.16253112421192 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,53.53752373149113,53.641851694929045,53.72397092147768,53.78835024293867,53.82879154412978,53.84784459812698,53.85243005861386,53.84725809745906,53.823791643984435,53.77715298943878 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.93217298938053,82.9674899189418,84.59129343317578,85.9915608899423,87.14426173368055,88.04239513097902,88.72948195397464,89.20425102007758,89.5564747495147,89.84247830489895 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Difference,days/yr,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Difference,days/yr,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6693297967027874,0.6417861322144974,0.6158612318445686,0.588877523547726,0.5628118161532218,0.5384396588745055,0.5153535275406367,0.4936587412206609,0.4724520980394986,0.4513519292128789 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,0.32275938564103307,0.38292596292515413,0.428299889287509,0.47063071260910216,0.5012106466577239,0.5232027085193326,0.5413545482191388,0.5580261352901557,0.575439252930561,0.5934111602762866 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.4633159449477893,-1.5418124052021007,-1.6254555594456064,-1.709956552126124,-1.7891219128038909,-1.863025808592053,-1.932430922016903,-1.9976919923286975,-2.058951542813988,-2.117788555763791 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,3.06694927707444,3.0646879294426235,3.0685321586412906,3.076194568968572,3.084794615964279,3.084420052293279,3.070010857640265,3.048570479415776,3.0296761835885007,3.018191119467267 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,3.3458675893825083,3.3416061228027343,3.338380377075687,3.3328265938405273,3.3262491034875787,3.3169493353948,3.304999112763223,3.2913737365479236,3.2774785008599094,3.262124057025196 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.5896574686237306,-1.529402350895886,-1.4923428992532417,-1.4781137698834883,-1.4824686017464006,-1.4993119411666018,-1.5146436240286252,-1.5256963187750165,-1.5333621629815195,-1.5324136570340257 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,2.354129231218361,2.3301578434046677,2.304479291729558,2.2782509994926032,2.2513463498283968,2.2240586499257904,2.196765819117868,2.171291501330414,2.149543972073786,2.1319212572029818 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.025533463028482962,-0.13049791361825033,-0.22097137787664642,-0.2978269276814299,-0.3581463165034098,-0.4126907579805067,-0.46168429360182117,-0.5079612503673889,-0.5617190875662789,-0.6102439848924797 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,0.9472422259630768,0.9469500627685619,0.9461263054432847,0.9449551448044861,0.9438502133171099,0.9425959192152751,0.9410092356870852,0.9389646096791583,0.9364344982575743,0.933618956717083 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,1.6773446356209196,1.626440616031625,1.5796863588905745,1.5396614856459727,1.5074492839462346,1.4829479221868838,1.46400947786251,1.4489537842245934,1.4375994620312047,1.4289944480563355 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.867480289681937,0.7925433725308422,0.7125798457180076,0.6288649393377984,0.5462540094017497,0.4656172485627233,0.38669941097808125,0.31112265119237414,0.23620874516750892,0.15992794136190014 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Risk score,risk score,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Risk score,risk score,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area,km2,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|%,%,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|Low,km2,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|Low,km2,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|Low|%,%,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2264439409513126,2.2266988906573313,2.2272024370910093,2.227867872921234,2.228645081401754,2.2292919576566033,2.229413153938242,2.2289521000687116,2.2279354981382564,2.2265221505778667 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.6969041216231573,0.7028860492407728,0.70544561358252,0.7070100404226408,0.7064022424020281,0.7038383587570275,0.7001387696642045,0.6955680344751027,0.6909808957475081,0.6864085188456572 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.88731661907443,1.8826269690256594,1.8778809573453654,1.8743617525438467,1.8718072690307397,1.869654403470585,1.8679165183846937,1.8663745719048217,1.8649869882661994,1.8640266346225622 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1462669121324742,1.1343515458857059,1.123919098139399,1.1137888115854746,1.1040206898922431,1.094825783986878,1.0863342595424572,1.0782885794667707,1.0706160500890864,1.0641868684815974 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2507859643517751,1.2531309688229855,1.2539839619415636,1.2539412296027157,1.2531689273556998,1.2522946735147495,1.252375613059516,1.2535704861520836,1.2553365501478388,1.2573321992987276 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8406794527149736,0.862729972916997,0.8782537308450548,0.8869251939613604,0.8909222866201402,0.8913354208079652,0.8911568483145879,0.8916967905283215,0.8926498651670864,0.8951138912761232 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.49107027245100915,0.5016251801433873,0.5120771208810241,0.5223518291148032,0.5325103150909366,0.5420492904746227,0.5513803657198345,0.5598981458301028,0.5671692778607976,0.5731471433462961 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.397759237746563,2.4116433478827197,2.4213238628993086,2.429422806909598,2.435669322639215,2.4407992396580376,2.444859328014065,2.4481779820740863,2.45188113682007,2.4552462358378766 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.7702632837297936,0.7718338453598906,0.7732767631341398,0.7747187348023943,0.7759297607902252,0.7770022561182742,0.778202955838652,0.7795693002687227,0.78108441492846,0.782613223749737 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1773331846075505,1.1787697312849357,1.179829130097674,1.1806146280361915,1.1810559195966912,1.1811520292680522,1.1809998290450217,1.180689565852371,1.1800269461401327,1.178910419481451 +Climate Solutions,ssp1_1p2,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.4954900510741667,1.5219143907275383,1.541954368412708,1.5582035507040946,1.5706507021040557,1.5792331702683178,1.5846879557092013,1.5871897612498225,1.5879453785717512,1.587738817361502 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population,people,209967.77308388054,265463.6771994641,304388.9754351851,336380.31030668796,360071.98505566193,374024.3531555975,382251.22685096826,383461.3585811119,379497.8654834391,369239.2063838683 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,58379119.042564146,62588390.97349315,70191601.44907816,75924144.5456346,80054563.1157788,81754147.16955845,81185900.12714413,78566804.4212976,73806570.66752851,67356155.28962103 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2607924.3727803994,3234035.507749728,3388262.5024121273,3450218.3863108936,3427563.3547723675,3332552.351439249,3187138.6669969093,2999106.759455683,2788167.245682859,2558113.1319212527 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8304618.953732632,22617085.236508984,26406191.405227076,29534786.12382554,31900064.701505374,33166319.55093213,33253067.29129109,32404733.294108886,31008174.389934994,29168514.648075186 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,246902.0,266269.8486866911,259560.84723479487,244761.75752282288,223745.23538791557,197942.77400733886,179375.292863692,157057.90678311535,140545.5198723849,122876.60998548473 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population,people,69748532.14216104,88483574.34447584,97610091.69994639,104133182.7327348,107433334.53399676,107566810.13073337,105913161.80537911,103387424.52290244,100556804.81974857,96625526.60736243 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545663492.1542244,1826081001.0507455,1973942451.2703521,2077904870.3920057,2133155004.5865893,2137555618.5682752,2102375904.6334486,2030136291.878489,1925697429.4965277,1798111842.3605566 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,97645794.12440826,112911637.829074,114764299.63817619,115003914.9113243,113280036.18780272,109295547.29595257,104095505.2890929,98681317.32763954,93360164.33806175,87920719.02848497 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826470428.7746899,909738743.4182239,1049317021.1164,1164765512.0984368,1257840339.4203527,1312824109.2969403,1331627102.4321423,1318996268.781891,1271753370.5439696,1194253213.5770464 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|Low,people,232907552.4191729,306232317.29616755,319994207.8382792,325044586.1365452,322281452.5742359,313032275.0716021,299357558.4460067,282702268.7910912,263671830.319803,243271944.2821391 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,278630797.6709763,347659952.3496119,368651870.08419394,380385821.87336373,383425523.76187056,377869515.3772992,366214075.57542115,349941618.75227123,329963638.2349859,307727163.9505147 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,59863171.01837814,67856042.10451435,70690620.46848053,71554552.8452667,71465164.00526915,70024252.03595474,67926120.73220165,65658596.16034743,63394981.74522056,61644242.61696033 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|Low,people,4085988.1309295315,6115822.186338389,6780290.228542847,7341912.654036815,7840575.442785091,8234038.045753543,8519846.460042793,8641800.436389776,8657765.122854438,8555073.973719686 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199127672.24370283,495120405.74851096,553023246.4191369,597834955.403699,631514360.3285153,648094886.4536875,649004842.3867245,637506430.6688242,615830442.5187056,587706022.5454472 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,64473746.44338477,77178872.67824015,81798800.28436533,85413261.4486385,87905200.8319535,89655032.86247304,91431176.63450435,93167012.67178449,94169502.06106672,94114370.9086024 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,852350285.3766574,959341035.6570128,968482842.0255005,948084869.9148984,911112990.6246809,852520833.3898532,781630768.2235689,711068125.7564979,640245544.8541931,574399575.5173686 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|Low,people,4161218928.356525,4949465491.358059,5196752588.342569,5304156591.70367,5268635162.545183,5100914225.086768,4874318794.107123,4643534888.063659,4423020834.1799,4177734585.538482 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013448777879805581,0.014400483206357438,0.015284303126786837,0.01605394011552201,0.016747920559267875,0.01736881423282566,0.01805379133364915,0.018759413482069224,0.01957482849018778,0.02039947828757317 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.009136806830257,5.835255017967541,5.658420382188851,5.5014713419302845,5.36388829622593,5.242454401588855,5.127661154766941,5.005958997845992,4.874219074497821,4.735000596451588 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.49175675128113144,0.49042595737400985,0.4854996171200907,0.4795778628514829,0.4726963570261469,0.46636153197591024,0.4607430154639141,0.45485256256171636,0.4498943659891967,0.4442107181189589 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.1244515602927825,4.519650370682871,4.726648341814618,4.892665574290707,5.0046178411762465,5.0721139116335925,5.080254861858245,5.042050360564245,4.997107983520817,4.92807793282456 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.017930729963508335,0.01728322439623187,0.01677810538309332,0.01623562619263588,0.0154992607223686,0.014689353833874949,0.014539543470322316,0.014004322867619524,0.013916639481639391,0.013547189242904756 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|%,%,1.091692965666867,1.1870362774154006,1.2643504313884273,1.3347376852740813,1.3954971318793232,1.4481488067930783,1.4939375636877805,1.529717958415424,1.559259220000876,1.5824476648913839 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,99.00226438369862,99.0585569615274,99.11769878299361,99.16918241918141,99.21880079589694,99.26307241229297,99.29557636695914,99.31682885916541,99.32914078020022,99.34086860951746 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,17.779630824146487,18.293420495830855,18.500723677181913,18.60614239221938,18.530899330333078,18.290871394865903,17.963166031531095,17.56030309227321,17.15195146058856,16.74565535096355 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.07106572961123,84.81696821090843,84.58956195735445,84.39902909971923,84.27895690817729,84.18435967562041,84.10490682597236,84.04110729039814,83.98716375382959,83.9535697114365 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|Low|%,%,46.95951639099237,46.33383519940246,45.78876115094985,45.25672723969119,44.73862043505653,44.24294349353783,43.77289881075638,43.312815264602264,42.85705722764747,42.45828193982186 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,52.539321039999805,52.72096257542253,52.823635019147495,52.873354404701345,52.87833644875555,52.879531210438515,52.94108450101926,53.073083022010955,53.242423693583184,53.436145093592636 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.899454367318192,23.401088288053078,24.41202061949165,24.95374099046508,25.171802575632938,25.15211834497284,25.1014465039266,25.10257490803201,25.136001586477093,25.2710455388484 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.3864119972010323,3.8879864884971043,4.39708392982791,4.915252496509883,5.445415069764324,5.951264074561422,6.45449759318871,6.914408366283101,7.307351880613333,7.628099673318365 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89586061186684,98.94162320092656,98.98990621398444,99.03598059414124,99.07465907145789,99.11292944616025,99.15205647113964,99.19351902828744,99.24386976500854,99.29408869935153 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.903592061814606,20.991212195816807,21.07048936397751,21.150445575807865,21.215547791397498,21.27278192089984,21.34026148882862,21.420338517906103,21.51148188808321,21.605478300852564 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.90011746121178,62.26956027335727,62.60307499506151,62.888711466278814,63.11454080685023,63.26565965953983,63.35629813278675,63.403542157978286,63.39630345778302,63.32775417141775 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|Low|%,%,65.13073885809644,66.39870886301344,67.31390435619745,67.986567833159,68.43653592380802,68.67251003943925,68.75375845437297,68.70563554106145,68.58447847774623,68.41925287802377 +Climate Solutions,ssp1_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p2,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Absolute,days/yr,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,124.33416464184876,124.43892169990178,124.56125166863454,124.705334672216,124.85969701449685,125.00120937632771,125.09858590890524,125.14569352003807,125.14564907665954,125.1124184586099 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.186638082152676,33.41219811211189,33.49100889438569,33.525301233868696,33.4688292136802,33.32855898624559,33.13955777732545,32.909737826105285,32.67712299305516,32.44194993111013 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.16546555210994,116.87882507461826,116.5435763847552,116.3188517302243,116.15042573234632,116.00847523129379,115.89701847668378,115.78235230371853,115.66248370581782,115.56351550508877 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.560105160224275,53.896490769604085,53.30662123145515,52.728505482130714,52.17081870364715,51.656018171961904,51.19806366109375,50.78024676214326,50.39405571853159,50.08321745286285 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,60.09987031712918,60.237457201931676,60.27171299488084,60.25406836229071,60.19413042263043,60.13314808294008,60.13161963785072,60.1945675903409,60.296999685919175,60.41570514928328 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,41.91213306261476,43.02667191585076,43.82480391522339,44.27935848542519,44.50250599051814,44.54553765451256,44.55287657629914,44.59608464683956,44.65989592043531,44.79577263376281 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.58213273444136,22.119531206823012,22.64885844119908,23.168129871312996,23.67939442871226,24.158342146766923,24.624578459485132,25.04879515417494,25.410073997811345,25.707701221352913 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.9971165756555,155.00399701085044,156.4121078335303,157.5937738810128,158.4983359661957,159.24693981185575,159.83558366094027,160.31114115329243,160.8466234744607,161.31332640454832 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.72400604036253,38.8218396763434,38.913290749944494,39.005649427305855,39.08454550260547,39.1554837095348,39.23352935347952,39.32114238719873,39.41772539603583,39.51476240220092 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.729552326406484,52.82806334446387,52.90573401293667,52.96693055839985,53.00567824939376,53.02407296322674,53.028713771997694,53.024025737769065,53.00188991736442,52.95769982325874 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.53184071114943,82.55890198761739,84.17845765869836,85.57754412353258,86.73170426178186,87.63405614655889,88.32790387989598,88.81177214644694,89.17484507824584,89.47270613581163 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Difference,days/yr,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-0.009165721566967128,-0.04670593743177262,-0.08205439921258365,-0.11838347847135039,-0.15381873776813504,-0.1870079352413765,-0.21790806458481773,-0.24623719875137856,-0.2731613172518397,-0.2997185723638941 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,1.857463875805959,1.9209974952038753,1.9721628523244983,2.0231619938575225,2.065548525595392,2.1013487910696664,2.13461208249809,2.1676092348552767,2.202307447006892,2.238653813503063 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.467931489238887,-1.5603390383643463,-1.6557438335651502,-1.7488113218676042,-1.8345551054448117,-1.9138124142905082,-1.9876507484958938,-2.0565474554309544,-2.1206381104185144,-2.181898643618304 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.0476969542580425,4.050560673103557,4.05740686312564,4.0676784484101685,4.078639222023036,4.078683615195741,4.061887833613466,4.03896233264623,4.024132555393164,4.023540184262865 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,4.2410002712394546,4.238870282721597,4.23767073726431,4.233677962200633,4.228578391806367,4.221427880091797,4.211485816026902,4.199556772923836,4.187749217545253,4.175542774440683 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.801269668177427,-1.7601318686190233,-1.7347163597043478,-1.7236944087897705,-1.7254391551336945,-1.7362405584905598,-1.7463089503542133,-1.7542007030536078,-1.7604324439551307,-1.7608923213001895 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,3.6719243822283065,3.6399324019698853,3.5997028480212245,3.553753151451498,3.5024186167614113,3.4471092453054712,3.387689931968148,3.329614977548944,3.278559083402689,3.2360661267959134 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.4166277104191006,-0.5334677998688212,-0.6332857677855599,-0.7186812590874423,-0.7867637369442175,-0.8474094225433112,-0.9020866418778009,-0.9541343348438345,-1.0137695341923876,-1.069793699623155 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.3414693651754668,2.3347930594846806,2.3284938452274306,2.322771847427714,2.3167487025981557,2.3114706610310165,2.307816260044601,2.3054140042692803,2.3038968055541815,2.3028015447149217 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,0.8079974213682869,0.7510431504492667,0.6999493575215572,0.6572024618167358,0.6240568334902322,0.5996384534723744,0.5814982133692529,0.5676151834173522,0.5584061744096933,0.5532373224127879 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8667898067182648,0.7831608606305508,0.7001085227527701,0.6179357933379669,0.5411022477087558,0.47004493395135,0.4034087239716682,0.3424013845732673,0.28371147376083183,0.22508011352871612 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Risk score,risk score,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area,km2,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|%,%,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|Low,km2,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|Low|%,%,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.215663872897004,2.215703598561733,2.216012890620737,2.2164818762842424,2.2170598913304365,2.2175177393349133,2.217469950215705,2.216863934758545,2.21572012100298,2.2141864426044924 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.7443395358506444,0.7506275227349141,0.7535686845905964,0.7556507851820093,0.7556388085576877,0.7537147548014711,0.7506997094809154,0.7468515998426644,0.7430156508427366,0.7392228822361427 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8953408852022036,1.8900836670084469,1.8848270177055444,1.880879664898128,1.8779749678571196,1.8755217480000674,1.873516321847279,1.8717378094575918,1.8701427539632327,1.8689912112374962 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1735774814590552,1.1617027892784348,1.1512325447892435,1.1410433564014297,1.1312032900177094,1.1218779384978121,1.113178413218676,1.1049620382308694,1.0972848538457707,1.0910500696116072 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.280549031170304,1.2829524487711466,1.28384296465955,1.2838094255006496,1.2830366740417964,1.2821881311062258,1.2823005820159257,1.28353226082836,1.285359419843193,1.2874635549029758 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8263550576410575,0.8477398592780568,0.8628662427892293,0.8714240465879062,0.8754800937715473,0.8760712215106856,0.8760476008344872,0.8766688037793753,0.8776553896663306,0.8800653782552905 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.5477867458186483,0.5580834961066424,0.568009871989255,0.57754278580503,0.5867641366596473,0.5952161363521135,0.6032935151563524,0.6105338694164806,0.6166525325626524,0.6216529135061771 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.390553582855849,2.404116678525849,2.4135129859487012,2.4213588731680393,2.4273663889187227,2.4322959179724966,2.4361501088544784,2.439239390907457,2.442692998847761,2.445737628395981 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8175422854627337,0.8188982634991012,0.8201533808802431,0.821432630373269,0.8224740248655752,0.8234054449533427,0.8245169291539414,0.8258375231281094,0.827339398856111,0.8288708342173443 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.167071569741902,1.1685077385106237,1.1695899039754916,1.1704151219202716,1.17091614919889,1.171067223427459,1.1709655043011604,1.1707012772373278,1.1700903598064296,1.1690377700791021 +Climate Solutions,ssp1_1p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.503046085870166,1.5292195972646516,1.5491474393415887,1.565390262037669,1.5779358706322406,1.5867160089212557,1.5924375895870342,1.5952727135979303,1.596407714612741,1.5966184010856175 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,56613.0,75547.37776781761,91153.07673476619,104967.89640838755,116147.9921724695,124210.41430005187,130473.11493035377,134339.11509118148,136565.0484465009,136241.10253677506 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,59048056.09986882,63315610.4789067,71000751.59976609,76785804.08176951,80939540.35039264,82632553.50787295,82038055.96334207,79379127.21371566,74563106.14275245,68045485.44549294 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2639061.372763807,3269212.1052233255,3422490.3145293165,3483278.2400022233,3459084.8291624663,3362224.7206419455,3214790.657750882,3024777.325343613,2811971.7977178115,2580523.7818379463 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8093756.805890419,22064583.06799218,25767756.45764691,28826529.827211827,31140101.703294575,32378680.234382663,32461671.959113915,31628236.9991291,30256965.53193471,28452106.421785936 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,198436.0,213724.07837424925,208440.04413032788,196232.98365059722,179180.8801568782,158497.92736370175,143569.09236882837,125598.8223690114,112314.85086763598,97992.72183091432 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population,people,70035923.27852304,88841991.75789215,97990878.50277111,104520534.40121153,107808543.73160492,107921439.77169181,106249134.01858695,103712924.48400705,100874949.47362302,96941522.96530391 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545058891.254312,1825411407.9452522,1973279216.3323839,2077274721.016322,2132573625.450827,2137030340.7391183,2101904170.9242957,2029713376.337115,1925318502.1856756,1797771970.7786448 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,113943750.93356645,131708206.07986778,133984074.32228437,134516690.88913503,132882599.71680297,128672011.7551167,123018681.80962938,117088608.13329521,111217899.49753189,105207183.88464953 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826726804.2557662,909471735.2751808,1048536233.286806,1163422476.7250254,1255967008.68336,1310512322.290687,1328944733.4997706,1316025350.4055934,1268597486.609277,1191025213.753857 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|Low,people,249970759.82996273,328739118.75841784,343491854.2123553,348884432.11792344,345878245.8651363,335851573.21227956,321041165.9379621,303076079.6329264,282648289.32276624,260809421.4400589 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,287749609.8234063,358834068.19273746,380331142.5184097,392279691.69022816,395276053.7382481,389413292.8377535,377232484.7758674,360283499.9218653,339531822.0336394,316471988.96094203 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,58844311.18754874,66879487.70016865,69813523.02266236,70772358.21530329,70762555.4834415,69391020.97195154,67349751.30873302,65122073.350639306,62887304.703842424,61161630.08984791 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|Low,people,5584198.462279933,8344220.579784951,9253124.217019128,10020935.996417386,10701918.964657936,11250226.48306217,11651581.44195838,11831914.61421293,11863833.481760552,11731337.636665126 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199127672.24370283,495120405.74851096,553023246.4191369,597834955.403699,631514360.3285153,648094886.4536875,649004842.3867245,637506430.6688242,615830442.5187056,587706022.5454472 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,62909775.93064803,75268139.04962853,79736466.93920521,83221923.40033567,85611438.76089214,87280914.04112904,88981757.66987863,90649021.43901974,91606399.543887,91538705.05045396 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,860569802.3336115,968258007.6569698,977051246.7785114,956002240.7617978,918269906.3403156,858788410.2917883,786986767.7958319,715651031.1541752,644114970.6750355,577653818.7118666 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|Low,people,4210485576.2548037,5004674423.675844,5251545715.0843315,5357239902.378937,5318975595.26618,5147639146.360066,4917161189.737465,4682822455.215604,4459084996.717054,4210647948.4597883 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.003626154866181628,0.0040981830595692315,0.0045770752825773425,0.00500965208533214,0.005402356825183943,0.0057680404860226304,0.006162267708096078,0.006572039008404256,0.007044143443834728,0.007526956414765479 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.077992492877375,5.903055311314681,5.723649150451466,5.563907280759967,5.4231843419030055,5.298781882629415,5.181482894406916,5.057716920569374,4.924181017052797,4.783459103104335 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.49762802198065587,0.495760319489642,0.49040407468969266,0.48417315862823035,0.47704349362729725,0.47051392032556305,0.464740476175459,0.4587458293284697,0.45373543178681125,0.4481022781789045 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.019727825282206,4.409241951356177,4.612369934905133,4.775337445158899,4.885391613421917,4.951660500193557,4.95934902334638,4.92123055968684,4.876047267904381,4.807039353607672 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.014410990316152724,0.013872547806816798,0.013473638508013197,0.013016597860144263,0.012412202535620706,0.011762147664430048,0.011637216174902891,0.011199222606967305,0.01112127436988547,0.010803731867501387 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|%,%,1.096191166164075,1.191844565002498,1.2692827898160624,1.3397026047723803,1.400370883228363,1.4529231093012895,1.4986765545847647,1.5345340483631422,1.564192451379269,1.587622774578192 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.96353871123266,99.0222338593521,99.08439572455765,99.13910818465848,99.19175928202003,99.23867974117871,99.27329630256207,99.29613929728104,99.30959538141192,99.32209161391161 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,20.74721030724768,21.338753408376867,21.599071697336594,21.763056559798507,21.737582022154776,21.533569091873414,21.22863038312193,20.83587352858712,20.432740529705537,20.03808955664936 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.09745522237799,84.79207444734786,84.52661958707179,84.30171261808826,84.15343830656326,84.03611719024127,83.9354897356188,83.85181238796143,83.77874776142869,83.72664789527246 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,50.399851235299145,49.739179348005244,49.15109737790998,48.576005434228634,48.014291343493035,47.4681474057199,46.94353649742336,46.434286871469574,45.94147920963051,45.51909995515604 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,54.25878709753778,54.41546359343581,54.49714239675365,54.52659371570756,54.512646822876945,54.49498182411647,54.533941169980096,54.641560415110625,54.78633107232045,54.954664720122636 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.526729802408457,23.06431008635687,24.10912723999212,24.680960553384466,24.924326434696653,24.924667109173228,24.88845471087639,24.897451667387706,24.934708509861274,25.073198625129955 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,4.628108565531821,5.304637035346326,6.000740738807617,6.70880096165052,7.432667567681013,8.131255688556895,8.82704925806666,9.466857051357536,10.013346940468155,10.460203274539777 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89586061186684,98.94162320092656,98.98990621398444,99.03598059414124,99.07465907145789,99.11292944616025,99.15205647113964,99.19351902828744,99.24386976500854,99.29408869935153 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.396523628562267,20.47152832825006,20.539254521130093,20.607815832571845,20.66195803356592,20.7094659493556,20.768561078477752,20.841418758173642,20.925983057051297,21.01419248263767 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.49704230987895,62.84834915527651,63.15693972251392,63.413889397666836,63.610314057406036,63.730777192903965,63.790437012030964,63.81218434718979,63.7794491048197,63.6865356222041 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|Low|%,%,65.90185261921351,67.13935486408306,68.02364360781118,68.66696857918478,69.09042914777274,69.3015575951601,69.35806355734168,69.28693348220001,69.14369849322374,68.95827891107386 +Climate Solutions,ssp1_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_1p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Absolute,days/yr,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.28175939332314,125.38527219118149,125.50916899123783,125.65697527411528,125.81626603606415,125.96300830937555,126.0646823803356,126.11466306773708,126.1154782961443,126.08107830990977 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.96242690105898,34.20474211917232,34.290873543082874,34.32889699822195,34.26967515862792,34.12131826268681,33.92180816659437,33.67946868457379,33.43473869229856,33.18705837615652 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,116.86211131664311,116.54963024950378,116.18691521740018,115.93676082345651,115.74454632339128,115.58069366887075,115.44923478827926,115.31633909027227,115.1800264857509,115.06554509767615 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.86897601309177,54.21787102066696,53.64012979360003,53.07389209951809,52.527988193610554,52.02465271700738,51.578197733128576,51.17085967772115,50.792358329782004,50.48623269437853 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,61.57860155545083,61.72779547966838,61.77085273868024,61.75980335758688,61.704747433111706,61.64811373713654,61.65195303350851,61.72158586271155,61.830143622996765,61.95444958976022 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.31831507047034,43.42964976484812,44.224385675397286,44.675545689313964,44.89555351668149,44.93539358525315,44.940061139660884,44.9810607357288,45.04277394402048,45.176917367974035 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.917513836074683,22.449150495096355,22.972057067063428,23.484567990483253,23.988606561200193,24.460336840390436,24.919084621125716,25.336128498895587,25.691184324198254,25.983564136893815 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.3358867987667,155.32169347965745,156.7169046186302,157.88623728884437,158.78043764302043,159.52275668241168,160.10550659301055,160.57456332863862,161.1034998770198,161.55989661411056 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.83150164682811,38.92916988448682,39.020191193579294,39.11199632880491,39.19006240986254,39.26014892282586,39.33756849560086,39.424801366016816,39.52116128453117,39.61797541957484 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.01141254015846,52.10642178386271,52.18152080741904,52.24084566103622,52.27850774083447,52.29604183371303,52.29967994212295,52.29421636780583,52.27151406725351,52.227170718526544 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.81548100358867,82.84440634894017,84.46304324984685,85.86086797878471,87.01336964202592,87.91282507236458,88.6015254859339,89.07753027228296,89.4298642401809,89.7142828447394 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Difference,days/yr,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Difference,days/yr,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6414944843680598,0.5994329494596137,0.5617223279221235,0.5247919199766636,0.48969148480632246,0.4571786140467497,0.42627501801398815,0.39690762219298004,0.367461780363524,0.3365763070968862 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,3.7080580940401067,3.80543706169561,3.873609996170892,3.936098041850185,3.977971371687167,4.003733110100622,4.023324154687232,4.040089748227303,4.0603986517646735,4.081846161577789 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.6506105199555419,-1.7660121946714709,-1.8855506734965968,-2.0008702161318013,-2.1081045696729865,-2.207474837930079,-2.2998552199297473,-2.385903852968488,-2.4656498610358293,-2.5419558124273522 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.181325922671341,4.209359378454643,4.2405987516361225,4.274147554136801,4.308232552962638,4.332777916208966,4.342900179737128,4.3464404098271086,4.3535061112212325,4.369858668519134 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,6.863626227081654,6.870528284486529,6.876577803134861,6.878032704871437,6.877492247569168,6.873856450998784,6.8665186539530305,6.856358679777116,6.845154606996016,6.833529789656594 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-0.45864394529313995,-0.44764659535353185,-0.44618144771656193,-0.4530945001725318,-0.4678975697839203,-0.4891110483046655,-0.5078074171345085,-0.5235381824417209,-0.5376892343358455,-0.5463364916068408 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,5.493891666471877,5.414574409218579,5.32492723791089,5.229366165323655,5.127811441190791,5.023389680926055,4.914273251665396,4.809361518061419,4.717792546623151,4.641704718837917 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.07578444243940935,-0.22250381540255337,-0.3436763609087364,-0.4477713673524906,-0.5313275619107252,-0.6037147427205237,-0.669105485411309,-0.7319466442594046,-0.8033637334791011,-0.8738620089592337 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.6287281254642068,2.6189787308941925,2.6096317168650587,2.601047534544074,2.5915985399648194,2.5832745674627233,2.577726198718129,2.574453966495208,2.5728398335102693,2.571896305800658 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.11321114121213427,-0.17324564530685743,-0.22676972220770508,-0.2714450784498811,-0.306076503470336,-0.33230008492045604,-0.352849119723717,-0.36874015800706883,-0.3798126421144136,-0.38618302795554826 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.303074604869888,1.2133657107994582,1.1244141938706536,1.038881181405672,0.960282843514633,0.8877963025901762,0.8186971907145287,0.7534295166486041,0.6881060379827398,0.6203978842530393 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Risk score,risk score,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area,km2,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|%,%,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|Low,km2,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|Low|%,%,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2316245767567517,2.2315679515653177,2.2318233730707115,2.2322595097866658,2.2328156183550774,2.233256641432879,2.2331850434428975,2.232543508315016,2.231344206492157,2.229726212396031 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.8274783509631286,0.8353464130064955,0.8391865547614752,0.8419498947727341,0.8421621575204247,0.8400849707978616,0.8367447324408231,0.8324391270017603,0.8281879927530861,0.8239525234890932 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9045373300013337,1.8983488214424369,1.8921749016481912,1.8874018475560013,1.8837492183044398,1.8806158380061095,1.8779899415687678,1.8756450973036425,1.8735366686712023,1.8718993367604913 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.184780444877164,1.17363297197128,1.1638613637890056,1.154345123432522,1.1451707334761556,1.1365322636940702,1.128571741853008,1.1210680238733939,1.1139549196567953,1.1081151606146258 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.393861232917596,1.3968597327440662,1.3982405770183295,1.3986023691340237,1.3981690708542511,1.3975996412103742,1.3979370700894127,1.3993503866516483,1.4012920722259037,1.403494778223857 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8581293462198328,0.8786602132622895,0.8930768740323601,0.9010736158436659,0.9046575756347107,0.9048412645766285,0.9044801546268769,0.9047964727694175,0.9054983003927968,0.90764977641645 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6221031931846529,0.6307254402689296,0.6388825075133763,0.6466146859799501,0.6539913182036456,0.6606218654391779,0.6668428995022163,0.672327170323699,0.6769262053693812,0.6806651932625085 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.410667220999226,2.423046101730017,2.4315976146495255,2.438716212254529,2.4441397661604825,2.4486149562334716,2.452050010244678,2.4547095795951805,2.4576605956952546,2.460106392983188 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8382107897576597,0.839430399430562,0.8405536936546971,0.8417124634603409,0.8426080665336023,0.8434098291663161,0.8444473098307738,0.8457480225455819,0.8472716794275276,0.8488429978889626 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.154323409482234,1.1558783123754017,1.1570943591690586,1.1580533956955785,1.1586813953927833,1.1589142163674273,1.158851074254808,1.1586166069488686,1.1580230176528592,1.1569967515183046 +Climate Solutions,ssp1_2p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5274136855670308,1.5533627095792264,1.5730813525295715,1.589188130045943,1.6016536764939124,1.6103774047703978,1.6160387204927404,1.618796491462783,1.6198033428718737,1.6198154529664222 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,75584.0,100373.7335111896,120492.5044632559,137981.16343706008,152106.05294881226,162144.8240804366,169615.48682770762,174276.47075307905,176537.07560101425,175911.491447311 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,61404238.10347897,65805536.58264203,73684208.38697633,79553921.09488547,83702883.83664592,85303067.03931123,84566204.36739084,81730307.26582223,76707877.3187772,69966906.01159482 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2795804.174866507,3461870.5340746483,3623525.0883468445,3687643.1995345727,3662181.113448053,3560375.964344243,3406059.565802319,3208085.0536838598,2985378.505583055,2742555.8694155663 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8380338.3599001765,22867593.46068655,26713298.97302139,29890560.48460149,32296629.048129432,33587804.09292638,33674808.70961183,32798458.836061433,31362474.31040217,29475571.322206672 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,117962.0,126522.50900207981,123450.71172789103,116255.25144082765,105545.89079181392,92522.07382936562,84220.84104779782,73109.17450176721,65351.419319931265,56545.69405014088 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population,people,72773926.63824563,92291172.3659326,101682839.87855567,108318271.13638096,111565941.87209736,111528831.09764121,109671938.50017631,106948665.14834683,103944804.51216553,99841613.35590295 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545488649.155505,1825900501.254667,1973778410.7054176,2077764495.778437,2133040886.0093503,2137467165.2449722,2102310131.5174851,2030089644.4143097,1925666272.0506122,1798092442.0029333 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,146809690.5515626,169020573.0299353,171671594.10062215,172218027.0131845,170129710.78555292,164901308.14923835,157883071.80907878,150614220.66870967,143432185.57389942,136048387.27499485 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,832420979.343543,915772385.1087261,1055828167.398916,1171534950.2542732,1264708004.9028988,1319615787.8768117,1338186853.9788907,1325194726.282163,1277440903.9930649,1199303144.0344803 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|Low,people,256411927.61036992,337306072.58422244,352494472.55171883,358068074.7752068,355015553.51162064,344746374.0163861,329564282.63581634,311138758.68200386,290161813.03635937,267700327.61962435 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,328615069.2240337,409557996.12600166,433985762.2151218,447606758.18366367,451117369.26108897,444518430.88888466,430563133.924598,410999288.2450131,387039946.5501403,360463577.5581498 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,61269010.65299237,69266609.21319836,72090036.10340327,72975710.0934733,72929400.49476199,71519235.49447972,69426717.30061093,67135780.77212389,64832174.51209038,63045218.897952765 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|Low,people,4756257.01791385,6934455.278566897,7526155.778946292,8008962.400787339,8427994.161545364,8744424.326907761,8954394.259392664,9006216.858307032,8965200.58784363,8816184.791482951 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199413631.3449214,495795230.5193256,553738296.7749332,598569528.410053,632256680.607961,648823532.4292988,649701477.484489,638157131.8555052,616420693.458728,588233303.6808671 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69168550.04107049,82723236.31502852,87604003.86270325,91404907.85199901,94002668.19938897,95814216.50467694,97661128.11891897,99470271.48253794,100499734.04787256,100402636.7475985 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,854009921.0210507,960955388.9340256,969708688.8637136,948800525.0595129,911309963.426636,852195234.6929691,780857065.7610861,710032990.6497781,639041781.232376,573139252.5923549 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|Low,people,4298363685.962963,5105627045.661675,5354945970.201098,5461095942.317839,5421186979.860956,5246247557.738267,5011459451.119149,4773066740.529141,4545524123.462265,4292694839.0069585 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.00484127831779754,0.005444926699712725,0.006050297846987131,0.006585228882359397,0.007074863352606286,0.007529625556482706,0.00801096867986414,0.008525824837083834,0.009105935214278486,0.009718639267638756 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.320521332532558,6.135196664770201,5.939973130329444,5.76448532493686,5.608336383304186,5.470027573546537,5.341159492740185,5.2075246036499445,5.065822668765688,4.918531057366081 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.5271838373076732,0.5249760452258525,0.5192100794330531,0.5125797403458151,0.5050525670624166,0.49824345247710616,0.4923909246396753,0.48654677029532634,0.48171607068646977,0.4762387937547858 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.162057261969414,4.569710295576977,4.781619899575363,4.951602346674495,5.066832542709297,5.136571398564109,5.1446866290724556,5.103312522259804,5.054205023122801,4.9799557619897055 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.00856673809023568,0.008212409046847183,0.007979897866163115,0.007711485750171464,0.007311365878789662,0.006866072715910629,0.006826651318429286,0.006518898063003816,0.006471014822206542,0.006234182553206366 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|%,%,1.1390459606089116,1.2381164582825115,1.3171050270135425,1.3883804825262014,1.4491773207380043,1.5014886420893323,1.546956259401825,1.5824099929072404,1.6117943991688182,1.6351178975308018 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.99106540483113,99.04876547400791,99.1094618035959,99.16248296154099,99.21349283264163,99.25896484729684,99.29246989135473,99.31454680636179,99.32753365216219,99.33979679166262 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,26.731536394576764,27.38393025140172,27.67453585906287,27.86264394203566,27.830645626199235,27.59662854366407,27.24497877788574,26.801743598210702,26.351087771668425,25.91220169188301 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.68357364392438,85.3794980571547,85.11445100498688,84.88954328645357,84.73911044684502,84.61987354859103,84.51921747768043,84.4360479313572,84.3627710171626,84.3085695421895 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,51.69853872232743,51.035384236602376,50.4393042603377,49.85466574279587,49.282718475520554,48.72530904910745,48.189810440543894,47.669569947490906,47.1627227356613,46.72177064641146 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,61.96448046971121,62.10750372683266,62.18524132679024,62.21701598348015,62.21374048244185,62.20646356278168,62.24359132103139,62.33325268594798,62.452168762574324,62.59370730901821 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,22.413745882489515,23.887541733063873,24.895289306462722,25.449351520729408,25.687542969579763,25.689103743307264,25.655977575035514,25.667331688386458,25.705846054818416,25.845375498838298 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.9419218341123585,4.408412737764276,4.880784968418417,5.361827944558704,5.853387516014086,6.320152768335259,6.783703963066777,7.205982324171011,7.566834448155582,7.860918156220839 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.03788091018177,99.07647576895928,99.11789860511246,99.15766828962424,99.19111743444691,99.22436102613639,99.25848526495157,99.29476559998878,99.33899138189494,99.38317388449752 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.425735021236683,22.49917557428953,22.56584723998383,22.634126084132276,22.68714570728885,22.734194250449267,22.794347486995157,22.86954176721457,22.957519806423633,23.049051581136847 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.0206449521897,62.374345813586565,62.68231417020746,62.93618256441273,63.128185489864045,63.24149694640031,63.293584475812196,63.31124265811211,63.27710830761991,63.188803127973856 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|Low|%,%,67.27730685829289,68.49366752024744,69.36299443604761,69.99815395844628,70.41809615788763,70.62910140819638,70.68816939562656,70.62218585477366,70.48404543033946,70.30197053084171 +Climate Solutions,ssp1_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Absolute,days/yr,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.25386492280545,126.36182797327538,126.4895368648325,126.64002162652916,126.80137548550844,126.94986167899263,127.05339528906862,127.10562462917444,127.10935800589442,127.07870101464923 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.17842964480953,35.427152858479666,35.51076713016076,35.54320731925302,35.47289605797532,35.30819013477259,35.08936561835161,34.82517962920659,34.55848014740885,34.289086605340586 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.50560046888981,117.161075284369,116.76478323767589,116.4842564017536,116.26439273553721,116.07535525201142,115.92144050586481,115.76839547106152,115.6143403511153,115.4838515291979 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.49987919243936,54.846478505849404,54.26615242026294,53.69686760763886,53.148531806041476,52.64471914099996,52.200669202725805,51.79751032551948,51.423832684631996,51.123401095849836 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.63583044591374,62.79526761294032,62.84714566567537,62.84342501101359,62.79461350180591,62.7438778048737,62.753580750859626,62.82852130486125,62.94136785377621,63.06841415213556 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.445987838544006,44.5718776320808,45.3766117603226,45.831071742181116,46.05032651420911,46.08583082397024,46.085909541942016,46.123829216720345,46.18308265724188,46.31704433609267 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.198822491750786,22.739070759953307,23.27062192392408,23.791539600449138,24.303736096758488,24.783354682278972,25.249620635330707,25.673358800764614,26.033933503407173,26.330732260340902 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,154.37717641276845,156.25013521517846,157.57271481103916,158.68060636995295,159.52669569449964,160.23213222066673,160.78856574517204,161.2388018554871,161.7471430740713,162.18368543592814 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.75334584232751,38.8494946715691,38.93909795639712,39.02950940527834,39.10630117793915,39.175253398389124,39.251598723417146,39.337723020955146,39.43293629601115,39.52864753326529 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.587616268230875,51.67957742627685,51.7529969165213,51.81142170351483,51.848948648702226,51.866707166955386,51.87047174402271,51.8652000321698,51.8430342679873,51.79967516523492 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.38340205500442,83.41971136983699,85.04297275869877,86.44459886922785,87.60005679014199,88.50092083713831,89.18947041278082,89.66332212058157,90.01199541735073,90.29218368421233 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Difference,days/yr,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4276277099148822,1.3891198794860606,1.3543208692436148,1.3188651391537554,1.2846249754414254,1.2526842520735473,1.222382637809164,1.1939293498438877,1.1659890042202923,1.1375391082334796 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,7.121295872590979,7.206744377032944,7.252620947459922,7.288392897449269,7.297018689019403,7.282781569673101,7.258274458428494,7.227524155305133,7.2000704474004555,7.174947744421217 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.236625524432412,-1.3791541890632046,-1.5261504295548456,-1.666222189214485,-1.7961031258318425,-1.9164707622647839,-2.027820013542693,-2.1308723725504355,-2.225635188798991,-2.315731628177431 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,5.324669450193211,5.361960747800869,5.40024367913595,5.440148857366513,5.481468696342774,5.51715634446766,5.544007140565443,5.5678426073282505,5.596390328270397,5.6336526517652015 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,8.91801588541564,8.946249798497414,8.96986990824302,8.985427095652673,8.997107825924203,9.003829510185998,9.004199961927494,8.999107968004784,8.991751843137122,8.981769390648559 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,2.4615030084552467,2.4332056930545094,2.4071383413092122,2.3780233157977198,2.3459872109857165,2.3095342063142072,2.27715475661005,2.2494586699683383,2.2233525699007584,2.2041741822705703 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,6.8904172718525265,6.816832098893345,6.732713310668365,6.642496247358099,6.5460949684593555,6.446823431480738,6.341799955730644,6.2398528333310885,6.1500739261701165,6.074983287234564 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.964143704136717,0.7285173191506482,0.5439130134683984,0.38581163604070606,0.2591772112033805,0.15127283437389394,0.05670541820843983,-0.031403385651179935,-0.1313427948990358,-0.23018816584397492 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8435096742187556,2.831595217267728,2.8202553034446955,2.809804457974445,2.7984857562158596,2.788520006221718,2.7817327068175515,2.7773790936812666,2.774842848900257,2.7731111188947906 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.6297969888921214,-0.6965003569852989,-0.7547485868980518,-0.8027414377252781,-0.8392858666471088,-0.8662600660618623,-0.8868193673797538,-0.9022579490517157,-0.9116393639294971,-0.9147844115777984 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.1939307216324315,2.08822291018957,1.9866748915291874,1.8928729491669574,1.8096127967300095,1.7340075194808446,1.6617844988917811,1.592367327457243,1.5218129970022412,1.4486539257978674 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Risk score,risk score,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area,km2,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|%,%,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|Low,km2,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|Low|%,%,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.259649743156618,2.259571472805408,2.2598010240360678,2.2601809096293333,2.260668055980698,2.261041264185744,2.260914375553888,2.2602382981604676,2.2590283987298854,2.2574212289918445 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.9566943381475315,0.9646039447260247,0.9678890016822107,0.9699163018850724,0.9690084443529327,0.9654499653394314,0.9604310826713427,0.9543024831748589,0.9482567967671655,0.9422865375032663 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9373597311361714,1.9299261908922818,1.9225074867016891,1.9166139812567915,1.9119634199469118,1.9079284182336536,1.904497773089557,1.9014339624197447,1.8986895637435632,1.896468601696473 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.217111130966457,1.2061189272788362,1.1964870178121279,1.1871022249413326,1.178102521428811,1.1697596276887503,1.162263654894331,1.1553292170938942,1.148818845885635,1.1436037232722138 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.4823514473201487,1.4860529929424198,1.4880097809435255,1.4888205886630204,1.4887721597205037,1.4885145714712755,1.4890651773727095,1.4905918907110836,1.4926082444797335,1.4948031884949418 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9625732392457721,0.981214256294654,0.9942932692687682,1.0012223467258552,1.0039211760437965,1.003331693060811,1.0023053566436617,1.0020496290729246,1.0022131798370983,1.0039099977431523 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6754149062704361,0.6841476841044395,0.6923581220292736,0.7001003815762278,0.707443974393136,0.7140135687818794,0.7201179239823468,0.72545355837504,0.729897703206955,0.7334924480160653 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.462952920711712,2.472163880172582,2.4784477563286234,2.4836094417400623,2.4874952821455363,2.490718466938963,2.493140268620803,2.4949452381575905,2.496940193717143,2.498474789671081 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8473392196370971,0.8484190558670377,0.8494148218676881,0.8504557350840846,0.8512316267956037,0.8519286268303299,0.8528889394696091,0.854133862115308,0.8556183229759015,0.8571630749203636 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1458637814718238,1.1470580940406092,1.1479658603730793,1.1486706883741038,1.1491024249766668,1.1492044919229571,1.1490606467907356,1.1487799591525685,1.1481928357342612,1.1472338495292995 +Climate Solutions,ssp1_2p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5659560343283536,1.5913764471567033,1.6106765328792414,1.6265236855070748,1.6388509892585352,1.647491911972613,1.65308388369493,1.6557514560623303,1.6566476219356576,1.6565478507108424 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,209799.31164251268,269531.0174429343,313764.6583550832,351123.73924998485,380088.97133392515,398753.2584539559,411205.9074189652,416590.5112128797,415861.16057190625,408327.4633078044 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,91172603.2008582,96984696.42220199,107271992.59971003,114330640.64034021,118788902.7137347,119656954.87969978,117414258.8505901,112465099.95257626,104845065.38909982,95189195.6799719 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,3604639.482748991,4436668.396885314,4621909.578382797,4685476.486712878,4639312.646885579,4500515.176237165,4302921.152945543,4058092.2561824988,3784475.465554197,3487685.745511829 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8336120.698464006,22417104.522362772,26062530.918243136,29065371.655476198,31346723.57860053,32573655.417240277,32670445.63062069,31868824.40500281,30527749.63983026,28755903.467110686 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,64674.11991506815,67685.5634096693,64870.43313406915,60472.18390228671,53388.386259625615,46440.99976217338,42066.85820920799,35625.93938410736,31799.394338909937,26634.474205178252 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population,people,103387836.81362876,129618962.92956318,140991579.74472743,148274144.6782906,150914342.21321106,149292644.45648205,145555425.5631024,140960784.5496172,136333297.7666514,130598140.97951292 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545211268.2558289,1825575953.080096,1973440632.31616,2077427334.2175496,2132712592.8187044,2137153534.218293,2102012341.177213,2029807936.9606652,1925400999.8267303,1797844015.8806522 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,179520916.48178837,204615848.54623908,206390366.82176727,205930283.2588442,202586547.44437215,195737404.39347237,186846528.28017586,177771451.1712121,168871600.09531525,159750264.89754376 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,834927611.8233514,918761833.073762,1059615070.4407173,1176182504.1347651,1270189506.4561043,1325786797.5461059,1344862085.53057,1332169321.6917043,1284474781.5699766,1206155016.5245674 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|Low,people,260016911.3388801,342153851.57992905,357686375.16582227,363467888.3600325,360492060.352207,350200647.7359236,334916269.6996446,316322842.5991183,295122178.89067423,272395541.7782769 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,350600866.5579649,437168739.67444664,463429401.48522484,478142608.16823024,482063150.4958838,475154993.39867204,460291549.3859594,439347478.0746614,413680456.1065555,385178561.2951585 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,84136238.70265017,92752212.27150531,94955778.61395419,95206223.96624172,94652867.4658915,92624965.38764371,89787698.95308986,86681375.43963434,83554826.75234093,81028807.13027671 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|Low,people,15940088.109850196,22078768.72332293,22850235.7334969,23237692.87130975,23409879.326568235,23371867.27008402,23080144.065041333,22505935.40764834,21850855.65669871,21077688.033574544 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200668122.37812382,498821845.0416261,556987683.5895565,601936907.5347165,635681258.416368,652199129.820163,652936568.946836,641181498.7277374,619159887.8790843,590672981.1090022 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,72900399.43074448,87172681.24380001,92304635.17144701,96300277.90987678,99028903.1318376,100931060.16313185,102872129.0757471,104774828.4889236,105856605.13859962,105752093.15615314 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,830729652.009148,934153756.9626317,942167139.4251604,921489501.4235121,884834506.0551007,827344399.6760758,758091939.6461668,689364794.4476161,620535713.0673118,556690444.5790626 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|Low,people,4374652075.08833,5189820389.47519,5439125943.95578,5545010079.799005,5504130892.708244,5327223362.3722515,5089836549.063164,4848780620.51674,4618703532.469081,4362886084.565909 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.01343798765008131,0.014621122299014262,0.01575508489397628,0.016757578580976026,0.0176789646558323,0.0185171666293597,0.019421325887857104,0.0203801334284793,0.021450478736041126,0.02255899990562676 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,9.384667919866292,9.042099144286844,8.647616193862785,8.284410008851742,7.959201576882199,7.672957904982929,7.41582630950747,7.16582128035022,6.924015205753961,6.691606674733497 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.6796998486909743,0.6727994608839268,0.6622672620763753,0.6512778463108447,0.6398090889362381,0.6298077062058298,0.6220441199628274,0.6154611388930591,0.6106571235328397,0.6056289576307753 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.140096759781539,4.479687532882651,4.665133894463143,4.814903439845654,4.9178073321111855,4.981477988259326,4.991244530921949,4.958665023520346,4.919685355408644,4.858366462073271 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.004696819709134165,0.004393380574498245,0.004193247845218226,0.004011262963734486,0.003698315706029782,0.00344639141957349,0.0034097946480145785,0.003176644639013604,0.0031487357772123966,0.0029364600999770302 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|%,%,1.6182100284907222,1.7388810564924848,1.8262739186882653,1.9005189648513714,1.9602903757152506,2.0098947311896436,2.0531038271414856,2.085652530304692,2.1140185581356814,2.13882118409525 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.97329870638472,99.03115986186967,99.09250091569348,99.14639173580068,99.19822302964312,99.24440055758124,99.27840520225291,99.300765322294,99.31385068116818,99.32607191304757 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,32.687691762658126,33.150911894785764,33.271419406907214,33.31684991887903,33.140092841669,32.75712304391787,32.24303682076125,31.634362493916292,31.024768523526607,30.426535494241115 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.94158879973087,85.65821094572085,85.41972811670297,85.22630551981973,85.1063869752855,85.01558725759641,84.94082178918055,84.88044094064273,84.82729145135951,84.79024222953144 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,52.42538630940592,51.76886721793306,51.18222642234234,50.6064945717522,50.04295881480768,49.496198005898215,48.97239294621892,48.46382345659203,47.96897755260779,47.54122694296127 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.11017747845257,66.29454042018558,66.4041811468545,66.46147706862618,66.48148305666689,66.49378232624225,66.5412266660093,66.63261507021393,66.75084029136103,66.88540986787635 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,30.779153338549587,31.986874579785372,32.79165482070297,33.201960728777856,33.33908661978726,33.27010319128878,33.18018308254714,33.139997614185255,33.12934557257759,33.21774407500634 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,13.210930595473428,14.036044846216589,14.818599344549247,15.557135215444696,16.258565534697208,16.89233803232201,17.485143073518454,18.00726934382681,18.442622190626544,18.793841607579832 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66091822569152,99.68129461739109,99.69953147157015,99.71550066564863,99.7283797678879,99.74058998123597,99.75272806625999,99.7653453125331,99.78042499015089,99.79536218554274 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,23.635670251949197,23.70934150976291,23.776679203906852,23.846341332988498,23.90020621350402,23.94828670900227,24.010607926055087,24.089130154840557,24.181209354768544,24.277105949885964 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,60.32996517993083,60.634687261063505,60.902018629425406,61.12457778113279,61.29417988150352,61.39731389672324,61.44832175612001,61.468329438174166,61.4446608620543,61.3753162894079 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|Low|%,%,68.47136062849228,69.6231489428047,70.45338359845282,71.0737319700283,71.495489808446,71.71926123274908,71.79370235069554,71.74244668391042,71.61878383429563,71.45150085197443 +Climate Solutions,ssp1_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_2p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Absolute,days/yr,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.0809886232155,126.17443317763995,126.28584403962428,126.41835499240861,126.56097340573257,126.69096283701323,126.77675645824954,126.81259174879838,126.8015340659404,126.75672487000391 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.9530805877064,36.207392126062764,36.2913793926437,36.32339312577089,36.2490627877344,36.076865823418615,35.84831684278608,35.57297626279498,35.295376623095656,35.015510422113984 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.8765855711918,117.49436817373731,117.06786054469359,116.76646288319519,116.53179214541186,116.33121367606982,116.1682257445058,116.00775984859044,115.84797766473773,115.71332655017375 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,56.66414999605971,55.99031273439972,55.39013771969995,54.801684002557906,54.23497464110166,53.712837028830556,53.25123994697174,52.831419939462116,52.4415093912444,52.12586530100115 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,63.719962450091344,63.886179943402965,63.94422565569441,63.94483373646423,63.89900670441818,63.850140568534265,63.86042031549855,63.93480742847984,64.04612438066854,64.17006556084664 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.99612809462119,45.12572047234716,45.93633811319048,46.39595618630268,46.619865208598284,46.658623990267564,46.66062831108877,46.699756560222625,46.75941401708593,46.89408949095636 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.666968386635755,23.220998314999168,23.76571434638838,24.2991965613233,24.823474077080892,25.314156098804375,25.790801332362598,26.22364373261784,26.591738183054385,26.894561620945655 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.71439133238286,154.47910877759148,155.73038628398686,156.7774638083703,157.57556459106277,158.24505543456303,158.77718032436826,159.21142897242513,159.7027651382953,160.12305639864047 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.774706202296414,38.871061502849905,38.960871347481756,39.05153394457625,39.12856712256387,39.197760201009864,39.27434740866851,39.36071223994862,39.456182843638864,39.552134615825274 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,50.87826529848535,50.96672976952047,51.03812791691727,51.09563177786199,51.133544358049,51.15214574969668,51.15684669766902,51.152706733198954,51.13234142174011,51.091791216157134 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.47265522414233,83.49751583023483,85.11156517023744,86.50595825973451,87.6560800331002,88.55305734095018,89.23915176126715,89.71177189886967,90.06028057387819,90.34152114074752 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Difference,days/yr,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Difference,days/yr,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4987022014656635,1.4467635008641377,1.3980230312757171,1.3480386000837126,1.2990234988720177,1.252549445381336,1.2079503981953892,1.1657206346274411,1.1245184199304281,1.082488570785598 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.166212923945377,9.256689963673281,9.301150125923641,9.335373382123764,9.336666773842914,9.309907080623715,9.269167703284396,9.220895548829457,9.177084850744668,9.136853912578598 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.1694513546897718,-1.3569967450597549,-1.5384944655560047,-1.7029331446409515,-1.8497351159782804,-1.9832624750787002,-2.1052329852690383,-2.2170638182855376,-2.318916346095729,-2.4144806643482704 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,7.473413546747995,7.4909594979504055,7.509616058030452,7.532668631492212,7.558704078227973,7.577204680648228,7.585174440786222,7.589917045073356,7.598963879020703,7.615244169015724 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,11.289632643231746,11.319893873268187,11.346195258802494,11.362434455187497,11.373832364230235,11.378355353554978,11.372802772127521,11.358286042227682,11.340951857503187,11.318683408561471 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,3.9653970745460825,3.9081483446081897,3.8685835390978935,3.833177171185614,3.8002051726515376,3.764870370708943,3.7318698091003926,3.7019890830945266,3.6720775050184455,3.6485391848530755 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,9.082413428804736,9.016431350278399,8.937537163832092,8.850613850805033,8.755808789489098,8.656405661347096,8.548969162524202,8.44301712399067,8.348596375502053,8.268956822878632 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.060538941951330215,-0.23382612714261936,-0.4590953277927602,-0.6523034795960825,-0.8073965538138033,-0.9372025572393257,-1.0478574180983924,-1.148122206906323,-1.2611800988691586,-1.3737098672736066 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.9265263112882565,2.9152425678125202,2.9045571335500577,2.8949210583945186,2.8843632972519084,2.8751517541404787,2.8692317834178898,2.8658258559425076,2.864376814940317,2.863724732829639 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-1.2713307054141751,-1.3443261515885108,-1.4072394894449434,-1.4583440957765557,-1.4961714432109876,-1.5234986419533116,-1.5437758870701765,-1.5582604137759226,-1.5653732496343498,-1.5643436346439141 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.70396443330886,2.5701682706250795,2.4450744373272073,2.332490702173101,2.2346984319313057,2.1469940659250653,2.0636398045380324,1.9839176623425305,1.903576126119214,1.8210036954620858 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Risk score,risk score,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area,km2,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|%,%,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|Low,km2,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|Low|%,%,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.277361708834687,2.27697542108056,2.2768886237719603,2.276925128619568,2.2770529792279732,2.2770648707154377,2.276574238220658,2.275540613594873,2.2739806779702993,2.2720117821361554 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0430916715237453,1.0512749628147378,1.0545488300254675,1.0565802913433213,1.0554155444400146,1.0513662849946268,1.0456881136211789,1.038842299169817,1.032135549476699,1.0255684062112875 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.958325578292446,1.9493212427620397,1.9405683399665092,1.9335701196467499,1.928025280604164,1.9232306603253781,1.919132774584565,1.9154735487368157,1.9121996232848124,1.9095030665351922 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2864070652279564,1.274772548824257,1.2644919254331894,1.254527514703078,1.244997611660029,1.2360780297297578,1.2279827057651096,1.2204543461075508,1.2133278833952683,1.207459838457553 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5786038969758294,1.5826121648431883,1.5848296573823248,1.5857692429165806,1.5857768153592542,1.5854712261405421,1.5858125875829152,1.5869906642603526,1.5886334883536277,1.590363364647838 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,1.031551099241016,1.0486062670651763,1.0608628080749327,1.0673608593772128,1.0698920191177586,1.0692687286796536,1.0681641675175255,1.0677636797817707,1.0677314976343364,1.0692111855808857 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.7656542335076285,0.7743336435643338,0.7823700947393485,0.7898542052483603,0.7968633825757626,0.8030270041894008,0.8086315346016488,0.813426648102893,0.817357146917234,0.8205002024725538 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4488930187212112,2.457372255174135,2.463193481218683,2.4679421669182866,2.47148939420002,2.4744753676470794,2.476742488769619,2.4784482373179877,2.480329175250607,2.4817055192057182 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8512487722878618,0.8523750634744629,0.8534145379276221,0.8544988160738524,0.8553216397335316,0.8560612215186109,0.857053255231642,0.8583194620273876,0.8598187541933879,0.8613714725583971 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.149480959176908,1.1504909263297394,1.1512397789484443,1.1518177848993547,1.1521635397757826,1.1522029159892855,1.152013753561476,1.1517127204548387,1.151138164112988,1.1502405178299693 +Climate Solutions,ssp1_3p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5994484946172671,1.6239074967144065,1.6423692863199735,1.6575046780386287,1.6692307862109208,1.6773296286556987,1.6823914778014373,1.6845455948408552,1.6849420805019448,1.6843445438570033 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,402211.8189434558,489279.8237082622,538476.5036048372,571192.8498419602,588941.8045870386,592196.2752263366,587273.528512434,574491.1635261227,556185.8949708908,533360.4638946382 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,518084.9957356751,615261.5409596155,635149.9143364809,638307.3623916403,624644.5490075042,595917.3860381158,561260.3368767616,526279.2822003243,492787.6206664905,457492.6183744408 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,100309052.42972234,106858651.11796759,118299730.34026892,126172706.95528525,131121082.67403257,132108281.90033461,129718357.79409039,124399433.23302495,116171693.52009894,105710034.0483822 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4891790.920032736,6029685.744234432,6299715.986692024,6407082.146286802,6366027.623901278,6196589.802479748,5942141.9942631405,5616479.98946514,5242065.153619342,4829533.564796533 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population,people,170.0,283.4453323647862,277.38649990733046,331.87047717348827,328.77509142476333,371.00864793170456,364.8753867886337,361.89444521509523,365.61742886028895,372.9627391417219 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,7172140.214848682,19154540.55691769,22254936.191746786,24823289.1364902,26789691.081396267,27869745.39101447,27999357.123666376,27377564.072119318,26295781.75063699,24840923.060436636 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,28596.360035419464,29526.771484896133,27868.217312300163,25447.244314762727,22467.900648248065,19717.46143602497,17132.439704555563,14817.138939655159,12629.55956700605,10989.35944743087 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population,people,113322046.73931831,141789031.36518106,154056364.06986254,161849766.89615673,164555832.14705393,162675286.70005322,158622810.93546534,153763388.8701277,148949427.25610653,143004696.7518634 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544382961.1986578,1824594986.939019,1972392022.797097,2076347290.6406546,2131632783.6463447,2136099174.5742698,2100993973.770191,2028832694.0020416,1924474561.6207223,1796969296.4368834 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,219360065.2728987,249515776.3852929,251844754.2400201,251636850.09169838,248189204.3480804,240731394.055164,230902570.64548478,221014598.10180333,211335491.97285116,201294187.8690065 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,821760091.1065568,903668240.8106875,1041605394.865748,1155581531.1782427,1247388462.7386143,1301503968.2605119,1319795792.264694,1306961948.0146384,1259845306.869464,1182772146.1541412 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|Low,people,282376226.257987,371744330.8664238,388644478.3746695,394937253.9802741,391692521.2346609,380421886.3166906,363686817.9515231,343390722.66279244,320298247.6184883,295523782.5590903 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,382535241.2818601,476806003.2574018,505317705.18082273,521233063.535564,525412581.06725097,517710357.23798317,501158162.30178916,477850760.9373675,449407557.4124552,417882117.37042 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,110335929.70549457,119192417.10362023,120522732.20794617,119969489.60006472,118809026.07286005,116092214.90176582,112406280.32006535,108355276.43840486,104271134.98457265,100895439.49335085 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|Low,people,23144207.457021374,31010827.68012692,31233603.438037958,31072241.644567437,30750727.831143267,30279258.7531759,29566069.523487102,28571907.413129434,27543004.898902938,26420882.96443337 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200668122.37812382,498821845.0416261,556987683.5895565,601936907.5347165,635681258.416368,652199129.820163,652936568.946836,641181498.7277374,619159887.8790843,590672981.1090022 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69320193.73868856,82943659.26201575,87872436.48542999,91716174.98228964,94360864.16101049,96211802.47017902,98080217.6052686,99893562.84445666,100909361.14865215,100784383.72049601 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,849518666.7103485,953538464.2476385,960007388.0367337,937451925.9524137,898970421.472245,839703148.7980043,768807543.4178917,698686999.6320785,628633769.4364433,563757469.6699133 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|Low,people,4503401705.107637,5326827127.780914,5569758855.73043,5667629196.587499,5617597584.548349,5430665170.040487,5183385625.246557,4933589699.267606,4695792152.359896,4432417945.55411 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.025762322160944946,0.02654173240893606,0.02703855517757133,0.02726050106029309,0.027393274030277096,0.02750020689026784,0.027737029981261603,0.028104832565813656,0.028688550036632267,0.029466738673891733 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0943344262014381,0.09968182465588996,0.10239014306515343,0.10326985549855727,0.10218239368946914,0.09972820064181587,0.09685348651923721,0.09365119920255874,0.0905340024835913,0.08713547611486466 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,10.325109883453894,9.962669920903418,9.536605399300429,9.142487355008075,8.78549346058565,8.471394637612132,8.192947091542148,7.9262287260724245,7.672030814480093,7.431200194217968 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.922408347377486,0.9143728931529813,0.9026779056601777,0.8905797891001216,0.8779409029321354,0.867158504520627,0.859015156479293,0.8518103957888032,0.8458515472532341,0.8386378797041898 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0001408937131183517,0.00018019353553535184,0.00017988783370352247,0.00022218014137610507,0.00022833997969562322,0.0002681515953070261,0.00027642367933344267,0.00028955609402523975,0.00030858947643596903,0.00033255082975862415 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,3.5620111006388298,3.8277180911263935,3.9835830784399904,4.11216968660543,4.202880690057944,4.262110635892906,4.277616525127737,4.259842398588576,4.237684530105114,4.1969228204497835 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0020767495189766305,0.0019165437611007568,0.0018014114682009634,0.001687975893409908,0.0015563944833404905,0.0014632348626619548,0.0013886965582620794,0.0013211942138758744,0.0012505630024030906,0.0012115807240306812 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|%,%,1.773698707065761,1.9021465307766217,1.9955029954138472,2.074525886561774,2.1374854721889087,2.190062362573453,2.237423297301669,2.275079569753126,2.3096474493123678,2.3420048137284235 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.92024429015429,98.97794585312235,99.03984701872471,99.09484604666739,99.14799818853238,99.19543856717308,99.23030753408104,99.25305520627607,99.26606419634498,99.2777460040098 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,39.941720102595866,40.42539020352903,40.59895126299787,40.71157984096307,40.59999727599798,40.286974888800884,39.84553609777022,39.32946413350696,38.826153808944774,38.339121101982826 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,84.58621662742554,84.25100173931128,83.96789750953346,83.73355689532825,83.57865080662887,83.45845982518287,83.35764714836067,83.27432904643709,83.20074988067904,83.14647404420899 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,56.93353816849835,56.24599230661467,55.612097834992284,54.988048847765,54.374159278468866,53.76756762913518,53.17930291668023,52.610893424639194,52.06108028852178,51.577801611452365 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,72.13180315606931,72.30534113457932,72.40630034262077,72.45101923104541,72.45981687264504,72.4490330112982,72.44903565518567,72.47212605858536,72.51571024869135,72.56431044031699 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,40.363659601648855,41.10514243686933,41.62084593796598,41.83783492731784,41.847484577083726,41.69934048906291,41.53866291413112,41.42635698200071,41.343326273511906,41.36206623450474 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,19.181607798830505,19.714385955624365,20.255294555072393,20.80219699040465,21.3569116144424,21.88475008505187,22.398775080559265,22.86072643220406,23.24692640534278,23.55808135954063 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66091822569152,99.68129461739109,99.69953147157015,99.71550066564863,99.7283797678879,99.74058998123597,99.75272806625999,99.7653453125331,99.78042499015089,99.79536218554274 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.474900738580818,22.559126499879312,22.63499259055677,22.711203558836935,22.77359478505155,22.828530945991055,22.892164003801796,22.966862095558106,23.051092415032883,23.136687782279424 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.69447720853981,61.8929230226959,62.05521863803377,62.18340314830741,62.273401799770575,62.314457953668544,62.316891693274826,62.29955897583564,62.24652015357442,62.1544582782813 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|Low|%,%,70.48652942283779,71.46113943792314,72.14548095723335,72.64541499956447,72.96935677639897,73.11187601945896,73.11324070245838,72.99727986503031,72.81413944983413,72.5902323540902 +Climate Solutions,ssp1_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Absolute,days/yr,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,117.62464248241734,117.7333931167437,117.85673989368946,117.99441273913234,118.13788426646452,118.26916898462275,118.36487647474776,118.42065418040158,118.43950364016318,118.43348459436378 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.97974823335955,36.229805292119266,36.31444227734579,36.35169142382496,36.28698587912084,36.12687073126806,35.91099251017173,35.64845150900239,35.38287514070154,35.11587267982301 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,114.58698469967472,114.16306267673727,113.68995769364723,113.3382521304216,113.05474549439865,112.80922065762628,112.60357435792137,112.40229320506037,112.20382535226355,112.03070387899493 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.95992218985979,55.3098787709942,54.728932186530514,54.158927260338785,53.60987245509595,53.10364229964631,52.65724152191665,52.25177451202792,51.872601012430124,51.56158842428686 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.365781338237234,62.52136196649861,62.573565702937415,62.57029571933107,62.52244572267221,62.47116642682833,62.47501231892715,62.539351709349816,62.63826456911588,62.74746325804708 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.11733135341188,44.24214652044291,45.047470645313325,45.50388055903378,45.72589425008344,45.76461288522068,45.76730061695679,45.806668066095135,45.86666824738714,46.00107037475315 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.92603391034251,23.447221436361183,23.959122610969118,24.46047001347415,24.952985294688375,25.413573083461934,25.86054623431387,26.26622899170422,26.611283913517255,26.895247996317106 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,149.7364823425828,151.43497866124136,152.61523249614336,153.59949399624475,154.3465662675214,154.9703837279829,155.46072417358835,155.85486250301872,156.30323935806888,156.68505429505183 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.29334786109677,38.38808997813891,38.47634361447848,38.56521205512118,38.641087485248065,38.709184547556276,38.78385430588231,38.867430972837845,38.959427774251544,39.05162967197417 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.834645365477776,51.92998842905207,52.00852565502111,52.0729318733845,52.11753361860197,52.14167628827399,52.15106900170529,52.15070741663661,52.13385297683155,52.09684610377373 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,78.7975717088111,80.69822307907154,82.20827160052728,83.50866551034972,84.57650744689,85.40709421605135,86.04536484397511,86.48952514399201,86.82221675014063,87.09327500672212 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Difference,days/yr,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-5.104954561366007,-5.142236383365822,-5.1786724206681845,-5.220386040491415,-5.263864503291419,-5.304482256832594,-5.337188549274921,-5.360632228031577,-5.376130585210035,-5.386090707524569 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.761408793369103,9.852098714994863,9.906539473011208,9.95973201516438,9.988276597998558,9.993562274571604,9.986831259764388,9.973205651466195,9.9618690840749,9.95507293188601 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-4.336362638961469,-4.554399720391808,-4.7707305765574235,-4.973272830255586,-5.157933514868542,-5.327005586085607,-5.48360036718668,-5.629638383266379,-5.764925442935489,-5.894238308363072 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,6.031679212495071,6.071805171271865,6.106433018583568,6.14394753405421,6.183379738951145,6.213962545582484,6.23571167818749,6.254302393322174,6.269849927587052,6.281474074198083 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,9.178025408472323,9.186606836073615,9.196548459965136,9.198774005718084,9.198718009414973,9.191486786145203,9.170287632579974,9.13693502293806,9.098610934313136,9.052426252767862 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,1.8586507703460888,1.8375094723779954,1.8173395841637898,1.79229119237606,1.7630654385353646,1.7287733523867432,1.6973830233727325,1.6696249284428493,1.6430478044329926,1.6245070605079537 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,10.861892476536406,10.655102292773341,10.437899522605525,10.218620201922523,9.99577567416344,9.775768713484549,9.550973800653452,9.33761220522664,9.151972523009773,8.997859046377371 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-1.5936714354214767,-1.9125828075659517,-2.1690733270984137,-2.3903176901752965,-2.5685450510509074,-2.720047317483735,-2.8522675769307324,-2.9747792125164456,-3.112165633890305,-3.247336149490286 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8482129905752815,2.8420222646838296,2.8357852692857026,2.829707776383536,2.8237233556338293,2.818409466277582,2.8136890068272,2.8088970502569635,2.8040752896739085,2.7988727118521646 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,2.1611633519779585,2.094336722501546,2.038767496256638,1.9954864501120795,1.9659000546646181,1.9458366281435915,1.9317841653738272,1.9225608541374282,1.9212300255259347,1.929358885452083 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.000019937178102,0.7260430582218345,0.47984759775725794,0.2552277850642214,0.056883930464176634,-0.11623055244912162,-0.2682575184470852,-0.39824165245298626,-0.5172683291711412,-0.6336900190671056 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Risk score,risk score,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area,km2,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area,km2,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|%,%,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|Low,km2,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|Low|%,%,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.1198858782641934,2.1201872164891915,2.1207268502484977,2.1213670153141653,2.1220659542469322,2.12263670701528,2.122771793299493,2.122433526648675,2.121651755604072,2.1205613749736187 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.071648171291701,1.0799150180859665,1.0837775317399543,1.0867966355408132,1.0870270505437398,1.0846378304573872,1.0807413560537464,1.0757208025521865,1.0707376963139572,1.0659237918010618 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9071955303313033,1.8981166475128988,1.889219625317073,1.8819912136946364,1.8761662529633747,1.8710894556272966,1.8666838517985644,1.8626775833018847,1.8590340698797294,1.855932849107866 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2633965042187463,1.2529940942880675,1.2436767668505684,1.2346014821006073,1.225896482183546,1.2177419427599832,1.2104318750790741,1.2036477233461145,1.1970003608247382,1.191213341774168 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5020121429951576,1.5050897913128438,1.5066282207377224,1.5070200714860416,1.5065949021098588,1.5058596829253552,1.505621519059979,1.5061003371351787,1.50695888318947,1.5077700557668674 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9472134780700541,0.9661201630305507,0.979417642907615,0.9864404962084959,0.9891348822474519,0.9885021016188383,0.9873943135338913,0.9870289060079274,0.9870774324585545,0.9887154637474038 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.8439617444751343,0.8472367154368394,0.850008271949746,0.8524869859008734,0.8546846225997283,0.8563463349343593,0.8575712221294807,0.8583570694192564,0.8588738895666308,0.8592236643035054 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4114939221725407,2.4201622456689447,2.425785057238313,2.4303847945206174,2.433799739283721,2.436571949025788,2.4385519724733062,2.4399110187628077,2.441405991417305,2.4424694034358323 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8650270677222903,0.8663912633792125,0.8676475468938664,0.8689196552916622,0.8699692718723201,0.8709062527003784,0.8719928543151285,0.8732574913260785,0.8746834757656569,0.876122041918246 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.2855085990792672,1.2869218454275986,1.2880993835443435,1.2890983851839577,1.2898509673056973,1.2902191707409036,1.2902814147722594,1.290177807103917,1.2897895384735478,1.2890970741807635 +Climate Solutions,ssp1_3p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5741772900823257,1.5952606130237015,1.6108792137203782,1.6234157900456336,1.6328376433870109,1.6390139514903392,1.6425671567205395,1.6436864761951386,1.6433544014008739,1.642174335172015 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,30953.93942117691,36447.15867635533,38934.57890658499,40727.063792672416,41672.57790387077,41483.31180567587,40705.45243804639,39201.28053297153,36844.516693793834,33955.743310230515 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,957436.6714203842,1112092.235116915,1129757.5003967518,1124447.9223805275,1093705.698393141,1038586.3138583697,974226.9257914906,910569.6408410263,850411.1040534138,788835.097378158 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,85998265.32631803,91203080.66565444,100577920.33130978,106955912.85914229,110943229.93818404,111633175.33013685,109482056.53720257,104861112.47404747,97823553.19453202,88932382.68055333 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4250700.210177725,5245333.167217524,5484730.363416468,5580058.88143299,5543944.337796313,5394463.257775407,5166694.247317779,4873542.780006107,4536935.070200222,4167320.289752063 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population,people,653.3399881720543,994.8420280652555,1058.2232588981733,1152.0611887423688,1205.469646941286,1281.1861607163046,1285.6037066234178,1276.1663440423954,1259.6866041322614,1256.9873748830878 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,5836822.934919346,15629493.64523108,18150511.84988916,20233059.240735475,21820165.454949167,22678316.994911708,22752937.299156193,22214889.22908149,21297896.352726713,20081193.462134257 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,21691.0,22705.0705882925,21841.799696446444,19937.28368934904,18083.073288036376,15802.04605200951,13818.238231841919,12315.106119467142,10571.816025434971,9433.964437991488 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population,people,97096523.42224479,120930165.3206576,130870071.78307325,137072431.84558535,139083520.65979892,137291299.08978295,133686916.77473876,129409735.30230276,125203785.41356869,120074034.86449884 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544276570.466969,1824481451.586232,1972284027.5093617,2076249180.9053416,2131546645.5407608,2136025462.7127817,2100931496.992753,2028779971.4782662,1924430147.6309133,1796931803.5865345 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,227849906.98239675,259393654.9992547,262200383.60619637,262462832.4253227,259505861.88531336,252508719.89077875,243105741.38524568,233653157.71041486,224350673.8969128,214585460.41492635 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,791420434.2308854,870171375.8533597,1002829916.534993,1112560187.6279554,1200945918.2342992,1253026599.90044,1270628805.8512588,1258260439.9121735,1212907286.0204277,1138719219.396481 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|Low,people,286232667.15359557,377076611.6785766,394295104.70266664,400709567.5526196,397408799.4615348,385922672.28982514,368936375.1711424,348280469.76957315,324524816.00849634,298746608.39832073 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,354378388.6125759,441772987.8783094,468258389.4312131,483078111.3520476,487007124.9286824,479960293.6218958,464800938.5766757,443452907.41712004,417344636.4933821,388370602.8728097 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,78868956.8883284,87153023.0047111,89363744.76266347,89616350.31584948,89025722.88592535,87001209.63579185,84224880.40958565,81218300.10424778,78215322.90834105,75821558.17756099 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|Low,people,37323778.13873573,48240623.41415163,46962785.69582575,45275544.71930992,43516430.56053152,41733078.745247416,39759116.42421877,37595733.75865294,35596985.27161295,33659142.202135876 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,201298079.19670445,500288945.61300063,558528578.3904004,603510979.2800124,637266222.161635,653750435.2532909,654415584.4273603,642558646.3396441,620403225.0453882,591777535.9904535 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,68551228.78723553,82072658.29990777,86995246.47764745,90839292.67448507,93503874.81396031,95375410.05090693,97247110.28149575,99044474.96812409,100038144.50082661,99892036.50834277 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,1148785607.141444,1288890267.317048,1297158347.7180629,1266283170.2601414,1214016806.5963676,1133823388.7366946,1038023410.9062133,943307614.8051875,848751502.9708852,761216024.9092238 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|Low,people,4738985617.598871,5577818971.847345,5805329549.611194,5880531501.804598,5803223618.24296,5587295990.997534,5312913322.144289,5040150896.250262,4782532085.577589,4500672590.048231 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.00198265024039694,0.0019771318696980636,0.001955024505310182,0.001943722100180274,0.0019383041536153935,0.0019263877617493712,0.0019225255351365737,0.0019177761046529267,0.0019004720729222345,0.0018759639724589055 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.17433285998642836,0.18017603214594133,0.1821239828322992,0.18192109523036082,0.17891369808828847,0.1738099050623882,0.1681167690360819,0.16203552316495265,0.15623590727038889,0.15024400181666744 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,8.852057892808412,8.503066236896041,8.107980764817327,7.750036473455349,7.433518708362491,7.158436013760171,6.9148323486052545,6.68132595413671,6.460311386960514,6.251765458192176 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.8015226775147883,0.795429590712266,0.7858997021482075,0.7756241528248389,0.7645671343706182,0.754907915549293,0.7469139363591926,0.7391345490622855,0.7320728446625079,0.7236460012040847 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0005414793933074159,0.0006324468314247286,0.0006862680400144575,0.0007712801692055757,0.0008372194910308556,0.0009259948920236551,0.0009739525317870171,0.0010210760258775394,0.0010632043194831384,0.0011207880858968202 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,2.898831794113867,3.1232957743478744,3.2489004348193484,3.3517626298256267,3.4232403712994026,3.4681872658703066,3.4760919744046297,3.4565502894525597,3.4322526233906627,3.3927571410310087 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0015752625075473642,0.0014737561606965291,0.0014118616924219554,0.0013224871750915762,0.0012526490991732313,0.0011726714800336603,0.0011200588010067155,0.0010980964013749086,0.001046807841514869,0.001040097880039184 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|%,%,1.5197393888479989,1.6223179763355065,1.6951693091673838,1.7569398686875322,1.8066148185227269,1.8483232022805482,1.8856948781340315,1.9147434709708502,1.9414415278515043,1.9664666548987773 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.91342979049115,98.97178695425383,99.03442424442203,99.09016370419013,99.14399167258746,99.19201556110906,99.2273567451134,99.250475953892,99.26377328429473,99.27567462433666 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,41.48757522829641,42.02575833710904,42.268343556689935,42.46308342230098,42.451231161822776,42.257938551678656,41.95136748309916,41.578491035327794,41.21727822689125,40.87061847471914 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,81.46326527378707,81.12801445224059,80.84205406977323,80.61622590596181,80.46686540404828,80.34986653743668,80.25228469091059,80.1712659335874,80.10094190325457,80.04964297396675 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,57.71108530068536,57.05278181390327,56.42065990564292,55.79174173184174,55.167684316445985,54.54503047357756,53.94690784427425,53.36005159033868,52.74806411666694,52.14028179604073 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.82247649787844,66.992752554207,67.09612039217147,67.1475084451857,67.16330814980788,67.16624203201071,67.19311846950862,67.25525547837742,67.34208678654667,67.43970086610483 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,28.852249103938764,30.05591724260444,30.860523861915134,31.252563329244804,31.35706678672556,31.25009774887191,31.12449683732005,31.051356280766324,31.012241451731303,31.083033357026085 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,30.933445232776695,30.667813143729113,30.455821701226238,30.311002690841466,30.22291265301537,30.16315577816893,30.120862209310374,30.080798318686973,30.044670140338177,30.012048104436634 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.97378343935002,99.97447039896964,99.97534814439327,99.97625781511246,99.97703562208142,99.97783059083926,99.97868543494053,99.97962412020426,99.98079441538097,99.9819789057477 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.225587947844794,22.322230502517538,22.409037898496305,22.49406571381082,22.566764036961697,22.63007701688747,22.69771470552096,22.77164547090828,22.852077227205488,22.93183502554447 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,83.4280990336984,83.66016588822004,83.8487764562026,83.99555720812526,84.09726792238413,84.14115153129536,84.13860273138005,84.11155268647774,84.04229951314322,83.92433308011297 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|Low|%,%,74.1738514666446,74.82827764916159,75.19684484024441,75.37431200047844,75.38053202983944,75.2205630410439,74.94026851123124,74.5739568878582,74.15915076810731,73.7080467307881 +Climate Solutions,ssp1_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp1_3p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Absolute,days/yr,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.41078077595971,125.50356723946632,125.57011380465511,125.65405739795551,125.75080753320916,125.84103813532741,125.90668891186048,125.9435651950265,125.9481171892117,125.92651555235093 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,32.71806927781255,33.02935651754958,33.238660266370935,33.41173976437387,33.510062376804576,33.51857296372713,33.47761737843654,33.398018872361696,33.30405528261287,33.21547275324287 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.38700939864104,117.01748776733143,116.70095431849076,116.57335467446705,116.52631612108006,116.52346806434089,116.54408371513414,116.55916875809737,116.59186490216568,116.65674032931729 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.54305951219373,53.84111871750325,53.19407545812326,52.55151965524848,51.94793845916965,51.41316456422748,50.96756195832355,50.6228251552829,50.39120220405385,50.27391018022127 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,59.605384626054196,59.70565890490791,59.76342861715151,59.78933459859213,59.78754157734752,59.77793361300068,59.82458079702721,59.9439077714022,60.089731041170154,60.26413223648785 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.20673998854345,43.498268257094416,44.54217316525711,45.23064373293766,45.62767904650276,45.753958110726984,45.78699990790228,45.78438424123906,45.79692208966456,45.8829896301385 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.311351983300835,21.817452065710928,22.35275611020858,22.895465614053656,23.451742967588086,23.983162804413638,24.47761904858167,24.928718068212433,25.328429004568235,25.65078649380044 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.72764761893222,155.84941212964023,157.32417250819358,158.55084073879902,159.51254924517073,160.36794929086125,161.0798085808564,161.655381017267,162.05916594945708,162.23207607867863 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.36841942214812,38.47327559003146,38.579269643129365,38.68936764999631,38.784223182503055,38.86744491696862,38.95076859088096,39.03168351325982,39.114236054275736,39.20603131532131 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,53.5392563205262,53.61763068944718,53.681914293520855,53.73410691273604,53.781267338275285,53.814312707059415,53.838807073770006,53.85633398044272,53.86514277390169,53.87041564483566 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.93391138227082,83.26916356942306,85.3332009659303,87.26405150762915,89.02102681992493,90.49737076638374,91.71750123915682,92.71672166888516,93.52018089932386,94.15617889892336 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Difference,days/yr,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Difference,days/yr,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6693289711389101,0.6401458105608734,0.6126014772185259,0.582895730627354,0.5517033415594944,0.5205265242298153,0.4896452368750841,0.4591214882432996,0.42946735471701647,0.40289819283586453 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,0.3227725769207167,0.39345375957245027,0.4528281241913675,0.5095134484047704,0.5546982099138223,0.5897849961907636,0.6238438459067521,0.6548113771146068,0.6795131006420282,0.6989020656570251 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.4632369931306874,-1.547766512855776,-1.639944294506857,-1.7350327508490602,-1.8238060208536453,-1.8997006358584776,-1.9691933740000023,-2.031607183889199,-2.0853331888966946,-2.134046524826369 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,3.066706301205477,3.0348209155912342,3.0040598663175855,2.9786402375954326,2.9505879387416143,2.9151012107562293,2.874980855894662,2.8326765574252497,2.7921240203082647,2.753071315722804 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,3.3460235922882813,3.3371455883599035,3.3293597223840243,3.3199043005037296,3.3090094426144288,3.296467588579166,3.2834500143104575,3.271322999351306,3.2605730466816936,3.251274684869805 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.5894348430651029,-1.503735902581138,-1.4444899254058652,-1.4129589283126716,-1.4091145678058357,-1.4275495991692917,-1.4489248461527435,-1.4733138128524856,-1.4928639838556779,-1.5011226226599121 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,2.3541607632164694,2.329217694808833,2.301922893468578,2.2737204219771208,2.2441354300901866,2.2142578103136232,2.185624181042136,2.159374640884734,2.1359425628787454,2.117405104773663 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.02630518120643731,-0.14269261251511917,-0.23991320556036083,-0.3212642745850924,-0.38508734926687466,-0.44538670547797393,-0.5001358688812556,-0.5491963437326131,-0.5865064856200931,-0.6068802757707621 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,0.9472901514191427,0.9469970717464488,0.9463448304912304,0.9453372089898465,0.9444323416988897,0.9434185234029896,0.942210871140856,0.9408782576669192,0.9394040145386239,0.9374055412016795 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,1.6772432471752217,1.6437946983004867,1.6130259761419425,1.5850798795392058,1.5589958130228132,1.5372967973211011,1.5188925889769584,1.5028812911421765,1.4894459822287778,1.4783436744747958 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8674542979545901,0.78809600101749,0.6992382779903459,0.6019078682435087,0.5000504526732945,0.4008153081664045,0.3055653837759871,0.21572412267253396,0.1335585184621409,0.06073617289191183 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Risk score,risk score,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Risk score,risk score,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area,km2,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|%,%,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|Low,km2,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|Low,km2,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|Low|%,%,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.226450748015157,2.226440522195396,2.226064675622418,2.2257088385404473,2.225381434481725,2.2249449849435274,2.2241982116783166,2.223096581028805,2.22162759464269,2.219991773635021 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.6969179933478974,0.7048986800584423,0.7104590781058103,0.7152292024946012,0.7181771530878529,0.7190075656171856,0.7187849471953439,0.7177106669520987,0.7162319878005403,0.7147551147058229 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8873451192402924,1.8821308469147218,1.8778060319525813,1.8752761426424713,1.8738098689672598,1.8728055567474338,1.8720953427130322,1.8714605931906807,1.8711708208705289,1.8713780131282827 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1462486473278752,1.1330873124236804,1.1209062578478497,1.108903684612405,1.0975978832267062,1.0873635110018114,1.0785669214374642,1.0714251776615211,1.0662378852749868,1.0630984221806765 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2508520139486206,1.252749828464571,1.2540109976689744,1.2547212550144238,1.2549551728140524,1.2550447590375493,1.2560542632621894,1.2583047121110786,1.2610142434509897,1.2641823104644923 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8406826159778142,0.8658097674016761,0.8857047238716831,0.8985853302596458,0.9056244936751408,0.9073295785414643,0.9073381573296988,0.906658825609885,0.906336154240028,0.9076106177529567 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.4910982696196769,0.5011194297569435,0.5117293934297752,0.522477060482158,0.5334952001622335,0.5440197860704237,0.5538437731220643,0.5627961543601193,0.5707437419737176,0.5771736908837057 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.3978189661770615,2.4123246070286606,2.4225185595122416,2.4310676680672216,2.4379078170310833,2.4439276159058547,2.4489759427798368,2.45312239497416,2.456116526041552,2.457585599643948 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.7702465060667308,0.7719230752474973,0.7736180150776583,0.7753748354184884,0.7768678917615723,0.7781638667300418,0.7794710750736978,0.7807473734309508,0.782071174651486,0.7835527180956765 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1773593991567022,1.1784963182527968,1.179391396290592,1.1801020432683589,1.180727148503464,1.181108978675476,1.18135522907969,1.1814767310893353,1.1814502817306796,1.1813919963688764 +Climate Solutions,ssp2_1p2,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.4955097384273888,1.5265012082033653,1.5530710312909097,1.5769921971564351,1.5980210045228664,1.614719577871033,1.6277072818747285,1.6377207973322627,1.645191581995665,1.6507433073294457 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210050.1130848527,269409.89961630595,321439.1445417219,370866.20379881695,413991.5528148942,448280.27736869897,475111.2260311652,494031.0565102368,506416.6393585185,511460.8461285625 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,58380057.642563775,62636105.5594998,74422386.21624741,85745302.57952599,95539027.2806543,103607229.7132942,109282091.41915394,112318337.51520577,112952970.76539819,111515802.22511661 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2610483.9727694057,3224301.3967136443,3420225.5728357295,3521009.284428227,3533541.467986725,3466363.2055390365,3349094.1680093566,3197275.99047916,3023601.6075297827,2841756.329901362 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8315244.123720679,22664459.904410306,26947226.988564,30716701.85316874,33804754.47560134,36033591.79923392,37132834.611945294,37293477.13239891,36777770.072895736,35585418.08992696 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,247074.0,271594.0417136058,266826.0562244035,256229.26542638117,234576.71401054805,215853.4931223206,191006.19805760734,172522.8524581734,152121.07899597852,138912.96950335862 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population,people,69762909.85213871,89470501.26859576,101599828.84744559,112675832.29143351,121904948.93543927,129314298.3966436,135587374.71772304,141305176.39788717,146775811.345158,152419803.9369872 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545678261.6929336,1836740147.7030513,2030185452.9447792,2177704967.2784686,2274438931.843932,2322381019.6970253,2323329295.0118217,2284226870.892028,2213928533.81724,2121537533.7058964 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,97655613.64964367,114283799.7588632,118752007.45323433,121938985.49759457,123484895.3827064,123118223.85913756,122037163.58575931,121113362.22975366,120550037.53470524,120447439.34226908 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826488212.3046908,926921497.3591743,1153714271.8808644,1385415331.5174775,1604423165.4166126,1794606098.855722,1947073506.1748452,2055545018.1765988,2117501878.1209536,2136469614.5022278 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|Low,people,232899517.10217202,306532283.82470286,323095800.791308,330736560.9130461,330125864.0980017,323741995.27628183,313729319.56631404,301002264.2264465,286659684.67749286,271902647.7625483 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,278678469.5909165,349250035.9135925,376797736.12892085,395137766.8728495,404315106.50952286,404643465.9468086,397862449.93040824,385896315.65932864,370304104.9885115,352644781.49682945 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,59864239.216374315,68544755.0767597,72483337.68347508,74353366.82508151,75261871.48314308,74627863.05246046,73150881.62918113,71676234.70481424,70694337.87516409,70057453.06083886 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|Low,people,4089395.25093008,6142997.795091379,6885616.1976493215,7546980.677767977,8199622.100667075,8784234.261011008,9234630.13717889,9599790.052286454,9957249.127179129,10251109.536669308 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199134144.72175997,498589122.8108357,571151913.6510379,634435787.5646892,687029007.2377691,723233843.1970651,743482189.4089868,750870231.8564308,748605281.6068383,738064723.4381915 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,64471591.10337204,77439426.21279562,83215490.56009142,88431568.32191513,93050089.2559821,97833664.8589192,103077594.47349423,108258960.23563722,113113599.71124442,118071881.26664953 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,852353245.4534541,958608322.1335468,969467061.3397642,947184942.4980625,905486185.1746995,844138793.8553643,773861554.415944,705188163.4976391,641224850.3565054,584791238.290642 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|Low,people,4161312690.086248,5054789524.410275,5511991412.468333,5889239354.855204,6173438633.354036,6350201058.504851,6482488009.925941,6611169146.952844,6740123605.87252,6898557822.216266 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.01345392292136777,0.014530123880465484,0.015693264627681967,0.016887777699199538,0.01805782997660478,0.019156900221991312,0.02030050905736231,0.02147400270330426,0.022713325199974908,0.023939549864028513 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.009117401724416,5.7293613596315955,5.45370651574269,5.2202542947711255,5.014068414267363,4.854085625684483,4.712613543077734,4.582157979300666,4.468703018892411,4.36993410662173 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.4922189733049516,0.4868137585580617,0.4799803940709951,0.47218935218208674,0.4638488286673621,0.455314704367271,0.448515770331209,0.44311980283205743,0.43853273018384287,0.43478863282154745 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.129618020553736,4.499415430198303,4.6733458145429045,4.798655396921835,4.879300411867811,4.943035486611224,4.957448978012434,4.932172372728876,4.880526682015434,4.790922233270132 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0179431221333828,0.01760699835929811,0.01716537722697274,0.016926747424391514,0.016257613387356207,0.01608148394584435,0.015547029137085458,0.015427061746676622,0.014969903837450211,0.014996909619112831 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|%,%,1.0919047627318568,1.1790651368095162,1.2505685916407687,1.3180722337465294,1.3775797343238063,1.4335961433658861,1.482147090059965,1.521757429033996,1.555492747491732,1.5820100702855933 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,99.00226135869701,99.06117748590155,99.11747868093714,99.16405702416473,99.20838056754351,99.24510115173054,99.27100184647895,99.28828026923696,99.29705078765153,99.30115660074196 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,17.781193914873715,18.483079319477717,18.95790099325497,19.34381893654028,19.576381145132697,19.625194168073527,19.58060268483182,19.460416598137503,19.306227995784386,19.159834810281644 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.07125377106973,84.78605371364858,84.54470975412465,84.34538239209343,84.20315493900017,84.07880118334548,83.96439760082386,83.85836378297982,83.77368891804461,83.7211520688991 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|Low|%,%,46.95816234304772,46.234109369890604,45.55975572988116,44.893993056798514,44.27171612989596,43.70385606142341,43.20949461823001,42.798710961783115,42.492640146486515,42.303834062695 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,52.54612999547151,52.73071643765248,52.87824502238016,52.99044424208774,53.07454016488891,53.15084114016517,53.28234270655498,53.48249566749238,53.707627934344785,53.954640939950615 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.89989273357928,23.61705777396925,24.940580524283806,25.778589735794945,26.21601215922577,26.289774613228555,26.2530358871557,26.175555138560703,26.121422196327664,26.178731477701824 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.3891657683007654,3.9004795090406197,4.438945113277621,4.991627033673548,5.572897952590859,6.13253308680822,6.657201410344335,7.1348706235986965,7.55950321798803,7.899530037828343 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89642929479906,98.98138327432953,99.05250756458219,99.11346376152639,99.1641847421153,99.2121621391436,99.25918822449252,99.30480335526146,99.34229410696251,99.3668441432006 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.90270809242335,20.997595511512596,21.093855140097563,21.194184302468972,21.277598941536414,21.34969744466138,21.424147638330464,21.497568490774633,21.57605679662203,21.66672806728773 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.89999103085122,62.14501263916844,62.36747659691188,62.5719324417217,62.75577858721453,62.88989937149976,62.98878390818663,63.05820467431163,63.101539979702935,63.13349558395116 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|Low|%,%,65.13141661023177,66.61330849427186,67.84581643515082,68.89181747017926,69.76258163976671,70.39920457324162,70.86206042607635,71.1976448452759,71.43011706116785,71.60216496345474 +Climate Solutions,ssp2_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p2,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Absolute,days/yr,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,124.33491725284705,124.4168797104507,124.47372077727239,124.54759114482329,124.63329061810589,124.71298927297632,124.76902311537509,124.79705996856481,124.7938187686118,124.76589721016173 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.18732342639395,33.49992883125103,33.70912658578411,33.88292494924519,33.982170161668655,33.991159441978056,33.95041343832849,33.87120580941362,33.77786365289553,33.68988595396984 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.16830856405447,116.79288221540591,116.46960466321102,116.33626200234436,116.28440942004966,116.27704226187574,116.29416488346111,116.30685587509811,116.33806726966739,116.40180925353974 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.559242738527466,53.8653165091129,53.225684148990645,52.59030481037245,51.992364912387224,51.46194271318878,51.019271292481804,50.676834611568886,50.44703155985384,50.3296349094922 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,60.10381947485399,60.20568793323466,60.26533931415817,60.29290244940178,60.292631080259525,60.28426474064028,60.33194954694105,60.451959108634426,60.59830083924551,60.77310922946792 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,41.91208150030759,43.176996943772444,44.20006856212387,44.87609972804736,45.267255903527335,45.39367905291701,45.428612449037885,45.42788215025789,45.44138366395732,45.526119225716876 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.58342168172141,22.088815541298285,22.62323490632565,23.164516537468977,23.718620359395402,24.24740667663442,24.73893466739457,25.186926922878673,25.58361988123745,25.903400713847873 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.00897620929254,155.11251078873883,156.56923545237154,157.77801084147796,158.72185669434012,159.5630035860675,160.26175791019946,160.82471495921178,161.21748469078895,161.3810590738489 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.72286371535542,38.826618954564644,38.93179152472232,39.041299057653724,39.13538699484403,39.218061721515014,39.30119891446285,39.3820353855743,39.464737621948714,39.55720082116016 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.73122926682573,52.805378613593966,52.86635792320522,52.91613422639617,52.96154490666653,52.99346864320445,53.017292433743215,53.03442851793322,53.04325610021261,53.04848745151859 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.53356938126505,82.85913649258579,84.91639036620525,86.84263408708507,88.59642818080583,90.0719770687829,91.29347234011512,92.29547115585513,93.10309108219325,93.74359603095593 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Difference,days/yr,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-0.009184468328631307,-0.04861388747225463,-0.08559155840922336,-0.12467024331010443,-0.16593411143127448,-0.20663980802045512,-0.24624263392158385,-0.2848814667042412,-0.3218334141027189,-0.35453217031490264 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,1.8575025178941587,1.931709631657759,1.9934840423833664,2.054148872387432,2.1053630134306114,2.1477720672215637,2.1898207944285,2.2299100307817636,2.2642720604928677,2.293441557823176 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.467884548653805,-1.5660808426325585,-1.6716240717311521,-1.7773971936669808,-1.8745439735457106,-1.957491941777649,-2.032652800466681,-2.0995678849584447,-2.1568041464721364,-2.208397389627641 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.047510219232371,4.025318846127756,4.002581055233391,3.985059109003424,3.9616172262826934,3.927390729408974,3.8849846965715527,3.8389925736013497,3.793855916295754,3.7466897590046435 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,4.2416361301820595,4.234954211219633,4.230087200757002,4.223272659666404,4.214933773617806,4.204591633225826,4.193358432499731,4.182098301597348,4.171745059456974,4.162522764478306 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.8011124907984093,-1.7424114255785397,-1.702499055744908,-1.6805299627714352,-1.6786308433702688,-1.6923105321638388,-1.707544223458007,-1.7266562251892053,-1.7426826847836425,-1.7508140574996114 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,3.67193725195688,3.627356957900787,3.578198810927761,3.525568674191665,3.4672325652446836,3.4068752863511373,3.3469198930072093,3.2899797954530854,3.23776458078359,3.194963450150001 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.4174585680260771,-0.5477314555461739,-0.6587557608686825,-0.7536796301478289,-0.8311538472186661,-0.9026018677737004,-0.9678644282558904,-1.027216888147657,-1.073663447179567,-1.1018828821258855 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.341540739253755,2.334857170937731,2.328898742318851,2.323404005757097,2.317451602353037,2.312441963251169,2.308764334844491,2.305506663637173,2.3030587720414033,2.3021580273288507 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,0.8078674242974481,0.7698108819537148,0.7356554027261161,0.7055193559278703,0.6783090671480467,0.6561365692462622,0.6376689721011053,0.6218989820139006,0.6091035221662664,0.5984781361623562 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8667933958530661,0.775488867980175,0.6783531308938578,0.5761900774143054,0.4718798639338643,0.37341277026249,0.2809220685629376,0.19489845704473044,0.11764225147430725,0.04941945263686375 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Risk score,risk score,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area,km2,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|%,%,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|Low,km2,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|Low|%,%,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2156699011369536,2.215429197444824,2.214846324362207,2.214280058596131,2.2137243349008124,2.2130706619755105,2.212125304705029,2.2108402081828284,2.209208199263391,2.2074380139891736 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.7443549592416676,0.7527330861401579,0.7586367349524373,0.7638322671115333,0.7672358855424327,0.7685304226743251,0.7688121820456815,0.7682774681420593,0.7673113054940983,0.7663049803562912 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.895368326207593,1.8895799113055083,1.8846902839601358,1.8816671895187755,1.8797928506896753,1.878445125002472,1.8774413953705678,1.8765628943370607,1.87607538226252,1.8761172146744294 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1735600151559957,1.160527951697941,1.1484179110529118,1.1364783260925697,1.1251414899404701,1.114779276211616,1.105761392988649,1.0983696865540549,1.0929276028166637,1.089461106453376 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.280637078718935,1.2826016164126306,1.2839526343803327,1.2847375622188015,1.2850338429529915,1.2851664680005086,1.286214916171342,1.2884854860312949,1.2912116082868403,1.2943927879821848 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8263570062990134,0.8506230082574066,0.8698988300301991,0.8824643011323708,0.8894243216403965,0.891260318981774,0.8914296777734367,0.8908953721022091,0.8906636715725057,0.8919225220972999 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.5478137511920149,0.5570944221124545,0.5668768583649898,0.5766899945375562,0.5865968806617367,0.5959371170897444,0.6045412646300325,0.6122953271404467,0.6191165359189282,0.6245976334809811 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.390615113373271,2.404776711782269,2.414564234203565,2.4227060184374016,2.429122698735924,2.434786706109727,2.4394834927248983,2.44326967069476,2.4459312501599517,2.4471011304513355 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.817526982823481,0.8189875218290571,0.8204955035884365,0.8220849711869507,0.8233990852323293,0.8245506855075277,0.8257560091728574,0.8269454657015868,0.8282066751560417,0.8296792030815645 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1670977227021537,1.1682181449634232,1.1691160377437901,1.1698499100051056,1.170519145432741,1.1709433608961388,1.1712285115622547,1.1713856785867187,1.1713940506435871,1.171363237849449 +Climate Solutions,ssp2_1p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5030675614098208,1.5337002934685076,1.5599914185205597,1.5837062584301853,1.6045809611368687,1.6212104219174879,1.6341868406103093,1.6442261595227612,1.6517584542335952,1.6573722878275539 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,56649.0,77260.54840196301,98018.30827127668,119254.42825137409,138914.73457688512,156093.43833782198,171023.16046423523,183140.70146306005,192535.04941047495,198326.17869943508 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,59049255.899873815,63392102.95072693,75351045.84712312,86839243.4099085,96770254.17907055,104945728.34508346,110699900.67831066,113789404.97269653,114450149.68752125,113012353.55912474 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2641670.972752724,3261716.8453886365,3458410.3719082093,3558939.5713284113,3570057.947890561,3500850.4193460164,3381325.3816365306,3227461.8123839763,3051522.26654745,2867810.904120772 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8103691.285880629,22104349.962143257,26277727.776060656,29946853.74224293,32950516.10993434,35114867.74774714,36174783.129096754,36316798.23039466,35798062.03800957,34617272.90938096 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,198596.0,218529.31425511604,214168.3574174702,205904.88190299695,188003.0109810549,172909.92255603874,153301.62352801554,138434.91359592197,121884.22829726627,111204.09485664072 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population,people,70049863.15850717,89857233.79072767,102051373.09390812,113183478.05617596,122452199.94925202,129888877.65827796,136194567.66270825,141953843.9937536,147472726.07009548,153169253.8552486 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545073571.7930212,1836066692.1307364,2029476878.9466817,2176973912.0659676,2273702630.378602,2321656728.627175,2322628579.820839,2283555934.633755,2213290789.991777,2120935757.8564758 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,113952036.77883524,133007957.35832667,137993503.36436644,141639370.19895762,143491310.3934954,143215710.0016013,142163696.64132228,141348202.32088208,140958012.42872322,141047948.21105126 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826745572.8557653,926611068.4311608,1152718890.6803668,1383566073.7882757,1601651563.5877,1790982937.3829591,1942626876.6816344,2050318733.0955877,2111607044.5429666,2130045741.2727525 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|Low,people,249962210.29294994,329172143.5594927,347074701.90488106,355391783.8048152,354755870.93079585,347806718.98001534,336869262.45570105,323004660.29255235,307401178.9420937,291333824.81231475 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,287802311.68335783,360464335.55751115,388702724.1368136,407430542.75589883,416704189.41634244,416836976.03597736,409616236.13712645,397035728.0623704,380747937.66983896,362362771.6156215 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,58844906.675545104,67511968.14678141,71499223.1452553,73423229.12579507,74375689.00928646,73788376.01306714,72357275.45279521,70918087.01206428,69964647.6287366,69357108.83239552 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|Low,people,5587049.4022804145,8375406.639996535,9386904.652917597,10289731.531005891,11177802.708634079,11983605.218899123,12612959.714992959,13126515.280981805,13628532.967199938,14042383.418840703 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199134144.72175997,498589122.8108357,571151913.6510379,634435787.5646892,687029007.2377691,723233843.1970651,743482189.4089868,750870231.8564308,748605281.6068383,738064723.4381915 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,62908039.09063497,75521879.59971061,81117293.26936083,86164650.80833267,90624515.66612625,95247464.38305132,100321405.25229573,105334868.38622792,110035102.45806879,114841683.43458526 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,860579912.0304313,967642267.6057911,978331292.2090656,955556443.7502285,913260691.0239413,851195850.5441879,780170016.9256963,710794289.4981027,646203577.2708948,589273562.0238647 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|Low,people,4210589755.324582,5110591514.2101,5568666736.706309,5945669196.192136,6228590965.786637,6403304308.403085,6533332636.743175,6659939386.281015,6787115668.973365,6944163389.293867 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.0036284259426448444,0.00416690456049328,0.004785438476237592,0.005430374224788748,0.006059299135884022,0.006670528627976626,0.007307461974799133,0.007960560103413861,0.008635401860398594,0.009282899131488793 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.07799864397714,5.798512884979297,5.521759118424602,5.28685443665917,5.078685524969257,4.916795409418165,4.7737542755567235,4.642171897219619,4.527935174751413,4.42857898552051 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.49809942814488883,0.4924628443464356,0.48533909176973633,0.47727604072865987,0.4686423556668062,0.4598446784720862,0.4528322233431272,0.44730334391221954,0.4425822460979295,0.4387749818918064 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.024554068317942,4.388220752386746,4.557237342828168,4.678387413400579,4.7560016133973,4.817006263263056,4.829543543532004,4.803003706573378,4.750516319903494,4.660579286089076 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.014422530428945542,0.014166898703932862,0.013777817268566198,0.013602271089609689,0.013029768453706942,0.012882108616543816,0.012478049571112537,0.012378904762532249,0.011994361261138169,0.012005486354533433 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|%,%,1.0963960559214538,1.1841615968455148,1.2561265444323035,1.3240106304149064,1.3837639123477505,1.4399660082899526,1.4887845019752586,1.5287431231051305,1.562878472634897,1.5897888318850666 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.96353035691237,99.02485590711896,99.08288476339703,99.13076766593231,99.1762639540956,99.21414915036601,99.24106175181943,99.25911674432484,99.26844729839736,99.27298974679172 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,20.748456614369797,21.51133083746634,22.029666955518945,22.468993982800384,22.748050071806617,22.828757828050293,22.809861999001097,22.711737597905067,22.57458878847784,22.436802333119584 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.09774414857925,84.7576585972986,84.47176776429073,84.23279785028659,84.05769604557378,83.90905302896338,83.77264389169709,83.64515136890884,83.54047450653054,83.46942180142159 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,50.398413000633525,49.648867965744905,48.94102182721124,48.2406790181607,47.57473715721891,46.95249613979308,46.39652616226066,45.927173108471514,45.56722963010251,45.327023782693715 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,54.266473132676694,54.42388177412403,54.54894209008883,54.638982320759474,54.70085802380038,54.752486470515336,54.85642758155507,55.0263393151473,55.22236534152175,55.441493135215914 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.52699442907864,23.26121160359221,24.601959419489063,25.45610752454405,25.907327694541404,25.994041569916536,25.96821947804469,25.89868600869531,25.851803050404932,25.91703022112809 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,4.630375744606104,5.31794134865114,6.051448896047465,6.805702077748342,7.597027407439133,8.366108339156284,9.092623305530532,9.756045471660052,10.346727043394832,10.821094948115881 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89642929479906,98.98138327432953,99.05250756458219,99.11346376152639,99.1641847421153,99.2121621391436,99.25918822449252,99.30480335526146,99.34229410696251,99.3668441432006 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.395779835337812,20.477655345047662,20.561994191996128,20.650877557003795,20.72294732904677,20.78532527511585,20.851287890334348,20.91691572384274,20.988843307242117,21.07397205052857 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.49743181029916,62.73066857662646,62.93772775173375,63.12496172595507,63.294599803582265,63.41566313007798,63.502263844684556,63.55950668002575,63.59148564425679,63.617402912050714 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|Low|%,%,65.90268406941928,67.34868138035925,68.54341977973412,69.55192892006458,70.38582734162972,70.98791452409944,71.41785860300274,71.72286604314931,71.9281270034951,72.07551858624038 +Climate Solutions,ssp2_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_1p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Absolute,days/yr,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.28246340623973,125.35900790233742,125.41162036957601,125.48334242026345,125.56797199559692,125.64750773681993,125.70345121624912,125.7308794840408,125.72633126290755,125.69669171341732 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.963133997841396,34.29781925450366,34.52348856686888,34.71112047833178,34.819190453741065,34.83158756651269,34.7915780816365,34.71055697138049,34.61430769636225,34.52408960667595 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,116.86503031451208,116.46482841591038,116.11370443429576,115.95446304308017,115.87862489681405,115.85058125209282,115.84961897887602,115.84672253145605,115.86522856526656,115.91761498977274 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.86804248623694,54.185393236932946,53.556624332911205,52.93203995034877,52.345640406592565,51.82635055838416,51.39476021015118,51.06254613519456,50.84204264736101,50.73412302473464 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,61.58254430520777,61.69441246391543,61.763144556567156,61.79895821133515,61.80632537848868,61.8055386410527,61.86140754823864,61.99055498845294,62.14603310415181,62.329786892072015 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.318248925448934,43.580985473398556,44.60115681027753,45.27477359098374,45.66305948718624,45.7867528350426,45.81995965749049,45.817337385765434,45.82980894248416,45.914159579015184 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.918782083236067,22.41755535372415,22.94479564059717,23.47866030964024,24.024687306997954,24.545573080583914,25.029468943045668,25.47027317775706,25.86045722197307,26.174889280902075 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.34759708912583,155.42164591049854,156.85301616004944,158.03555112128268,158.95307313602848,159.77407656942492,160.45338640525227,160.99697477170852,161.37234005878392,161.52058119617666 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.830369404693684,38.93407970057315,39.03912672776499,39.14843018408187,39.24203734251417,39.32417540494196,39.40691316637199,39.48741094614899,39.56990898813004,39.66246641824549 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.013009375260566,52.08421073763426,52.14300870966193,52.19129073432906,52.23560947235456,52.266673209116284,52.28959030412613,52.30572698121608,52.31366545274225,52.318230563029246 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.81718593257864,83.14519937327854,85.2017702544826,87.12698928494383,88.87896969432202,90.35136637419829,91.56730299142684,92.56183803651341,93.36082726638584,93.99152834831347 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Difference,days/yr,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Difference,days/yr,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6414422981905421,0.5944753766670938,0.5507542596929442,0.5067068389833946,0.4610772348854086,0.4168026729034124,0.3736993612139252,0.33102526898096357,0.28940880176558853,0.2518974867239341 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,3.7081082981988143,3.8264876619173402,3.9228553178139194,4.0142774281681985,4.0871180197925066,4.141702974844679,4.191806687337187,4.235673513317177,4.271834786122785,4.304273604597665 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.650467768849432,-1.769902940558588,-1.8990588472944268,-2.026068490138078,-2.1428585186734828,-2.2425214325881067,-2.332114950178668,-2.411207574436212,-2.4783431197295354,-2.538838344731978 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.181040975438179,4.185330759411573,4.188887651475074,4.196718168232218,4.200506531732163,4.19452956501697,4.1813854210887635,4.163457349808541,4.1445332945652416,4.12293411941666 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,6.864049143726445,6.863536165061808,6.864861818316189,6.864323942819511,6.862166595680021,6.857576485708482,6.850917130982208,6.842764495818641,6.835621303292193,6.829701749892273 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-0.4585295360190619,-0.429794512291481,-0.41702961430593083,-0.4158122005371181,-0.4305884959319416,-0.45636197114664795,-0.47968486213744443,-0.5060778733333102,-0.527234859276082,-0.5393547034420375 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,5.493838893754645,5.400946529621435,5.299774410273049,5.194166343360672,5.080757362179897,4.966600812931494,4.855084613342126,4.750330821956741,4.655005644847366,4.576706102252581 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.0767316147352117,-0.24320801465754485,-0.385056880848503,-0.5092656603248327,-0.6144877285093252,-0.7086164051355239,-0.7951782938817314,-0.875046678680317,-0.9392247579570393,-0.9817360247489294 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.6288313797452587,2.6192110066217014,2.6106370121059435,2.6027067378036084,2.593723669538817,2.586065207047457,2.580609247481592,2.575861872472601,2.57248439765637,2.571947072706067 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.11339221011390771,-0.15437435714527664,-0.19069709559282008,-0.22214633608010056,-0.24998672688757193,-0.27272355242491436,-0.29201494925148597,-0.30888083629666524,-0.32257233127886326,-0.3334014877115579 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.3030506659543506,1.2052267127810943,1.101182841284506,0.9946557855398784,0.8873192566766912,0.7862243176181508,0.6900439911276091,0.5991489868827674,0.5165577239420264,0.4421789366895946 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Risk score,risk score,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area,km2,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|%,%,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|Low,km2,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|Low|%,%,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2316300597480585,2.2312343778630988,2.2305115458703497,2.2298254438236653,2.2291532094080697,2.228396135881236,2.227351380816555,2.2259615311244927,2.2242194280170238,2.222345604150229 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.8274939607837792,0.8378031385300392,0.8452236983414083,0.8517860630507742,0.8561955567103026,0.8581046117414362,0.8588267802846513,0.8585564956592555,0.8577422826142257,0.8568903691186874 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9045663281678393,1.8978606805721803,1.892041686241646,1.8882044323507599,1.885610428872604,1.8836603362427966,1.8821426271382662,1.880835012993498,1.8800054072559453,1.8797591530312219 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1847595709830456,1.1724730912974501,1.161095782086935,1.1498676851861145,1.139287971508597,1.129695669756349,1.1214663017021707,1.1148228207653441,1.1100715247699409,1.1072845122815802 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.3939350723478112,1.3962844316884262,1.3980155462851758,1.3991796411806008,1.3998486093154041,1.4003343440799514,1.401680099561837,1.4041810573874556,1.407121637525893,1.4105037522305464 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8581326849374318,0.8817345731794024,0.9003271423819491,0.9123128714942343,0.918739442347301,0.9201155522809636,0.9199198406244703,0.9190497856009131,0.9185641395074072,0.9196316695165838 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6221278059475421,0.6296534661024266,0.637548294559724,0.6454258939642714,0.6533023543432511,0.660648177625949,0.6673336040018482,0.6733036214549498,0.6785144584526218,0.6826721859729927 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.410723863634739,2.423487415600039,2.43213944283396,2.4392348713927032,2.4447037881492033,2.449582557612729,2.4535389121600772,2.4566070037866194,2.45864639356774,2.459319736212984 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8381967019955391,0.8395279076153151,0.8409254362734706,0.8424170592832381,0.8436050140907659,0.8446468387714771,0.8457820666334249,0.8469187955323776,0.8481574927746586,0.8496710072554906 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1543486268643555,1.1555249903549438,1.1564995172830534,1.1573353479103323,1.1581300307410267,1.158661256631947,1.159030680158579,1.1592512587377741,1.1593157268950796,1.1593452835645308 +Climate Solutions,ssp2_2p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.527433835289871,1.557771744830353,1.5837643352744144,1.6072480435258847,1.6279309367220114,1.6443957930033894,1.657211318404748,1.6670873346204906,1.6744762442227048,1.6799517401574393 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,75727.0,102584.63725152728,129507.84815277609,156504.00125091214,181314.41260035208,202983.3440693364,221508.99400978012,236515.05143903143,248067.82278558856,255001.96767298155 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,61405697.57347922,65965811.20020248,78388744.82311538,90261986.6640383,100449240.08888689,108771428.66221811,114579666.71347673,117642106.31744382,118223169.83226584,116657641.57103488 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2798666.2448564805,3460233.7971885875,3673849.0453172335,3785518.019186909,3802085.744591128,3732999.478777932,3609898.3149812277,3450102.806918735,3266300.16111691,3073582.2189071756 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8390400.269886132,22904804.276002415,27230468.26676578,31028458.63245292,34137566.88247658,36379822.83633207,37469749.17937559,37602833.93105389,37048504.69229909,35804548.92219964 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,118105.0,129887.26002615906,126691.0020046111,122006.70648632303,110598.37453531663,102308.52216046794,90042.82946042856,81575.74409873478,71431.79083333594,65401.34256227435 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population,people,72788596.08822182,93444265.11271854,106116026.00608635,117618076.09579097,127120511.79398356,134683460.18658805,141068410.88073817,146893960.08864054,152493164.27613324,158284562.1619002 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545503413.2742143,1836559324.4842665,2030006443.708673,2177530013.070097,2274272372.1762376,2322226752.8550067,2323189460.0684013,2284101992.445269,2213818329.166235,2121441273.3292618 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,146817017.01676175,170510218.88383216,176373466.3542364,180633183.1162946,182712617.6825127,182285043.5092823,181016899.39731833,180150451.8342394,179857840.16525844,180159267.14550945 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,832437342.3235894,933038264.186132,1160739681.0255713,1393242112.0351489,1612856919.903358,1803514083.238509,1956288985.208288,2064850907.4241846,2126697571.8449426,2145374470.662952 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|Low,people,256403810.45216697,337798660.72684413,356285851.8738416,364929672.5629651,364369097.80720955,357295978.4621005,346101057.09745413,331865186.15681213,315816236.9433488,299282748.8011691 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,328671841.2840413,411521087.1144822,443661862.8166724,464986048.98710793,475557339.22046953,475693116.2959147,467274120.4824711,452563246.5592205,433585869.987137,412204944.9720528 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,61269884.81098795,69955072.55179222,73838064.61931577,75670020.11422068,76570340.45269284,75934471.92126155,74447890.50119051,72958913.70886844,71968980.91246253,71323156.33039592 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|Low,people,4759562.147914486,6959106.878564771,7628818.572171925,8210526.392620081,8782714.717777532,9290849.999067657,9668037.165263792,9968853.7338926,10273557.534524374,10526830.529566657 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199420024.5729791,499247378.69089633,571851476.0770795,635161076.8903204,687767845.3687992,723965941.1550264,744189720.8547242,751541294.7008244,749238775.2516278,738666079.9254122 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69167061.34105779,82999918.55206846,89113486.84894349,94620591.2898435,99481188.43833274,104525256.2132815,110065530.39665194,115537354.06196083,120662046.37608232,125904166.99523528 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,854022278.4090638,960362233.0135534,971037974.1951994,948484348.1004534,906563813.340843,844989645.5793285,774506878.6078631,705650126.302266,641552437.5965818,585090485.7760608 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|Low,people,4298472235.632778,5213285994.299015,5677137455.458021,6058694190.154199,6344641755.356686,6520869682.8769865,6652131449.377539,6780264690.146454,6909373055.112936,7069054735.433387 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.004850391204763828,0.005532712382210803,0.006322817139526602,0.007126572211455526,0.007908723771736173,0.008674331362261097,0.009464616057899227,0.01028057808723745,0.01112610584382853,0.0119356786873149 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.320549529310404,6.033931490012186,5.744363089360125,5.495234250302004,5.271765647009395,5.096032678564036,4.941062914363503,4.799347355824553,4.677205321405467,4.571425721981664 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.5277016216288283,0.5224354714531089,0.5155728693843693,0.5076616267553381,0.49910069970858356,0.49033798632726977,0.48344305723822084,0.4781598085697452,0.4737328898382045,0.47025798685197423 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.1669429831095375,4.54712930375469,4.722467174694427,4.84735897709754,4.927337788240804,4.99053095452011,5.002429028564446,4.973085722005079,4.916454024296503,4.820424170655753 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.008577075854048486,0.008420379032415805,0.008150249160237055,0.008059878333332765,0.007665149637931867,0.007622173877511807,0.007329073650189568,0.007294535322776315,0.007029446850953281,0.007060665587105973 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|%,%,1.139261749685435,1.2314324125494132,1.3061574089086967,1.3758861783915572,1.436517896882142,1.4931194113309052,1.5420619738493953,1.5819447011316594,1.616083800864069,1.64288212451969 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.99106214002569,99.05142512055363,99.10873911277714,99.15609030261325,99.20111542858177,99.23850868123985,99.2650269917925,99.28285218922468,99.292107991775,99.29665101619173 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,26.732532334948672,27.576558594141083,28.15675107048249,28.654786439907316,28.9659057708422,29.056456962036414,29.043775536853484,28.94645791755371,28.80444121023323,28.65832446832269 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.68360364130385,85.34555796748438,85.05953495089967,84.82188411734782,84.6457742872321,84.49614772437319,84.36180023775162,84.23800842172405,84.13749364161004,84.07010382169871 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,51.6971950238389,50.95000118806041,50.23988656500524,49.53534662461705,48.863924396539645,48.233507675477924,47.668008156486955,47.18702770261692,46.814625237411015,46.563753046526166 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,61.97261425798048,62.13256842188834,62.26168163886948,62.357535441882504,62.426524992011466,62.48337458397971,62.57805889901397,62.722060022820756,62.8857964822745,63.06734415645725 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,22.414114381535125,24.102981886619187,25.406724569406247,26.235078344372038,26.67179192844622,26.75006452725543,26.718517911493166,26.643978670209183,26.592400352819872,26.651693376493785 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.9445796050511537,4.418665720953876,4.918064839655878,5.430500918443262,5.969198612812913,6.486216479533743,6.969642497400301,7.409170541178842,7.799643280033504,8.112001308149011 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.03840643554709,99.1120621731983,99.17382977473541,99.22677063781173,99.27082693647411,99.31259026759777,99.35364777974162,99.39355339617967,99.42636072193548,99.44780573700473 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.425053703184517,22.50531547658671,22.588907064883596,22.677492762599275,22.748186989860102,22.80996626976328,22.87655416440069,22.9428786013064,23.015898817232962,23.103988177028175 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.02120031295758,62.25871581833905,62.46853611162272,62.657772403823266,62.83046486702871,62.95328939656398,63.04131033987659,63.09951357113373,63.13377712602537,63.16580205258845 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|Low|%,%,67.27819003688239,68.70201549047135,69.87856055233594,70.87408561712311,71.69725249097817,72.29126047678123,72.71648478272763,73.01868499136968,73.2237797116937,73.37180267912589 +Climate Solutions,ssp2_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Absolute,days/yr,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.25457616170564,126.3369989111898,126.3955410088613,126.47221896623405,126.56118292458592,126.64458867887552,126.70410094835086,126.73505268973409,126.73407046776242,126.70803861378221 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.17917150302354,35.525504960012015,35.756875991399234,35.94767935279347,36.05456231631315,36.060285959972965,36.01016520181787,35.91651273618451,35.80768438252258,35.70663157217181 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.5085263298428,117.07653893002642,116.69189846516629,116.50231590173895,116.39945316235276,116.34845593241563,116.32748610685162,116.30729879584571,116.31206142218115,116.35271564350253 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.49897098420575,54.81772266779008,54.190461485356025,53.5667246394949,52.98216075658203,52.46618525118047,52.03972382250258,51.714257151267915,51.50172499322937,51.40275882348655 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.639718793293945,62.76491069041406,62.844939257250694,62.890248886963235,62.906062790622194,62.913335979395264,62.97681313072719,63.112894756719776,63.274259955006734,63.4624539582417 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.44590213794195,44.72593138228961,45.76032809308425,46.442353198493215,46.83279098629103,46.95377262333666,46.983885629798394,46.97704389134511,46.98686732525422,47.071243812752265 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.20010205482573,22.706859361588233,23.24273502218365,23.785274100195384,24.34012210510345,24.869668966757803,25.361559734035062,25.809543505273897,26.205970129510593,26.525185191076403 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,154.3885693520432,156.3440196695172,157.69537167053525,158.8091831562328,159.66774056653264,160.43853271148782,161.0772237850389,161.5878858938498,161.93976935779972,162.07762008032987 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.752233085505814,38.85446428868961,38.95803146987732,39.06580563014709,39.15800763818346,39.23889534265558,39.3204744632457,39.39986300424927,39.48129744376106,39.572780526856555 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.589117208293786,51.65742096422939,51.71429951680689,51.761234400476624,51.804370706749545,51.834429104514925,51.85627949018742,51.87117123995514,51.877987006232786,51.881430491387036 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.38508219059769,83.72393212765535,85.78947963106418,87.7231877851448,89.48285988601823,90.96093229693773,92.18016655602541,93.17622209625503,93.97594617518676,94.60626932502386 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Difference,days/yr,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4275806050567394,1.3856126259485222,1.3470606075775031,1.3069087789013254,1.2644987038182696,1.2228038177936233,1.1817847178602117,1.141018473630851,1.1012367866926505,1.0656607168981127 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,7.121374951491937,7.235200675261858,7.320423648376312,7.396639793244076,7.4494445193783125,7.4773689148123,7.495273032031939,7.503328338292198,7.506042504987486,7.510597361404311 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.2364408930054653,-1.3838264094890522,-1.5421793181453323,-1.6956787774836461,-1.8360942727520704,-1.9562830878699207,-2.0637890414000415,-2.1581236884229864,-2.2374733760182584,-2.308402205312991 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,5.324596603699157,5.352599093958578,5.379102429250138,5.408139892101773,5.433734448218768,5.4517030429357405,5.463618608205973,5.471617699044209,5.477426291411766,5.478220120907782 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,8.918245727606909,8.943269141605349,8.965816405988171,8.982556890527544,8.99530891017332,9.003460729837697,9.006486349134809,9.004333260284952,9.000603780614995,8.995570269851433 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,2.461574244923137,2.450169683781911,2.432339545084148,2.4104050531561123,2.3743812075570347,2.3316303617442977,2.296146260377579,2.256641848899664,2.225532809693208,2.2060351518143286 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,6.890335931529815,6.802015061381143,6.705843217484328,6.605449630352664,6.497361137200948,6.388797234193759,6.282090723501572,6.181111561642449,6.088574047485344,6.011540433384844 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.962923040223913,0.6991001961326048,0.48515626811751345,0.2986896319313224,0.14008298607908146,-0.0008804788735817688,-0.12806993259252974,-0.24338816392969864,-0.33487899918407,-0.3933014182824395 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8436317719470265,2.8319091527293785,2.8213373450801007,2.811437660375862,2.800488389141342,2.791111542167152,2.784289551398555,2.778258039943093,2.7737621755020214,2.772412957926587 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.6300193572232449,-0.6762765882228475,-0.7166068572836481,-0.7512363386965213,-0.7818582320131024,-0.8067059058233811,-0.8277416012522237,-0.8461083922507283,-0.8607482588257256,-0.8723885636013314 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.1939014808738992,2.08053929594818,1.9636285227190282,1.847985020866777,1.7344480321104458,1.6284346036763646,1.5267958651783464,1.4300947503758155,1.3423652807343838,1.2624847196674585 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Risk score,risk score,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area,km2,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|%,%,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|Low,km2,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|Low|%,%,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.259655166785839,2.2592623723255394,2.2585648701294683,2.257882844541307,2.257193387793773,2.2564125133953863,2.2553407059860504,2.253923947858673,2.252159470421921,2.2502767402993027 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.9567120489560187,0.9674461010066358,0.9748984900739781,0.9813388224774023,0.9853229347904908,0.9864416999159505,0.9861451444726789,0.984704060162493,0.9827883296707186,0.9810297460941284 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9373880517450965,1.9293886288614832,1.922251156435161,1.9172011584897921,1.9135271926517121,1.910659090130872,1.9083423903295564,1.9063545829196387,1.9049840948892958,1.904281013431886 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2170945070737564,1.2052946674842648,1.1944015312715215,1.183619764563739,1.1735301476113054,1.164504507720163,1.1569095476929339,1.1509595323079294,1.1469159954217043,1.1448202503662952 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.4824155723885766,1.4856003160859366,1.4880184116680715,1.4897287836348925,1.4908593790644675,1.4917283834011517,1.4933583527557241,1.4960264724732737,1.499052527991982,1.5024354427708946 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9625805841229096,0.984534651202561,1.0018018042393675,1.0127137110192068,1.0181182868929595,1.0186193661641114,1.0177195968345727,1.0161581353690063,1.0151295381396008,1.0158017171213856 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6754391162570504,0.6829570315873178,0.6908369905618239,0.6986863276989814,0.7065041862803358,0.713784700588946,0.7203767184041637,0.7262329547179198,0.7313181919123369,0.7353428797204548 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4630001909625427,2.4722293483430677,2.4782811070658384,2.4831070219938796,2.486663919614192,2.4898770522221114,2.4923843899007836,2.494198988503891,2.4952891181312924,2.4954235886554312 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8473262387714963,0.8485214120809066,0.849793799307536,0.8511659099396132,0.8522317001355951,0.8531675056285207,0.8542191654415497,0.8552829163266766,0.8564634062632726,0.8579452507814446 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1458903930334208,1.1468188920068503,1.1475783668847976,1.1482236499143161,1.148845656055779,1.1492442330802528,1.1495098389539835,1.1496485926283284,1.1496588476984564,1.1496470980560571 +Climate Solutions,ssp2_2p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5659761676567723,1.5958170656805073,1.6214000132436837,1.6446057954527096,1.6651054054373118,1.6814336677967663,1.694111440246539,1.7038521262813373,1.7111460897614772,1.7165261199989916 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210094.1816432774,273602.96445418824,332418.93088134844,389534.65329296945,440472.6693198714,482845.95038597286,517424.4295723576,543797.9777625911,563018.1406655754,573498.7419056161 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,91174739.84086624,98174464.17773028,116466604.75793041,133599496.14860746,148003687.35060146,159440569.13473645,167085529.4041249,170628411.5683197,170653685.67905068,167651852.100401 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,3608289.672736842,4467926.9059083555,4748550.4253724795,4897084.638690709,4922316.49312642,4836850.619383749,4682931.877481813,4484816.906544781,4256332.846660701,4016279.8295113323 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8346416.218451325,22487065.473953575,26648460.987688567,30305685.5218848,33308294.086215757,35473829.299141705,36544928.2259552,36711177.80577905,36218542.81311266,35069926.46607009 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,64808.6599149704,70538.13814552643,67678.65274524875,64536.181236776116,57677.4623751739,53595.89887931451,46683.24568510765,42261.07144436789,36815.557785788325,33308.92509701271 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population,people,103404348.57361266,132377379.19242063,149810957.9089666,165280677.56585643,177790848.3409648,187453040.20751563,195512248.88499972,202787622.69430614,209860427.40201107,217274766.7644992 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545225976.7945383,1836230558.467277,2029644870.3386848,2177144217.5813446,2273872054.8774076,2321822715.9657035,2322789523.8233914,2283710324.177631,2213437388.0453024,2121073487.2746964 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,179531630.78698298,206336878.71825576,211850770.06841105,215686897.5879533,217134142.14898425,215860731.1256653,213680551.57836935,212053872.924163,211200268.58594087,211086503.62773773 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,834944155.5933453,935907645.5139111,1164387505.1454747,1397780186.2755246,1618285733.0994034,1809770244.2283905,1963302030.009702,2072520374.2697005,2134862240.948985,2153851939.3341756 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|Low,people,260010176.9918704,342670923.33542496,361578011.0087117,370512340.6996879,370113978.2069582,363119750.2100638,351930285.2273642,337620095.3765487,321426695.8701851,304691500.44796014 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,350650989.478126,439366870.6867342,473977130.6263634,497026160.74569863,508578050.92285705,508952374.47172236,500061355.3446486,484298580.96153355,463896467.7598435,440854746.947303 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,84138386.34064448,93526230.73300102,96835345.15293589,98058687.67362091,98529974.39531627,97437089.08572808,95409324.41826908,93426278.28097595,92089024.20234688,91111109.59145437 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|Low,people,15943018.859851567,21937773.50676543,22776373.642152835,23334940.812214036,23807391.04864673,24179261.657670278,24301542.52945377,24335375.068984788,24475588.512876093,24624791.025992963 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200673775.5261855,502156052.4424095,574961871.8263097,638404007.0154645,691087803.4226649,727267697.2994435,747386564.6038151,754574516.8177239,752102433.2467781,741386698.4834538 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,72898646.28073151,87463258.3660525,93891234.01808853,99680502.77676754,104788938.11870837,110092508.34793995,115919980.72020692,121675976.37126277,127064357.39273044,132580370.98586178 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,830746571.8959476,933772049.2704425,943798078.4872203,921579454.995922,880579126.4416739,820594707.7749577,752037481.8242366,685122267.6987973,622875376.2268927,568041312.8204256 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|Low,people,4374763328.5482235,5298493663.847652,5764297679.831751,6147993572.339781,6435884705.727001,6613684350.800689,6746443291.366744,6876322633.596285,7007455280.815909,7169422812.728495 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013456745557259722,0.01475626906525648,0.0162293184826934,0.017737864932322038,0.01921290547557602,0.020634036697824428,0.022108463752328087,0.02363721691306931,0.025251962768484657,0.026843309380824184 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,9.384706660104378,8.980075892938642,8.534726088856399,8.133662399782063,7.767512764807276,7.469924414826531,7.205293369634232,6.9609856668090995,6.7514881212199525,6.569719554659089 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.6803599089777961,0.6745797065512693,0.6663920422495896,0.656729657984902,0.6461536564243613,0.6353313485194626,0.6271453393279034,0.6215638528809558,0.6173238098461685,0.614490692860567 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.145099086680328,4.4641985646301565,4.621532066125991,4.734445191484847,4.8076424625650445,4.866248084526904,4.878960062666985,4.855161568903398,4.8063154517730355,4.721520764512359 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.004706564430717858,0.004572872345652824,0.004353883653733062,0.00426332112263548,0.0039974039555230375,0.003992993464795904,0.0037998022486222735,0.0037790017343414745,0.003622938802517383,0.0035959992862842167 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|%,%,1.6184488424295758,1.7445029422539005,1.8439881323607281,1.933439207361693,2.00911506679241,2.078130251918684,2.137204229813178,2.1838801607824005,2.2240474763358353,2.2551588452540927 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.97329205193425,99.033693734434,99.09108641965031,99.13852270442105,99.18365405365802,99.22124248692985,99.24793855245585,99.26582758049366,99.27502237710651,99.27943634050499 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,32.689229237038376,33.37079187015046,33.82044657967905,34.21554047624726,34.422839434378574,34.40846227972192,34.284588882562325,34.07267895448564,33.82396738712922,33.57798689845672 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.94163242459818,85.60802196262868,85.32684917155895,85.09816632559289,84.93068864681926,84.78925411489234,84.66422645855472,84.55089329413774,84.46050844348959,84.40230767752008 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,52.42432553723382,51.68488209363177,50.98613420077713,50.293134828849894,49.63434483891483,49.01969323657686,48.470859486595245,48.00530293034581,47.64628460556706,47.40527089872449 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.11688553911483,66.33680025164807,66.51600167706484,66.65431468698108,66.76116166846793,66.85205391902295,66.96897511800478,67.120352558416,67.28194085581475,67.45076299513701 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,30.780005889268274,32.22441151229336,33.319791838645145,33.997312932923194,34.321004193662155,34.324969337955714,34.241342853794094,34.11848723088613,34.02671774202194,34.04596039994245 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,13.213086641819032,13.929328788866979,14.683227989317077,15.433896860309515,16.180765308774355,16.880255890761077,17.518867653322726,18.086828123142233,18.58176769125937,18.97592408794806 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66105953539751,99.68950066562955,99.7132528093358,99.73339091954804,99.75002203642084,99.7655203524176,99.78044497802763,99.79470596965008,99.80637721629597,99.81408700156736 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,23.634892476839404,23.715544020725652,23.799992957710018,23.890189751277145,23.961900699155013,24.024876790027484,24.093371540803147,24.16185810421294,24.237119134484587,24.32910202153421 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,60.33086120521812,60.53491761354605,60.71614696317458,60.88040973877865,61.02956576508633,61.13582146965604,61.2124044193346,61.263904330441775,61.29580822312406,61.325189856258554 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|Low|%,%,68.47227164679447,69.82490394117961,70.9513954210424,71.91870214007987,72.72833810667888,73.32021668373584,73.7474363920018,74.05316152498868,74.26323021338466,74.41355253652439 +Climate Solutions,ssp2_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_2p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Absolute,days/yr,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.08163040499845,126.15268350742959,126.19749894264511,126.25799941220308,126.32844534613267,126.3927504987545,126.43296229964173,126.44446177442363,126.42432296191768,126.38095395347452 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.953837498953746,36.309354055802096,36.54610898786552,36.74172330964201,36.85039671005452,36.854244186382076,36.80044910467569,36.70184490412794,36.58785291357678,36.48200559899669 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.87947500124132,117.40424164077105,116.98173793214026,116.76328553768862,116.63880080404886,116.57025410851384,116.53577732362459,116.50459480581121,116.5014720995584,116.5366425707072 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,56.663189706315,55.958898112110006,55.308109973350625,54.66117982148659,54.05423971776158,53.516183489792496,53.069344752330665,52.7262638454313,52.49967969313239,52.391323423551334 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,63.72392832730371,63.85301979652537,63.93702082799564,63.98536690642559,64.00361830127734,64.01279858876846,64.07743173725996,64.21398160327152,64.37513946801265,64.56233185091978 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.99600336212994,45.277118469579555,46.315669966156236,47.001621081418726,47.394794544733,47.51734996931109,47.54865544639284,47.54139328929392,47.550617912134264,47.634769344882045 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.66827776544081,23.187282340356663,23.736003259798576,24.29141050764482,24.859233770013116,25.401002710753882,25.904072208879317,26.36195561388783,26.76694537984437,27.092837577860266 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.7255649702761,154.56929641856703,155.843368477029,156.89006242690192,157.69096904295378,158.41363133472095,159.0142253646017,159.49476413148136,159.82567486976924,159.95493079568115 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.7735932956227,38.87600036164969,38.97975779781357,39.087767210450025,39.18020679466322,39.26132600158441,39.343144390788936,39.4227546247746,39.50439558076549,39.59610265560114 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,50.879648940904076,50.94510665179159,51.000181977842104,51.0462425188975,51.08914829427694,51.11923130818164,51.14117673904973,51.1561446838724,51.16327073702426,51.16699402138526 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.47428478948619,83.8009911424503,85.85568558718417,87.77980265663939,89.5308358832778,91.00111745253407,92.21379133747705,93.20418343682972,93.99974401250877,94.62717527702195 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Difference,days/yr,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Difference,days/yr,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4986029946857582,1.444358427904314,1.3914845797800524,1.3354803103177755,1.2755701432853153,1.2162009691000708,1.1574414166393816,1.0987058791681172,1.0410478195668882,0.9890891788784392 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.166294886465264,9.29032889702031,9.38178310720818,9.464507525079561,9.518934277048068,9.543311244053008,9.555562819643953,9.556365805428069,9.551682579296552,9.549287869851293 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.169284848065853,-1.3678026722127514,-1.5696607014958848,-1.7570527399331846,-1.9227764393385598,-2.063585460069812,-2.1875662227029586,-2.2956760537003933,-2.38583276622484,-2.464660818852516 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,7.473212900599972,7.472218325677586,7.467430673921628,7.467110059939056,7.463363450326547,7.450186410825479,7.431021995205765,7.41004944716295,7.3901176782097115,7.370304790019633 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,11.29001000469076,11.315090312422264,11.33796920629425,11.353275305490202,11.363551478992822,11.367543300138383,11.363635957866025,11.351854279469537,11.33730661761345,11.32041943450028 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,3.9653702581915358,3.9171874356198977,3.879229077352708,3.846350435699165,3.8039095945448884,3.7595553331039713,3.7238455026975776,3.681078767024845,3.6462149285819665,3.6218915884258394 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,9.08235015260106,8.997006138888782,8.903547841571104,8.805210660133389,8.698017926648658,8.589450295254325,8.481449697351284,8.377921702225194,8.282045127326867,8.20113086046017 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.0592543408298217,-0.2661778707344854,-0.5255990667230502,-0.7523732599765839,-0.9466150237742914,-1.1174686889238161,-1.2694288702510055,-1.4055741316048551,-1.5127177423146145,-1.579825729624662 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.9266359109050715,2.915524592482689,2.905653533125613,2.8966274805238212,2.886492404532917,2.8779013870196053,2.8719362913576925,2.866735217672729,2.8630814607762236,2.8627127306887923 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-1.2716405159548494,-1.3223430390074749,-1.365918611607727,-1.402612273253867,-1.4343361192568553,-1.459699864324859,-1.4809338037914503,-1.4992847625358696,-1.5133768972960584,-1.5242520120694827 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.7038998102372322,2.5587037525633303,2.4122783384743007,2.2704606499840736,2.133348571196702,2.006092363497626,1.8848764844616819,1.7700042562490463,1.6663557816408694,1.5725244537481267 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Risk score,risk score,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area,km2,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|%,%,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|Low,km2,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|Low|%,%,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.277365191987547,2.276692226809036,2.275657257746515,2.274584001746355,2.273446600318426,2.2722088711687745,2.2706745033528994,2.2687852953815546,2.266547866207648,2.264233365899138 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0431102101021785,1.0543863927694188,1.062184709254106,1.068993182054552,1.0731145116523126,1.0741290611992085,1.073639541502989,1.0719392894820419,1.0697511731169673,1.0677254049776994 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9583539732187196,1.9486625629519339,1.9400054832353193,1.9336478775357115,1.928899931925223,1.9251511184179868,1.9220907024818243,1.9194669379589167,1.917585893801451,1.9164717921691572 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.286386597404718,1.2737136960167186,1.2618714113962552,1.2501836639381065,1.2391997660348364,1.2292313596618394,1.2207212327263464,1.2139427515314185,1.2091982529728964,1.2065975673284859 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5786707259241037,1.5819511526580396,1.5844657602157977,1.5861910402183546,1.5872838581404707,1.5880347682041496,1.589434685120084,1.5917698625576626,1.5944147901615613,1.5973754064770542 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,1.0315579707552487,1.051738597947513,1.0679558477100382,1.0782371117469562,1.0832457466836152,1.0835903750721472,1.0825827871617648,1.0808222833224264,1.0795769295466597,1.0799860995566897 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.7656796465098824,0.7729458028672141,0.7805279113883085,0.7880405285558073,0.7954576133409754,0.8023002960526132,0.8084192281622069,0.8137840170250259,0.8183856312618663,0.821971088743073 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.448939211453547,2.4573653162918063,2.4628628284490244,2.4671819048391717,2.4702801985056975,2.4731344921264884,2.4753528988631595,2.476928249509651,2.4778343207951545,2.4778534622102213 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8512356280827742,0.852475226759176,0.8537883283929951,0.8552014415465885,0.8563129315213722,0.8572895056793671,0.8583739339267413,0.8594658212962265,0.8606676599766577,0.8621597247470628 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1495064718062906,1.1503144190167873,1.1509730534254448,1.1515405230234859,1.1521053036166267,1.1524619480085803,1.1526953045159805,1.1528076668576206,1.1528082278189735,1.1528031194294925 +Climate Solutions,ssp2_3p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5994680008003306,1.628240708455214,1.6528225120400377,1.675116148397448,1.6947720205430452,1.7103290784866196,1.7222878271043705,1.7313637257492964,1.7380745487200442,1.7429383410481027 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,402382.1689426899,499185.1967636888,575516.3982589275,639147.1527458172,689742.7629610735,724030.9081879742,744786.495058047,754612.7943139876,755661.377251926,747031.0614578235 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,518188.7457357347,626446.6029407105,669274.6498607846,698730.8783250508,714974.6605390678,718316.0085536279,716773.7663756523,713800.2761991896,711474.8703139285,713513.7119712629 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,100311942.72973245,108367364.90779853,128920791.38239147,148223004.7691881,164476645.33745262,177403542.376231,186193187.13261664,190499865.90779588,190933274.00387052,187983604.08322036 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4896510.100017054,6085448.630767516,6493262.872899379,6721983.301417079,6781264.366417074,6689354.723612385,6495192.041428221,6232604.169106931,5922022.204221924,5589710.678812605 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population,people,170.0,285.1849831679198,283.00376446204405,343.5209893109755,349.01691432853846,402.50788245978464,402.0290149006646,405.4228009834822,416.5517624210622,434.6023367236962 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,7180181.654842485,19201230.22439394,22729125.666831475,25846361.45122306,28416098.59170781,30281220.622091778,31234161.15273914,31436063.764518708,31075235.886641603,30148298.399757944 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,28601.540035426617,31484.512358218777,29581.630200371583,27778.21484335331,25109.43416764717,22885.046499788703,20290.35949247283,17856.025281595605,16188.783124821735,13856.980195454595 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population,people,113337976.93930584,145054773.92771375,164271561.92698354,181331713.76180556,195118865.90387458,205757392.11696005,214788774.59807187,223119873.50468224,231350858.53630704,240045988.8912053 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544397522.3273656,1835233888.8960867,2028530528.1902227,2175941123.715006,2272607559.0291753,2320526228.8024173,2321484476.5809875,2282413691.2660165,2212162519.329596,2119832834.633369 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,219364973.8175276,251176979.95453525,257477133.3391681,261905669.00857946,263674928.15836272,262521157.43276685,260508436.45694458,259350016.83660588,259197205.7086535,259942306.19840762 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,821777212.806585,920617484.5996747,1144827240.83125,1373737886.905785,1589916192.662275,1777566455.5283813,1927894583.194408,2034655481.0056112,2095410918.3677382,2113692589.498372 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|Low,people,282369998.36096567,372377703.8766168,393037077.25155896,402840716.4742908,402396463.193671,394644692.5175758,382233469.7982414,366399089.0080663,348507274.83959883,330036526.7640509 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,382570996.42202336,479115351.06651545,516587478.1240927,541408940.8653231,553682455.4284382,553716093.5970563,543508120.557435,525702650.5104067,502864975.7791429,477220826.1122388 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,110338627.90407525,119887986.02832009,122247791.90036452,122598978.29222196,122459195.18559074,120815894.69795144,118151191.69143821,115572802.05293609,113798858.91818011,112390866.63101712 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|Low,people,23147610.927022878,31049634.51613311,31457106.213628717,31537125.02137688,31578826.499255028,31577787.97823568,31331869.71165758,31045243.41967551,30954192.653168052,30928573.590786662 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200673775.5261855,502156052.4424095,574961871.8263097,638404007.0154645,691087803.4226649,727267697.2994435,747386564.6038151,754574516.8177239,752102433.2467781,741386698.4834538 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69318301.73867501,83220592.4114011,89383222.78114949,94936699.76290615,99852874.58804682,104948817.98477304,110530492.39516976,116040073.22384179,121188625.8778403,126430115.31610008 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,849546636.1871641,953823928.5304503,963002199.972714,939345344.9335024,896685753.3969249,834954658.4380212,764715200.0418301,696309083.2815624,632775315.2467052,576875162.5019245 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|Low,people,4503505656.0175905,5437410188.516085,5899963944.111426,6278716042.178605,6560234725.785942,6730932566.00942,6856834002.697698,6980734684.682196,7106874694.525385,7265031040.387175 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.025772986295421924,0.026922628895972227,0.028097794835549226,0.029104229293707685,0.030085777007903665,0.030940883563313454,0.031823169313484584,0.03280068524337958,0.03389221693885324,0.03496570163897245 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.09435212404162603,0.1013149919411263,0.1068448679013095,0.11084333316809632,0.11334678966561955,0.11450044274541615,0.11500482248138601,0.11469296605233958,0.11394352370564292,0.11350017012310802 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,10.325208041907421,9.912426508669995,9.44737458342013,9.023955294957368,8.632044681055378,8.311504779897385,8.02928022254325,7.771664894051157,7.553799534146323,7.366453422543914 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.9232599009795258,0.918797517960151,0.9112378134629238,0.9014599747044876,0.8901781857504151,0.8786619831189184,0.8698459690196977,0.8637947861770378,0.8589096390739364,0.8552255653788917 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|%,%,0.00014089080298122084,0.00018107741858891852,0.00018244382800871591,0.00022720724089439153,0.00023721040108944216,0.0002810026273823038,0.0002898208250074717,0.0003013231765610526,0.0003162444113088782,0.00033490562179425246 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,3.565909444330212,3.8118848591497443,3.9418179966489766,4.037796195098638,4.101514231149577,4.153933611361095,4.169941829216323,4.157512174481677,4.123782317255008,4.058914039836679 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0020771142494090743,0.0020410895391402414,0.0019030369393577492,0.0018350551244468182,0.001740238688203825,0.0017049782357596577,0.0016515422716087604,0.0015966928476108893,0.0015931028640043025,0.0014959861582978008 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|%,%,1.7739265331781096,1.9115688907622632,2.0219803337869706,2.1212028537665444,2.2049293141968644,2.2810548212010597,2.347921832035189,2.4028442108505264,2.451797603986352,2.4915080714481657 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.92022870251962,98.9799402073442,99.03668213654245,99.08373857591896,99.12849821562644,99.16583814174663,99.19217661311794,99.20946695643516,99.21784315850147,99.2213660776573 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,39.94210872069908,40.62276589964793,41.10436620444779,41.54746588288903,41.80107110303696,41.84619081038729,41.79802316304754,41.67219272469694,41.510732403055876,41.34958513158969 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,84.58634590686536,84.20942196439988,83.89346405232654,83.63444863184922,83.4418016371659,83.28047959931202,83.13733754912164,83.0061506755789,82.89971510513392,82.82859606853248 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,56.9326050514026,56.165540781296286,55.42217877332804,54.68137020735154,53.963605786718375,53.27543256312421,52.64447415684853,52.09731145184882,51.66054038904229,51.348563825121005 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,72.13555227283317,72.33813348630636,72.4957626454343,72.60632290388888,72.68202757232078,72.73187041008264,72.78743180815947,72.85866329217029,72.9337986172133,73.01477201126242 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,40.364734390688135,41.30733984336096,42.06388661517216,42.50552326511081,42.65628380917292,42.56081457232587,42.40314547826541,42.20621053984298,42.048460012614704,41.99767747086815 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,19.184032297677266,19.714879808381248,20.279429450702278,20.858880198909535,21.462644910013974,22.045385383706407,22.58699743624948,23.073816622141262,23.500297721097255,23.833634323547194 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66105953539751,99.68950066562955,99.7132528093358,99.73339091954804,99.75002203642084,99.7655203524176,99.78044497802763,99.79470596965008,99.80637721629597,99.81408700156736 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.47408822876503,22.56515089460102,22.65728100153574,22.753253730823573,22.833179802752344,22.90239780325954,22.973194123388293,23.042706269987473,23.116342170347625,23.200502089768236 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.69616815654747,61.83484821218597,61.9515809919033,62.054041217768955,62.14585437505069,62.20566431866803,62.244312580038574,62.26423380729089,62.27003964523442,62.278883710301926 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|Low|%,%,70.48730170828318,71.65558141409971,72.6212798192548,73.44788239388681,74.13354822400295,74.6200465650704,74.9541510430484,75.17760592590193,75.31685189373975,75.40589851159676 +Climate Solutions,ssp2_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Absolute,days/yr,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,117.62528659476922,117.71727333727905,117.79097997483512,117.87598253189427,117.96849684684923,118.05522664341757,118.12290499586659,118.16882825977524,118.19057348587687,118.1924753968085 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.98045936157913,36.325914917490095,36.55485931659299,36.7469279468667,36.855409083280065,36.861440712079755,36.811577666256355,36.71885472066298,36.61083544494097,36.50923668764238 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,114.58991804295195,114.07192832022206,113.59801529906754,113.32203190996681,113.14117322361432,113.02485438244054,112.9456129015039,112.8730613672471,112.83401247197872,112.83443189207031 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.95892515010231,55.27854020479344,54.64713286165137,54.01829628846951,53.42818700293162,52.90370189055463,52.46731931024419,52.131289460515504,51.90864454139664,51.80281918093699 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.36972260602161,62.485155180360756,62.55834303724263,62.597442420308695,62.60765788212468,62.60871470507223,62.662135870341515,62.78363940804309,62.92905048385403,63.09994277045964 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.1172152919434,44.391530413027645,45.42235094613872,46.10302936986615,46.49304672897863,46.615026507332125,46.64697198294808,46.64157477114176,46.65324413565255,46.73934427115432 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.927256730555886,23.41471830230896,23.92997602818943,24.45165801740176,24.984912256654308,25.49355170498227,25.96543612481108,26.394918020987234,26.77473138462207,27.080364548262445 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,149.74685708059943,151.5104726608844,152.69722380540586,153.66517748083416,154.399080897278,155.06063675730692,155.60429983799025,156.0325846876217,156.32275344257334,156.4257408459883 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.29226046591593,38.392759807474796,38.49432327083443,38.59982763596866,38.69053591405916,38.770059612805284,38.849862044429656,38.92733666775443,39.0064813282399,39.094737017554884 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.83584513300945,51.90531893312039,51.964545366034756,52.01509779701675,52.0623384305995,52.09606818659773,52.12106351136859,52.138618851820794,52.148179914647436,52.15390384478565 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,78.79913210116084,80.97734890976497,82.8975136747631,84.69140335784643,86.32020359718706,87.68897102273115,88.82282478080313,89.75377228029728,90.50914961650145,91.11203370998055 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Difference,days/yr,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-5.105032382025385,-5.140950547906872,-5.169422261764831,-5.203102387380071,-5.241624278923156,-5.2791394305912815,-5.312310639514893,-5.3403824655407695,-5.362099410786124,-5.376356675467449 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.76139749356207,9.871591201120735,9.95412432131388,10.036780008043452,10.096891298598157,10.131469208169982,10.159026192257977,10.179497366000977,10.19296224190314,10.203614368558776 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-4.33607281626567,-4.565557721260189,-4.803645337297908,-5.029636571199015,-5.232337478716089,-5.403406957508233,-5.556412268377466,-5.691921295100012,-5.806275495527287,-5.9089293503440015 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,6.031232297880072,6.047353436065615,6.053093567984361,6.0611535224059745,6.0655981309991684,6.058058184117506,6.04385466331984,6.026177598828693,6.009017034710554,5.995446937663353 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,9.178197864862009,9.171775543035281,9.16757151330846,9.158812643790178,9.147025580524264,9.129470109390121,9.102279637856556,9.064704301213691,9.025515496098118,8.985445632997456 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,1.8586779977271632,1.8482722758467656,1.833461143480291,1.8143094707656295,1.7797393950189742,1.7382410750502229,1.7043023333088303,1.6655364429339605,1.6360854153687159,1.6189010143570044 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,10.861645161954456,10.646825311874563,10.415893180419134,10.180267213625932,9.93488399305863,9.69385640539697,9.461456833807894,9.244999732029395,9.048929698777597,8.88671946567896 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-1.5953241100372841,-1.9564189662834248,-2.2585201782208073,-2.5241182515925424,-2.7519780075954725,-2.9536805392230425,-3.1356739456010096,-3.30054932806301,-3.430960564800195,-3.5143071273513455 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8483021062066722,2.8419478899113524,2.8355790973464443,2.8291545666686004,2.8229240076140103,2.8174865257012867,2.81286621763666,2.808199498705159,2.8036250315781257,2.7995028664051707 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,2.1604705785442806,2.112461929467232,2.0723853310614087,2.0401937909977845,2.0128025203513964,1.9910801612929852,1.9727597915010695,1.956808745971547,1.945456340951698,1.9372854089563902 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.9998323064721897,0.6878148447380489,0.38627036926643976,0.09332730989970467,-0.18681503527941645,-0.4366000506577741,-0.6575681761637064,-0.8519335516433646,-1.0155366377863242,-1.151614994602725 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Risk score,risk score,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area,km2,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area,km2,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|%,%,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|Low,km2,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|Low|%,%,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.1198910785291454,2.119978522067709,2.119794097318922,2.119595300467399,2.1193767497225298,2.1190644146686446,2.118505506331162,2.1176657677314177,2.116541473490771,2.115299035045221 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0716633256088448,1.0824658981145658,1.0900449548847657,1.0970069203990296,1.101576567240502,1.1032900931743275,1.103731444487624,1.1031464852090314,1.1019868681181195,1.1007428056526465 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9072244365589595,1.897414109869459,1.8885583542408257,1.8819599805735827,1.8769474152086438,1.8730009488988644,1.8697249830516975,1.8668680193904867,1.8647500692566603,1.8633644524721034 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2633720745972765,1.2519403083234066,1.2410932035462958,1.2303045175521283,1.2201782078246544,1.2109435031808629,1.2030653473572472,1.1967606525670462,1.1923475229262321,1.1900522795851727 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5020751574885036,1.5041836004559619,1.5056801182183488,1.5064891398622264,1.5067338799173593,1.5066494715467182,1.5071337633502973,1.5084422530021708,1.5100812246406181,1.5120779557090946 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9472184042486624,0.9692935366332855,0.9867323282952237,0.9977437185450418,1.0031250134310379,1.0035541222132933,1.0025515157134568,1.0008688836129473,0.9997660637430706,1.0004144248792246 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.8439803973558206,0.8463346727633088,0.8487195363622928,0.8510598870693402,0.8532928823754884,0.8551897348892408,0.8566661864302224,0.857812031784336,0.8586650500941323,0.8591900973942532 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4115310467831708,2.4198504295857663,2.4249123168827436,2.4288945491698377,2.4317128789226055,2.4342593726249846,2.436141853230099,2.4373755770029804,2.4380107556546884,2.4378621940030394 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8650127046999757,0.8664783679354602,0.867974043238905,0.8695417688217569,0.8708561055913052,0.8720032671371437,0.8731868534396503,0.8743467228942204,0.8755611480631684,0.876958341635037 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.2855211736434748,1.2865324846207744,1.2874171583996696,1.2882426358816526,1.2890586524020087,1.2896184515145548,1.2900081256645297,1.290240782781478,1.2903590455959173,1.2904684312803432 +Climate Solutions,ssp2_3p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5741927738556514,1.598845526504929,1.6196197536235901,1.6382273422698377,1.6544130326636057,1.667023899581909,1.6766377117921862,1.6838947838853915,1.6892673393206297,1.6932337100073744 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,30981.98942065239,36917.3157780675,40450.27143872973,43070.65080758879,44666.182872428486,45088.28871693485,44666.78285944309,43541.72825870806,42269.84927464028,41116.10233928469 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,957795.4214211628,1145417.5117661743,1208723.2051419192,1249962.549813275,1268433.1827854705,1263442.5497059051,1249875.7748810507,1235330.228226039,1223414.9341755444,1219518.9278665204 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,86005080.0363115,92361621.7482983,109266798.2043012,125011880.11825225,138174654.74580297,148563239.7723364,155445776.78392103,158545394.08311403,158480905.0723134,155659709.33645153 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4255211.390164204,5275138.461683882,5618781.209353744,5808244.834837322,5851819.0540339835,5764777.23337096,5588466.937416908,5350963.202582712,5072339.069303626,4775829.888508529 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population,people,653.9899881482124,1002.1811211595353,1079.6529968456512,1195.0016808764544,1252.8589159564008,1363.2917054787335,1390.4654198858134,1429.6625454281416,1460.32056622343,1496.085190369145 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,5842226.104912963,15654448.744542304,18507522.782099195,21020163.273812767,23084490.37486937,24565516.9729241,25304528.187382177,25428157.681215167,25101726.84118284,24324529.15318907 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,21696.0,24247.016505374027,22710.14040590564,21689.07881172439,19827.10977058553,17718.454884354545,15884.933413194167,13936.316613268347,12765.978059418907,10987.901459569894 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population,people,97113644.93221864,123544104.60401799,139114327.06788638,152799264.44059646,163753545.8174191,172110745.46577063,179100064.00091442,185456900.02626866,191775504.47103834,198506422.4064796 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544291114.9356768,1835120452.3213294,2028415413.511465,2175825653.317082,2272494338.3929186,2320417687.900203,2321382072.359636,2282318034.805902,2212073790.707534,2119751118.3761907 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,227856432.5670131,261129795.64730182,268017878.07590327,273033480.8040627,275394912.5806619,274837396.56424683,273478816.3894752,273046014.3732805,273585442.88398147,274954170.82241374 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,791439592.7808583,886462796.9317839,1102094067.7254336,1322409703.0811384,1530535050.3838675,1711225041.71296,1856058050.8600838,1959015454.5471075,2017732045.1173315,2035551630.4050736 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|Low,people,286225874.23539144,377680571.94183576,398689158.0939227,408625220.40894896,408163551.9406204,400213041.77804375,387547215.8595275,371334812.86477697,352999360.02336574,334220745.6635584 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,354420043.98273116,443749526.7460319,478398144.7112304,501374057.2867006,512760212.9492819,512863448.4583264,503606403.83027226,487411717.63744336,466580213.8384597,443140306.796587 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,78869537.00691484,87862759.76496047,91150183.24382475,92366344.46070707,92756818.27552682,91605437.34684613,89570066.6889089,87581983.18615006,86234968.98638776,85283810.2481377 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|Low,people,37326285.038735494,48478835.99259499,47511029.22364302,46123936.11872252,44764856.09297643,43489356.11592361,42037865.18449684,40706546.27072398,39788761.81988787,39132592.08657098 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,201303476.2647586,503597652.16591364,576484029.0250688,639973238.5010844,692678478.4344902,728835727.857187,748893487.7731899,755995468.8656448,753436902.7361163,742648858.9456744 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,68549278.79722168,82346645.18742804,88488159.93245697,94023874.88588963,98941212.41879877,104029729.80723782,109587160.08558756,115068723.97503269,120181253.36455564,125359856.47139582 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,1148781154.8296773,1289330383.7870624,1301313804.3930595,1268947690.6236143,1210879694.081527,1127159619.5038474,1032038295.2428722,939472441.1474106,853559879.824984,778006907.8862419 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|Low,people,4739062790.438979,5689620867.438241,6139431272.998997,6497143352.160634,6751480576.244116,6892587620.435171,6990721245.504097,7090056383.080523,7194672171.717973,7335675463.890531 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.0019844278657812713,0.001991067040793766,0.0019748584599258616,0.0019612668092911,0.0019482869409533322,0.00192681206766597,0.0019085182170414151,0.0018926243158453378,0.0018958477232205071,0.0019244894103162455 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.1743959766631401,0.1852479771285441,0.19296393671790693,0.19828809582412976,0.20108800648358224,0.20139427438908772,0.20053990304473107,0.1984920609498622,0.1959313172825912,0.1939915147514013 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,8.852588434344078,8.44837178222923,8.007120970155672,7.610840296230335,7.251666588335856,6.960312409467731,6.703347853001916,6.468044832669981,6.269902368520956,6.099787288289609 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.8023400271790043,0.7964546937404661,0.7885166523763205,0.7789219352547527,0.768169678601098,0.7572166233363032,0.7484159679200261,0.7416055937462872,0.735674532961096,0.7307018289935443 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0005420069092463574,0.0006363321390988673,0.0006960191008060628,0.0007903826643044211,0.0008515093502968396,0.0009517541589171266,0.001002379978060138,0.001062570873058319,0.0011086694606773921,0.0011528869005053189 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,2.9014376299757645,3.1077673383576143,3.2096829172065333,3.283833024138761,3.331962179318712,3.3698617340360655,3.378301406628133,3.3629488706411643,3.331078729630274,3.2748505929969314 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0015756169317932005,0.0015718944978851054,0.0014609822311245223,0.0014328010436390275,0.0013741410207679773,0.0013200576170729137,0.001292960778901573,0.0012461909471746645,0.0012562720774913277,0.0011862431973200566 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|%,%,1.5199889404339284,1.6280957917028545,1.7123257986936453,1.7874327058452588,1.8504873519221132,1.9080434568398867,1.9577976138349897,1.997240459089149,2.0323880591589667,2.0603566672559515 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.91341320108988,98.97382221581476,99.03106202104952,99.07848051144448,99.12355966317176,99.1611997328344,99.18780109490419,99.20530906584099,99.21386358537765,99.21754124838985 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,41.48823872799646,42.23243133157876,42.78712003236008,43.31272885972404,43.6590706693392,43.80941426179335,43.87909296726113,43.87285673801319,43.815025234854716,43.73755492124159 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,81.46366450186133,81.08527262550439,80.76195757350482,80.50954074777123,80.3253672503405,80.17232870984081,80.03950321258786,79.92032730551321,79.82654391675301,79.76651127469661 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,57.71004266715555,56.965369690154844,56.21917898785562,55.4665554882369,54.737004492083265,54.027137124565314,53.37632887210173,52.79910889271995,52.326419022921066,51.9995633775834 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.8275584097163,66.99850553480448,67.1364286160075,67.23739478851051,67.310155072063,67.36578239765542,67.44373338774196,67.5518112482902,67.671182114334,67.80045358318841 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,28.852524027834903,30.27306569591942,31.363601037843996,32.023756299418565,32.31003731161474,32.270605142504,32.14569835424659,31.98420005563695,31.86365557250689,31.86844326102508 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,30.934883949490434,30.78150322019525,30.628900151460535,30.506701455838204,30.424569791853862,30.361202511258114,30.304899193243795,30.254405522751437,30.207466859113623,30.155671007139617 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.97378920140325,99.97569129481113,99.9772342192566,99.97854097418234,99.97961640445416,99.9806204938135,99.98162796887739,99.98263107003284,99.98346554808283,99.98401370033837 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.22475884528817,22.328181288744577,22.43039624793365,22.534479156918703,22.624711630797485,22.701830293664162,22.7771273566411,22.84982018499936,22.9241890904574,23.004104716396608 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,83.42731556390976,83.5851840073514,83.71574597755094,83.82788366585756,83.92143273049862,83.975473656955,84.00318738290231,84.0079975051183,83.99696744738027,83.99287210063788 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|Low|%,%,74.17415991868934,74.9792782128406,75.56882730656963,76.00302635443555,76.29471075403468,76.41217678928986,76.41771347085398,76.35492377747042,76.24730724445138,76.13913780534386 +Climate Solutions,ssp2_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp2_3p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477,118.42555767376477 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972,25.481208109759972 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506,161.47502298657506 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534,33.277894348970534 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914,56.190808682229914 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224,37.10537108161224 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674,85.06389392111674 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114,176.12031059479114 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286,36.572390081914286 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906,94.93174157233906 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Absolute,days/yr,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143,72.0323853174143 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038,131.0289585882038 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883,33.84105200553883 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687,166.25511522998687 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756,47.378500850675756 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447,60.86738174903447 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076,41.79485185387076 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738,98.25961529322738 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936,193.18538251888936 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037,38.06411379490037 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922,100.00915038017922 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753,89.27270377791753 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.41023081478595,125.49316821039662,125.53981967866729,125.59731793805888,125.66358560755238,125.71695447827418,125.75225668228533,125.77042890051185,125.76786332784499,125.74984004340162 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,32.71776338401656,33.16563179283219,33.666946236088386,34.21159263152365,34.80807929039099,35.44412225691542,36.134401163548645,36.93033937507856,37.83725327921324,38.83752383063953 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.38452405488634,116.88937718335053,116.58317634388563,116.49125569521019,116.51866416415568,116.64775475928256,116.79789244567986,116.94735908706743,117.11085271673846,117.26012669965885 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.543707130656976,53.79930461984344,53.122077877245324,52.43507283644756,51.81151848429422,51.33218749523257,50.98474625197631,50.80297446391986,50.80549177672646,50.93691403637847 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,59.603569541225745,59.739114557720136,59.920434091164566,60.076379907381764,60.20825638977787,60.341199663992825,60.49901145732864,60.66531986339339,60.81030905578363,60.94126807894882 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.20674180049183,43.805756232950344,45.52203123810961,46.9122133704323,48.01342890353865,48.79425385805289,49.24633401856309,49.44745580001889,49.53502874912963,49.58330393424192 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.3102068390762,21.727216374699438,22.106578041299997,22.488295485505567,22.8838646163602,23.27616783306538,23.6786762527521,24.069439427524326,24.397676567055793,24.717492139104984 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.72206297307545,155.62981837685,156.79423710547405,157.78838305933309,158.5992051735966,159.35107473980136,160.04427757464603,160.6149833995535,160.98598672029084,161.15765573033482 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.36896469429825,38.5245499554465,38.730624386491606,38.94681594588306,39.15840786757797,39.353461253468886,39.53631450580292,39.70855854221924,39.87542942256429,40.04076831018924 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,53.53844022505898,53.58926509445789,53.63347047413114,53.678063044315735,53.72679261649069,53.766897642504325,53.813611007945894,53.859401751045795,53.904818003818754,53.94336000953555 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.93281570269512,83.61991634134638,86.41074305576677,89.15178036437725,91.8288416503522,94.24752836352008,96.33685317785357,98.14532492818549,99.65848550519718,100.88553813218955 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176,0.308488688138176 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106,-0.2531928384863106 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168,-0.3726966416759168 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415,0.43923929415809415 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813,3.640357255260813 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467,-3.349308035780467 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Difference,days/yr,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083,1.808605794892083 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044,-1.6061268453533044 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046,-2.2751615866008046 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947,-2.0864968267403947 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Difference,days/yr,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319,-1.0214255090673319 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816,0.38916093682746816 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483,0.19212114939652483 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474,-0.46010972254669474 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865,0.5749189411444865 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803,3.9805021313153803 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285,-3.2437826592070285 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966,2.0172884042629966 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975,-1.8537055283079975 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586,-1.5208853389915586 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118,-1.77164112562118 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328,-0.3171998977567328 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6693280376447435,0.6371214098714857,0.6036252630260874,0.5689487570812647,0.5317890227913492,0.49561600030104913,0.46263795070399677,0.43281441794367054,0.4080315904894781,0.39031530572481477 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,0.32275825790936163,0.4046185459967885,0.4870563539593817,0.5741857890270213,0.6603664565445542,0.7466635892860982,0.8385872415463016,0.9350035889739666,1.0313514405492255,1.129566463477959 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.463298475318541,-1.5574889587361116,-1.6645267207376908,-1.7756396974180875,-1.87699519696629,-1.9637219905749672,-2.034445579862768,-2.0894337592056402,-2.1310191981235076,-2.163547377831867 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,3.066892726141017,2.995204761517818,2.918463575088449,2.8469903052082945,2.768428270639851,2.6783607528106006,2.5855854318499087,2.492949212520282,2.403111716387206,2.320533359234581 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,3.3459714838500276,3.330131734670261,3.3140880520671594,3.2969058496138137,3.279619839381132,3.261613428848558,3.2453596381777574,3.2322748259289105,3.222498868961876,3.2162518040762 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.589561666521642,-1.467155254087655,-1.3437365202755824,-1.2455673220206216,-1.177576403795796,-1.1376716948215453,-1.1204827903552665,-1.1226235468867936,-1.1304504173835244,-1.1372383314493417 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,2.35413838289549,2.3321661468687007,2.3106282708130856,2.2876201393401305,2.2630647030306363,2.2377289407336614,2.2115529412415587,2.1872117522242918,2.165389526475964,2.145573092856918 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.025897842079121245,-0.13885160106860958,-0.22733863333856602,-0.3028276731419812,-0.36474004492017525,-0.42517093627012403,-0.48174815107053537,-0.5285809808164716,-0.559885754252507,-0.5776525062894061 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,0.9472667250441356,0.9466008082964448,0.9455094580846418,0.9440785565666884,0.9429846841831261,0.9422234349185642,0.9416311754518186,0.9415165868373768,0.9421636592007341,0.9434373380724482 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,1.6772958159075617,1.6598016436177516,1.643381374592622,1.6270183997532972,1.6105634678764875,1.595470382861233,1.5817988532678668,1.5690767938808257,1.5581892979056926,1.549940952536691 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8674713605123553,0.7840593252422934,0.6844704870101554,0.5705591810864415,0.4483575669994298,0.32897157574279634,0.2202770249486844,0.12481861641771719,0.046594423304938376,-0.013664047596910674 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249,2.02411468467249 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116,0.5372045758047116 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605,2.2004093143892605 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127,0.6809154271265127 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234,1.1679903847231234 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186,0.744427301559186 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Risk score,risk score,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062,1.5999757575414062 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488,2.413418957231488 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207,0.7524619986713207 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625,1.6691165096644625 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Risk score,risk score,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557,1.22303782911557 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205,2.240739444608205 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224,0.7229598219419224 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312,2.274611743011312 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213,0.9686707338493213 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438,1.2655458125009438 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257,0.8379748509920257 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526,1.8386308018266526 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007,2.6327841084254007 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149,0.7896579327413149 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997,1.7622585079741997 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747,1.4767570891206747 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438,24955.83395170438 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943,7358813.477672943 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605,304873.4090096605 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301,1014938.1859695301 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168,318207.59168 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area,km2,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912,9021812.030388912 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766,0.49702864520286766 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756,24.636059719829756 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053,1.4943460340690053 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104,19.698471293625104 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005,2.8467898439420005 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|%,%,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887,6.737965544036887 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842,4960763.384898842 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803,1261691.449876803 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363,27371050.809270363 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711,1869904.628090711 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547,11719510.22856547 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921,5572196.927449921 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|Low,km2,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885,7119194.7022917885 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431,5398529.386510431 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907,9197537.960369907 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|Low,km2,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084,79613559.07409084 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125,98.80020475933125 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162,21.523990602269162 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153,91.63363691410153 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355,37.658490890520355 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757,57.44352611195757 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358,25.460283380586358 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212,85.58757861070212 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426,25.415509748397426 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916,82.28420169554916 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|Low|%,%,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747,59.45960923065747 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.226445915427821,2.226324527178341,2.2256134096013565,2.2248602010953262,2.2240147451489185,2.222990611826709,2.2218589316880255,2.2206539159124774,2.2194397720204653,2.218394303774516 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.6969114028199007,0.707958977837933,0.7200909135015234,0.7332499908082124,0.7474543075353294,0.7624429813992158,0.7786722328728123,0.7972377928022095,0.8181463522400506,0.8410395847845461 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8873213880016608,1.8815145039125711,1.8779945035649939,1.8763461798214265,1.8758759940691683,1.876440389920777,1.8770987175949085,1.8778055661118782,1.8788562270559968,1.8798545801048407 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1462621865720157,1.1314250676449618,1.1175695962974412,1.1037251969099622,1.0910052332527638,1.080690230682337,1.0727110690750608,1.067797950060066,1.0662693145900948,1.0672139222545691 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2508204383043657,1.253279333111742,1.2565921621202831,1.2595354862274444,1.2621620410143728,1.264774001577618,1.2678187544815216,1.2710494057920885,1.273919483910082,1.2765441169011136 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8406798320733443,0.8718064739896028,0.9047214341968728,0.9312209250509647,0.9518328894758648,0.9660947304734719,0.9740835648330021,0.9772334088283159,0.9782964476742305,0.9787974613666123 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.4910736132804535,0.4993566029837882,0.506920311576982,0.5145219028255958,0.5223832952304522,0.5301679252472864,0.5381989225672454,0.5459575572417563,0.5524775752419028,0.5588494421822227 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.3977903735650883,2.4109943957561715,2.419511401546016,2.426861632647022,2.433016544466564,2.4386509617671246,2.443769454628833,2.44798699815196,2.450793948315112,2.452215148682276 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.7702544985500817,0.7728011780540279,0.7762300910517416,0.7798258995196586,0.783365271372359,0.7866506730271595,0.7897691474849989,0.7927560244443294,0.7956943401367426,0.7986794568417598 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1773465641207137,1.178127193034566,1.1787907555283346,1.1794661507938209,1.1801930268995489,1.1807712135958848,1.1814603386517533,1.182145070625446,1.1828361920078392,1.183478521317223 +Climate Solutions,ssp3_1p2,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.4954975754069328,1.5322231139144962,1.5702037318987585,1.6066004613085274,1.641635392976282,1.6727641596432032,1.699319260325279,1.722254861864845,1.7415817702312282,1.7575362946173563 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210019.61308434606,273748.3293274634,342394.46511455195,414452.98748106917,488986.62193121546,563425.4167704734,631783.0164038612,696758.0822201677,757184.3555591637,809416.4412553924 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,58377314.10256392,61751652.83429167,74882481.35640289,88827222.50391527,102934341.78004354,117021961.58297513,130259036.55740224,142341680.0495328,153178583.76415232,162543510.8902146 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2609523.5827748682,3242140.259180019,3552226.0072918637,3798126.405157202,3976050.2068803236,4108098.2848980115,4207898.6240016315,4290851.041758234,4373392.807240489,4469455.347674722 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8311334.893727805,22176098.07700498,25996590.921958968,29651441.908286918,33014886.697214637,36008932.58002347,38684507.57259072,41177126.32308,43451197.13542884,45174490.59516719 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,247027.0,275760.8682270412,278640.2303463963,271715.70220057206,263521.66187250795,244512.21389846294,235022.72990678894,225890.61279371512,221049.58687875306,209592.99731712881 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population,people,69755219.19215094,90404645.16456898,107032986.66621128,124924826.17041934,145125136.75571734,169070020.27331915,197876788.9550532,233427515.26419362,277892599.3977404,332895072.48796934 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545667973.2824366,1848865729.7871466,2100336927.0418513,2329446293.761056,2533614350.0789676,2715437385.5613484,2864020373.402516,2995721635.7541156,3115520530.368386,3226601887.9059668 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,97650840.86544347,116104137.40624687,124446061.68890353,132144843.072394,139764481.83281288,148010835.2234193,157867144.55235,170975466.74764743,188240627.91728687,209391599.52914387 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826473238.8746773,937473348.5110118,1222627315.4294853,1550570306.593174,1907311018.0629983,2277001207.8161774,2636707493.053486,2974442098.12834,3282663466.2000046,3552206765.6524816 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|Low,people,232905692.85541812,307321206.03954595,330024053.1065863,344933442.1991746,352884214.74564767,358306369.9457643,362272604.28892434,365923571.3765558,370967826.44054055,377579132.01512456 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,278653789.7409423,352146593.2566991,393284251.0588387,429946154.98632246,461448674.4244639,488218640.8413582,510924319.03554,531387177.72554195,551116545.9140376,571525788.5693098 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,59863918.11727906,69945029.71334738,77143915.12619503,82431283.46144728,87092692.25241949,90434795.8070493,92362950.79859285,94194994.61565024,96477183.42890754,98569957.93977661 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|Low,people,4086556.2109293174,6021824.50977714,6528825.5551293865,6913753.312247035,7274736.406689351,7606845.063158687,7913519.154088697,8241003.129720165,8585201.934452051,9009544.45702735 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199129424.10931122,502418635.0856686,592563949.2636974,682428690.4001458,770637505.0949192,852620833.8508981,927992204.5916195,1000827550.0047213,1073433150.9638531,1143019572.5776005 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,64472753.65337928,77555933.83283144,82848420.85832992,86864543.27134055,90458314.71484773,95117413.61423746,100582401.2369204,106571306.95952371,113683142.10237782,122036423.90772904 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,852351435.8565402,959768587.3956317,980185547.0356698,968891047.0283021,940356882.0825807,899408656.661186,857836607.3677514,825741449.5050085,805923169.5161121,794715363.7316568 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|Low,people,4161255623.5663567,5211232148.106589,6039433949.285336,6914235152.338544,7909369517.652466,9085587310.104145,10509367374.416683,12288732727.643276,14550516685.598303,17405182506.51625 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013452059302542278,0.014668530675123762,0.016160280913765,0.017646250575849023,0.019150970089017064,0.020596103329084285,0.02190166002627304,0.023095385577925787,0.024134509755383907,0.024910807831959928 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.008929074856755,5.582375104077245,5.175788958973271,4.829575963994326,4.541537065221474,4.31923895203832,4.14636069350233,4.011675377772899,3.9084513671848025,3.8300190401184895 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.4920497673962046,0.4859515213401757,0.47947176254212154,0.4714846212939107,0.4622289765640687,0.4536588605526017,0.44638892826964255,0.4399719459963351,0.4343980152029114,0.42986167132259956 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.1277621722987385,4.369865652646281,4.347559899999527,4.309298389982992,4.251878830402144,4.194287653498877,4.142369053276003,4.090354703906393,4.025701252781207,3.931485860386964 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.01793976220375016,0.01782091345252041,0.01766258085732516,0.017455900521158748,0.017471115815457326,0.016966960898518627,0.01711517910626544,0.01710290187460706,0.017159992749297834,0.016511624526122114 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|%,%,1.0917928730878057,1.1606902640568733,1.2181777104120308,1.2726576518428936,1.3218780112676274,1.3668047253026083,1.4054529375680784,1.4375743388509092,1.4623779283785716,1.4789428207204798 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,99.00226428036137,99.06962259165483,99.13137685562344,99.18131668569042,99.22801659447458,99.26323398268624,99.28535414520222,99.29895042109239,99.30416559880898,99.30272661029811 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,17.780448332883665,18.75588724159627,19.801148755790337,20.91427236341989,22.116809887430826,23.386018368912925,24.758250149944843,26.327284438703735,28.10424872554688,30.065081815645378 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.07104430909344,84.74798068170337,84.50656075378538,84.30520365393198,84.15193154825018,84.04330415931739,83.93076287373142,83.82995144865713,83.75929713667706,83.7007855458213 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|Low|%,%,46.95919382177478,46.0988631691068,45.28932736069008,44.48872363394873,43.76508899576241,43.17974807550626,42.72656987955037,42.457302803701964,42.38806340484975,42.46753286946287 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,52.54274509383907,52.78185366697649,53.08465526916181,53.37184138612394,53.64493339318794,53.914170729274325,54.20067819606369,54.48696503004361,54.741008695626526,54.96800204216965 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.899589576779764,24.023750586330177,26.211850976572954,27.967979134253802,29.31160488694042,30.22281613285748,30.721711233320498,30.900503821647447,30.945849734687254,30.961752133675102 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.3868890803473763,3.8241673269784635,4.229944032327889,4.641856830632673,5.072380016740752,5.495588386103967,5.936810577744158,6.361169424808912,6.71329916248152,7.064370139198924 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89613578804808,99.00307660466503,99.09788832458482,99.17861215368634,99.24787335718625,99.31249776953008,99.37017248489838,99.41780892724317,99.4522928135525,99.47572686553181 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.903150132306553,21.05250503818924,21.258540042469114,21.47487101074714,21.688875771891816,21.88838315060396,22.080971266646586,22.267930031357693,22.454084188317132,22.645106036112445 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.90004361179684,62.024583257197996,62.13247260877065,62.24471238060004,62.34433965688757,62.41091709102322,62.47066904904527,62.519530183296254,62.563499623155806,62.60725243230869 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|Low|%,%,65.13102941288614,66.90614632729134,68.7367890000927,70.43799493673714,72.04280307397086,73.45018145455013,74.64453676631615,75.68073886346666,76.57042502620925,77.32547531856956 +Climate Solutions,ssp3_1p2,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p2,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991,117.20199097645991 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235,25.73419193933235 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362,161.1456132522362 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486,33.244250140052486 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757,56.89604502522757 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604,36.678228649470604 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106,85.15999028578106 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053,174.7550504155053 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763,36.12130315912763 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255,93.0787570885255 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Absolute,days/yr,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455,71.66333383816455 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571,129.6816561582571 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937,34.24323334089937 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148,165.90436991579148 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593,47.33699424449593 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205,61.648265063188205 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599,41.37628013512599 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875,98.37288390728875 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819,191.6350257480819 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462,37.78235185688462 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358,98.09653697936358 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836,88.95358033672836 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,124.33439667268482,124.4059880790719,124.44192455844411,124.48855371664504,124.54262093169652,124.58444915479464,124.6097601985939,124.61905799824444,124.60936397354774,124.58639579585714 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.18700951478782,33.63557581865702,34.13453079552234,34.67692400131147,35.27005143213508,35.90095098064486,36.58467215198895,37.37325844893292,38.27225540077103,39.263556697823596 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.16584801968104,116.66881974672506,116.35787626629157,116.26076743593953,116.28316632147741,116.40740031051618,116.55430206089497,116.70197852345837,116.86500097030377,117.01478066211908 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.55987894215664,53.82671414989358,53.16018478253769,52.48328445971137,51.86716858219971,51.391769759969485,51.04552100476329,50.86142358514428,50.857907517625925,50.98031735936196 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,60.1018826071054,60.23828894050759,60.42092168775006,60.57824668145723,60.711634342575145,60.84581140138072,61.00451526744886,61.17151274989739,61.31716375756635,61.448787487538524 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,41.91209322347845,43.47720170507996,45.15642999558531,46.51735301090759,47.59607392690129,48.36142237881773,48.805333447780384,49.00366369903132,49.09070789839184,49.138903657388475 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.582274971827896,21.997188084743875,22.373837020098016,22.752161949818554,23.143970904697515,23.532237578330587,23.930563421378668,24.31708078072477,24.641489978917974,24.9578517141862 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.0035451281248,154.88936377616423,156.02613173279053,156.9934268510962,157.77754592107343,158.50625492329002,159.17953714545888,159.73306785068397,160.0904313771659,160.25167441965417 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.723408179214765,38.87819107512636,39.08387681864659,39.29984559435961,39.51118257674499,39.706077647765674,39.888984942393776,40.06130605193459,40.22840696919336,40.39380983772371 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.730439887657546,52.778526886625926,52.820470731112465,52.86308166966272,52.90989004555148,52.94840959442168,52.993294890625265,53.037281853953814,53.08082935885871,53.11760288525694 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.53248252744572,83.20746857249145,85.98536338465634,88.7148032648771,91.37977867151551,93.78734096530322,95.86702951176247,97.66657683902132,99.17169106277184,100.39168224611143 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897,-0.3935050107292897 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687,0.4632170353009687 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609,-0.4180648345143609 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892,1.0158535873377892 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579,5.057583729152579 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804,-4.163552729960804 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955,1.9115501116989955 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462,-2.2037390583489462 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009,-3.095388692572009 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572,-3.474598450502572 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Difference,days/yr,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642,-1.3130161933846642 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138,-0.3795300130135138 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724,1.3033221929195724 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943,-0.518258312964943 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065,1.429606846259065 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903,5.56476377350903 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925,-3.9823216610874925 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784,2.1426227864559784 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763,-2.530730422702763 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853,-2.02677470149853 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404,-3.182061774990404 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693,-0.3742407399759693 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-0.00917146836409768,-0.052321192597688346,-0.09641482526416151,-0.14142166439370696,-0.18992204695419673,-0.2366968046271407,-0.2787660613110453,-0.3166484120557234,-0.3479454368515003,-0.370244854192555 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,1.8574748670430123,1.937838634472833,2.010646700695595,2.0865856477946343,2.1581644408428273,2.225285282770523,2.2930266379573845,2.35997297605715,2.421923579646597,2.4805414408553506 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.4679230103467173,-1.5770320303330996,-1.700616101117929,-1.8264183774357055,-1.9403262101483818,-2.0374582659477616,-2.1157694214374003,-2.1761671642430533,-2.2211098329824956,-2.2556363477065764 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.047654549402302,3.991581859459054,3.9277497597992532,3.8679396858419244,3.794926364355502,3.7022609671796496,3.6010365401329043,3.493367517266283,3.3816185456713597,3.2720365733955323 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,4.241342038210025,4.227836105112307,4.215244933018252,4.201568680465831,4.188045191619872,4.173195716687539,4.158932431306907,4.1468697668191545,4.1377121538591775,4.1317024276228125 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-1.8012078995764549,-1.7170032911762967,-1.6349950635150687,-1.569231770182206,-1.525615638504403,-1.5021246915107764,-1.4933934688486734,-1.4980724509041943,-1.5060789279408338,-1.5128912578940645 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,3.6719334927122516,3.62642159723564,3.578203559867969,3.5251130853328316,3.4680902487608956,3.4091109084865043,3.3471691955717082,3.288046587277639,3.235568571320405,3.1868690803286497 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.4170074337493213,-0.5468822519992026,-0.6571038604733381,-0.7534186209174131,-0.8359671611396914,-0.9144580065001232,-0.9865619553874891,-1.046579772427667,-1.08822592468201,-1.113883674944138 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.3415057703075965,2.3348213610868793,2.3286453509588236,2.322705229371164,2.317012991264911,2.312521639759749,2.3094906339991956,2.307517761287712,2.307237321379384,2.3073623781412502 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,0.8079343379893117,0.7871943580603435,0.768227709391167,0.7499473469526855,0.731851629116087,0.71549218855319,0.7003362617952078,0.6861243721763539,0.6736458825851128,0.6636886878501107 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.8667971899677465,0.7656853788560324,0.6457955909147535,0.5134956816230499,0.3724927763089931,0.23533561140287892,0.11014589328080057,-0.0012732308842568342,-0.09469496617987386,-0.16928616808965077 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165,2.011915694825165 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723,0.5648368041353723 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886,2.206887433556886 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258,0.6918254019489258 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545,1.2208720945221545 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748,0.7321684388668748 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171,1.604791492620171 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517,2.406476240841517 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082,0.7457053643892082 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259,1.64986975154259 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Risk score,risk score,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257,1.2260883773195257 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836,2.22712743201836 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422,0.763982372512422 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088,2.280972597770088 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502,0.9847708644332502 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464,1.3243677687805464 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458,0.8253541396460458 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083,1.844184459381083 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057,2.6249015549852057 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126,0.7902222117636126 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119,1.7429741169159119 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655,1.4854798265875655 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005,8020.7569920000005 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205,7393624.6948670205 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375,316369.18705851375 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037,941181.3152500037 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645,23.53210507401645 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088,267376.921088 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area,km2,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611,8926596.407360611 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192,0.1597440497861192 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098,24.752601772202098 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927,1.5506929302828927 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413,18.266957906247413 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456,0.00011078580907671456 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148,2.3920419353893148 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|%,%,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472,6.666853489711472 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868,4958695.633108868 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606,1420579.1214215606 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303,27489797.685885303 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959,1910129.3526388959 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278,12330738.110848278 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301,5211436.340822301 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987,7094423.046784987 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611,5143179.596766611 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105,5305922.549200105 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134,9287411.128121134 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|Low,km2,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804,80152312.56559804 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601,98.759022730601 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797,24.234555653240797 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398,92.03118132159398 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446,38.468586977890446 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975,60.439477660400975 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596,23.811908980385596 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181,85.28977161122181 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768,99.82162169618768 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923,24.97952990871923 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055,83.08823663339055 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|Low|%,%,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249,59.86197878239249 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2156656638286463,2.215290625888372,2.2143364727339643,2.213338554181763,2.212220295533904,2.2109380374124252,2.2095820900740315,2.208178569341153,2.2068045506309315,2.2056462512934947 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.7443475236223817,0.7556778456279993,0.7678135656078467,0.7809651692240186,0.7950310039393944,0.8097202493536111,0.825521011812967,0.8434839161539172,0.8635874627022677,0.8854831073953021 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.8953452537045188,1.8889439133770674,1.8847891122415583,1.882553095814951,1.8815916731891849,1.8817576094174966,1.8821135181092645,1.882609176350065,1.8835289635377044,1.8844484086853297 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1735729783528357,1.1589906182475747,1.1452858793225267,1.1315497016919123,1.1187632314009195,1.108163248236167,1.0997536836122315,1.0942609499035167,1.092003191410579,1.092118543908184 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.2805942347623904,1.2831400739985157,1.2866011158763468,1.28969438332019,1.2924793056864996,1.2952229601677354,1.2983627654252865,1.3016635350056462,1.3045963427241267,1.3072741666620087 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8263550251557444,0.8563071782688177,0.8879509035166662,0.9134576379246702,0.9333242393121981,0.9470850193877658,0.954818835982567,0.9578981749817186,0.9589641510691733,0.9594731467297584 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.547789970362979,0.5551611279476103,0.5616811797373581,0.5680967358643627,0.5746719045825431,0.5811181225273643,0.5877273775634582,0.5941046380637427,0.5994074248822766,0.6046331024096031 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.3905855672814726,2.4033550775961015,2.411201171572315,2.417902236243409,2.423406189978085,2.428461895011883,2.4330782073256008,2.436872367402434,2.4393516904223467,2.4405220488926958 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8175342265429164,0.8198545002515376,0.8230594199448493,0.8264402081420964,0.8297622609450218,0.8328621047159722,0.8358364863962563,0.8387019493167226,0.8415504441706748,0.8444405631956808 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1670849010974111,1.1678364733985445,1.1684849038541365,1.1691635446387048,1.1699015689495627,1.1704940904604917,1.1711914467315934,1.171881967572944,1.1725757956117615,1.1732154420914729 +Climate Solutions,ssp3_1p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5030545326263591,1.5392422471501985,1.5765825580295894,1.6123705509400916,1.6467761719272047,1.677306802472886,1.7033102995523337,1.7257260107871137,1.7445735667645188,1.7600906758823067 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,56643.0,79025.03583141904,106188.93695157407,136189.60393441102,168403.8246175121,201691.5092123386,233215.92227703996,263253.3815107774,290704.7108674061,313756.45298438537 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,59046262.07986883,62537680.37878589,75931986.49380913,90174811.89483681,104600070.68460459,119017403.22593294,132592139.02510683,145013830.24033117,156187540.7661409,165880500.45404303 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2640690.5827582087,3282159.00540466,3597574.4310083375,3848131.315811882,4029441.8398807067,4164085.606493994,4265815.087312043,4350277.049548314,4434176.84275141,4531467.707850738 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8100091.99588703,21617159.82123507,25316998.281754367,28846208.155300386,32084250.110216536,34956771.09398092,37522536.7790117,39905902.842155784,42077870.685467094,43710278.03889269 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,198557.0,221691.56024430285,223994.8945733088,218386.4982822182,211790.88682943324,196302.58767287846,188758.93230539348,181517.2651515927,177543.64984188564,168154.13116592055 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population,people,70042244.65851407,90837589.46512705,107629153.88171546,125707874.45930551,146119006.69200736,170312128.6296585,199433079.46694228,235381373.764063,280363713.8477717,336048852.09203136 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545063354.3825243,1848189039.9340174,2099610298.7599053,2328678186.2395744,2532811706.193253,2714602970.874544,2863160598.4196615,2994838802.046112,3114616186.2605686,3225678367.5376935 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,113947948.96461822,134721852.56598842,143477116.09229478,151462149.159144,159190341.92398265,167453065.01289427,177386899.89892265,190777920.8074176,208581028.84065032,230415983.3363472 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,826729974.495754,937041911.2268356,1221230477.8435757,1547855412.9179842,1902993159.032114,2270980624.5111184,2628916833.8173575,2964867449.1258173,3271419956.021843,3539437340.710087 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|Low,people,249968800.50620526,330241081.5303965,354924116.2892169,371190058.77008253,379778403.3137919,385375824.6386142,389213322.61458904,392518446.60508275,397135347.6914829,403325150.8351477 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,287774958.92337644,363402213.4685007,405536916.50184387,443005183.71457165,475113270.63160866,502291749.5487983,525239898.46826446,545876192.2750818,565795871.1565553,586458891.6911199 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,58844886.69644979,68850782.54228619,76022217.52772266,81288099.60244314,85920549.60161635,89239705.07870829,91153701.10380669,92968145.35941859,95235728.0005508,97322177.34264407 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|Low,people,5584471.132279707,8221685.943355852,8920814.56631169,9460265.697585806,9967357.203515805,10442297.903083328,10879285.092844771,11339172.167364933,11832208.898865988,12421349.856090523 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199129424.10931122,502418635.0856686,592563949.2636974,682428690.4001458,770637505.0949192,852620833.8508981,927992204.5916195,1000827550.0047213,1073433150.9638531,1143019572.5776005 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,62908955.270642355,75633930.72623967,80753754.4814749,84624504.5340809,88085600.94746466,92588175.25862199,97881768.7603267,103691847.49491365,110603384.77014098,118727266.75887401 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,860574580.9335064,969003613.4772791,989677896.1327885,978395506.7945852,949866117.0925016,908937826.6798296,867436408.9732596,835550805.5229921,816145222.0675918,805453526.1008471 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|Low,people,4210527355.4146676,5268092249.662442,6099346088.347727,6976185633.887044,7972803883.718285,9150712672.603718,10576815863.56978,12359637750.38114,14626822648.288519,17489060701.444454 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.003628065892912055,0.004234477576698881,0.005011888993291395,0.005798572936965553,0.006595470026130318,0.007372864341383714,0.008084762821734866,0.008726039217673561,0.009265927945888819,0.009656249006023418 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.077785633473547,5.653432321076413,5.248329518583193,4.90284500414068,4.61503022046834,4.392889992870271,4.220627205996767,4.086985709380666,3.985226865555579,3.908648654405411 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.4979265930334471,0.49194977220391506,0.48559279442556896,0.47769203617374323,0.468435930348542,0.4598415618316818,0.45253291373517557,0.4460653237518774,0.44043553928221496,0.4358258738292405 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.0228499705858765,4.259725217779985,4.233907701534049,4.192272293038443,4.132025200754862,4.071732842395049,4.017944260040617,3.9640769519302883,3.8984642058281165,3.8040570640518454 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.014419741015719013,0.014326710434546433,0.014198696046549759,0.014029858997124167,0.014041438135152682,0.01362164399160385,0.013746087178867893,0.013743253586503601,0.013782643917094198,0.013247092755331582 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|%,%,1.0962853306013682,1.16624876421604,1.2249628860501771,1.2806348684391688,1.3309307146394298,1.376846242823207,1.4165067508182048,1.4496072683792853,1.4753818847201756,1.4929540215132786 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.96353756728152,99.03336284207917,99.09708156655618,99.14861281286846,99.19658136013884,99.23273182464156,99.25554881823923,99.26968720132095,99.27534051607701,99.27430411076588 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,20.747856354818474,21.763461080334267,22.82926177203929,23.971579719746373,25.190824464683487,26.457930923848267,27.819526687925872,29.376522148260136,31.14106226071387,33.08382669704698 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.09747077563708,84.70897857174174,84.41001298421801,84.15759366603758,83.96142450762552,83.82108657234963,83.68277329783035,83.5601050927558,83.47241164885028,83.39989909152435 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,50.39951238827942,49.53689537561104,48.70637257956027,47.8752417712976,47.10053588448773,46.44190675372209,45.90396853050871,45.543047366033775,45.37805464095087,45.36326996876142 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,54.26262576639682,54.46891385817734,54.73849347758015,54.99293835805319,55.23348786090065,55.4682694917407,55.71932603707459,55.97262833200669,56.19906884044376,56.4042326713253 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,21.526804590700436,23.64791371521716,25.830722144262058,27.580110099918105,28.91711275031092,29.823423321468862,30.319491299775812,30.49803806128025,30.54764269989597,30.56981249635446 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,4.628343113658551,5.22119213308379,5.779683653613262,6.35157156535376,6.949835797808516,7.544069927012973,8.16176135545514,8.752623213253809,9.252334272103901,9.739561576108926 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,98.89613578804808,99.00307660466503,99.09788832458482,99.17861215368634,99.24787335718625,99.31249776953008,99.37017248489838,99.41780892724317,99.4522928135525,99.47572686553181 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,20.39614041861031,20.530778613333663,20.7210578721797,20.921082996327232,21.11997843718852,21.306355779344273,21.488098285050388,21.666270882048206,21.84578704646512,22.031058097583532 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.49723042638679,62.621392375151984,62.73417819609875,62.85530979121684,62.97478857328485,63.072156268092726,63.16976025578962,63.26222794905897,63.357033554357166,63.453199135729946 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|Low|%,%,65.90221938690792,67.6361637524914,69.4186688080113,71.06910851755971,72.62059749012533,73.97667132577367,75.12360092394346,76.11741078309116,76.9719764021138,77.69811842583137 +Climate Solutions,ssp3_1p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_1p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768,117.94297753339768 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602,26.24096626780602 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732,161.25523875186732 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807,33.24259865328807 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854,58.087751257743854 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433,36.26670492898433 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111,84.68094850791111 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776,174.94992473660776 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145,35.548925237688145 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395,90.77880160488395 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Absolute,days/yr,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406,71.45608028118406 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683,130.50589485853683 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919,35.06745315417919 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544,165.97179372470544 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756,47.330615158603756 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745,62.938648190524745 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192,41.01537067811192 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036,97.81112158602036 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879,191.8127636318879 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813,37.36839716117813 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071,95.78266195383071 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859,88.88610763725859 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,125.28198270358477,125.34402086366362,125.37036025149375,125.40955578938353,125.45697164597301,125.49308458056228,125.51360875558187,125.51829778652275,125.50426707238273,125.4777370086377 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,33.9628100233261,34.44322684564223,34.97942190882465,35.561990946905084,36.199493526984256,36.87867055018486,37.61505865728357,38.46326494915367,39.42876688141523,40.49260369794724 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,116.86251416531687,116.34121765698507,116.00100012126931,115.87596485695255,115.87366262774617,115.97689795770829,116.10830172888501,116.24543380639565,116.40203818334463,116.54843069759335 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,54.86873358199151,54.14618871629384,53.49123606527566,52.82647124029257,52.224155847988555,51.76215673726733,51.428734629939036,51.25668539170064,51.26429974593886,51.39737429311739 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,61.580622761582354,61.7255099004799,61.91748307357371,62.08438494058182,62.22783104514699,62.37219236321446,62.54135595584902,62.71867760413402,62.8734672140449,63.01320585427254 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,42.31826680043978,43.88262445202171,45.5605644316472,46.92050742895302,47.99814048735295,48.76280124499833,49.20669486611934,49.405601614942334,49.49400250697958,49.54374073887855 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,21.917654573419284,22.326393221746134,22.696925585154524,23.06878873517762,23.45380586732513,23.835202401037073,24.226252635216667,24.605866563553374,24.9244001586604,25.235039391889206 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,153.3422746161041,155.1857408647032,156.27045162313388,157.18677874275724,157.92004797053858,158.60437182561316,159.23839318590666,159.75732683225493,160.08573515836383,160.22265717407282 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.83090796663466,38.986077924458044,39.192554382769494,39.40944787579041,39.62179123969577,39.81792297925645,40.00235263484651,40.17668031112447,40.34642447008909,40.51498864211264 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,52.01226213174652,52.05833647971421,52.09899082277526,52.140805250346716,52.18703362255611,52.225472156323626,52.27032588569611,52.31439682368165,52.35848016355814,52.39628940200369 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,80.81611616833833,83.49470762109316,86.27338413996979,89.00249569688532,91.66651190175148,94.07143250173375,96.14746590386223,97.94353194920808,99.44548868689836,100.66304731220042 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252,0.07536317560275252 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425,1.605619629809425 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352,-0.182450210839352 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957,0.6749549681868957 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735,7.469517129769735 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262,-4.805126862298262 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Difference,days/yr,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831,1.5352243451205831 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718,-1.9900850352734718 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265,-4.217163779350265 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425,-5.2538209514949425 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Difference,days/yr,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248,-1.4772251971619248 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713,0.14646543845672713 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883,3.1639597786076883 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548,-0.3069582622552548 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537,0.914062612837537 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987,8.205405336706987 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727,-4.480530386039727 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772,1.7034226397043772 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735,-2.324555575502735 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907,-2.9449437039820907 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642,-4.944616914826642 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278,-0.23626614523583278 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,0.6414822394314147,0.5879118838952898,0.533045223039352,0.4791338719354659,0.4219994942829733,0.36743708689601984,0.3186866961049409,0.2744252214253905,0.2373148865734329,0.2104186410485247 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,3.7080746224457597,3.8511065672780362,3.9973339598871833,4.152951036050113,4.312379247828697,4.475066292042293,4.6465139466574055,4.829466381313471,5.018793771829267,5.214145381952299 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.6505775863130074,-1.7811342056761321,-1.929747704546665,-2.079001661139401,-2.2131438765138602,-2.3268258881937642,-2.4165278933230065,-2.48381511617802,-2.531970125613701,-2.567263101424468 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,4.181260940992584,4.154491630499018,4.12356844268703,4.097323279647026,4.062681285108153,4.010449496296587,3.949754628441935,3.8813740198317213,3.8065321598332207,3.731043607562864 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,6.86388104085257,6.852813456676309,6.842949591696223,6.8332115049761875,6.82470431417008,6.814549284066126,6.804137192571423,6.795753928164732,6.790553197836779,6.788678492961243 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,-0.458608576177478,-0.4054852827650122,-0.35725669364468216,-0.3203130275710894,-0.300961203395436,-0.2956124256166933,-0.29829214343172816,-0.30827841584928917,-0.31709319912965056,-0.32275207260695304 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,5.493900724029172,5.4060784169249345,5.317209044448718,5.222099119316378,5.121423318684645,5.01838738330636,4.910317166047056,4.807273703884841,4.716576886489314,4.631701805671118 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-0.0762077876303797,-0.2499912191020102,-0.4085008835666846,-0.5504422317496985,-0.6771202973882032,-0.7946359507978095,-0.901113477900194,-0.9906430479068369,-1.0556762781427387,-1.0995437142483404 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.6287807542253256,2.619676947408302,2.6117813588251213,2.6045317947796742,2.597524756687082,2.592571730448096,2.589956356619781,2.5894241121495076,2.5918208277252326,2.595330571180899 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.1132972594367077,-0.13554375799930307,-0.15462209793561474,-0.17180193688098758,-0.18757686336788973,-0.20028379999942164,-0.21109894015179734,-0.22042518908727138,-0.2267908854209856,-0.2300987423704475 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,1.3030720063040675,1.1955168608940614,1.0679670535517143,0.9296815921974388,0.7839187987748739,0.6419007506699518,0.5119354108054412,0.39671582077436646,0.30046251039306576,0.22395150092980634 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215,2.02404087237215 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605,0.6171564602620605 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579,2.225133973926579 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583,0.6913990474746583 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423,1.3146229021771423 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497,0.728808715603497 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761,1.59651272968761 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985,2.41756297523985 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389,0.7385365743631389 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755,1.6264278145391755 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Risk score,risk score,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373,1.2389777699155373 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579,2.240743535980579 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284,0.8445109886952284 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736,2.298695769695736 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964,0.9837493629331964 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767,1.4264608068474767 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754,0.8254910401777754 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618,1.834413019291618 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904,2.6360407596404904 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921,0.7897827737897921 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477,1.7203731437596477 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309,1.506875352427309 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416,10710.460416 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964,7667551.007663964 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017,332966.73904510017 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724,956337.5559189724 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848,196709.038848 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area,km2,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037,9164274.801892037 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388,0.21331307302194388 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805,25.669660618899805 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091,1.6320463223907091 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604,18.561118453031604 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358,1.7598238025924358 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|%,%,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507,6.844364263325507 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408,4961492.688195408 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889,1771982.0487924889 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975,27515930.974076975 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245,1958965.5221400245 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765,13645916.386640765 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573,5133923.169662573 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877,7089220.448326877 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332,5145724.792814332 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527,5303719.808944527 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366,9282841.794584366 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|Low,km2,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834,81809717.63417834 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348,98.81472980506348 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636,30.22935993528636 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663,92.11867113914663 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621,39.45211117300621 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082,66.88586288930082 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768,23.457738564452768 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519,85.22722551954519 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453,99.87102024279453 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003,24.96915972039003 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074,83.0473578717074 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|Low|%,%,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948,61.09981639272948 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.231626265890637,2.2310472204953378,2.229884498262233,2.2286968663928217,2.2273825439525825,2.2259168800165177,2.2244003369924656,2.2228470805191574,2.221343787403043,2.2200912878722288 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.8274864142088294,0.8413486992315448,0.8562900059316821,0.8724534752068592,0.8897614105260102,0.9078952266869994,0.9274028310520005,0.9494847996654043,0.9740764570528365,1.0007762563640694 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9045420519985947,1.8971934027087143,1.8920715477126089,1.888977636714,1.8873142598738768,1.886934884994048,1.8869096970034074,1.8871804674586519,1.8880070163778038,1.8889205142210952 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.1847751610185042,1.1710106224943213,1.1582032846580739,1.1453834526655846,1.1336288433100985,1.1240892457419576,1.1167295693192079,1.1122401809826352,1.1109167267487183,1.111899827071023 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.3939004529589023,1.3965845155617673,1.4001849049932589,1.403485889151113,1.4065298009255165,1.4095339262851798,1.4129103253799085,1.416441444054573,1.4196068933976735,1.4225148574482933 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.8581298668116174,0.8875721344133792,0.918580628661353,0.9435203879888205,0.9628565733789533,0.9761809322620437,0.9836156557998008,0.9865226284190031,0.9875358612559301,0.9880580701570916 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6221064584492836,0.6279176050616444,0.6329233121728514,0.6377606575307637,0.6426892041025186,0.6474692096237972,0.6523354716519636,0.6570520499904074,0.6609094985568739,0.6647677449853491 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.410696978429803,2.4218509059946207,2.4280811128033997,2.4332666104303775,2.4373336701492727,2.441109102191593,2.444570512040741,2.4473624944408843,2.449053309477705,2.449616454467185 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8382033585590455,0.8404293615987805,0.8435885192255738,0.8469464470467922,0.8502459006197749,0.8533544846259614,0.8563814644910941,0.8593416660150516,0.8623321332274906,0.8653990637735234 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.154336281122983,1.1551230445203735,1.15584971978126,1.156650216248612,1.157550261377754,1.1583375312271218,1.1592423351482635,1.1601497102462466,1.161086757144429,1.1619684893620283 +Climate Solutions,ssp3_2p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5274216175885185,1.5632652574885957,1.6002140363867186,1.6356541766900108,1.66973314691588,1.6999523523031395,1.7256740684009257,1.7478633775549475,1.7665487024833635,1.7819626361164749 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,75712.0,105064.41606604293,140180.57743723143,178866.1353613139,219927.90946966823,262453.1647991199,302570.6672029231,340793.49201084615,375784.8295347976,405323.33905813436 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,61402522.16347847,65209863.27056447,79340527.12285534,94344156.08527176,109499567.23888223,124601536.01266493,138818720.96947554,151848002.9210193,163609565.723014,173879443.2502295 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,2797454.214861309,3483751.8172570295,3825964.354837667,4099412.1049145516,4300057.239670775,4450362.46207439,4565293.78962579,4661891.474864289,4757134.525451857,4866507.0661765775 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8386910.749894388,22389316.991772052,26201569.53960879,29825863.03774207,33139891.358876668,36071087.100358486,38681068.87996154,41100164.78412557,43300706.89390465,44939204.24422093 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,118075.0,131754.09497415414,133009.43262176999,129667.05262816785,126181.26119897027,115914.41655441468,112021.70439617605,108083.90990843071,105712.02550504159,98874.0738227842 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population,people,72780674.12823416,94622330.29259093,112317739.78685355,131331511.62592344,152732181.60388774,178032867.07105136,208475201.10262743,246076812.35815033,293179732.28289336,351589053.2327177 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545493131.1837173,1848687042.6103418,2100161336.8055525,2329274226.797602,2533446908.305735,2715273623.7764645,2863860070.870707,2995564707.3976474,3115366744.9598594,3226450986.0488005 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,146813255.22257838,172500496.18431717,182735914.18695635,191948260.2943224,200754664.8954012,210226163.90932083,221757532.96799648,237435548.63443878,258340161.85921,283985237.48671496 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,832423734.1535419,943510497.984076,1229713489.1177335,1558672602.7987852,1916334093.6615777,2286955479.1424775,2647531725.941761,2986031519.3079686,3294975705.8305664,3565173462.9728913 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|Low,people,256410044.75601798,338941200.6004897,364450407.3279805,381340947.9593646,390348105.5846393,396239365.86786747,400291980.98893964,403756946.4966739,408529244.75239867,414901193.9156394 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,328641058.71402913,414782692.8436025,462442189.6443238,504685549.78155077,540753645.0736549,571096635.4842714,596461987.7629479,619116372.6341771,641003368.0863371,663773623.329671 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,61269802.53189305,71326193.88071339,78393071.72966284,83553215.76322171,88121320.05844045,91397442.14082499,93288966.01823716,95124992.21096055,97443068.39393863,99580095.39580467 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|Low,people,4756806.797913713,6845120.7221920425,7286211.6264009075,7594388.388602625,7879300.766865502,8140134.17766464,8377294.512922761,8645711.001960723,8944247.803286225,9330772.093447074 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,199415345.31053007,503071180.01937574,593262212.8946823,683162620.0125197,771398426.6491939,853393213.4875149,928765836.7637229,1001602680.6379316,1074218774.878076,1143823288.6228843 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69167879.28106505,83105328.93402281,88654603.88541642,92823172.84141019,96535622.99259277,101389458.44429427,107107208.00858656,113383795.78780772,120860147.33003981,129642546.79847705 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,854015631.8915437,961817737.2685295,982617509.815793,971721654.7139878,943777411.9552869,903563209.7566742,862782184.9842952,831559230.5741855,812780419.4813926,802657211.4385928 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|Low,people,4298406689.842829,5373400236.618504,6216149682.460719,7104730760.349169,8114372600.017377,9307879578.507826,10753366277.759184,12560949409.79453,14860307121.270567,17763804152.98737 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.004849462861856849,0.005629771745876747,0.006616221174257437,0.007615620442990883,0.00861339068819379,0.00959401606734746,0.010489044046674572,0.011296255187106953,0.011977773401875577,0.012474334958436646 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,6.320321624414325,5.89499876608535,5.483923834295871,5.12953411948318,4.831199526235357,4.5989983465463045,4.418829613379263,4.279596069614044,4.174604668099012,4.09712805319793 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.5274858233932248,0.5221657177767569,0.5164203710213483,0.5088850547967251,0.4998958649014269,0.4914552241879631,0.4843026850416635,0.4780174012704249,0.4725141067795916,0.46804916891232584 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.165296354739026,4.4118810698265145,4.381839656954081,4.334647332360396,4.267977770237888,4.201527355388706,4.142000835226332,4.0827096829689875,4.011758512562865,3.9110091499758393 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.008574922669213487,0.008514545006496,0.008431265849688669,0.008330233229871793,0.008365640275956647,0.008043423851497495,0.00815781322636357,0.008183379036984895,0.008206383087135559,0.007789246793678404 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|%,%,1.1391466076946017,1.2148404247708622,1.2783252280803308,1.337925041182904,1.391167078208865,1.439262641469529,1.4807299297055891,1.515475630334017,1.54282471166063,1.561994000801049 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.99106539161944,99.0600478178447,99.12308937485662,99.17399055499612,99.22145880281525,99.25724764528927,99.2797970291325,99.29374872915191,99.29926383952794,99.2980824160691 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,26.73203298540447,27.86636142200375,29.07589819022694,30.379227082518845,31.76810516721759,33.21616909592019,34.778157858145455,36.56099523322142,38.57008046041756,40.77546290621469 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.6835442954434,85.29374150544139,84.9963487372049,84.74572913592662,84.55003612214261,84.41071277108662,84.27531611910631,84.1565809753901,84.07345195280507,84.006320336799 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,51.69821674141052,50.8419325506752,50.01366915181477,49.184480159148784,48.41140200207752,47.75107960922571,47.21058974778918,46.84702565625885,46.67996061937631,46.665264566279085 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,61.968306232023615,62.17012975987095,62.41944383252864,62.64969880627629,62.86439831749553,63.06641928983233,63.27481987146365,63.4824729675151,63.669238759914194,63.840181164981594 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,22.413894230413035,24.498133735662737,26.636287650326658,28.34863776151814,29.657796180905947,30.544527293777733,31.029721879684622,31.205587911999256,31.255665277870797,31.279045822220557 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,3.942384778187695,4.347002635584743,4.7206449501715655,5.0988315642773925,5.49391833895011,5.880864731261656,6.284740039013053,6.673560441090872,6.994059283086737,7.316244241539242 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.03813640933697,99.13166251201055,99.21466298056994,99.28527548920798,99.34586994514638,99.40246384576619,99.45301365748733,99.4948069966766,99.52507992608808,99.54567338238611 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.425388757527916,22.55888453171134,22.748381044825557,22.947978409911784,23.146010858688506,23.331703728419786,23.51336966908895,23.691390331279237,23.87164774806452,24.05649989598924 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,62.020901984073504,62.157008581976456,62.28663103446722,62.426559825468296,62.571115980062075,62.69920592043622,62.83082334869389,62.960013023745,63.095825249029424,63.232906958266724 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|Low|%,%,67.27768680184168,68.98819555312318,70.74804902317986,72.37864757247874,73.91008170590358,75.24724826959643,76.37757972338578,77.35719811217548,78.20066165910889,78.91871280760625 +Climate Solutions,ssp3_2p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196,119.01321397512196 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334,27.015563136988334 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774,162.0374277707774 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531,33.90838872584531 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955,58.850357229232955 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735,35.8172667981735 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809,84.64590329639809 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894,175.08640829308894 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836,34.720732420861836 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081,88.20278502107081 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Absolute,days/yr,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617,71.28830262779617 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625,131.6769592387625 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159,36.25933957667159 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027,166.75331421825027 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198,48.29152895078198 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653,63.77056730544653 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987,40.70966140470987 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115,97.75187373479115 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354,191.87163287768354 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266,36.756912408437266 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467,93.23738802556467 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804,88.95806909083804 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.25409055377881,126.323651848791,126.35814985320488,126.40446469624911,126.45858450784044,126.50064631906929,126.52618291244654,126.53516520011779,126.5246685310222,126.50076410549826 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.1788294464602,35.68088813915832,36.24387267726623,36.85577192081255,37.526581041809415,38.24225686605914,39.01852085171753,39.913993860191404,40.93558660205752,42.062919982902486 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.50600383594605,116.95541913688072,116.58291769724674,116.4276484800717,116.3991934524137,116.48102266347156,116.59638071233276,116.72222791971137,116.87224992817916,117.01496239232621 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.499642245577576,54.78351523570361,54.13742214450889,53.48022459062628,52.88711289273916,52.43646173224882,52.115284882276995,51.95630962747073,51.977852644432794,52.1247967158062 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.637820227391074,62.79748014069103,63.00241957777768,63.180473358306,63.334317561935535,63.488182426526585,63.665942513405625,63.850685015751694,64.01145478557379,64.1559455896569 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.44591456067416,45.03519132676161,46.743385730983675,48.12769160974649,49.224022046332486,50.001716996626094,50.452368356786984,50.65355420861766,50.74311939127448,50.79366837157185 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.1989595333945,22.61418865529908,22.99056400042142,23.368347080207233,23.759510586107208,24.14705901378696,24.544342185904984,24.92979005212597,25.25343055442573,25.568696841852823 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,154.38332776743178,156.12169567162567,157.13803010321755,157.9938669191691,158.67277617297052,159.30821670068144,159.89980401033978,160.38442183682753,160.69096406818102,160.81952474881948 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.75276081740625,38.905947287471214,39.109896769850764,39.32414031914975,39.53385870812951,39.72762574147756,39.909896698855164,40.08228296329964,40.25025808114944,40.41713402424064 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.5884167775378,51.631801641924476,51.67020755666022,51.709908202192075,51.75345258652682,51.78914054710206,51.83080752794292,51.87148586587582,51.912353394440316,51.94761840726335 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.38401923767881,84.07877815525833,86.87460126562354,89.62001948598454,92.29999924693729,94.7183839014914,96.80507605504042,98.61050556789462,100.12083164221127,101.34556274971087 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727,0.9184669912188727 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471,3.660321913613471 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643,0.4599396542518643 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333,2.9446898991580333 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782,9.06771852645782 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833,-5.816978061623833 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556,1.7446826192307556 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065,-1.6519436075433065 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222,-5.805058929358222 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832,-7.168677485682832 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Difference,days/yr,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894,-1.6807491447868894 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125,1.0640022308879125 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848,6.233819967560848 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851,0.3368902029558851 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747,4.241682048236747 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852,9.967565456558852 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445,-5.176646095231445 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333,1.9134846058443333 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994,-2.0172964845986994 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035,-4.2191566465919035 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737,-6.785578758637737 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046,0.023338057969138046 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4276168139528087,1.3807327139070096,1.3330488189832066,1.2849995432962635,1.233211267326244,1.183113033861278,1.137825816931222,1.0963664211650985,1.0614448890386787,1.0361011682745316 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,7.121322239832113,7.2763786061591995,7.445308267672312,7.62652471308128,7.818651307850518,8.020157597525788,8.234561824960336,8.471894835592146,8.731686285777059,9.010668245904006 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.2365840488779902,-1.39457195946833,-1.5731488749253455,-1.7509653244800163,-1.9102134603674716,-2.0448234221121377,-2.150432105196987,-2.2289607132479774,-2.2837864061544018,-2.3230264934557066 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,5.324656232401402,5.340510389500666,5.354948279837929,5.370846505494105,5.378910630214296,5.370485101853521,5.351352722071535,5.320513271543234,5.2783179783518905,5.229765098000704 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,8.918173277361136,8.932956306506963,8.943386152603436,8.950103358439936,8.95573273405702,8.956731068953172,8.954406274475534,8.951483334391218,8.950036213506166,8.950500322767386 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,2.4614751648071276,2.4766986587778406,2.4952828986150974,2.5074701854892525,2.5054162265996114,2.4944550548976268,2.4793260472299514,2.4606753107455965,2.447656683959151,2.439646804251716 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,6.890409007760712,6.805708319317662,6.719176549262376,6.626556790699929,6.528670255930676,6.428524934813302,6.322828427688475,6.221598761658527,6.13265091147492,6.048808039878679 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.963549371083813,0.6973639780042804,0.4684124225603185,0.2643314524716746,0.08222207221473703,-0.0860175106075354,-0.23716579424506273,-0.36318216880274157,-0.4529066119143695,-0.5099639013750336 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.8435692628256026,2.831949296809981,2.82114810670968,2.810958315213347,2.800987202390392,2.793521291101049,2.788732515324998,2.7863655536541487,2.7873188680079717,2.789421620440856 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-0.6299026696940537,-0.6559925906459493,-0.6785032268415233,-0.6990268445687507,-0.7186364971034787,-0.7351196616580574,-0.7500055012281515,-0.7635473304365911,-0.7738732455528189,-0.7806004398572354 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.193916378822829,2.0722070373653225,1.9313865575667715,1.7820659946858557,1.62738831876993,1.4769664841314907,1.3386219324641706,1.216506303264169,1.1149920449943134,1.0339282431839594 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795,2.0528874461541795 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857,0.699747183942857 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413,2.2591969756379413 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233,0.7410421831505233 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924,1.3789526715436924 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068,0.7341219308418068 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822,1.6072859118308822 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012,2.44020936759012 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063,0.7221044706641063 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112,1.6025366924373112 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Risk score,risk score,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147,1.2561477802592147 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934,2.272204942803934 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273,0.967258508541273 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052,2.3331622936585052 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215,1.0560604839677215 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065,1.497011689276065 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106,0.8415777510122106 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848,1.8454763214076848 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071,2.658633993695071 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571,0.7790360839489571 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142,1.698640829533142 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462,1.5352164832432462 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616,30212.980061654616 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363,8126474.437795363 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057,377090.43968619057 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074,951308.0744911074 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324,139326.9052720324 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area,km2,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635,9624412.83730635 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953,0.6017317063675953 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409,27.2060584452409 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273,1.848319946501273 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088,18.46350354712088 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054,1.2464643499617054 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|%,%,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525,7.188019641832525 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821,4963723.00389821 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707,2189878.549116707 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058,27623117.837376058 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405,2094666.3810345405 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663,14268908.131336663 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215,5513912.1841305215 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132,7164827.247140132 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411,4907017.374621411 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201,9201226.902191201 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|Low,km2,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893,83075165.91301893 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315,98.85914951046315 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576,37.358520037447576 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241,92.477514582241 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965,42.18502571941965 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081,69.93947535740081 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303,25.193970811056303 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628,86.13617703829628 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154,23.101540992233154 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036,82.31720418319036 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|Low|%,%,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769,62.04491997855769 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2596514189736774,2.259098657058968,2.257986133149392,2.256830961775831,2.2555306426803954,2.2540696745968263,2.2525518408699385,2.2509890279960656,2.2494743498866354,2.248213719821614 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,0.9567032446082678,0.9717734852679645,0.9883610335353002,1.0063699684682603,1.0258188344905392,1.0463453212534652,1.0684807689871982,1.0937414515653112,1.1221932227190703,1.1532950472426495 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9373642162479001,1.928753636640186,1.9223039124851804,1.91793748750372,1.9151714566857065,1.9138862254735751,1.913167635773005,1.9129504286987025,1.9134862564787494,1.9142352441887978 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.217106865863171,1.2042616831440232,1.1924942643191794,1.1806345961791245,1.1698999989353343,1.161449781129553,1.1551597243679406,1.15168427038003,1.1513009007106516,1.1531119549562558 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.4823859442882052,1.4859139489931905,1.4901707689325048,1.493988752097676,1.4974655353372714,1.5007962831779507,1.5044037003218669,1.5080879026853438,1.5113537990358261,1.5143206589246165 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9625744132535579,0.9907030012865272,1.020691221436655,1.0447631823038581,1.0633076102508414,1.075993666126338,1.0829269380058943,1.0854673296590642,1.0862809658555352,1.0866926080098556 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.6754177381835003,0.681151527324465,0.6860343615331416,0.6907284194799378,0.6955034284597789,0.7001254523140067,0.7048038249909244,0.7093275070975888,0.7130199984067137,0.7167019004406294 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4629774520141794,2.4706651935168793,2.4742382194233787,2.4770359288798183,2.4789666285698972,2.4807815348802875,2.4824660871217223,2.4837562315104402,2.4843621525395063,2.484236539909665 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8473322169749018,0.8494088569252567,0.8524102565155137,0.8556156835466641,0.8587615241933514,0.861740955118043,0.8646664589467972,0.8675471894789744,0.8704779995866582,0.8734992228966297 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1458773902076491,1.1465269381388925,1.1471297535721279,1.1478055488725012,1.1485810091057396,1.1492623315847286,1.1500676680940183,1.1508816109774833,1.151738219714849,1.1525518358640725 +Climate Solutions,ssp3_2p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5659638134473999,1.6013824691179568,1.637955275026225,1.6731039274680535,1.7069607998342775,1.7369755752408782,1.762499583225096,1.78454701887307,1.8031502693730401,1.8185064812033864 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,210058.86164289713,278522.90475936886,355073.69751358865,437323.03762671485,523039.5143145751,610070.4546951377,690894.6391728073,768074.0619949931,839800.174098325,901465.8956634046 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,91171041.64085926,98712628.73212507,121907885.34176356,146665659.2200545,171914158.3279563,197120332.13497478,220898651.5916102,242728538.71226615,262546669.42602,279844248.03226894 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,3606466.382743789,4522603.713365739,5002176.409219384,5394210.641496316,5691582.153175506,5918445.836244525,6096106.101753669,6248563.233047391,6395918.8169249175,6559853.3277622545 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,8342745.988459114,22071369.70995026,25857022.552864403,29472788.353956535,32803257.02298008,35757466.889405444,38387850.78034645,40822734.02758588,43045749.25749346,44743761.36187836 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,64783.11991506815,71303.12470782328,71799.60248545541,70167.08948535965,68311.87989584621,61870.29818546143,60044.54063656317,58480.86812234568,57023.10204384872,52855.746344962725 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population,people,103395095.99362013,136198946.15460056,163768479.21018797,193504443.94779745,227098401.48334748,266639717.87923643,313966923.8772711,372163806.3139683,444997765.4477552,535307679.7857996 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1545215738.384041,1848352004.0657258,2099778053.23945,2328849416.82503,2532984716.319297,2714777749.4394455,2863336491.695944,2995015410.173894,3114793280.671671,3225855711.828201 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,179525947.80279914,208744864.3646158,219305470.27439734,228703937.766086,237666793.96405008,247520309.938461,259805449.97483686,276913172.72198135,300042143.4622139,328501076.5345292 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,834930296.3333378,946270479.3104509,1233190009.6977823,1562986002.6984963,1921530605.1173406,2293034475.168698,2654477741.018824,2993804464.985907,3303497616.4608245,3574350025.905238 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|Low,people,260015349.60512286,343835960.17269987,369884586.02959895,387229243.1756,396611180.7184843,402875515.21274245,407287499.58404434,411086583.92977786,416171650.6946061,422825461.7442434 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,350623249.0980406,442933750.65603137,494120920.3120529,539513508.3951676,578293779.3011618,610909804.4269398,638117762.1834693,662330120.4879954,685662932.407657,709862212.4916219 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,84137360.69154917,95004180.22517906,101610618.05448681,106217059.78232813,110483741.95127286,113558760.219251,115331027.68044056,117360001.60866567,120137797.00631878,122735643.30365771 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|Low,people,15940432.099850036,21671467.59386829,21973330.09479635,21884902.920716815,21737323.84726724,21600999.32331629,21413654.571680665,21377888.1623632,21568844.85609153,21965577.56004063 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200669464.1037345,505925099.941678,596304286.9509,686349349.4719931,774690550.2541522,856719442.1182324,932079448.0242718,1004902896.566973,1077545683.9622226,1147211688.0369763 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,72899550.05073887,87568997.24688715,93389345.91854195,97755750.66217947,101637045.23766829,106721264.08874685,112711222.55871893,119287768.51207164,127119658.6290023,136318687.6811823 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,830737773.8490324,935333991.138062,955260625.1205176,944343882.755057,916817380.023475,877378922.3820089,837407756.0794326,806737159.3701111,788139588.5123851,777952305.7346975 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|Low,people,4374695162.018245,5460297572.508214,6307921182.73223,7202087508.773016,8218827059.123893,9421670086.5348,10879233239.115236,12702762215.566238,15022792060.753738,17952137637.016506 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.013454573229358037,0.014924371528493203,0.016758713360010277,0.018619993431474427,0.020484638320885325,0.022301219911137257,0.023950848801330533,0.02545929077371323,0.02676780805829188,0.027743745431100246 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,9.38447291251233,8.92366270051039,8.426129523681013,7.974277733172809,7.5849760981726675,7.275641300820415,7.031569635504639,6.840920395880841,6.699049330864029,6.593980850796031 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.680032537918018,0.677875100778229,0.67518292320131,0.669616302930868,0.6616652347951144,0.6535762311683929,0.6466967274016708,0.6407103156390378,0.6352903939640008,0.6309112175312463 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,4.143362257036057,4.349228618463757,4.324219076327477,4.283334341542383,4.224623739690633,4.164997159005773,4.1106027987015885,4.055150931269883,3.988136993618113,3.8939999724882846 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0047047236378750254,0.004607930133387158,0.004551267714811384,0.004507762061581376,0.004528981628118866,0.00429324536944537,0.0043726539460919025,0.004427773853319425,0.004426681051214252,0.004163947502384672 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|%,%,1.6183165965990725,1.7486357088032367,1.863903056952684,1.971304814303446,2.0685347144249158,2.155582792038072,2.230002507079066,2.2919883168036645,2.341749696749474,2.378195159149907 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.97329798248778,99.04209511222957,99.1049992164898,99.15590333292373,99.20335723416147,99.2391208821375,99.26164640971926,99.27554121709974,99.28098522698659,99.27976210410003 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,32.688421431189525,33.72140929470777,34.894637732429786,36.196466951087515,37.60920678649862,39.10872137274427,40.74519963628644,42.63987109820721,44.7961692505271,47.16718227831088 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,85.9415512728396,85.5432449654608,85.23664174710422,84.98025062485219,84.77930993861705,84.63508635080242,84.49641927366034,84.37564916945738,84.29089405492779,84.22254804445245 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,52.42512988432283,51.5761573530338,50.75940357885849,49.94393896047583,49.188155478617816,48.55080654945988,48.03564389364189,47.69746727926763,47.553208282798174,47.5565323190324 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.11325120845883,66.38957996180174,66.69537019452638,66.97310596173179,67.22856298373425,67.46300272210229,67.69381333146657,67.91349062625177,68.10516001283479,68.272872941702 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,30.779369696594767,32.63072072085958,34.52511288446774,36.038217372695804,37.184012880442644,37.950719076142896,38.36133967143207,38.49974399398282,38.53518605622916,38.55242150206423 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,13.211240131877066,13.762493105799722,14.23624443937416,14.693406247271163,15.156558387313249,15.605707757134615,16.064763159589923,16.501433915852285,16.86601074891721,17.22317603798222 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66098510697094,99.69403586554489,99.72340657773404,99.74840872136227,99.76985173225245,99.78989992562023,99.80783789079386,99.82263593848634,99.83331405888295,99.84056202883987 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,23.635259127920317,23.77054423331371,23.96329500527482,24.16742271321754,24.36916114268609,24.55865682140067,24.743625486583998,24.925017423615508,25.107992830416766,25.2953260870549 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,60.33040160194805,60.445509228482244,60.55251967756039,60.66772270293317,60.78370375397725,60.882250550566596,60.98296848121719,61.08065450203662,61.182967203306085,61.286667665172565 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|Low|%,%,68.47173666914178,70.10385605437357,71.79253072516639,73.37045852502014,74.861509251527,76.16715946268923,77.27157083530346,78.23055895083719,79.05572001513956,79.75541625300264 +Climate Solutions,ssp3_2p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_2p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906,118.17975384058906 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063,27.52457885909063 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834,162.3178202544834 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Absolute,days/yr,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902,34.50663562012902 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817,60.11668601700817 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459,35.26423486036459 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Absolute,days/yr,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676,86.20675415076676 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407,172.87082599747407 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014,34.12899629986014 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205,85.40513762972205 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Absolute,days/yr,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515,71.04837183451515 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204,130.78591042998204 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056,37.049712891229056 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193,167.0037676669193 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372,49.1448442126372 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211,65.19722593690211 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793,40.23614890196793 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588,99.53554187613588 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215,189.35642933786215 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193,36.32597110970193 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985,90.42692941039985 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193,88.89779342530193 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,126.081198525862,126.14305453679826,126.16731028571445,126.2009760974315,126.23951825380307,126.2652585814347,126.27550526449825,126.27031672324442,126.24808780862648,126.21630122176379 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.95348867704524,36.47076152472875,37.05128710184748,37.68303626440851,38.37549214136469,39.113969431319305,39.91508376448661,40.83986916754841,41.89532560995588,43.060082482122745 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,117.87698355154707,117.27818951305393,116.86158995976331,116.67174602082962,116.6155227581802,116.67538112437951,116.77451374064832,116.88845167222343,117.03102012699327,117.16925019250414 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,56.66390066656818,55.92184726993022,55.24844581225693,54.562866262602135,53.94160410270358,53.464467532465704,53.1193350175359,52.94119103796434,52.949779114275145,53.08962893591713 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,63.722019803464875,63.88271440590409,64.08827429117633,64.26671023302066,64.42137622749829,64.57600980397872,64.7545157846944,64.94004253031198,65.10162532979668,65.24702200089759 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.996026506498836,45.585700542450724,47.298211236789555,48.68623634070486,49.78523852101534,50.564296023769714,51.01438170640639,51.21366314177491,51.301103970668954,51.349542773126785 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.667110662642376,23.091841218934835,23.476393709756202,23.862233698647778,24.261653997911196,24.65734560856433,25.062831955123706,25.456108735442946,25.786180765477965,26.107782577415513 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,152.72035183442887,154.36102796726274,155.31436821445908,156.11325581887093,156.74035703084778,157.3300757381384,157.88143795233273,158.33260021531157,158.61720595574022,158.73659085332392 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.77412146858437,38.927534914328454,39.131793414959866,39.34638708809153,39.556454989354066,39.75053332703435,39.93301499890219,40.10551866800073,40.27356176144358,40.44036328910089 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,50.87900647757579,50.92040966181316,50.957560671464904,50.99644705654432,51.03909874599504,51.07407700426018,51.114672483461604,51.154162704552235,51.193937773127324,51.22837535630583 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Absolute|Population weighted,days/yr,81.47325417294809,84.1565319970091,86.94144804975174,89.67627751296342,92.34483349996316,94.75157698628819,96.82701170423876,98.62185643454981,100.12321015862513,101.34110288580376 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274,0.44142360483912274 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529,4.966274929853529 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708,0.7756010241730708 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Difference,days/yr,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805,3.9215591347136805 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652,12.30109842021652 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247,-7.034187571206247 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Difference,days/yr,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904,3.4864590021910904 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521,-2.715253949261521 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677,-6.941738967769677 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193,-9.224805984898193 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Difference,days/yr,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662,-1.7935435606106662 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615,0.5695725927190615 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516,8.207689002901516 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142,0.6270670829470142 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399,5.649552983218399 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646,13.625667207995646 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725,-6.2124359989796725 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021,3.872631989483021 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167,-3.2219102160213167 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806,-5.128137827303806 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681,-8.792751301441681 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Difference|Land area weighted,days/yr,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605,0.3598328463530605 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,1.4986799829688169,1.4411084713178235,1.3801673934032,1.3173457369865949,1.2483982352143825,1.1808517700998762,1.1194899868210688,1.0632665324606723,1.0161112414031253,0.9824604159289173 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.166239691164987,9.341672346722847,9.536829661956178,9.748956137694371,9.974710481159917,10.21196241756828,10.465458772657428,10.748750953900137,11.060987923488888,11.397168024386788 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-1.169411307387287,-1.386233170127202,-1.6176372323756294,-1.8384063614926733,-2.033026585917921,-2.1956590030502143,-2.323054377749914,-2.4186473746469765,-2.4851841251569504,-2.532799327586261 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,7.473370858871186,7.450530967359977,7.4181531146650705,7.386047311528896,7.342309174660132,7.279491856399754,7.206815924722978,7.126508459774778,7.041661871909787,6.958968209741234 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,11.28990632117842,11.302168019888684,11.30759689735615,11.30746025588201,11.305972559866312,11.298332530147439,11.28597764139296,11.272881809328123,11.262552438226399,11.255588224562068 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,3.965294788185044,3.9379405887629115,3.9250263876445866,3.9129775728395955,3.8921045138596764,3.8676926111217607,3.8420604345083365,3.815369324151253,3.7963952229933056,3.7826566751654034 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,9.082413884287007,8.99718576484062,8.907665351718776,8.811011958382274,8.708565354049986,8.603496177323755,8.49187439445567,8.384448327969862,8.28972420784226,8.200324371055194 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,0.059882461223621,-0.26272891892297534,-0.533707783062365,-0.7762939889793341,-0.9941933801881914,-1.1940470735267603,-1.3729536362042276,-1.5221442797104807,-1.6277520912316075,-1.693113183489588 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.9265795007369775,2.916005577920859,2.9067504478168074,2.8983098197706982,2.890070486977553,2.8841897111651003,2.8806791467454023,2.879296795396552,2.8810973754726814,2.883682658808883 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,-1.271478528115914,-1.2995976933611397,-1.323009199318412,-1.3438686583960926,-1.3634253320346172,-1.3792165304193875,-1.393518255110266,-1.4064360772768494,-1.4157862066882698,-1.4214589392734243 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Difference|Population weighted,days/yr,2.7039420612497445,2.547511160042103,2.3706069461511414,2.1862987022815745,1.9965103802564534,1.812483072169863,1.6429485198979565,1.492853251452947,1.3678908526272762,1.2679337958647905 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573,2.051044242471573 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045,0.7569212471910045 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828,2.2868095771705828 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524,0.775986690105524 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836,1.5021449091144836 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022,0.73439714730022 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253,1.6732544238100253 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546,2.4252457289959546 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023,0.7097234036750023 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725,1.5753227534497725 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Risk score,risk score,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232,1.2773964974897232 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188,2.2709354369486188 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613,1.0528276516640613 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828,2.360549243618828 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187,1.1063038323962187 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412,1.6356901468157412 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895,0.8492181437568895 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226,1.919120656664226 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816,2.6418275860599816 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312,0.7698220521131312 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058,1.6735207169615058 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633,1.569636912686633 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945,21854.052992038945 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665,7042.222515666665 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213,8670431.240143213 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109,431743.885124109 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area,km2,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488,2810.495488 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965,841284.5896581965 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218,79296.86091671218 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area,km2,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934,10054463.346837934 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215,0.43525254943776215 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334,0.12013771771307334 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713,29.02713358300713 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422,2.116205426260422 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|%,%,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079,0.03378802147900079 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397,16.32810802494397 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761,0.7094158160160761 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|%,%,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448,7.509204067495448 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435,4956862.454262435 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168,2451269.1741839168 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246,27596840.807808246 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113,2219863.0855434113 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812,15910248.919116812 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969,5692139.622906969 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|Low,km2,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078,7288594.291397078 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489,5147888.302173489 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945,4498997.2397415945 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886,9345567.542280886 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|Low,km2,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486,85108271.43941486 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884,98.72251253421884 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282,41.81774765448282 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466,92.38954354293466 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357,44.70639439536357 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634,77.9845557884634 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009,26.00832126502009 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|Low|%,%,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689,87.62411522129689 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315,99.91301080694315 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422,21.18064013699422 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575,83.60852305495575 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|Low|%,%,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774,63.563350526445774 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.2773629471503787,2.276587845656156,2.2751854954583735,2.273679161561073,2.2719471681002052,2.2700341641101285,2.268092804674271,2.2661362234981692,2.2642944308386053,2.2628142835458047 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.043100924415162,1.0591711674222248,1.0769853556319424,1.0964336022559338,1.117420006980867,1.1395536388684908,1.1634416359998436,1.1907559766901596,1.2215337176997891,1.2551584909973326 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9583300699012107,1.9478809709876574,1.939741038627396,1.9338970114084604,1.929900132373072,1.927639427808563,1.9261610458821403,1.9253774672778985,1.9255404700688867,1.926042577208022 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.2864019156062756,1.2724432867295234,1.2593734865305395,1.2461589923914185,1.233987542106866,1.2240470370465988,1.2163084468728658,1.2115288655519714,1.2100781272506538,1.2111015655514383 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.578641590385257,1.5820392133828556,1.586075054216114,1.5896115745141788,1.5928035364285738,1.5957991283978425,1.5990323796717387,1.6023523052808766,1.6053125196749247,1.6080383802732479 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,1.031551194088336,1.0577429862231964,1.0862454044307646,1.1091604459982538,1.126804523797384,1.1388494895422359,1.145302498109456,1.1474952819057167,1.1480549008659005,1.1482290051674495 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.7656576927524176,0.7710393324936045,0.7754774140809293,0.7796653921930703,0.7838946787392989,0.7879464967110287,0.7920013482455327,0.7959138963255706,0.7990513658598415,0.8022131419957664 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.448916980054323,2.455820840647667,2.4588450993692015,2.4611215784993976,2.462552517852827,2.4639527500642155,2.4652703104760647,2.4662379476376604,2.4666032932951314,2.4663263077775444 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8512416993013574,0.8533650696958102,0.8564139258444913,0.8596667772262443,0.8628610868696521,0.8658790342542477,0.8688262190350018,0.871714139175027,0.8746422577566961,0.877644759509483 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.1494940742109543,1.1501089075735649,1.1507075531987465,1.151392364150872,1.1521965668987941,1.1529333385239748,1.1538022473816447,1.1546881175748434,1.1556375234219405,1.1565511290496298 +Climate Solutions,ssp3_3p0,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.5994563012359946,1.6337420806363467,1.669163045943832,1.7031881278465657,1.7359318139161402,1.7648942091634794,1.7894590716805308,1.8106757424700297,1.8286091450221553,1.8434479276969449 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population,people,402285.98894301057,509732.64426213835,616608.4382256517,721301.7787857818,825908.1448960897,927526.6138275539,1018117.8997757316,1104695.8854349884,1187021.1026438707,1261318.350608743 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,518125.305735752,647040.050815467,733486.1434381315,816171.4768789411,904593.7908567858,1005261.0943753421,1122754.5314725533,1268019.6158184877,1449266.570050959,1668923.753503027 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,100307653.29972346,109287269.08013742,135819739.79177558,164309448.7912406,193486005.55226636,222703240.5400862,250480620.79623997,276207305.0244826,299789015.06860477,320639973.5282719 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4894042.120026991,6158584.187147919,6827041.424345621,7375323.963130241,7796891.336290625,8122452.997369564,8377354.887762255,8595535.300825495,8804747.342443096,9035388.970593508 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population,people,170.0,289.9643293387513,295.6081472260036,302.8694765414686,313.9555235868044,331.0148310342507,281.1173062201236,296.655319281014,319.9525920951767,362.8214859001773 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,7177424.464846138,18875365.179503858,22120108.278337266,25241009.6864705,28136679.55268215,30722698.84445335,33053528.630241483,35219286.5580239,37199231.23907011,38731098.33272154 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,28596.360035419464,31640.60800617008,31932.306464958354,30983.164691996782,30098.011836795256,27159.230488524307,26223.18693229812,25347.370812794223,24526.900214877165,23051.584071773195 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population,people,113328297.53931078,149747827.32945263,180927662.7138909,214703843.59680718,252914009.95538592,297886649.06974775,351847810.4377639,418331705.8936903,501713361.6782996,605489361.8354833 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544387397.6868696,1847336627.2523851,2098594725.776821,2327513918.9535084,2531505941.581197,2713166252.3431497,2861612403.8654084,2993185382.2815995,3112863282.2566013,3223835185.144489 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,219362056.56764632,253570014.61055848,264960695.06273597,274832141.9557324,283999604.7006676,294112847.8074225,306915431.76716405,324951937.83451885,349431076.9885702,379475252.41897786 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,821762861.506552,930839381.7709352,1212597484.9325023,1536363642.0954068,1888259669.1608026,2252892527.6743283,2607563758.8690424,2940446333.7767234,3244305809.849361,3510063304.821646 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|Low,people,282374802.93422717,373833881.3435223,402362840.3222721,421345163.0866349,431424924.91074014,437791998.8923495,441936065.1871496,445218674.8897123,449741461.93173903,455923125.8691358 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,382550728.741938,482834930.1956833,537927831.587041,586522188.2498764,627780976.2802907,662183911.5125554,690570307.2713381,715669065.6977055,739893687.6117591,765161233.6739095 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,110337186.46066672,121356732.21994837,127024460.7854904,130683993.4616541,134370227.30193746,137051284.39587876,138532415.020143,140606608.88618827,143718081.86972153,146640633.15711448 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|Low,people,23144688.877021343,30910025.191383865,30923407.054330274,30451331.29902017,29934816.75908005,29473491.174744688,28959070.35621313,28678955.7653921,28749494.835246745,29099620.318817098 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,200669464.1037345,505925099.941678,596304286.9509,686349349.4719931,774690550.2541522,856719442.1182324,932079448.0242718,1004902896.566973,1077545683.9622226,1147211688.0369763 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,69319218.04868254,83322327.21520992,88913078.1973538,93117756.43759799,96868803.66639163,101758668.27387449,107499560.39441448,113791311.89352642,121276224.12867126,130061654.84010726 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,849532263.3102398,956040009.2137257,975995055.4296975,964419782.6913201,935977255.2618898,895518500.0718484,854615284.4696901,823272080.8755739,804307219.6858193,793958849.9711057 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|Low,people,4503440668.237577,5602329109.707893,6451845253.961999,7345839301.418366,8361695938.153699,9564580406.477856,11023939097.518557,12851923286.07633,15180324067.389278,18122387247.873444 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.02576699814064461,0.027313514375925003,0.02910258952985904,0.030711015033619254,0.03234636996143734,0.03390587895087853,0.03529451018559371,0.03661726798944723,0.03783513509130683,0.03881865680687979 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.09434122785781557,0.1045252176623868,0.11670813876647139,0.12917365646534867,0.14314601703787708,0.15883333394564544,0.17608120819569104,0.1952532356515325,0.21637490591154113,0.2396291413121316 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,10.324928161038624,9.879614586878906,9.387700526096234,8.933578492835965,8.53674148609195,8.219897344686473,7.973212669171796,7.78446653392133,7.6493120449262415,7.555252110100084 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.9228168324218836,0.9230857136954937,0.9214992452506185,0.9155439958382432,0.9064143849387127,0.8969655826455527,0.8886997535426355,0.8813623116673717,0.8745532218345895,0.8690023955535834 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|%,%,0.00014089397378633359,0.00018414221677268928,0.00019152080381191285,0.00020334493942440578,0.00021890851227581668,0.00023914267294207492,0.00021089734726834877,0.0002289860490298576,0.00025019067518106466,0.00028448777661048126 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,3.564614057710676,3.7194464820931796,3.6992733402330247,3.668322192893201,3.6236305532422506,3.578551965101625,3.539399172719392,3.498529093811343,3.446464117774977,3.370724571460733 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.002076744238193597,0.002044759071467808,0.0020241403913464294,0.0019904592789964834,0.001995455883509342,0.0018846077027628743,0.001909664402508487,0.0019191306377409594,0.0019040136459558257,0.0018159914968416283 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|%,%,1.7737888147374128,1.922587549882721,2.0591973818533593,2.1872713199600793,2.303677198694358,2.4081908720120007,2.4990578297132986,2.5763154992240254,2.640209016292812,2.6899891849302615 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.92024156543503,98.9876871603349,99.04914871025379,99.09904156380581,99.14544159903448,99.18021235632041,99.20187844423207,99.2148814258904,99.21946841772554,99.21757785706492 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,39.9418548619625,40.96262810380834,42.15903714567011,43.49707591642709,44.94106931104099,46.47043880926204,48.133441927493585,50.03701559653773,52.16991681751952,54.48620926839671 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,84.58619289110688,84.14826732875949,83.81331067704738,83.5327809275102,83.31137235599658,83.1534613559469,83.00306958597243,82.8718345376407,82.78057654322578,82.70775754664386 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|Low|%,%,56.93331467687807,56.07591212502779,55.216406869735465,54.344132002829646,53.50579437881058,52.758616109742526,52.12210900842209,51.657738315533194,51.38901070496996,51.27913248399598 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,72.13347230782958,72.37020922225987,72.60833207179105,72.80858041796088,72.98161317739236,73.1252219250418,73.25816681974581,73.38271789443769,73.49176338050285,73.59140234155139 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,40.3638648210661,41.68193049273599,43.16019262235016,44.339564408528375,45.223162924250374,45.80179268504229,46.07857169899107,46.12575299743867,46.09875628236138,46.06120395536457 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|Low|%,%,19.182042281952302,19.62945087839267,20.034886829828654,20.44486023847949,20.872339263582305,21.29321347457629,21.725418472459847,22.137074052592208,22.48100406639383,22.81696814115113 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.66098510697094,99.69403586554489,99.72340657773404,99.74840872136227,99.76985173225245,99.78989992562023,99.80783789079386,99.82263593848634,99.83331405888295,99.84056202883987 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.474455329080826,22.617788566286134,22.814704415305563,23.020806107977887,23.225896431025316,23.416666154391503,23.59950324366389,23.776540268797053,23.953829004603527,24.134269677660978 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,61.69530775259129,61.78362568585036,61.86684371257567,61.95746381587577,62.05397655402511,62.14097501455985,62.23608102268161,62.332566374401644,62.43805407149203,62.547654681797184 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|Low|%,%,70.4868321381295,71.9273754334564,73.43057803212065,74.8349137857116,76.16283605063174,77.32248256655414,78.29936835946107,79.14917442373098,79.88471413019073,80.51177902468778 +Climate Solutions,ssp3_3p0,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p0,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute,days/yr,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181,111.72685718069181 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute,days/yr,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075,27.305800942887075 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute,days/yr,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748,158.68010124027748 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Absolute,days/yr,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724,33.62792314739724 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute,days/yr,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559,58.68203716116559 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute,days/yr,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727,34.58992478614727 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Absolute,days/yr,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098,84.24266458486098 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute,days/yr,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474,168.0029905023474 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute,days/yr,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256,33.619446922281256 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute,days/yr,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756,84.62004847375756 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Absolute,days/yr,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242,69.48766334767242 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Land area weighted,days/yr,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361,123.50461444606361 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Land area weighted,days/yr,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985,36.81211346729985 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Land area weighted,days/yr,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178,163.20455405737178 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Absolute|Land area weighted,days/yr,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625,47.882451608855625 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Land area weighted,days/yr,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534,63.63021783543534 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Land area weighted,days/yr,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774,39.420640399994774 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Absolute|Land area weighted,days/yr,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327,97.29521500554327 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Land area weighted,days/yr,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608,183.89886087130608 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Land area weighted,days/yr,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449,35.8443665364449 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Land area weighted,days/yr,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151,89.5858222960151 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Absolute|Land area weighted,days/yr,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696,86.8521096070696 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Absolute|Population weighted,days/yr,117.62485425016936,117.71286708070605,117.77703773738148,117.84600569309427,117.91919469996418,117.97992220741097,118.02386828028669,118.05235220193424,118.06252866535365,118.05760701080676 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Absolute|Population weighted,days/yr,35.98013378835236,36.47678507065915,37.02866606885173,37.63102295188421,38.28884092073827,38.98669726221418,39.74316395233087,40.617638675965445,41.61656909746712,42.71846656324553 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Absolute|Population weighted,days/yr,114.58740216325106,113.94182256368343,113.46155484214843,113.20105512199643,113.07842087873486,113.07929156605161,113.13046249657576,113.20667655441791,113.32001208060657,113.43575652779177 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Absolute|Population weighted,days/yr,55.959664577842396,55.24202132353765,54.58695516815753,53.9187938362254,53.31320618083381,52.84659090822715,52.508163007321535,52.33324078242119,52.34142750724161,52.4794709421799 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Absolute|Population weighted,days/yr,62.3678346513977,62.50738487337648,62.688319123205666,62.84332105226619,62.975386370375226,63.10737981888405,63.262551512640066,63.42561938759964,63.56764075354052,63.69661148131181 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Absolute|Population weighted,days/yr,43.1172500357843,44.69591616700767,46.39453482040689,47.77132432556443,48.861092828579075,49.634226679858244,50.082092572949534,50.28173478410143,50.37096490729757,50.421643415600784 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Absolute|Population weighted,days/yr,22.926158811363408,23.32468189267107,23.685284410548014,24.046889985658385,24.421290167313167,24.792045984476147,25.171778910452588,25.540469794543004,25.849502459613657,26.15109263319461 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Absolute|Population weighted,days/yr,149.74202699401243,151.28899019257662,152.13395055986385,152.83321088520543,153.3697414905764,153.87422950211067,154.34752374461934,154.7322933107986,154.9666818198376,155.04867198896912 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Absolute|Population weighted,days/yr,38.29277781388123,38.44233134602993,38.64067738775762,38.8488689513662,39.052748385617164,39.24094511660317,39.4174287389549,39.58398533843743,39.7459659018422,39.90648051965431 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Absolute|Population weighted,days/yr,51.83530350794256,51.87821677659072,51.91667383767302,51.95694942098141,52.000394244882074,52.03561529671475,52.07571533453137,52.114283868654496,52.15295194947864,52.186275404278554 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Absolute|Population weighted,days/yr,78.79814294746767,81.30457213443498,83.90283033774922,86.45001498362967,88.93223156923047,91.17360682673105,93.11107982997886,94.79113769651484,96.20255967596017,97.35126009471945 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference,days/yr,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499,-4.359552611333499 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference,days/yr,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157,4.467770286625157 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference,days/yr,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324,-1.5165245885067324 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Difference,days/yr,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728,1.0891260751126728 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference,days/yr,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597,8.76686377587597 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference,days/yr,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988,-8.18872453960988 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Difference,days/yr,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948,1.3562003838673948 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference,days/yr,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466,-4.951440354741466 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference,days/yr,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842,-7.812217969650842 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference,days/yr,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376,-9.402371832948376 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Difference,days/yr,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226,-3.4936482453158226 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Land area weighted,days/yr,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848,-4.856329382214848 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Land area weighted,days/yr,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715,7.8044598324662715 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Land area weighted,days/yr,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117,-1.7972586284305117 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Difference|Land area weighted,days/yr,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832,1.49832485636832 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Land area weighted,days/yr,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524,9.69559004170524 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Land area weighted,days/yr,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088,-7.592809356020088 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Difference|Land area weighted,days/yr,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765,1.4783559838740765 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Land area weighted,days/yr,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255,-5.707247303116255 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Land area weighted,days/yr,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059,-5.951868332674059 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Land area weighted,days/yr,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654,-8.873861191863654 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Difference|Land area weighted,days/yr,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935,-1.762352423087935 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Difference|Population weighted,days/yr,-5.104970262485154,-5.141121006141111,-5.170227185065045,-5.203457402831738,-5.242199736042911,-5.27900897485682,-5.310877072297527,-5.33800935691051,-5.357881844907849,-5.369647244712828 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Difference|Population weighted,days/yr,9.761388890060953,9.89832556182244,10.036774112415642,10.19018401126896,10.343944980666167,10.49577945328675,10.656632396787842,10.833843977009565,11.024018477547482,11.22367267583691 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Difference|Population weighted,days/yr,-4.336298516238599,-4.592014777004806,-4.871329223810837,-5.142694716638577,-5.382770519650786,-5.5831544898932775,-5.739820188392435,-5.857130531428329,-5.938888783126123,-5.997518603527702 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Difference|Population weighted,days/yr,6.031575979191512,6.0212971425371835,5.992897878846688,5.9626805916174614,5.920973578085152,5.858167370612728,5.785578098400678,5.706860422005012,5.626542073550263,5.553223098333294 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Difference|Population weighted,days/yr,9.178186754866752,9.144841478141032,9.102316304559562,9.056763576808757,9.011098219835494,8.960679531721864,8.906942577906483,8.855795160088405,8.812771343959321,8.77951225451212 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Difference|Population weighted,days/yr,1.8586282360356718,1.8712538592660728,1.8922170004152665,1.906507305013771,1.9051311862471838,1.8946684813912773,1.8789800630069573,1.8588103595651067,1.8451994272685877,1.836884811839895 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Difference|Population weighted,days/yr,10.861866739614852,10.671768720059893,10.486947145158089,10.294665571745906,10.094315022559586,9.891383086435031,9.678640185459747,9.47547414616926,9.297558223539392,9.130105263552663 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Difference|Population weighted,days/yr,-1.594511475477916,-1.965754344702926,-2.2986553805100445,-2.5976327837455475,-2.867097036074335,-3.115270151035912,-3.338004699878329,-3.524481769836187,-3.65902910287155,-3.7471787336444264 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Difference|Population weighted,days/yr,2.848256842623916,2.840214886724715,2.8304222910028822,2.8204655015185036,2.8109198015821217,2.8030431496234334,2.795650068660405,2.789377437222489,2.7853521937355024,2.780852605207385 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Difference|Population weighted,days/yr,2.160831445292549,2.133075918727389,2.11002971691614,2.089888831791282,2.069917255854451,2.052933471145336,2.0364287197619144,2.0207670686917965,2.008921236506617,2.001353769582382 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Difference|Population weighted,days/yr,0.9999410676398391,0.6447003280005672,0.2560416899394015,-0.14133722157505932,-0.541804607177776,-0.9128985124227715,-1.238524338763981,-1.517906515473158,-1.7431966121116877,-1.9189088546127602 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score,risk score,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348,1.9416005551739348 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score,risk score,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749,0.7596804509387749 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score,risk score,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836,2.2479015601069836 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Risk score,risk score,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171,0.7269114406035171 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score,risk score,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709,1.3777889037960709 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score,risk score,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394,0.7012072933283394 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Risk score,risk score,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745,1.6011695217628745 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score,risk score,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193,2.3868080390080193 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score,risk score,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805,0.7042634191307805 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score,risk score,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786,1.5870350525429786 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Risk score,risk score,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263,1.239202531152263 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Land area weighted,risk score,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318,2.146611547986318 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Land area weighted,risk score,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093,1.0564242184849093 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Land area weighted,risk score,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962,2.319915086983962 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Risk score|Land area weighted,risk score,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466,1.0351387187412466 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Land area weighted,risk score,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659,1.4978583824915659 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Land area weighted,risk score,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421,0.8040874767763421 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Risk score|Land area weighted,risk score,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953,1.8384457116301953 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Land area weighted,risk score,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994,2.6002133007713994 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Land area weighted,risk score,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806,0.7659067676306806 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Land area weighted,risk score,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194,1.6899879079616194 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Risk score|Land area weighted,risk score,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323,1.519190260547323 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area,km2,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165,1359.1586894644165 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area,km2,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478,17322.916177587478 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area,km2,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684,7695277.602615684 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area,km2,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573,418759.6523323573 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area,km2,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716,5986.416259098716 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area,km2,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575,632317.9391005575 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area,km2,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999,56360.48383999999 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area,km2,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746,8827384.169014746 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|%,%,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124,0.027069454114318124 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|%,%,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354,0.29552255826628354 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|%,%,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686,25.762484557314686 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|%,%,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577,2.0525628250876577 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|%,%,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898,0.07196921753060898 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|%,%,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371,12.27236982902371 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|%,%,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717,0.5042194378464717 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|%,%,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575,6.5927565520597575 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low,km2,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295,4953929.2009633295 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low,km2,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998,2496085.0105010998 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low,km2,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245,27103775.470583245 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|Low,km2,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373,2168577.650944373 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low,km2,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543,13983724.500122543 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low,km2,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736,4609433.958074736 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|Low,km2,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949,7205741.665395949 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low,km2,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548,5150273.079618548 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low,km2,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575,4476208.087678575 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low,km2,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143,9988878.4409143 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|Low,km2,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673,82136627.06479673 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|Low|%,%,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096,98.664092891096 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|Low|%,%,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983,42.58228928612983 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|Low|%,%,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548,90.73884440094548 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|Low|%,%,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395,43.67354381964395 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|Low|%,%,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727,68.541639351727 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|Low|%,%,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397,21.061261173048397 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|Low|%,%,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697,86.62805373716697 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|Low|%,%,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296,99.95929586222296 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|Low|%,%,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284,21.073352045192284 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|Low|%,%,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981,89.36379408119981 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|Low|%,%,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613,61.34396961517613 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|High,km2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Land area|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Hazard|Risk score|Population weighted,risk score,2.1198875590515547,2.119924899214047,2.119525215412017,2.1190390600878373,2.118421130395452,2.1176292299828514,2.1167333297486723,2.115766933327806,2.114791869556178,2.1139512091154837 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Hazard|Risk score|Population weighted,risk score,1.0716557239066187,1.0861777081763146,1.101643483871621,1.1186278821431006,1.136596907175633,1.155153573106141,1.1751235653049228,1.1978745963880166,1.2233286675836952,1.250953626510828 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Hazard|Risk score|Population weighted,risk score,1.9072000029492435,1.8964214267909802,1.8878171733367568,1.8814870328104583,1.8770590544983698,1.8744482555690356,1.8727185682845737,1.8717487342457244,1.8717668547584827,1.872152677943652 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Hazard|Risk score|Population weighted,risk score,1.263390396193904,1.250721904231882,1.238665568295189,1.226418946956584,1.215209442174057,1.2060672357156288,1.1990156773964618,1.1948178229566984,1.1938418581248067,1.195321198309643 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Hazard|Risk score|Population weighted,risk score,1.5020476474408586,1.503872275023856,1.5061828382658315,1.5080523306864317,1.5095871182867089,1.5109535271457895,1.5125897862986717,1.5144136903280838,1.5160656295857782,1.5177086105281505 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Hazard|Risk score|Population weighted,risk score,0.9472142461826683,0.9754236112193274,1.0057289035907704,1.0300203628860363,1.048660979513493,1.0613692023386994,1.0682308092811887,1.0706253434284823,1.0713244920374054,1.0716468871492093 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Hazard|Risk score|Population weighted,risk score,0.8439641914499726,0.8454006443319734,0.8462646702410351,0.8468876562273735,0.8474827140936493,0.8479110194987383,0.8482137574640128,0.8485658796433204,0.8486168302537811,0.8488692670237074 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Hazard|Risk score|Population weighted,risk score,2.4115138578497377,2.41794549437381,2.4200802667064596,2.4216548443225308,2.422493716054231,2.423319500466792,2.4241758048578252,2.4248026801681646,2.4249298425025847,2.424471905026281 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Hazard|Risk score|Population weighted,risk score,0.8650193750835419,0.8673066383439708,0.8704272075972823,0.8737206006571412,0.8769627682977765,0.879987716825712,0.8828597402434204,0.8856168980570003,0.8883629305695386,0.8911218914929847 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Hazard|Risk score|Population weighted,risk score,1.285515368575033,1.2861900322085482,1.2868521958581864,1.2876286863404294,1.2884934389929414,1.2892633531688242,1.2901337828624497,1.2910034062855045,1.2919541490614324,1.2928930981961204 +Climate Solutions,ssp3_3p5,EU,cdd|Hazard|Risk score|Population weighted,risk score,1.574183206606376,1.603443334156606,1.633485051799774,1.662140256549177,1.6895845167311876,1.7138606908719694,1.7345389652826406,1.7525264720735356,1.7679327957892383,1.7808383859969017 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population,people,30971.27942085266,37523.482812239046,42537.73603063125,46895.85577625234,50652.72715530523,53512.2209241363,55513.51970981746,57491.06770853896,59953.02084006725,62684.54942266747 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population,people,957611.7014209256,1187612.9461478244,1329890.274856946,1465120.1107945538,1608046.5854651576,1769040.4372719345,1957433.581262131,2193708.5843233494,2492010.809536891,2854975.961941919 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population,people,85998071.49631424,93010327.04687484,114693594.77757587,137800019.810403,161329603.7269143,184756135.80724487,206855366.23563665,227191659.1691277,245737781.76148847,262050707.93153575 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population,people,4253045.020172441,5323851.3523028055,5872548.513002368,6317848.619315852,6655501.842530828,6913244.091895662,7112157.223905365,7281441.408091801,7446863.37670142,7633093.239744706 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population,people,653.3399881720543,987.0019879761264,1035.3874911962419,1060.820787312201,1095.5774790400212,1122.1849896312747,1086.5982317865185,1126.1035716959134,1155.380004416174,1254.716808566353 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population,people,5840129.9449175075,15373663.300760023,17979165.70247175,20470310.668226898,22772613.0101645,24813509.27597423,26649717.604605034,28355765.20468217,29922920.38644781,31129074.46034925 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population,people,21691.0,24362.84560527596,24560.40516620069,23567.263076295487,22961.46997890632,21138.20731456922,20152.475060611865,19214.7079038572,18728.895099447578,17570.504175454786 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population,people,97102173.78223413,127365257.55562286,152687646.3952779,179943667.73964176,210724111.80365822,246924594.77305833,290319047.2104478,343802926.42098373,410936754.7132015,494520395.5592022 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low,people,1544281003.7651806,1847223849.6504228,2098479849.6060913,2327397783.5984025,2531389566.183558,2713049534.7368364,2861495631.9404364,2993068660.316433,3112746619.684835,3223718607.9772105 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low,people,227852633.56713775,263404212.55805615,274953208.80627316,284820573.2262592,293811525.27448535,303677404.70828336,316235148.1814039,333924068.0470431,357870073.7322009,387195077.93729657 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low,people,791423882.0908668,896209670.8457862,1167050161.5056047,1478338675.7739744,1816668450.9765837,2167280205.6249156,2508533574.386873,2829023743.767494,3121821083.239701,3378084745.856435 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|Low,people,286231174.1992432,379087983.1171477,408024530.42469096,427287665.84363514,437603100.9592859,444127262.6602339,448459663.5313883,452002774.6037901,456972748.01185626,463893435.13824564 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low,people,354397026.82265085,447101427.46857446,498071741.48396266,543113088.5414139,581422385.9144671,613480830.1522346,640075538.1868458,663677123.2040205,686449682.6033976,710180765.4190705 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low,people,78869476.67350468,89335407.31523928,95991451.67442612,100667210.45130128,104918371.63281354,107946079.3419947,109636177.80571017,111489918.66667831,114044180.86621888,116438362.24058147 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|Low,people,37323988.4587344,48593577.154781245,47554569.957126275,45841193.21485541,44117479.08455335,42552412.47216812,40950029.02861222,39779142.6913521,39230044.198466726,39109182.03464399 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low,people,201299295.79231143,507358110.03909,597830817.6541764,687947037.9244756,776339573.9300618,858383280.4318534,933733952.4846047,1006548312.5017531,1079203276.7366743,1148899588.2210279 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low,people,68550198.96722922,82441718.88534117,88008126.32090686,92201788.49027623,95949507.4405242,100819742.79177442,106519991.58690509,112759134.14396274,120174604.6121085,128873223.3737581 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low,people,1148782951.412044,1292436952.6671727,1318987364.011149,1302839330.075243,1263772377.801245,1208459465.9913352,1152539022.45965,1109538622.6520376,1083262788.8884745,1068706888.7735784 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|Low,people,4739011631.748902,5857843394.496919,6700408911.403202,7576779656.941999,8567068317.99768,9741690904.583345,11173553385.84739,12974922604.938038,15280255390.520447,18204153925.843437 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|High,people,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|%,%,0.0019837551423237568,0.002010658329937753,0.0020076894743628502,0.0019966945515971814,0.0019837942781486713,0.001956147519648169,0.0019244553968336127,0.0019056519183594952,0.001910943821945195,0.0019291957577228928 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|%,%,0.17436373541873915,0.19185134140973398,0.21160456830808128,0.23188132302290757,0.25446279451318743,0.27951205125586126,0.3069836373756645,0.3377934330212998,0.37205619420665215,0.409926119627057 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|%,%,8.852005614508338,8.40817225608294,7.927486252616986,7.492248938493266,7.117977949564383,6.819283214979291,6.5845486230163,6.403037991451285,6.270159610389483,6.1747109765101875 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|%,%,0.8019509103941984,0.7979709257534778,0.7926638621426011,0.7842731246716108,0.773724084235613,0.7634321819856978,0.754483062580331,0.7466187744107086,0.7396780515508958,0.7341329003555116 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|%,%,0.0005414803951004525,0.0006267968699441194,0.0006708145442929811,0.0007122293774843791,0.0007639019478924081,0.0008107259639013871,0.0008151781464881253,0.0008692310264519211,0.0009034629208742131,0.0009838215459021858 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|%,%,2.900456758893428,3.0294257799572764,3.006759620065709,2.974987762075353,2.9328100398729466,2.890254948960521,2.8536737937457346,2.8167370563405894,2.7723226522653186,2.70912885735758 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|%,%,0.0015752585019513847,0.0015744371773274153,0.0015568467683126743,0.0015140376374425282,0.0015223131883886707,0.0014668025423057644,0.0014675738820398932,0.0014548070845644707,0.0014539167824148124,0.0013841949463645588 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|%,%,1.519821205130784,1.6352214441503625,1.7377884452954264,1.833155928006857,1.9193888534005679,1.9962007598014597,2.06203951402593,2.117326503198517,2.1625075347616156,2.1969907311817156 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|Low|%,%,98.91342688121117,98.98164408523043,99.04372680254664,99.09409684476937,99.14088380203285,99.17594572615359,99.19783037878088,99.21101245205324,99.21574991250853,99.21399004828858 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|Low|%,%,41.48783505340652,42.55128042865547,43.748989036431325,45.077922866017495,46.49374119960624,47.981658599599754,49.595049857152326,51.41856950377082,53.42985557835542,55.59464526264228 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|Low|%,%,81.46332267491128,81.0177270556319,80.66513330052987,80.37793745995478,80.15271640788984,79.9935410198989,79.85077493326168,79.73156486601559,79.65529893970731,79.59794165208272 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|Low|%,%,57.71084863692183,56.86403905535017,55.99336277355383,55.1105823683396,54.27201857728028,53.522083121312924,52.89150469890863,52.44488240337527,52.21528239489977,52.17557866485152 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|Low|%,%,66.82483184480814,67.01425647965902,67.22864346793176,67.41994382362222,67.59227384192141,67.74692207361254,67.90150120848776,68.05160854282924,68.18330591432445,68.30351061075692 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|Low|%,%,28.852257313017702,30.68368907219119,32.6158404353604,34.155217815118775,35.31095175894937,36.074991700944906,36.46712200237895,36.57407351518085,36.58060858298283,36.574386211533046 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|Low|%,%,30.933676773566717,30.85941308229835,30.81000827813955,30.777530848807583,30.761337151912898,30.742120003907107,30.721169780752444,30.70522632381675,30.676392340268087,30.665450295718028 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|Low|%,%,99.97378629381578,99.97641473953936,99.97869711531283,99.98060371198945,99.98222407575722,99.9837022962051,99.98500359626728,99.98608432378411,99.98688803954713,99.98745811156078 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|Low|%,%,22.225126420304107,22.378748039210627,22.58249774796484,22.79435820670626,23.00547996955066,23.200600978508763,23.384457366588737,23.56086812811534,23.736243029137462,23.913744069728732 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|Low|%,%,83.42769402556944,83.52311633047844,83.60860503766946,83.69863631973297,83.78633247851758,83.85627932449297,83.93193204836138,84.00672323038845,84.09326552194112,84.19215862068958 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|Low|%,%,74.17393544088901,75.20788101082145,76.2595629697983,77.18759274942319,78.03347844316521,78.75428854445575,79.36202882683745,79.90667151781436,80.41059125544487,80.87504135973556 +Climate Solutions,ssp3_3p5,Countries of South Asia; primarily India,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Eastern and Western Europe (i.e., the EU28)",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Sub-Saharan Africa,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Other countries of Asia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of Latin America and the Caribbean,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Reforming Economies of Eastern Europe and the Former Soviet Union; primarily Russia,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Pacific OECD,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,"Countries of the Middle East; Iran, Iraq, Israel, Saudi Arabia, Qatar, etc.",cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,North America; primarily the United States of America and Canada,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,Countries of centrally-planned Asia; primarily China,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Climate Solutions,ssp3_3p5,EU,cdd|Exposure|Population|High|%,%,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/rime/utils.py b/rime/utils.py index 03b93cd..113f3f5 100644 --- a/rime/utils.py +++ b/rime/utils.py @@ -4,11 +4,12 @@ import numpy as np import pandas as pd import pyam +import yaml def fix_duplicate_temps(df, years): """ - Function that modifies GMT temperatures by minute increments, in case there are duplicates in the series which would otherwise cause problems with lookup indexing. + Function that modifies GWL temperatures by minute increments, in case there are duplicates in the series which would otherwise cause problems with lookup indexing. Parameters ---------- @@ -89,10 +90,13 @@ def ssp_helper(dft, ssp_meta_col="Ssp_family", default_ssp="SSP2", keep_meta=Tru dft = np.round(dft.as_pandas()[pyam.IAMC_IDX + ["year", "value"] + meta_cols], 3) # Check if SSP denoted by numbers only already? sspdic = {1.0: "SSP1", 2.0: "SSP2", 3.0: "SSP3", 4.0: "SSP4", 5.0: "SSP5"} - dft[ssp_meta_col].replace( - sspdic, inplace=True + dft.replace({ssp_meta_col: + sspdic}, inplace=True ) # metadata must have Ssp_family column. If not SSP2 automatically chosen + dft.loc[dft[ssp_meta_col].isnull(), ssp_meta_col] = default_ssp + dft.loc[dft[ssp_meta_col]=='', ssp_meta_col] = default_ssp + metadata = ( dft[["model", "scenario"] + meta_cols] .drop_duplicates() @@ -115,10 +119,14 @@ def tidy_mapdata(mapdata): """ dvs = mapdata.data_vars - mapdata = mapdata.rename({"threshold": "gmt"}) + if "threshold" in mapdata.coords: + mapdata = mapdata.rename({"threshold": "gwl"}) + if "gmt" in mapdata.coords: + mapdata = mapdata.rename({"gmt": "gwl"}) mapdata = mapdata.set_index( - {"lon": "lon", "lat": "lat", "gmt": "gmt"} + {"lon": "lon", "lat": "lat", "gwl": "gwl"} ).reset_coords() + mapdata = mapdata.sortby('gwl') mapdata = mapdata.drop_vars([x for x in mapdata.data_vars if x not in dvs]) return mapdata @@ -153,3 +161,17 @@ def check_ds_dims(ds): raise ValueError( "The dataset does not contain 'lat' and 'lon' or 'x' and 'y' dimensions." ) + +def load_indicator_params(): + """ + Function to load the indicator parameters to facilitate reading in climate impacts data from Climate Solutions Explorer (Werning et al. 2023 - DOI: https://zenodo.org/doi/10.5281/zenodo.7971429 ) + + Returns + ------- + params : dict + + """ + with open("rime.indicator_params.yml", "r") as f: + params = yaml.full_load(f) + + return params \ No newline at end of file diff --git a/rime/wip_scraps/calc_tcre.py b/rime/wip_scraps/calc_tcre.py index 0ea18c3..768be53 100644 --- a/rime/wip_scraps/calc_tcre.py +++ b/rime/wip_scraps/calc_tcre.py @@ -15,7 +15,7 @@ from scipy.stats import linregress import matplotlib.pyplot as plt import numpy as np - from rime_functions import co2togmt_simple + from rime_functions import co2togwl_simple fd = "C:\\Users\\byers\\IIASA\\IPCC WG3 Chapter 3 - Documents\\IPCC_AR6DB\\snapshots\\snapshot_ar6_public_v1.1\\uploaded\\" world_filename = "AR6_Scenarios_Database_World_v1.1.csv" @@ -58,6 +58,6 @@ plt.plot(x, intercept + slope * x, "r", label="fitted line") # %% Examples - co2togmt_simple(np.array([500, 600, 800]), regr={"slope": 0.0004, "intercept": 1.4}) + co2togwl_simple(np.array([500, 600, 800]), regr={"slope": 0.0004, "intercept": 1.4}) - co2togmt_simple(x, dfm[[meta_cumNZ, meta_pw50]]) + co2togwl_simple(x, dfm[[meta_cumNZ, meta_pw50]]) diff --git a/rime/wip_scraps/first_plots.py b/rime/wip_scraps/first_plots.py index 0de877c..d5ff810 100644 --- a/rime/wip_scraps/first_plots.py +++ b/rime/wip_scraps/first_plots.py @@ -105,7 +105,7 @@ dfar6 = pyam.IamDataFrame(meta_folder + world_filename) dfar6.load_meta(meta_folder + meta_file) -# %% GMT plots for presentation +# %% GWL plots for presentation dfe = dfar6.filter( diff --git a/rime/wip_scraps/plot_dashboards.py b/rime/wip_scraps/plot_dashboards.py index fd883ab..807239a 100644 --- a/rime/wip_scraps/plot_dashboards.py +++ b/rime/wip_scraps/plot_dashboards.py @@ -59,7 +59,7 @@ "wsi", ] # indicators = ['seas'] -gmt_threshold = 3.0 +gwl_threshold = 3.0 # %% Functions # ----------------------------------------------------------------------------- @@ -162,21 +162,21 @@ def bin_data(data, bins): ) # Select variable and rename it - future_data = future.sel({"threshold": gmt_threshold}) + future_data = future.sel({"threshold": gwl_threshold}) future_data = future_data[var][1, :, :].rename( - str(gmt_threshold).replace(".", "p") + str(gwl_threshold).replace(".", "p") ) - # plot_future = future_data.hvplot(x='lon', y='lat', shared_axes=False, cmap = params["indicators"][ind][var]['ind_cmap'], clim=(params["indicators"][ind][var]['ind_min'], params["indicators"][ind][var]['ind_max']), title=f'Absolute - {str(gmt_threshold).replace(".", "p")}') + # plot_future = future_data.hvplot(x='lon', y='lat', shared_axes=False, cmap = params["indicators"][ind][var]['ind_cmap'], clim=(params["indicators"][ind][var]['ind_min'], params["indicators"][ind][var]['ind_max']), title=f'Absolute - {str(gwl_threshold).replace(".", "p")}') # Select variable and rename it - diff_data = diff.sel({"threshold": gmt_threshold}) + diff_data = diff.sel({"threshold": gwl_threshold}) diff_data = diff_data[var][0].rename("diff") - # plot_diff = diff_data.hvplot(x='lon', y='lat', shared_axes=False, cmap=params["indicators"][ind][var]['diff_cmap'], clim=(params["indicators"][ind][var]['diff_min'], params["indicators"][ind][var]['diff_max']), title=f'Difference - {str(gmt_threshold).replace(".", "p")}') + # plot_diff = diff_data.hvplot(x='lon', y='lat', shared_axes=False, cmap=params["indicators"][ind][var]['diff_cmap'], clim=(params["indicators"][ind][var]['diff_min'], params["indicators"][ind][var]['diff_max']), title=f'Difference - {str(gwl_threshold).replace(".", "p")}') # Select variable and rename it - score_data = scores.sel({"threshold": gmt_threshold}) + score_data = scores.sel({"threshold": gwl_threshold}) score_data = score_data[var][0].rename("score") - # plot_score = score_data.hvplot(x='lon', y='lat', cmap='magma_r', shared_axes=False, title=f'Score - {str(gmt_threshold).replace(".", "p")}') + # plot_score = score_data.hvplot(x='lon', y='lat', cmap='magma_r', shared_axes=False, title=f'Score - {str(gwl_threshold).replace(".", "p")}') # Load standard deviation data, apply land mask, remove inf and rename std_dev = hft.load_netcdf( @@ -200,10 +200,10 @@ def bin_data(data, bins): # hist_plot.ax_marg_x.set_xlim(0, 1800) # hist_plot.ax_marg_y.set_ylim(0, 50) # hist_plot.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_joint_hist_std_change.png')) - # future_plot = sns.jointplot(x=future_data.to_dataframe()[str(gmt_threshold).replace(".", "p")], y=std_change.to_dataframe()['std_change']) + # future_plot = sns.jointplot(x=future_data.to_dataframe()[str(gwl_threshold).replace(".", "p")], y=std_change.to_dataframe()['std_change']) # future_plot.ax_marg_x.set_xlim(0, 1800) # future_plot.ax_marg_y.set_ylim(0, 50) - # future_plot.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_joint_{str(gmt_threshold).replace(".", "p")}_std_change.png')) + # future_plot.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_joint_{str(gwl_threshold).replace(".", "p")}_std_change.png')) joint_merged = xr.merge([hist_data, std_change]).to_dataframe() # plot_joint_hist = joint_merged.hvplot.scatter(x='hist', y='std_change', shared_axes=False, cmap=['blue'], title='Joint plot hist - z score') @@ -255,10 +255,10 @@ def bin_data(data, bins): [future_data, std_change, future_bivariate] ).to_dataframe() # plot_joint_hist_quartiles = joint_hist_quartiles_merged.hvplot.scatter(x='hist', y='std_change', color='std_score', cmap=explicit_mapping, title='Joint plot hist - z score quartiles') - # plot_joint_future_quartiles = joint_future_quartiles_merged.hvplot.scatter(x=f'{str(gmt_threshold).replace(".", "p")}', y='std_change', color='std_score', cmap=explicit_mapping, title=f'Joint plot {str(gmt_threshold).replace(".", "p")} - z score quartiles') + # plot_joint_future_quartiles = joint_future_quartiles_merged.hvplot.scatter(x=f'{str(gwl_threshold).replace(".", "p")}', y='std_change', color='std_score', cmap=explicit_mapping, title=f'Joint plot {str(gwl_threshold).replace(".", "p")} - z score quartiles') # plot_joint_hist_quartiles = joint_hist_quartiles_merged.hvplot.scatter(x='hist', y='std_change', color='std_score', cmap='magma_r', title='Joint plot hist - z score quartiles').redim.range(std_score=(0, 6)) - # plot_joint_future_quartiles = joint_future_quartiles_merged.hvplot.points(x=f'{str(gmt_threshold).replace(".", "p")}', y='std_change', color='std_score', cmap='magma_r', title=f'Joint plot {str(gmt_threshold).replace(".", "p")} - z score quartiles').redim.range(std_score=(0, 6)) + # plot_joint_future_quartiles = joint_future_quartiles_merged.hvplot.points(x=f'{str(gwl_threshold).replace(".", "p")}', y='std_change', color='std_score', cmap='magma_r', title=f'Joint plot {str(gwl_threshold).replace(".", "p")} - z score quartiles').redim.range(std_score=(0, 6)) # # Joint plot - coloured with score # joint_hist = xr.merge([hist_data, std_change, hist_bivariate]).to_dataframe() @@ -301,7 +301,7 @@ def bin_data(data, bins): # fig = plt.figure() # kg_future_bivariate.plot(cmap='magma_r', vmin=0, vmax=6) - # plt.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_kg_class_{k}_score_{str(gmt_threshold).replace(".", "p")}.png')) + # plt.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_kg_class_{k}_score_{str(gwl_threshold).replace(".", "p")}.png')) # plt.close() # plot_kg_score_quartile = kg_future_all.hvplot(x='lon', y='lat', cmap='magma_r', shared_axes=False, clim=(0,6), title='Score - Quartiles - KG') @@ -326,9 +326,9 @@ def bin_data(data, bins): [future_data, std_change, kg_future_all] ).to_dataframe() # plot_joint_hist_kg_quartiles = joint_hist_kg_quartiles_merged.hvplot.scatter(x='hist', y='std_change', by='std_score', color=color_cycle, title='Joint plot hist - z score quartiles KG') - # plot_joint_future_kg_quartiles = joint_future_kg_quartiles_merged.hvplot.scatter(x=f'{str(gmt_threshold).replace(".", "p")}', y='std_change', by='std_score', color=color_cycle, title=f'Joint plot {str(gmt_threshold).replace(".", "p")} - z score quartiles KG') + # plot_joint_future_kg_quartiles = joint_future_kg_quartiles_merged.hvplot.scatter(x=f'{str(gwl_threshold).replace(".", "p")}', y='std_change', by='std_score', color=color_cycle, title=f'Joint plot {str(gwl_threshold).replace(".", "p")} - z score quartiles KG') # plot_joint_hist_kg_quartiles = joint_hist_kg_quartiles_merged.hvplot.scatter(x='hist', y='std_change', color='std_score', cmap='magma_r', title='Joint plot hist - z score quartiles KG').redim.range(std_score=(0, 6)) - # plot_joint_future_kg_quartiles = joint_future_kg_quartiles_merged.hvplot.scatter(x=f'{str(gmt_threshold).replace(".", "p")}', y='std_change', color='std_score', cmap='magma_r', title=f'Joint plot {str(gmt_threshold).replace(".", "p")} - z score quartiles KG').redim.range(std_score=(0, 6)) + # plot_joint_future_kg_quartiles = joint_future_kg_quartiles_merged.hvplot.scatter(x=f'{str(gwl_threshold).replace(".", "p")}', y='std_change', color='std_score', cmap='magma_r', title=f'Joint plot {str(gwl_threshold).replace(".", "p")} - z score quartiles KG').redim.range(std_score=(0, 6)) # print('saving plot') # plot_list = [plot_future, plot_diff, plot_score, @@ -343,16 +343,16 @@ def bin_data(data, bins): plot_list = plot_list + [plot_kg_score_quartile] # plot = hv.Layout(plot_list).cols(3) - # hvplot.save(plot, f'{params["indicators"][ind][var]["short_name"]}_bivariate_dashboard_{str(gmt_threshold).replace(".", "p")}_interp.html') + # hvplot.save(plot, f'{params["indicators"][ind][var]["short_name"]}_bivariate_dashboard_{str(gwl_threshold).replace(".", "p")}_interp.html') plot = ( hv.Layout(plot_list) .cols(3) - .opts(title=f'{str(gmt_threshold).replace(".", "p")}') + .opts(title=f'{str(gwl_threshold).replace(".", "p")}') ) hvplot.save( plot, - f'All_indicators_bivariate_dashboard_{str(gmt_threshold).replace(".", "p")}_interp.html', + f'All_indicators_bivariate_dashboard_{str(gwl_threshold).replace(".", "p")}_interp.html', ) # fig = plt.figure() @@ -362,7 +362,7 @@ def bin_data(data, bins): # fig = plt.figure() # kg_future_all.kg_class.plot(cmap='magma_r', vmin=0, vmax=6) - # plt.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_kg_quartiles_score_{str(gmt_threshold).replace(".", "p")}.png')) + # plt.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_kg_quartiles_score_{str(gwl_threshold).replace(".", "p")}.png')) # plt.close() # Manual bins @@ -376,7 +376,7 @@ def bin_data(data, bins): # fig = plt.figure() # future_bivariate.plot(cmap='magma_r', vmin=0, vmax=6) - # plt.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_quartiles_score_{str(gmt_threshold).replace(".", "p")}.png')) + # plt.savefig(os.path.join(plot_dir, f'{params["indicators"][ind][var]["short_name"]}_quartiles_score_{str(gwl_threshold).replace(".", "p")}.png')) # plt.close() # temp4 = bin_data(t20_std_change, [1, 2, 3])