From e397f2ea38127116df760d848c0fcebbbedf319d Mon Sep 17 00:00:00 2001 From: JanataPavel <62595603+JanataPavel@users.noreply.github.com> Date: Fri, 11 Sep 2020 13:17:39 +0200 Subject: [PATCH] OxCGRT data merge, npi model computation docker deployment (#523) * 504 - Extending the NPI model data * added a dummy featrues for every intervention which is turned on when a intervention is turned of for the first time and turned of when the original intervention is put in place again. * extended the data for another month by using th last know countermeasures in each region and data from johns hopkins * fixed workflow yaml * fixed workflow yml * maybe resolving failing dependency installation in github actions by updating pip and setuptools * fixed the extension of data, removed the cancled columns from intervention json * Introduce new intervention icons * Fix linting * Show NPI model chart only for model channel * extrapolating data * fixed data preprocessing - removing deaths from countermeasures * short-term model improvements * extrapolation * added extrapolation date * Merge OxCGRT countermeasure data * poetry update * Merged NPI data from OxCGRT Prepared docker container which can be run on GCP compute instances from github pipelines defined conda environment to accelerate the computation of the npi model * fixed invalid github workflow yml * add upload data step, removed decrypt secrets to workflow * fixed upload data step * moved GCP setup in workflow, added extrapolation perriod to the model * fixed extrapolation period argument * removed steps from compute npi workflow * don't run previous steps in workflows, instead download the latest r_estimates.csv inside docker. The other steps are quick Created a script which deletes the instance when docker exits. This script is copied to the GCP console, but I included it in the repo for consistency * fixed create-with-container command in workflow * added env file in compute-npi-model to hopefully fix the gcloud command * fixed workflow * fixed workflow * set region for compute * use different service account * update gcloud in workflow * changed order of arguments * screw instance templates, it just refuses to work - defining the instance in the command * set gcp project in workflow * fixed typo * pass foretold channel env variable directly * fixed parameter name * appending newline to env file * debugging workflow * redefine the machine * the cpu has to also be specified * dropped the machine type added vm type instead * added scopes to the vm instance, so that it can pull docker image * fixed syntax * building docker container, debugging startup script * use url to pass the startup script to the instance * extracting branch name, refactoring workflow * reformatted workflow yml * fixed workflow step * make sure the startup script won't block model * trying it without the startup script * another try to not block the npi model by startup script * more disk-space (conda image is large), debugging startup script * fixed preprocessing of countermeasures, debugging startup script * removed the startup script, killing the instance from the docker container, reformatted code * fixed linting after black update * Filter out subregions from OxCGRT data * OxCGRT added data for subregions (e.g. US states) which broke the pipeline. Fix is to filter it out, but we might use them in the future * fixed key passing to the container * Strip the quotes from the key - they are necessary when passing them in the env file * fixed run model script * fixed extrapolation date, changed channel, run on 40 countries * small fixes * Triggering the npi-model computing workflow manually * More tune interactions of the model (to hopefully shrink the confidence interval) * Made sure that each NUTS sampling process created by pymc3 only uses one thread - The parallelization doesn't work and this greatly speeds up the computation * fixed lining * pre-PR clean-up * lgtm based fixes Co-authored-by: Marek Pukaj --- .github/workflows/compute-npi-model.yml | 73 + conda-requirements.txt | 228 + data-pipeline/Dockerfile.conda | 27 + .../{Dockerfile => Dockerfile.poetry} | 0 data-pipeline/conda-enviroment.yml | 123 + .../manual/countermeasures_model_data.csv | 9227 ++++++++++------- data-pipeline/docker-compose.yaml | 17 +- data-pipeline/epimodel/exports/__init__.py | 24 + .../epimodel/exports/epidemics_org.py | 42 +- .../epimodel/exports/npi_model_export.py | 176 + data-pipeline/epimodel/imports/__init__.py | 2 + data-pipeline/epimodel/imports/common.py | 11 + .../epimodel/imports/interventions.py | 15 +- data-pipeline/epimodel/imports/merge_npi.py | 182 + .../imports/oxford_goverment_response.py | 64 + .../cm_effect/datapreprocessor.py | 38 +- .../epimodel/pymc3_models/cm_effect/models.py | 11 +- .../pymc3_models/cm_effect/pipeline.py | 10 +- data-pipeline/epimodel/tasks.py | 162 +- data-pipeline/luigi.cfg | 28 +- data-pipeline/poetry.lock | 206 +- data-pipeline/pyproject.toml | 4 + data-pipeline/scripts/run_model.sh | 24 + 23 files changed, 6628 insertions(+), 4066 deletions(-) create mode 100644 .github/workflows/compute-npi-model.yml create mode 100644 conda-requirements.txt create mode 100644 data-pipeline/Dockerfile.conda rename data-pipeline/{Dockerfile => Dockerfile.poetry} (100%) create mode 100644 data-pipeline/conda-enviroment.yml create mode 100644 data-pipeline/epimodel/exports/npi_model_export.py create mode 100644 data-pipeline/epimodel/imports/common.py create mode 100644 data-pipeline/epimodel/imports/merge_npi.py create mode 100644 data-pipeline/epimodel/imports/oxford_goverment_response.py create mode 100644 data-pipeline/scripts/run_model.sh diff --git a/.github/workflows/compute-npi-model.yml b/.github/workflows/compute-npi-model.yml new file mode 100644 index 00000000..4406c95c --- /dev/null +++ b/.github/workflows/compute-npi-model.yml @@ -0,0 +1,73 @@ +name: Compute npi-model and upload + +on: + workflow_dispatch: + inputs: + channel_name: + description: 'Name of the channel to which the results of the model will be uploaded' + required: true + default: 'model' + +jobs: + NPI-model-computation: + runs-on: ubuntu-latest + env: + RUN_REGION: us-west1-c + IMAGE_NAME: npi-model + + steps: + - name: Checkout + uses: actions/checkout@master + + - name: Checkout data repo + uses: actions/checkout@v2 + with: + repository: epidemics/epimodel-covid-data + path: data-pipeline/data + + - uses: GoogleCloudPlatform/github-actions/setup-gcloud@master + name: Setup Google Cloud Platform + with: + version: '290.0.1' + service_account_email: ${{ secrets.COMPUTE_SA_EMAIL }} + service_account_key: ${{ secrets.GOOGLE_COMPUTE_CREDENTIALS }} + + # Configure docker to use the gcloud command-line tool as a credential helper + - run: | + gcloud auth configure-docker + + # Build the Docker image + - name: Build Docker + working-directory: data-pipeline + run: | + docker build -t gcr.io/${{ secrets.GKE_PROJECT }}/$IMAGE_NAME:$GITHUB_SHA -f Dockerfile.conda . + + # Push the Docker image to Google Container Registry + - name: Publish Docker + run: | + docker push gcr.io/${{ secrets.GKE_PROJECT }}/$IMAGE_NAME:$GITHUB_SHA + + - name: Google cloud run setup + env: + GCP_KEY: ${{ secrets.NPI_MODEL_SERVICE_ACCOUNT_KEY }} + run: | + echo -E "GCP_KEY='${GCP_KEY}'" > .env + echo "FORETOLD_CHANNEL=${{ secrets.FORETOLD_CHANNEL }}" >> .env + echo "INSTANCE_NAME=$IMAGE_NAME" >> .env + echo "PROJECT_NAME=${{ secrets.GKE_PROJECT }}" >> .env + gcloud config set compute/zone $RUN_REGION + gcloud config set project ${{ secrets.GKE_PROJECT }} + + - name: Run model and upload results + run: | + gcloud compute instances create-with-container $IMAGE_NAME \ + --zone $RUN_REGION \ + --image-project cos-cloud \ + --image-family cos-stable \ + --boot-disk-size 15GB \ + --machine-type n2-custom-2-20480-ext \ + --scopes default \ + --container-restart-policy never \ + --container-image "gcr.io/${{ secrets.GKE_PROJECT }}/${IMAGE_NAME}:${GITHUB_SHA}" \ + --container-env-file .env \ + --container-arg ${{ github.event.inputs.channel_name }} diff --git a/conda-requirements.txt b/conda-requirements.txt new file mode 100644 index 00000000..afb30bbf --- /dev/null +++ b/conda-requirements.txt @@ -0,0 +1,228 @@ +# This file may be used to create an environment using: +# $ conda create --name --file +# platform: linux-64 +_libgcc_mutex=0.1=main +_pytorch_select=0.2=gpu_0 +appdirs=1.4.4=py_0 +arviz=0.8.3=py_0 +attrs=19.3.0=py_0 +backcall=0.2.0=py_0 +binutils_impl_linux-64=2.33.1=he6710b0_7 +binutils_linux-64=2.33.1=h9595d00_15 +black=19.10b0=py_0 +blas=1.0=mkl +bleach=3.1.5=py_0 +blinker=1.4=py36_0 +blosc=1.19.0=hd408876_0 +bzip2=1.0.8=h7b6447c_0 +ca-certificates=2020.6.20=hecda079_0 +cachetools=3.1.1=py_0 +cairo=1.14.12=h8948797_3 +certifi=2020.6.20=py36h9f0ad1d_0 +cffi=1.14.0=py36h2e261b9_0 +cfgv=3.1.0=py_0 +cftime=1.1.3=py36h785e9b2_0 +chardet=3.0.4=py36_1003 +click=7.1.2=py_0 +colorama=0.4.3=py_0 +coloredlogs=14.0=py36h9f0ad1d_1 +contextvars=2.4=py_0 +cryptography=2.9.2=py36h1ba5d50_0 +cudatoolkit=10.1.243=h6bb024c_0 +cudnn=7.6.5=cuda10.1_0 +curl=7.71.1=hbc83047_1 +cycler=0.10.0=py36_0 +dbus=1.13.16=hb2f20db_0 +decorator=4.4.2=py_0 +defusedxml=0.6.0=py_0 +distlib=0.3.0=pyh9f0ad1d_0 +docutils=0.16=py36_1 +editdistance=0.5.3=py36h831f99a_1 +entrypoints=0.3=py36_0 +expat=2.2.9=he6710b0_2 +fastprogress=0.2.3=py_0 +filelock=3.0.12=py_0 +fontconfig=2.13.0=h9420a91_0 +freetype=2.10.2=h5ab3b9f_0 +fribidi=1.0.9=h7b6447c_0 +future=0.18.2=py36_1 +gcc_impl_linux-64=7.3.0=habb00fd_1 +gcc_linux-64=7.3.0=h553295d_15 +gitdb=4.0.5=py_0 +gitpython=3.1.3=py_1 +glib=2.63.1=h5a9c865_0 +google-auth=1.17.2=py_0 +google-auth-oauthlib=0.4.1=py_2 +graphite2=1.3.14=h23475e2_0 +graphviz=2.40.1=h21bd128_2 +gspread=3.6.0=pyh9f0ad1d_0 +gst-plugins-base=1.14.0=hbbd80ab_1 +gstreamer=1.14.0=hb453b48_1 +gxx_impl_linux-64=7.3.0=hdf63c60_1 +gxx_linux-64=7.3.0=h553295d_15 +h5py=2.10.0=py36h7918eee_0 +harfbuzz=1.8.8=hffaf4a1_0 +hdf4=4.2.13=h3ca952b_2 +hdf5=1.10.4=hb1b8bf9_0 +httplib2=0.18.1=pyh9f0ad1d_0 +humanfriendly=8.2=py36_0 +icu=58.2=he6710b0_3 +identify=1.4.19=pyh9f0ad1d_0 +idna=2.9=py_1 +immutables=0.14=py36h8c4c3a4_0 +importlib-metadata=1.7.0=py36_0 +importlib_metadata=1.7.0=0 +importlib_resources=1.4.0=py36_0 +intel-openmp=2020.1=217 +ipykernel=5.3.0=py36h5ca1d4c_0 +ipython=7.15.0=py36_0 +ipython_genutils=0.2.0=py36_0 +ipywidgets=7.5.1=py_0 +jedi=0.17.0=py36_0 +jinja2=2.11.2=py_0 +jpeg=9b=h024ee3a_2 +json5=0.9.5=py_0 +jsonschema=3.2.0=py36_0 +jupyter=1.0.0=py36_7 +jupyter_client=6.1.6=py_0 +jupyter_console=6.1.0=py_0 +jupyter_core=4.6.3=py36_0 +jupyterlab=2.1.5=py_0 +jupyterlab_server=1.2.0=py_0 +kiwisolver=1.2.0=py36hfd86e86_0 +krb5=1.18.2=h173b8e3_0 +ld_impl_linux-64=2.33.1=h53a641e_7 +libcurl=7.71.1=h20c2e04_1 +libedit=3.1.20191231=h14c3975_1 +libffi=3.2.1=hd88cf55_4 +libgcc-ng=9.1.0=hdf63c60_0 +libgfortran-ng=7.3.0=hdf63c60_0 +libgpuarray=0.7.6=h14c3975_0 +libnetcdf=4.7.3=hb80b6cc_0 +libpng=1.6.37=hbc83047_0 +libsodium=1.0.18=h7b6447c_0 +libssh2=1.9.0=h1ba5d50_1 +libstdcxx-ng=9.1.0=hdf63c60_0 +libtiff=4.1.0=h2733197_1 +libuuid=1.0.3=h1bed415_2 +libxcb=1.14=h7b6447c_0 +libxml2=2.9.10=he19cac6_1 +lockfile=0.12.2=py36_0 +luigi=2.8.13=py36h9f0ad1d_0 +lz4-c=1.9.2=he6710b0_1 +lzo=2.10=h7b6447c_2 +mako=1.1.3=py_0 +markupsafe=1.1.1=py36h7b6447c_0 +matplotlib=3.2.2=0 +matplotlib-base=3.2.2=py36hef1b27d_0 +mistune=0.8.4=py36h7b6447c_0 +mkl=2020.1=217 +mkl-service=2.3.0=py36he904b0f_0 +mkl_fft=1.1.0=py36h23d657b_0 +mkl_random=1.1.1=py36h0573a6f_0 +mock=4.0.2=py_0 +more-itertools=8.4.0=py_0 +mypy_extensions=0.4.3=py36_0 +nbconvert=5.6.1=py36_0 +nbdime=2.0.0=py_1 +nbformat=5.0.7=py_0 +ncurses=6.2=he6710b0_1 +netcdf4=1.5.3=py36hbf33ddf_0 +ninja=1.10.0=py36hfd86e86_0 +nodeenv=1.4.0=pyh9f0ad1d_0 +notebook=6.0.3=py36_0 +numexpr=2.7.1=py36h423224d_0 +numpy=1.19.1=py36hbc911f0_0 +numpy-base=1.19.1=py36hfa32c7d_0 +oauth2client=4.1.3=py_0 +oauthlib=3.1.0=py_0 +openssl=1.1.1g=h516909a_1 +opt-einsum=3.0.0=py_0 +packaging=20.4=py_0 +pandas=1.0.5=py36h0573a6f_0 +pandoc=2.10=0 +pandocfilters=1.4.2=py36_1 +pango=1.42.4=h049681c_0 +parso=0.7.0=py_0 +pathspec=0.8.0=pyh9f0ad1d_0 +patsy=0.5.1=py36_0 +pcre=8.44=he6710b0_0 +pexpect=4.8.0=py36_0 +pickleshare=0.7.5=py36_0 +pip=20.2.2=py36_0 +pixman=0.40.0=h7b6447c_0 +plotly=4.8.1=py_0 +pluggy=0.13.1=py36_0 +pre-commit=2.5.1=py36h9f0ad1d_0 +prometheus_client=0.5.0=py36_0 +prompt-toolkit=3.0.5=py_0 +prompt_toolkit=3.0.5=0 +ptyprocess=0.6.0=py36_0 +py=1.8.2=py_0 +pyasn1=0.4.8=py_0 +pyasn1-modules=0.2.7=py_0 +pycparser=2.20=py_2 +pygments=2.6.1=py_0 +pygpu=0.7.6=py36heb32a55_0 +pyjwt=1.7.1=py36_0 +pymc3=3.9.1=py_0 +pyopenssl=19.1.0=py_1 +pyparsing=2.4.7=py_0 +pyqt=5.9.2=py36h05f1152_2 +pyro4=4.80=pyh9f0ad1d_0 +pyrsistent=0.16.0=py36h7b6447c_0 +pysocks=1.7.1=py36_0 +pytables=3.6.1=py36h71ec239_0 +pytest=5.4.3=py36_0 +python=3.6.10=hcf32534_1 +python-daemon=2.2.4=py36_1 +python-dateutil=2.8.1=py_0 +python_abi=3.6=1_cp36m +pytorch=1.4.0=cuda101py36h02f0884_0 +pytz=2020.1=py_0 +pyyaml=5.3.1=py36h7b6447c_1 +pyzmq=19.0.1=py36he6710b0_1 +qt=5.9.7=h5867ecd_1 +qtconsole=4.7.4=py_0 +qtpy=1.9.0=py_0 +readline=8.0=h7b6447c_0 +regex=2020.6.8=py36h7b6447c_0 +requests=2.24.0=py_0 +requests-oauthlib=1.3.0=py_0 +retrying=1.3.3=py36_2 +rsa=4.4=pyh9f0ad1d_0 +scipy=1.5.0=py36h0b6359f_0 +seaborn=0.10.1=py_0 +send2trash=1.5.0=py36_0 +serpent=1.30.2=py_0 +setuptools=49.2.1=py36_0 +sip=4.19.8=py36hf484d3e_0 +six=1.15.0=py_0 +smmap=3.0.4=py_0 +snappy=1.1.8=he6710b0_0 +sqlite=3.32.3=h62c20be_0 +terminado=0.8.3=py36_0 +testpath=0.4.4=py_0 +theano=1.0.4=py36hfd86e86_0 +tk=8.6.10=hbc83047_0 +toml=0.10.1=py_0 +tornado=5.1.1=py36h7b6447c_0 +tqdm=4.46.1=py_0 +traitlets=4.3.3=py36_0 +typed-ast=1.4.1=py36h7b6447c_0 +typing-extensions=3.7.4.2=0 +typing_extensions=3.7.4.2=py_0 +unidecode=1.1.1=py_0 +urllib3=1.22=py36hbe7ace6_0 +virtualenv=20.0.20=py36h9f0ad1d_1 +wcwidth=0.2.4=py_0 +webencodings=0.5.1=py36_1 +wheel=0.34.2=py36_0 +widgetsnbextension=3.5.1=py36_0 +xarray=0.15.1=py_0 +xz=5.2.5=h7b6447c_0 +yaml=0.2.5=h7b6447c_0 +zeromq=4.3.2=he6710b0_2 +zipp=3.1.0=py_0 +zlib=1.2.11=h7b6447c_3 +zstd=1.4.5=h9ceee32_0 \ No newline at end of file diff --git a/data-pipeline/Dockerfile.conda b/data-pipeline/Dockerfile.conda new file mode 100644 index 00000000..dc682669 --- /dev/null +++ b/data-pipeline/Dockerfile.conda @@ -0,0 +1,27 @@ +FROM continuumio/anaconda3:2020.07 + +WORKDIR /app + +RUN apt-get update && apt-get install -y \ + g++ \ + && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +ENV ENV_NAME=covid + +COPY conda-enviroment.yml ./ +RUN conda env create -f conda-enviroment.yml + +ENV PATH /opt/conda/envs/${ENV_NAME}/bin:$PATH +RUN /bin/bash -c "source activate ${ENV_NAME}" + + +RUN curl -sSL https://sdk.cloud.google.com | bash +ENV PATH $PATH:/root/google-cloud-sdk/bin + +COPY epimodel epimodel +COPY data-dir data-dir +COPY run_luigi luigi.cfg logging.conf scripts/run_model.sh ./ + +ENTRYPOINT ["/bin/bash", "run_model.sh"] \ No newline at end of file diff --git a/data-pipeline/Dockerfile b/data-pipeline/Dockerfile.poetry similarity index 100% rename from data-pipeline/Dockerfile rename to data-pipeline/Dockerfile.poetry diff --git a/data-pipeline/conda-enviroment.yml b/data-pipeline/conda-enviroment.yml new file mode 100644 index 00000000..e3707b7c --- /dev/null +++ b/data-pipeline/conda-enviroment.yml @@ -0,0 +1,123 @@ +name: covid +channels: + - defaults + - conda-forge +dependencies: + - _libgcc_mutex=0.1=main + - arviz=0.6.1=py_0 + - binutils_impl_linux-64=2.33.1=he6710b0_7 + - binutils_linux-64=2.33.1=h9595d00_15 + - blas=2.11=openblas + - blinker=1.4=py37_0 + - blosc=1.19.0=hd408876_0 + - brotlipy=0.7.0=py37h7b6447c_1000 + - bzip2=1.0.8=h7b6447c_0 + - ca-certificates=2020.6.24=0 + - cachetools=4.1.1=py_0 + - certifi=2020.6.20=py37_0 + - cffi=1.14.1=py37he30daa8_0 + - cftime=1.2.1=py37heb32a55_0 + - chardet=3.0.4=py37_1003 + - click=7.1.2=py_0 + - coloredlogs=14.0=py37hc8dfbb8_1 + - cryptography=2.9.2=py37h1ba5d50_0 + - curl=7.71.1=hbc83047_1 + - cycler=0.10.0=py37_0 + - docutils=0.16=py37_1 + - freetype=2.10.2=h5ab3b9f_0 + - gcc_impl_linux-64=7.3.0=habb00fd_1 + - gcc_linux-64=7.3.0=h553295d_15 + - google-auth=1.20.1=py_0 + - google-auth-oauthlib=0.4.1=py_2 + - gspread=3.6.0=pyh9f0ad1d_0 + - gxx_impl_linux-64=7.3.0=hdf63c60_1 + - gxx_linux-64=7.3.0=h553295d_15 + - h5py=2.10.0=py37h7918eee_0 + - hdf4=4.2.13=h3ca952b_2 + - hdf5=1.10.4=hb1b8bf9_0 + - httplib2=0.18.1=pyh9f0ad1d_0 + - humanfriendly=8.2=py37_0 + - icu=58.2=he6710b0_3 + - idna=2.10=py_0 + - intel-openmp=2019.4=243 + - jpeg=9b=h024ee3a_2 + - kiwisolver=1.2.0=py37hfd86e86_0 + - krb5=1.18.2=h173b8e3_0 + - ld_impl_linux-64=2.33.1=h53a641e_7 + - libblas=3.8.0=11_openblas + - libcblas=3.8.0=11_openblas + - libcurl=7.71.1=h20c2e04_1 + - libedit=3.1.20191231=h14c3975_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libgpuarray=0.7.6=h14c3975_0 + - liblapack=3.8.0=11_openblas + - liblapacke=3.8.0=11_openblas + - libnetcdf=4.7.3=hb80b6cc_0 + - libopenblas=0.3.6=h5a2b251_2 + - libpng=1.6.37=hbc83047_0 + - libssh2=1.9.0=h1ba5d50_1 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - lockfile=0.12.2=py37_0 + - luigi=3.0.0=py37_0 + - lz4-c=1.9.2=he6710b0_1 + - lzo=2.10=h7b6447c_2 + - mako=1.1.3=py_0 + - markupsafe=1.1.1=py37h14c3975_1 + - matplotlib-base=3.2.2=py37hef1b27d_0 + - mkl=2019.0=118 + - mock=4.0.2=py_0 + - ncurses=6.2=he6710b0_1 + - netcdf4=1.5.3=py37hbf33ddf_0 + - numexpr=2.7.1=py37h7ea95a0_0 + - numpy=1.19.1=py37h30dfecb_0 + - numpy-base=1.19.1=py37h75fe3a5_0 + - oauth2client=4.1.3=py_0 + - oauthlib=3.1.0=py_0 + - openssl=1.1.1g=h7b6447c_0 + - packaging=20.4=py_0 + - pandas=1.1.0=py37he6710b0_0 + - patsy=0.5.1=py37_0 + - pip=20.2.2=py37_0 + - plotly=4.9.0=py_0 + - pyasn1=0.4.8=py_0 + - pyasn1-modules=0.2.7=py_0 + - pycparser=2.20=py_2 + - pygpu=0.7.6=py37heb32a55_0 + - pyjwt=1.7.1=py37_0 + - pymc3=3.8=py_0 + - pyopenssl=19.1.0=py_1 + - pyparsing=2.4.7=py_0 + - pysocks=1.7.1=py37_1 + - pytables=3.6.1=py37h71ec239_0 + - python=3.7.7=hcff3b4d_5 + - python-daemon=2.2.3=py37_0 + - python-dateutil=2.8.1=py_0 + - python_abi=3.7=1_cp37m + - pytz=2020.1=py_0 + - pyyaml=5.3.1=py37h7b6447c_1 + - readline=8.0=h7b6447c_0 + - requests=2.24.0=py_0 + - requests-oauthlib=1.3.0=py_0 + - retrying=1.3.3=py37_2 + - rsa=4.6=py_0 + - scipy=1.5.0=py37habc2bb6_0 + - setuptools=49.6.0=py37_0 + - six=1.15.0=py_0 + - snappy=1.1.8=he6710b0_0 + - sqlite=3.32.3=h62c20be_0 + - theano=1.0.5=py37h3340039_0 + - tk=8.6.10=hbc83047_0 + - tornado=5.1.1=py37h7b6447c_0 + - tqdm=4.48.2=py_0 + - unidecode=1.1.1=py_0 + - urllib3=1.25.10=py_0 + - wheel=0.34.2=py37_0 + - xarray=0.16.0=py_0 + - xz=5.2.5=h7b6447c_0 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.4.5=h9ceee32_0 +prefix: /home/pjanata/anaconda3/envs/covid + diff --git a/data-pipeline/data-dir/inputs/manual/countermeasures_model_data.csv b/data-pipeline/data-dir/inputs/manual/countermeasures_model_data.csv index 0354317f..11b67da8 100644 --- a/data-pipeline/data-dir/inputs/manual/countermeasures_model_data.csv +++ b/data-pipeline/data-dir/inputs/manual/countermeasures_model_data.csv @@ -1,3896 +1,5331 @@ -Country Code,Date,Region Name,Confirmed,Active,Deaths,Healthcare Infection Control,Mask Wearing,Symptomatic Testing,Gatherings <1000,Gatherings <100,Gatherings <10,Some Businesses Suspended,Most Businesses Suspended,School Closure,Stay Home Order -AL,2020-01-22 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-23 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-24 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-25 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-26 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-27 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-28 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-29 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-30 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-01-31 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-01 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-02 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-03 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-04 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-05 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-06 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-07 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-08 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-09 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-10 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-11 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-12 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-13 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-14 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-15 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-16 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-17 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-18 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-19 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-20 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-21 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-22 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-23 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-24 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-25 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-26 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-27 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-28 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-02-29 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-01 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-02 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-03 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-04 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-05 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-06 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-07 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AL,2020-03-08 00:00:00+00:00,Albania,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -AL,2020-03-09 00:00:00+00:00,Albania,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -AL,2020-03-10 00:00:00+00:00,Albania,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -AL,2020-03-11 00:00:00+00:00,Albania,12.0,11.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -AL,2020-03-12 00:00:00+00:00,Albania,23.0,22.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -AL,2020-03-13 00:00:00+00:00,Albania,33.0,32.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -AL,2020-03-14 00:00:00+00:00,Albania,38.0,37.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -AL,2020-03-15 00:00:00+00:00,Albania,42.0,41.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -AL,2020-03-16 00:00:00+00:00,Albania,51.0,50.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -AL,2020-03-17 00:00:00+00:00,Albania,55.0,54.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -AL,2020-03-18 00:00:00+00:00,Albania,59.0,57.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -AL,2020-03-19 00:00:00+00:00,Albania,64.0,62.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -AL,2020-03-20 00:00:00+00:00,Albania,70.0,68.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -AL,2020-03-21 00:00:00+00:00,Albania,76.0,72.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-22 00:00:00+00:00,Albania,89.0,85.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-23 00:00:00+00:00,Albania,104.0,98.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-24 00:00:00+00:00,Albania,123.0,108.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-25 00:00:00+00:00,Albania,146.0,124.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-26 00:00:00+00:00,Albania,174.0,151.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-27 00:00:00+00:00,Albania,186.0,147.0,8.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-28 00:00:00+00:00,Albania,197.0,156.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-29 00:00:00+00:00,Albania,212.0,169.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-30 00:00:00+00:00,Albania,223.0,168.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-03-31 00:00:00+00:00,Albania,243.0,176.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-01 00:00:00+00:00,Albania,259.0,177.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-02 00:00:00+00:00,Albania,277.0,185.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-03 00:00:00+00:00,Albania,304.0,198.0,17.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-04 00:00:00+00:00,Albania,333.0,214.0,20.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-05 00:00:00+00:00,Albania,361.0,237.0,20.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-06 00:00:00+00:00,Albania,377.0,240.0,21.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-07 00:00:00+00:00,Albania,383.0,230.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-08 00:00:00+00:00,Albania,400.0,224.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-09 00:00:00+00:00,Albania,409.0,221.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-10 00:00:00+00:00,Albania,416.0,211.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-11 00:00:00+00:00,Albania,433.0,213.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-12 00:00:00+00:00,Albania,446.0,206.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-13 00:00:00+00:00,Albania,467.0,212.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-14 00:00:00+00:00,Albania,475.0,203.0,24.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-15 00:00:00+00:00,Albania,494.0,218.0,25.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-16 00:00:00+00:00,Albania,518.0,215.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-17 00:00:00+00:00,Albania,539.0,230.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-18 00:00:00+00:00,Albania,548.0,220.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-19 00:00:00+00:00,Albania,562.0,222.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-20 00:00:00+00:00,Albania,584.0,231.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-21 00:00:00+00:00,Albania,609.0,238.0,26.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-22 00:00:00+00:00,Albania,634.0,251.0,27.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-23 00:00:00+00:00,Albania,663.0,251.0,27.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-24 00:00:00+00:00,Albania,678.0,257.0,27.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AL,2020-04-25 00:00:00+00:00,Albania,712.0,282.0,27.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -AD,2020-01-22 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-23 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-24 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-25 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-26 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-27 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-28 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-29 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-30 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-01-31 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-01 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-02 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-03 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-04 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-05 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-06 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-07 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-08 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-09 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-10 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-11 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-12 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-13 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-14 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-15 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-16 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-17 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-18 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-19 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-20 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-21 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-22 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-23 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-24 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-25 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-26 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-27 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-28 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-02-29 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-01 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-02 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-03 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-04 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-05 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-06 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-07 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-08 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-09 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-10 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-11 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-12 00:00:00+00:00,Andorra,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-13 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AD,2020-03-14 00:00:00+00:00,Andorra,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0 -AD,2020-03-15 00:00:00+00:00,Andorra,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0 -AD,2020-03-16 00:00:00+00:00,Andorra,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-17 00:00:00+00:00,Andorra,39.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-18 00:00:00+00:00,Andorra,39.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-19 00:00:00+00:00,Andorra,53.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-20 00:00:00+00:00,Andorra,75.0,74.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-21 00:00:00+00:00,Andorra,88.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-22 00:00:00+00:00,Andorra,113.0,111.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-23 00:00:00+00:00,Andorra,133.0,131.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-24 00:00:00+00:00,Andorra,164.0,162.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-25 00:00:00+00:00,Andorra,188.0,186.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-26 00:00:00+00:00,Andorra,224.0,220.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-27 00:00:00+00:00,Andorra,267.0,263.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-28 00:00:00+00:00,Andorra,308.0,304.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-29 00:00:00+00:00,Andorra,334.0,327.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-30 00:00:00+00:00,Andorra,370.0,352.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-03-31 00:00:00+00:00,Andorra,376.0,354.0,12.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-01 00:00:00+00:00,Andorra,390.0,366.0,14.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-02 00:00:00+00:00,Andorra,428.0,403.0,15.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-03 00:00:00+00:00,Andorra,439.0,407.0,16.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-04 00:00:00+00:00,Andorra,466.0,428.0,17.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-05 00:00:00+00:00,Andorra,501.0,457.0,18.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-06 00:00:00+00:00,Andorra,525.0,473.0,21.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-07 00:00:00+00:00,Andorra,545.0,484.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-08 00:00:00+00:00,Andorra,564.0,489.0,23.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-09 00:00:00+00:00,Andorra,583.0,500.0,25.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-10 00:00:00+00:00,Andorra,601.0,504.0,26.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-11 00:00:00+00:00,Andorra,601.0,504.0,26.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-12 00:00:00+00:00,Andorra,638.0,481.0,29.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-13 00:00:00+00:00,Andorra,646.0,489.0,29.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-14 00:00:00+00:00,Andorra,659.0,500.0,31.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-15 00:00:00+00:00,Andorra,673.0,471.0,33.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-16 00:00:00+00:00,Andorra,673.0,471.0,33.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-17 00:00:00+00:00,Andorra,696.0,470.0,35.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-18 00:00:00+00:00,Andorra,704.0,464.0,35.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-19 00:00:00+00:00,Andorra,713.0,442.0,36.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-20 00:00:00+00:00,Andorra,717.0,432.0,37.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-21 00:00:00+00:00,Andorra,717.0,398.0,37.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-22 00:00:00+00:00,Andorra,723.0,377.0,37.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-23 00:00:00+00:00,Andorra,723.0,353.0,37.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-24 00:00:00+00:00,Andorra,731.0,347.0,40.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AD,2020-04-25 00:00:00+00:00,Andorra,738.0,354.0,40.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -AT,2020-01-22 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-23 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-24 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-25 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-26 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-27 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-28 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-29 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-30 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-01-31 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-01 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-02 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-03 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-04 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-05 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-06 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-07 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-08 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-09 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-10 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-11 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-12 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-13 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-14 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-15 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-16 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-17 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-18 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-19 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-20 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-21 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-22 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-23 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-24 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-25 00:00:00+00:00,Austria,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-26 00:00:00+00:00,Austria,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-27 00:00:00+00:00,Austria,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-28 00:00:00+00:00,Austria,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-02-29 00:00:00+00:00,Austria,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-01 00:00:00+00:00,Austria,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-02 00:00:00+00:00,Austria,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-03 00:00:00+00:00,Austria,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-04 00:00:00+00:00,Austria,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-05 00:00:00+00:00,Austria,41.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-06 00:00:00+00:00,Austria,55.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-07 00:00:00+00:00,Austria,79.0,79.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-08 00:00:00+00:00,Austria,104.0,104.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-09 00:00:00+00:00,Austria,131.0,129.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-10 00:00:00+00:00,Austria,182.0,178.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-11 00:00:00+00:00,Austria,246.0,242.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-12 00:00:00+00:00,Austria,302.0,297.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-13 00:00:00+00:00,Austria,504.0,497.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-14 00:00:00+00:00,Austria,655.0,648.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -AT,2020-03-15 00:00:00+00:00,Austria,860.0,853.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -AT,2020-03-16 00:00:00+00:00,Austria,1018.0,1009.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 -AT,2020-03-17 00:00:00+00:00,Austria,1332.0,1328.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-18 00:00:00+00:00,Austria,1646.0,1633.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-19 00:00:00+00:00,Austria,2013.0,1998.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-20 00:00:00+00:00,Austria,2388.0,2373.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-21 00:00:00+00:00,Austria,2814.0,2797.0,8.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-22 00:00:00+00:00,Austria,3582.0,3557.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-23 00:00:00+00:00,Austria,4474.0,4444.0,21.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-24 00:00:00+00:00,Austria,5283.0,5246.0,28.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-25 00:00:00+00:00,Austria,5588.0,5549.0,30.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-26 00:00:00+00:00,Austria,6909.0,6748.0,49.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-27 00:00:00+00:00,Austria,7657.0,7374.0,58.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-28 00:00:00+00:00,Austria,8271.0,7978.0,68.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-29 00:00:00+00:00,Austria,8788.0,8223.0,86.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-30 00:00:00+00:00,Austria,9618.0,8874.0,108.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-03-31 00:00:00+00:00,Austria,10180.0,8957.0,128.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-01 00:00:00+00:00,Austria,10711.0,9129.0,146.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-02 00:00:00+00:00,Austria,11129.0,9222.0,158.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-03 00:00:00+00:00,Austria,11524.0,9334.0,168.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-04 00:00:00+00:00,Austria,11781.0,9088.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-05 00:00:00+00:00,Austria,12051.0,8849.0,204.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-06 00:00:00+00:00,Austria,12297.0,8614.0,220.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-07 00:00:00+00:00,Austria,12639.0,8350.0,243.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-08 00:00:00+00:00,Austria,12942.0,8157.0,273.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-09 00:00:00+00:00,Austria,13244.0,7709.0,295.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-10 00:00:00+00:00,Austria,13555.0,7172.0,319.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-11 00:00:00+00:00,Austria,13806.0,6865.0,337.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-12 00:00:00+00:00,Austria,13945.0,6608.0,350.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-13 00:00:00+00:00,Austria,14041.0,6330.0,368.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-14 00:00:00+00:00,Austria,14226.0,6209.0,384.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-15 00:00:00+00:00,Austria,14336.0,5845.0,393.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-16 00:00:00+00:00,Austria,14476.0,5080.0,410.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-17 00:00:00+00:00,Austria,14595.0,4460.0,431.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-18 00:00:00+00:00,Austria,14671.0,4014.0,443.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-19 00:00:00+00:00,Austria,14749.0,3796.0,452.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-20 00:00:00+00:00,Austria,14795.0,3694.0,470.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-21 00:00:00+00:00,Austria,14873.0,3411.0,491.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-22 00:00:00+00:00,Austria,14925.0,3087.0,510.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-23 00:00:00+00:00,Austria,15002.0,2786.0,522.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-24 00:00:00+00:00,Austria,15071.0,2669.0,530.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -AT,2020-04-25 00:00:00+00:00,Austria,15148.0,2509.0,536.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-01-22 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-23 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-24 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-25 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-26 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-27 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-28 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-29 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-30 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-01-31 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-01 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-02 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-03 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-04 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-05 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-06 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-07 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-08 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-09 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-10 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-11 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-12 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-13 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-14 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-15 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-16 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-17 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-18 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-19 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-20 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-21 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-22 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-23 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-24 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-25 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-26 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-27 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-28 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-02-29 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-01 00:00:00+00:00,Belgium,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-02 00:00:00+00:00,Belgium,8.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-03 00:00:00+00:00,Belgium,13.0,12.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-04 00:00:00+00:00,Belgium,23.0,22.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-05 00:00:00+00:00,Belgium,50.0,49.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-06 00:00:00+00:00,Belgium,109.0,108.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-07 00:00:00+00:00,Belgium,169.0,168.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-08 00:00:00+00:00,Belgium,200.0,199.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-09 00:00:00+00:00,Belgium,239.0,238.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-10 00:00:00+00:00,Belgium,267.0,266.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-11 00:00:00+00:00,Belgium,314.0,310.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-12 00:00:00+00:00,Belgium,314.0,310.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BE,2020-03-13 00:00:00+00:00,Belgium,559.0,555.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -BE,2020-03-14 00:00:00+00:00,Belgium,689.0,684.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -BE,2020-03-15 00:00:00+00:00,Belgium,886.0,881.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -BE,2020-03-16 00:00:00+00:00,Belgium,1058.0,1052.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -BE,2020-03-17 00:00:00+00:00,Belgium,1243.0,1232.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -BE,2020-03-18 00:00:00+00:00,Belgium,1486.0,1441.0,14.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-19 00:00:00+00:00,Belgium,1795.0,1743.0,21.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-20 00:00:00+00:00,Belgium,2257.0,2219.0,37.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-21 00:00:00+00:00,Belgium,2815.0,2485.0,67.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-22 00:00:00+00:00,Belgium,3401.0,3063.0,75.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-23 00:00:00+00:00,Belgium,3743.0,3392.0,88.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-24 00:00:00+00:00,Belgium,4269.0,3686.0,122.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-25 00:00:00+00:00,Belgium,4937.0,4212.0,178.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-26 00:00:00+00:00,Belgium,6235.0,5340.0,220.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-27 00:00:00+00:00,Belgium,7284.0,6137.0,289.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-28 00:00:00+00:00,Belgium,9134.0,7718.0,353.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-29 00:00:00+00:00,Belgium,10836.0,9046.0,431.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-30 00:00:00+00:00,Belgium,11899.0,9859.0,513.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-03-31 00:00:00+00:00,Belgium,12775.0,10374.0,705.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-01 00:00:00+00:00,Belgium,13964.0,11004.0,828.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-02 00:00:00+00:00,Belgium,15348.0,11842.0,1011.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-03 00:00:00+00:00,Belgium,16770.0,12755.0,1143.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-04 00:00:00+00:00,Belgium,18431.0,13901.0,1283.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-05 00:00:00+00:00,Belgium,19691.0,14493.0,1447.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-06 00:00:00+00:00,Belgium,20814.0,15196.0,1632.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-07 00:00:00+00:00,Belgium,22194.0,16002.0,2035.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-08 00:00:00+00:00,Belgium,23403.0,16482.0,2240.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-09 00:00:00+00:00,Belgium,24983.0,17296.0,2523.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-10 00:00:00+00:00,Belgium,26667.0,18080.0,3019.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-11 00:00:00+00:00,Belgium,28018.0,18686.0,3346.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-12 00:00:00+00:00,Belgium,29647.0,19584.0,3600.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-13 00:00:00+00:00,Belgium,30589.0,19979.0,3903.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-14 00:00:00+00:00,Belgium,31119.0,20094.0,4157.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-15 00:00:00+00:00,Belgium,33573.0,22026.0,4440.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-16 00:00:00+00:00,Belgium,34809.0,22390.0,4857.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-17 00:00:00+00:00,Belgium,36138.0,23014.0,5163.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-18 00:00:00+00:00,Belgium,37183.0,23382.0,5453.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-19 00:00:00+00:00,Belgium,38496.0,24056.0,5683.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-20 00:00:00+00:00,Belgium,39983.0,25260.0,5828.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-21 00:00:00+00:00,Belgium,40956.0,25956.0,5998.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-22 00:00:00+00:00,Belgium,41889.0,26194.0,6262.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-23 00:00:00+00:00,Belgium,42797.0,26507.0,6490.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-24 00:00:00+00:00,Belgium,44293.0,27492.0,6679.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BE,2020-04-25 00:00:00+00:00,Belgium,45325.0,27991.0,6917.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -BA,2020-01-22 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-23 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-24 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-25 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-26 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-27 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-28 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-29 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-30 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-01-31 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-01 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-02 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-03 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-04 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-05 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-06 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-07 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-08 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-09 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-10 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-11 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-12 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-13 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-14 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-15 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-16 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-17 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-18 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-19 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-20 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-21 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-22 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-23 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-24 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-25 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-26 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-27 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-28 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-02-29 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-01 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-02 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-03 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-04 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-05 00:00:00+00:00,Bosnia and Herzegovina,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-06 00:00:00+00:00,Bosnia and Herzegovina,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-07 00:00:00+00:00,Bosnia and Herzegovina,3.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-08 00:00:00+00:00,Bosnia and Herzegovina,3.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-09 00:00:00+00:00,Bosnia and Herzegovina,3.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-10 00:00:00+00:00,Bosnia and Herzegovina,5.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BA,2020-03-11 00:00:00+00:00,Bosnia and Herzegovina,7.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-12 00:00:00+00:00,Bosnia and Herzegovina,11.0,11.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-13 00:00:00+00:00,Bosnia and Herzegovina,13.0,13.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-14 00:00:00+00:00,Bosnia and Herzegovina,18.0,18.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-15 00:00:00+00:00,Bosnia and Herzegovina,24.0,24.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-16 00:00:00+00:00,Bosnia and Herzegovina,25.0,25.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-17 00:00:00+00:00,Bosnia and Herzegovina,26.0,24.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -BA,2020-03-18 00:00:00+00:00,Bosnia and Herzegovina,38.0,36.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -BA,2020-03-19 00:00:00+00:00,Bosnia and Herzegovina,63.0,61.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -BA,2020-03-20 00:00:00+00:00,Bosnia and Herzegovina,89.0,87.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-21 00:00:00+00:00,Bosnia and Herzegovina,93.0,90.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-22 00:00:00+00:00,Bosnia and Herzegovina,126.0,123.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-23 00:00:00+00:00,Bosnia and Herzegovina,136.0,133.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-24 00:00:00+00:00,Bosnia and Herzegovina,166.0,161.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-25 00:00:00+00:00,Bosnia and Herzegovina,176.0,171.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-26 00:00:00+00:00,Bosnia and Herzegovina,191.0,186.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-27 00:00:00+00:00,Bosnia and Herzegovina,237.0,228.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-28 00:00:00+00:00,Bosnia and Herzegovina,258.0,248.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-29 00:00:00+00:00,Bosnia and Herzegovina,323.0,309.0,6.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-30 00:00:00+00:00,Bosnia and Herzegovina,368.0,341.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-03-31 00:00:00+00:00,Bosnia and Herzegovina,420.0,390.0,13.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-01 00:00:00+00:00,Bosnia and Herzegovina,459.0,427.0,13.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-02 00:00:00+00:00,Bosnia and Herzegovina,533.0,497.0,16.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-03 00:00:00+00:00,Bosnia and Herzegovina,579.0,535.0,17.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-04 00:00:00+00:00,Bosnia and Herzegovina,624.0,573.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-05 00:00:00+00:00,Bosnia and Herzegovina,654.0,601.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-06 00:00:00+00:00,Bosnia and Herzegovina,674.0,598.0,29.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-07 00:00:00+00:00,Bosnia and Herzegovina,764.0,663.0,33.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-08 00:00:00+00:00,Bosnia and Herzegovina,804.0,691.0,34.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-09 00:00:00+00:00,Bosnia and Herzegovina,858.0,722.0,35.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-10 00:00:00+00:00,Bosnia and Herzegovina,901.0,736.0,36.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-11 00:00:00+00:00,Bosnia and Herzegovina,946.0,770.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-12 00:00:00+00:00,Bosnia and Herzegovina,1009.0,777.0,39.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-13 00:00:00+00:00,Bosnia and Herzegovina,1037.0,792.0,39.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-14 00:00:00+00:00,Bosnia and Herzegovina,1083.0,807.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-15 00:00:00+00:00,Bosnia and Herzegovina,1110.0,816.0,41.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-16 00:00:00+00:00,Bosnia and Herzegovina,1167.0,847.0,43.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-17 00:00:00+00:00,Bosnia and Herzegovina,1214.0,848.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-18 00:00:00+00:00,Bosnia and Herzegovina,1268.0,883.0,47.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-19 00:00:00+00:00,Bosnia and Herzegovina,1285.0,890.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-20 00:00:00+00:00,Bosnia and Herzegovina,1309.0,879.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-21 00:00:00+00:00,Bosnia and Herzegovina,1342.0,854.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-22 00:00:00+00:00,Bosnia and Herzegovina,1368.0,855.0,53.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-23 00:00:00+00:00,Bosnia and Herzegovina,1413.0,874.0,54.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-24 00:00:00+00:00,Bosnia and Herzegovina,1421.0,828.0,55.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BA,2020-04-25 00:00:00+00:00,Bosnia and Herzegovina,1486.0,837.0,57.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -BG,2020-01-22 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-23 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-24 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-25 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-26 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-27 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-28 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-29 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-30 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-01-31 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-01 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-02 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-03 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-04 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-05 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-06 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-07 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-08 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-09 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-10 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-11 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-12 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-13 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-14 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-15 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-16 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-17 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-18 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-19 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-20 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-21 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-22 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-23 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-24 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-25 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-26 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-27 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-28 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-02-29 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-03-01 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-03-02 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-03-03 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-03-04 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -BG,2020-03-05 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-06 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-07 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-08 00:00:00+00:00,Bulgaria,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-09 00:00:00+00:00,Bulgaria,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-10 00:00:00+00:00,Bulgaria,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-11 00:00:00+00:00,Bulgaria,7.0,6.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-12 00:00:00+00:00,Bulgaria,7.0,6.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -BG,2020-03-13 00:00:00+00:00,Bulgaria,23.0,22.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-14 00:00:00+00:00,Bulgaria,41.0,39.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-15 00:00:00+00:00,Bulgaria,51.0,49.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-16 00:00:00+00:00,Bulgaria,52.0,50.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-17 00:00:00+00:00,Bulgaria,67.0,65.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-18 00:00:00+00:00,Bulgaria,92.0,90.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-19 00:00:00+00:00,Bulgaria,94.0,91.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-20 00:00:00+00:00,Bulgaria,127.0,124.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-21 00:00:00+00:00,Bulgaria,163.0,157.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-22 00:00:00+00:00,Bulgaria,187.0,181.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-23 00:00:00+00:00,Bulgaria,201.0,195.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-24 00:00:00+00:00,Bulgaria,218.0,212.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-25 00:00:00+00:00,Bulgaria,242.0,235.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-26 00:00:00+00:00,Bulgaria,264.0,253.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-27 00:00:00+00:00,Bulgaria,293.0,281.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-28 00:00:00+00:00,Bulgaria,331.0,313.0,7.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-29 00:00:00+00:00,Bulgaria,346.0,324.0,8.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-30 00:00:00+00:00,Bulgaria,359.0,334.0,8.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-03-31 00:00:00+00:00,Bulgaria,399.0,374.0,8.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-01 00:00:00+00:00,Bulgaria,422.0,392.0,10.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-02 00:00:00+00:00,Bulgaria,457.0,422.0,10.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-03 00:00:00+00:00,Bulgaria,485.0,441.0,14.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-04 00:00:00+00:00,Bulgaria,503.0,452.0,17.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-05 00:00:00+00:00,Bulgaria,531.0,474.0,20.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-06 00:00:00+00:00,Bulgaria,549.0,488.0,22.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-07 00:00:00+00:00,Bulgaria,577.0,512.0,23.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-08 00:00:00+00:00,Bulgaria,593.0,527.0,24.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-09 00:00:00+00:00,Bulgaria,618.0,546.0,24.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-10 00:00:00+00:00,Bulgaria,635.0,556.0,25.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-11 00:00:00+00:00,Bulgaria,661.0,571.0,28.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-12 00:00:00+00:00,Bulgaria,675.0,578.0,29.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-13 00:00:00+00:00,Bulgaria,685.0,582.0,32.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-14 00:00:00+00:00,Bulgaria,713.0,597.0,35.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-15 00:00:00+00:00,Bulgaria,747.0,606.0,36.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-16 00:00:00+00:00,Bulgaria,800.0,640.0,38.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-17 00:00:00+00:00,Bulgaria,846.0,664.0,41.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-18 00:00:00+00:00,Bulgaria,878.0,684.0,41.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-19 00:00:00+00:00,Bulgaria,894.0,691.0,42.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-20 00:00:00+00:00,Bulgaria,929.0,719.0,43.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-21 00:00:00+00:00,Bulgaria,975.0,760.0,45.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-22 00:00:00+00:00,Bulgaria,1024.0,801.0,49.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-23 00:00:00+00:00,Bulgaria,1097.0,855.0,52.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-24 00:00:00+00:00,Bulgaria,1234.0,983.0,54.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -BG,2020-04-25 00:00:00+00:00,Bulgaria,1247.0,995.0,55.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-01-22 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-23 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-24 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-25 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-26 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-27 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-28 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-29 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-30 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-01-31 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-01 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-02 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-03 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-04 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-05 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-06 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-07 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-08 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-09 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-10 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-11 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-12 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-13 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-14 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-15 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-16 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-17 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-18 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-19 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-20 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-21 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-22 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-23 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-24 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-25 00:00:00+00:00,Croatia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-26 00:00:00+00:00,Croatia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-27 00:00:00+00:00,Croatia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-28 00:00:00+00:00,Croatia,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-02-29 00:00:00+00:00,Croatia,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-01 00:00:00+00:00,Croatia,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-02 00:00:00+00:00,Croatia,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-03 00:00:00+00:00,Croatia,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-04 00:00:00+00:00,Croatia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-05 00:00:00+00:00,Croatia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-06 00:00:00+00:00,Croatia,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-07 00:00:00+00:00,Croatia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-08 00:00:00+00:00,Croatia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-09 00:00:00+00:00,Croatia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-10 00:00:00+00:00,Croatia,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-11 00:00:00+00:00,Croatia,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-12 00:00:00+00:00,Croatia,19.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-13 00:00:00+00:00,Croatia,32.0,31.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-14 00:00:00+00:00,Croatia,38.0,37.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-15 00:00:00+00:00,Croatia,49.0,48.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HR,2020-03-16 00:00:00+00:00,Croatia,57.0,55.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -HR,2020-03-17 00:00:00+00:00,Croatia,65.0,61.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -HR,2020-03-18 00:00:00+00:00,Croatia,81.0,77.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -HR,2020-03-19 00:00:00+00:00,Croatia,105.0,99.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-20 00:00:00+00:00,Croatia,128.0,122.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-21 00:00:00+00:00,Croatia,206.0,200.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-22 00:00:00+00:00,Croatia,254.0,248.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-23 00:00:00+00:00,Croatia,315.0,309.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-24 00:00:00+00:00,Croatia,382.0,376.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-25 00:00:00+00:00,Croatia,442.0,419.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-26 00:00:00+00:00,Croatia,495.0,470.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-27 00:00:00+00:00,Croatia,586.0,546.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-28 00:00:00+00:00,Croatia,657.0,607.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-29 00:00:00+00:00,Croatia,713.0,655.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-30 00:00:00+00:00,Croatia,790.0,717.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-03-31 00:00:00+00:00,Croatia,867.0,794.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-01 00:00:00+00:00,Croatia,963.0,884.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-02 00:00:00+00:00,Croatia,1011.0,916.0,7.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-03 00:00:00+00:00,Croatia,1079.0,979.0,8.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-04 00:00:00+00:00,Croatia,1126.0,995.0,12.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-05 00:00:00+00:00,Croatia,1182.0,1042.0,15.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-06 00:00:00+00:00,Croatia,1222.0,1076.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-07 00:00:00+00:00,Croatia,1282.0,1097.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-08 00:00:00+00:00,Croatia,1343.0,1145.0,19.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-09 00:00:00+00:00,Croatia,1407.0,1168.0,20.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-10 00:00:00+00:00,Croatia,1495.0,1243.0,21.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-11 00:00:00+00:00,Croatia,1534.0,1190.0,21.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-12 00:00:00+00:00,Croatia,1600.0,1204.0,23.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-13 00:00:00+00:00,Croatia,1650.0,1225.0,25.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-14 00:00:00+00:00,Croatia,1704.0,1258.0,31.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-15 00:00:00+00:00,Croatia,1741.0,1235.0,33.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-16 00:00:00+00:00,Croatia,1791.0,1227.0,35.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-17 00:00:00+00:00,Croatia,1814.0,1178.0,36.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-18 00:00:00+00:00,Croatia,1832.0,1178.0,39.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-19 00:00:00+00:00,Croatia,1871.0,1115.0,47.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-20 00:00:00+00:00,Croatia,1881.0,1063.0,47.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-21 00:00:00+00:00,Croatia,1908.0,1059.0,48.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-22 00:00:00+00:00,Croatia,1950.0,1033.0,48.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-23 00:00:00+00:00,Croatia,1981.0,1048.0,50.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-24 00:00:00+00:00,Croatia,2009.0,976.0,51.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -HR,2020-04-25 00:00:00+00:00,Croatia,2016.0,928.0,54.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CZ,2020-01-22 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-23 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-24 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-25 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-26 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-27 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-28 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-29 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-30 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-01-31 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-01 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-02 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-03 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-04 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-05 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-06 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-07 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-08 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-09 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-10 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-11 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-12 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-13 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-14 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-15 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-16 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-17 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-18 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-19 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-20 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-21 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-22 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-23 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-24 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-25 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-26 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-27 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-28 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-02-29 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-01 00:00:00+00:00,Czech Republic,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-02 00:00:00+00:00,Czech Republic,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-03 00:00:00+00:00,Czech Republic,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-04 00:00:00+00:00,Czech Republic,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-05 00:00:00+00:00,Czech Republic,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-06 00:00:00+00:00,Czech Republic,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-07 00:00:00+00:00,Czech Republic,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-08 00:00:00+00:00,Czech Republic,31.0,31.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-09 00:00:00+00:00,Czech Republic,31.0,31.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CZ,2020-03-10 00:00:00+00:00,Czech Republic,41.0,41.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CZ,2020-03-11 00:00:00+00:00,Czech Republic,91.0,91.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CZ,2020-03-12 00:00:00+00:00,Czech Republic,94.0,94.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CZ,2020-03-13 00:00:00+00:00,Czech Republic,141.0,141.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CZ,2020-03-14 00:00:00+00:00,Czech Republic,189.0,189.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -CZ,2020-03-15 00:00:00+00:00,Czech Republic,253.0,253.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -CZ,2020-03-16 00:00:00+00:00,Czech Republic,298.0,295.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-17 00:00:00+00:00,Czech Republic,396.0,393.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-18 00:00:00+00:00,Czech Republic,464.0,461.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-19 00:00:00+00:00,Czech Republic,694.0,691.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-20 00:00:00+00:00,Czech Republic,833.0,829.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-21 00:00:00+00:00,Czech Republic,995.0,989.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-22 00:00:00+00:00,Czech Republic,1120.0,1113.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -CZ,2020-03-23 00:00:00+00:00,Czech Republic,1236.0,1229.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-24 00:00:00+00:00,Czech Republic,1394.0,1381.0,3.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-25 00:00:00+00:00,Czech Republic,1654.0,1638.0,6.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-26 00:00:00+00:00,Czech Republic,1925.0,1906.0,9.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-27 00:00:00+00:00,Czech Republic,2279.0,2259.0,9.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-28 00:00:00+00:00,Czech Republic,2631.0,2609.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-29 00:00:00+00:00,Czech Republic,2817.0,2790.0,16.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-30 00:00:00+00:00,Czech Republic,3001.0,2953.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-03-31 00:00:00+00:00,Czech Republic,3308.0,3232.0,31.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-01 00:00:00+00:00,Czech Republic,3508.0,3408.0,39.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-02 00:00:00+00:00,Czech Republic,3858.0,3747.0,44.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-03 00:00:00+00:00,Czech Republic,4091.0,3966.0,53.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-04 00:00:00+00:00,Czech Republic,4472.0,4335.0,59.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-05 00:00:00+00:00,Czech Republic,4587.0,4424.0,67.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-06 00:00:00+00:00,Czech Republic,4822.0,4623.0,78.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-07 00:00:00+00:00,Czech Republic,5017.0,4757.0,88.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-08 00:00:00+00:00,Czech Republic,5312.0,4980.0,99.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-09 00:00:00+00:00,Czech Republic,5569.0,5156.0,112.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-10 00:00:00+00:00,Czech Republic,5732.0,5267.0,119.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-11 00:00:00+00:00,Czech Republic,5831.0,5291.0,129.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-12 00:00:00+00:00,Czech Republic,5991.0,5389.0,138.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-13 00:00:00+00:00,Czech Republic,6059.0,5397.0,143.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-14 00:00:00+00:00,Czech Republic,6111.0,5308.0,161.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-15 00:00:00+00:00,Czech Republic,6216.0,5231.0,166.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-16 00:00:00+00:00,Czech Republic,6433.0,5292.0,169.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-17 00:00:00+00:00,Czech Republic,6549.0,5202.0,173.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-18 00:00:00+00:00,Czech Republic,6606.0,5198.0,181.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-19 00:00:00+00:00,Czech Republic,6746.0,5262.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-20 00:00:00+00:00,Czech Republic,6900.0,5147.0,194.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-21 00:00:00+00:00,Czech Republic,7033.0,5079.0,201.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-22 00:00:00+00:00,Czech Republic,7132.0,4935.0,208.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-23 00:00:00+00:00,Czech Republic,7187.0,4825.0,210.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-24 00:00:00+00:00,Czech Republic,7273.0,4688.0,214.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -CZ,2020-04-25 00:00:00+00:00,Czech Republic,7352.0,4681.0,218.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -DK,2020-01-22 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-23 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-24 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-25 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-26 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-27 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-28 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-29 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-30 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-01-31 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-01 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-02 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-03 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-04 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-05 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-06 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-07 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-08 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-09 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-10 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-11 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-12 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-13 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-14 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-15 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-16 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-17 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-18 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-19 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-20 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-21 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-22 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-23 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-24 00:00:00+00:00,Denmark,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-25 00:00:00+00:00,Denmark,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-26 00:00:00+00:00,Denmark,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-27 00:00:00+00:00,Denmark,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-28 00:00:00+00:00,Denmark,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-02-29 00:00:00+00:00,Denmark,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-01 00:00:00+00:00,Denmark,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-02 00:00:00+00:00,Denmark,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-03 00:00:00+00:00,Denmark,6.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-04 00:00:00+00:00,Denmark,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-05 00:00:00+00:00,Denmark,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-06 00:00:00+00:00,Denmark,23.0,22.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-07 00:00:00+00:00,Denmark,23.0,22.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-08 00:00:00+00:00,Denmark,35.0,34.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-09 00:00:00+00:00,Denmark,90.0,89.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-10 00:00:00+00:00,Denmark,262.0,261.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-11 00:00:00+00:00,Denmark,442.0,441.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-12 00:00:00+00:00,Denmark,615.0,614.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -DK,2020-03-13 00:00:00+00:00,Denmark,801.0,800.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -DK,2020-03-14 00:00:00+00:00,Denmark,827.0,825.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -DK,2020-03-15 00:00:00+00:00,Denmark,864.0,861.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -DK,2020-03-16 00:00:00+00:00,Denmark,914.0,910.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -DK,2020-03-17 00:00:00+00:00,Denmark,977.0,972.0,4.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -DK,2020-03-18 00:00:00+00:00,Denmark,1057.0,1052.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-19 00:00:00+00:00,Denmark,1151.0,1144.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-20 00:00:00+00:00,Denmark,1255.0,1245.0,9.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-21 00:00:00+00:00,Denmark,1326.0,1312.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-22 00:00:00+00:00,Denmark,1395.0,1381.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-23 00:00:00+00:00,Denmark,1450.0,1425.0,24.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-24 00:00:00+00:00,Denmark,1591.0,1558.0,32.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-25 00:00:00+00:00,Denmark,1724.0,1689.0,34.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-26 00:00:00+00:00,Denmark,1877.0,1835.0,41.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-27 00:00:00+00:00,Denmark,2046.0,1993.0,52.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-28 00:00:00+00:00,Denmark,2201.0,2135.0,65.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-29 00:00:00+00:00,Denmark,2395.0,2322.0,72.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-30 00:00:00+00:00,Denmark,2577.0,2499.0,77.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-03-31 00:00:00+00:00,Denmark,2860.0,2769.0,90.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-01 00:00:00+00:00,Denmark,3107.0,2109.0,104.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-02 00:00:00+00:00,Denmark,3386.0,2174.0,123.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-03 00:00:00+00:00,Denmark,3757.0,2425.0,139.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-04 00:00:00+00:00,Denmark,4077.0,2633.0,161.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-05 00:00:00+00:00,Denmark,4369.0,2863.0,179.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-06 00:00:00+00:00,Denmark,4681.0,3116.0,187.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-07 00:00:00+00:00,Denmark,5071.0,3377.0,203.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-08 00:00:00+00:00,Denmark,5402.0,3563.0,218.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-09 00:00:00+00:00,Denmark,5635.0,3662.0,237.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-10 00:00:00+00:00,Denmark,5819.0,3799.0,247.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-11 00:00:00+00:00,Denmark,5996.0,3781.0,260.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-12 00:00:00+00:00,Denmark,6174.0,3778.0,273.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-13 00:00:00+00:00,Denmark,6318.0,3798.0,285.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-14 00:00:00+00:00,Denmark,6511.0,3697.0,299.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-15 00:00:00+00:00,Denmark,6681.0,3624.0,309.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-16 00:00:00+00:00,Denmark,6879.0,3535.0,321.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-17 00:00:00+00:00,Denmark,7073.0,3348.0,336.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-18 00:00:00+00:00,Denmark,7242.0,3049.0,346.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-19 00:00:00+00:00,Denmark,7384.0,2888.0,355.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-20 00:00:00+00:00,Denmark,7515.0,2839.0,364.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-21 00:00:00+00:00,Denmark,7695.0,2625.0,370.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-22 00:00:00+00:00,Denmark,7912.0,2441.0,384.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-23 00:00:00+00:00,Denmark,8073.0,2295.0,394.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-24 00:00:00+00:00,Denmark,8210.0,2281.0,403.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DK,2020-04-25 00:00:00+00:00,Denmark,8445.0,2358.0,418.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -EE,2020-01-22 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-23 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-24 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-25 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-26 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-27 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-28 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-29 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-30 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-01-31 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-01 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-02 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-03 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-04 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-05 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-06 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-07 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-08 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-09 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-10 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-11 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-12 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-13 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-14 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-15 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-16 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-17 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-18 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-19 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-20 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-21 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-22 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-23 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-24 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-25 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-26 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-27 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-28 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-02-29 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-01 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-02 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-03 00:00:00+00:00,Estonia,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-04 00:00:00+00:00,Estonia,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-05 00:00:00+00:00,Estonia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-06 00:00:00+00:00,Estonia,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-07 00:00:00+00:00,Estonia,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-08 00:00:00+00:00,Estonia,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-09 00:00:00+00:00,Estonia,10.0,10.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-10 00:00:00+00:00,Estonia,12.0,12.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-11 00:00:00+00:00,Estonia,16.0,16.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-12 00:00:00+00:00,Estonia,16.0,16.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -EE,2020-03-13 00:00:00+00:00,Estonia,79.0,79.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0 -EE,2020-03-14 00:00:00+00:00,Estonia,115.0,115.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -EE,2020-03-15 00:00:00+00:00,Estonia,171.0,170.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -EE,2020-03-16 00:00:00+00:00,Estonia,205.0,204.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-17 00:00:00+00:00,Estonia,225.0,224.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-18 00:00:00+00:00,Estonia,258.0,257.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-19 00:00:00+00:00,Estonia,267.0,266.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-20 00:00:00+00:00,Estonia,283.0,282.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-21 00:00:00+00:00,Estonia,306.0,305.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-22 00:00:00+00:00,Estonia,326.0,324.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-23 00:00:00+00:00,Estonia,352.0,350.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-24 00:00:00+00:00,Estonia,369.0,362.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-25 00:00:00+00:00,Estonia,404.0,395.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-26 00:00:00+00:00,Estonia,538.0,529.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-27 00:00:00+00:00,Estonia,575.0,563.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-28 00:00:00+00:00,Estonia,645.0,624.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-29 00:00:00+00:00,Estonia,679.0,656.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-30 00:00:00+00:00,Estonia,715.0,692.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-03-31 00:00:00+00:00,Estonia,745.0,715.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-01 00:00:00+00:00,Estonia,779.0,741.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-02 00:00:00+00:00,Estonia,858.0,802.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-03 00:00:00+00:00,Estonia,961.0,901.0,12.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-04 00:00:00+00:00,Estonia,1039.0,967.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-05 00:00:00+00:00,Estonia,1097.0,1020.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-06 00:00:00+00:00,Estonia,1108.0,1027.0,19.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-07 00:00:00+00:00,Estonia,1149.0,1059.0,21.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-08 00:00:00+00:00,Estonia,1185.0,1089.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-09 00:00:00+00:00,Estonia,1207.0,1100.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-10 00:00:00+00:00,Estonia,1258.0,1141.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-11 00:00:00+00:00,Estonia,1304.0,1187.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-12 00:00:00+00:00,Estonia,1309.0,1186.0,25.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-13 00:00:00+00:00,Estonia,1332.0,1202.0,28.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-14 00:00:00+00:00,Estonia,1373.0,1227.0,31.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-15 00:00:00+00:00,Estonia,1400.0,1248.0,35.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-16 00:00:00+00:00,Estonia,1434.0,1265.0,36.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-17 00:00:00+00:00,Estonia,1459.0,1276.0,38.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-18 00:00:00+00:00,Estonia,1512.0,1312.0,38.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-19 00:00:00+00:00,Estonia,1528.0,1324.0,40.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-20 00:00:00+00:00,Estonia,1535.0,1330.0,40.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-21 00:00:00+00:00,Estonia,1552.0,1340.0,43.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-22 00:00:00+00:00,Estonia,1559.0,1331.0,44.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-23 00:00:00+00:00,Estonia,1592.0,1355.0,45.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-24 00:00:00+00:00,Estonia,1605.0,1353.0,46.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -EE,2020-04-25 00:00:00+00:00,Estonia,1635.0,1361.0,46.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-01-22 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-23 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-24 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-25 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-26 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-27 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-28 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-29 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-30 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-01-31 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-01 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-02 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-03 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-04 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-05 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-06 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-07 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-08 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-09 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-10 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-11 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-12 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-13 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-14 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-15 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-16 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-17 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-18 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-19 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-20 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-21 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-22 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-23 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-24 00:00:00+00:00,Finland,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-25 00:00:00+00:00,Finland,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-26 00:00:00+00:00,Finland,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-27 00:00:00+00:00,Finland,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-28 00:00:00+00:00,Finland,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-02-29 00:00:00+00:00,Finland,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-01 00:00:00+00:00,Finland,6.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-02 00:00:00+00:00,Finland,6.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-03 00:00:00+00:00,Finland,6.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-04 00:00:00+00:00,Finland,6.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-05 00:00:00+00:00,Finland,12.0,11.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-06 00:00:00+00:00,Finland,15.0,14.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-07 00:00:00+00:00,Finland,15.0,14.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-08 00:00:00+00:00,Finland,23.0,22.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-09 00:00:00+00:00,Finland,30.0,29.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-10 00:00:00+00:00,Finland,40.0,39.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-11 00:00:00+00:00,Finland,59.0,58.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-12 00:00:00+00:00,Finland,59.0,58.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-13 00:00:00+00:00,Finland,155.0,154.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-14 00:00:00+00:00,Finland,225.0,224.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-15 00:00:00+00:00,Finland,244.0,234.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FI,2020-03-16 00:00:00+00:00,Finland,277.0,267.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -FI,2020-03-17 00:00:00+00:00,Finland,321.0,311.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-18 00:00:00+00:00,Finland,336.0,326.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-19 00:00:00+00:00,Finland,400.0,390.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-20 00:00:00+00:00,Finland,450.0,440.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-21 00:00:00+00:00,Finland,523.0,512.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-22 00:00:00+00:00,Finland,626.0,615.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-23 00:00:00+00:00,Finland,700.0,689.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-24 00:00:00+00:00,Finland,792.0,781.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-25 00:00:00+00:00,Finland,880.0,867.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-26 00:00:00+00:00,Finland,958.0,943.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-27 00:00:00+00:00,Finland,1041.0,1024.0,7.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-28 00:00:00+00:00,Finland,1167.0,1148.0,9.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-29 00:00:00+00:00,Finland,1240.0,1219.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-30 00:00:00+00:00,Finland,1352.0,1329.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-03-31 00:00:00+00:00,Finland,1418.0,1391.0,17.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-04-01 00:00:00+00:00,Finland,1446.0,1419.0,17.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-04-02 00:00:00+00:00,Finland,1518.0,1199.0,19.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-04-03 00:00:00+00:00,Finland,1615.0,1295.0,20.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0 -FI,2020-04-04 00:00:00+00:00,Finland,1882.0,1557.0,25.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-05 00:00:00+00:00,Finland,1927.0,1599.0,28.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-06 00:00:00+00:00,Finland,2176.0,1849.0,27.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-07 00:00:00+00:00,Finland,2308.0,1974.0,34.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-08 00:00:00+00:00,Finland,2487.0,2147.0,40.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-09 00:00:00+00:00,Finland,2605.0,2263.0,42.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-10 00:00:00+00:00,Finland,2769.0,2421.0,48.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-11 00:00:00+00:00,Finland,2905.0,2556.0,49.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-12 00:00:00+00:00,Finland,2974.0,2618.0,56.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-13 00:00:00+00:00,Finland,3064.0,2705.0,59.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-14 00:00:00+00:00,Finland,3161.0,2797.0,64.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-15 00:00:00+00:00,Finland,3237.0,2865.0,72.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-16 00:00:00+00:00,Finland,3369.0,1594.0,75.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-17 00:00:00+00:00,Finland,3489.0,1707.0,82.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-18 00:00:00+00:00,Finland,3681.0,1891.0,90.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-19 00:00:00+00:00,Finland,3783.0,1989.0,94.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-20 00:00:00+00:00,Finland,3868.0,1770.0,98.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-21 00:00:00+00:00,Finland,4014.0,1873.0,141.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-22 00:00:00+00:00,Finland,4129.0,1980.0,149.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-23 00:00:00+00:00,Finland,4284.0,2112.0,172.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-24 00:00:00+00:00,Finland,4395.0,1718.0,177.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FI,2020-04-25 00:00:00+00:00,Finland,4475.0,1789.0,186.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -FR,2020-01-22 00:00:00+00:00,France,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-23 00:00:00+00:00,France,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-24 00:00:00+00:00,France,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-25 00:00:00+00:00,France,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-26 00:00:00+00:00,France,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-27 00:00:00+00:00,France,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-28 00:00:00+00:00,France,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-29 00:00:00+00:00,France,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-30 00:00:00+00:00,France,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-01-31 00:00:00+00:00,France,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-01 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-02 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-03 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-04 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-05 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-06 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-07 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-08 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-09 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-10 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-11 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-12 00:00:00+00:00,France,11.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-13 00:00:00+00:00,France,11.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-14 00:00:00+00:00,France,11.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-15 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-16 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-17 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-18 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-19 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-20 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-21 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-22 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-23 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-24 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-25 00:00:00+00:00,France,14.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-26 00:00:00+00:00,France,18.0,5.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-27 00:00:00+00:00,France,38.0,25.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-28 00:00:00+00:00,France,57.0,44.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-02-29 00:00:00+00:00,France,100.0,86.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-01 00:00:00+00:00,France,130.0,116.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-02 00:00:00+00:00,France,191.0,176.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-03 00:00:00+00:00,France,204.0,188.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-04 00:00:00+00:00,France,285.0,269.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-05 00:00:00+00:00,France,377.0,359.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-06 00:00:00+00:00,France,653.0,632.0,9.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-07 00:00:00+00:00,France,949.0,926.0,11.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-08 00:00:00+00:00,France,1126.0,1095.0,19.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-09 00:00:00+00:00,France,1209.0,1178.0,19.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-10 00:00:00+00:00,France,1784.0,1739.0,33.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-11 00:00:00+00:00,France,2281.0,2221.0,48.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-12 00:00:00+00:00,France,2281.0,2221.0,48.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-13 00:00:00+00:00,France,3661.0,3570.0,79.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -FR,2020-03-14 00:00:00+00:00,France,4469.0,4366.0,91.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0 -FR,2020-03-15 00:00:00+00:00,France,4499.0,4396.0,91.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0 -FR,2020-03-16 00:00:00+00:00,France,6633.0,6473.0,148.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -FR,2020-03-17 00:00:00+00:00,France,7652.0,7492.0,148.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-18 00:00:00+00:00,France,9043.0,8883.0,148.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-19 00:00:00+00:00,France,10871.0,10616.0,243.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-20 00:00:00+00:00,France,12612.0,12150.0,450.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-21 00:00:00+00:00,France,14282.0,13708.0,562.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-22 00:00:00+00:00,France,16018.0,13144.0,674.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-23 00:00:00+00:00,France,19856.0,16796.0,860.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-24 00:00:00+00:00,France,22304.0,17961.0,1100.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-25 00:00:00+00:00,France,25233.0,20002.0,1331.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-26 00:00:00+00:00,France,29155.0,22511.0,1696.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-27 00:00:00+00:00,France,32964.0,25269.0,1995.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-28 00:00:00+00:00,France,37575.0,29561.0,2314.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-29 00:00:00+00:00,France,40174.0,30366.0,2606.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-30 00:00:00+00:00,France,44550.0,33599.0,3024.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-03-31 00:00:00+00:00,France,52128.0,39161.0,3523.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-01 00:00:00+00:00,France,56989.0,41652.0,4403.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-02 00:00:00+00:00,France,59105.0,41290.0,5387.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-03 00:00:00+00:00,France,64338.0,43823.0,6507.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-04 00:00:00+00:00,France,68605.0,45607.0,7560.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-05 00:00:00+00:00,France,70478.0,46217.0,8078.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-06 00:00:00+00:00,France,74390.0,48229.0,8911.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-07 00:00:00+00:00,France,78167.0,48502.0,10328.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-08 00:00:00+00:00,France,82048.0,49925.0,10869.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-09 00:00:00+00:00,France,86334.0,50918.0,12210.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-10 00:00:00+00:00,France,90676.0,52547.0,13197.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-11 00:00:00+00:00,France,93790.0,53567.0,13832.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-12 00:00:00+00:00,France,120633.0,79054.0,14393.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-13 00:00:00+00:00,France,124298.0,81613.0,14967.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-14 00:00:00+00:00,France,129257.0,85033.0,15712.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-15 00:00:00+00:00,France,132473.0,84885.0,17148.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-16 00:00:00+00:00,France,144944.0,94746.0,17901.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-17 00:00:00+00:00,France,146923.0,94428.0,18661.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-18 00:00:00+00:00,France,146906.0,92224.0,19303.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-19 00:00:00+00:00,France,151808.0,96141.0,19694.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-20 00:00:00+00:00,France,154188.0,97166.0,20240.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-21 00:00:00+00:00,France,156921.0,97613.0,20765.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-22 00:00:00+00:00,France,154715.0,93418.0,21309.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-23 00:00:00+00:00,France,157026.0,93787.0,21825.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-24 00:00:00+00:00,France,158636.0,93707.0,22214.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -FR,2020-04-25 00:00:00+00:00,France,160292.0,93893.0,22583.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GE,2020-01-22 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-23 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-24 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-25 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-26 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-27 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-28 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-29 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-30 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-01-31 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-01 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-02 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-03 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-04 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-05 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-06 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-07 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-08 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-09 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-10 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-11 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-12 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-13 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-14 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-15 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-16 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-17 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-18 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-19 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-20 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-21 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-22 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-23 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-24 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-25 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-26 00:00:00+00:00,Georgia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-27 00:00:00+00:00,Georgia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-28 00:00:00+00:00,Georgia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GE,2020-02-29 00:00:00+00:00,Georgia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-01 00:00:00+00:00,Georgia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-02 00:00:00+00:00,Georgia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-03 00:00:00+00:00,Georgia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-04 00:00:00+00:00,Georgia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-05 00:00:00+00:00,Georgia,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-06 00:00:00+00:00,Georgia,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-07 00:00:00+00:00,Georgia,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-08 00:00:00+00:00,Georgia,13.0,13.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-09 00:00:00+00:00,Georgia,15.0,15.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-10 00:00:00+00:00,Georgia,15.0,15.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-11 00:00:00+00:00,Georgia,24.0,24.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-12 00:00:00+00:00,Georgia,24.0,24.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-13 00:00:00+00:00,Georgia,25.0,25.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-14 00:00:00+00:00,Georgia,30.0,30.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-15 00:00:00+00:00,Georgia,33.0,33.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-16 00:00:00+00:00,Georgia,33.0,32.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-17 00:00:00+00:00,Georgia,34.0,33.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-18 00:00:00+00:00,Georgia,38.0,37.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GE,2020-03-19 00:00:00+00:00,Georgia,40.0,39.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -GE,2020-03-20 00:00:00+00:00,Georgia,43.0,42.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0 -GE,2020-03-21 00:00:00+00:00,Georgia,49.0,48.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-22 00:00:00+00:00,Georgia,54.0,51.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-23 00:00:00+00:00,Georgia,61.0,58.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-24 00:00:00+00:00,Georgia,70.0,61.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-25 00:00:00+00:00,Georgia,75.0,65.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-26 00:00:00+00:00,Georgia,79.0,68.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-27 00:00:00+00:00,Georgia,83.0,69.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-28 00:00:00+00:00,Georgia,90.0,76.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-29 00:00:00+00:00,Georgia,91.0,73.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-30 00:00:00+00:00,Georgia,103.0,83.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-03-31 00:00:00+00:00,Georgia,110.0,89.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-01 00:00:00+00:00,Georgia,117.0,94.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-02 00:00:00+00:00,Georgia,134.0,108.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-03 00:00:00+00:00,Georgia,155.0,127.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-04 00:00:00+00:00,Georgia,162.0,125.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-05 00:00:00+00:00,Georgia,174.0,136.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-06 00:00:00+00:00,Georgia,188.0,147.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-07 00:00:00+00:00,Georgia,196.0,147.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-08 00:00:00+00:00,Georgia,211.0,158.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-09 00:00:00+00:00,Georgia,218.0,164.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-10 00:00:00+00:00,Georgia,234.0,177.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-11 00:00:00+00:00,Georgia,242.0,179.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-12 00:00:00+00:00,Georgia,257.0,187.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-13 00:00:00+00:00,Georgia,272.0,201.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-14 00:00:00+00:00,Georgia,300.0,228.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-15 00:00:00+00:00,Georgia,306.0,232.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-16 00:00:00+00:00,Georgia,348.0,269.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-17 00:00:00+00:00,Georgia,370.0,288.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-18 00:00:00+00:00,Georgia,388.0,298.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-19 00:00:00+00:00,Georgia,394.0,297.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-20 00:00:00+00:00,Georgia,402.0,303.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-21 00:00:00+00:00,Georgia,408.0,307.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-22 00:00:00+00:00,Georgia,416.0,304.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-23 00:00:00+00:00,Georgia,425.0,309.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-24 00:00:00+00:00,Georgia,444.0,307.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GE,2020-04-25 00:00:00+00:00,Georgia,456.0,312.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -DE,2020-01-22 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-23 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-24 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-25 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-26 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-27 00:00:00+00:00,Germany,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-28 00:00:00+00:00,Germany,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-29 00:00:00+00:00,Germany,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-30 00:00:00+00:00,Germany,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-01-31 00:00:00+00:00,Germany,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-01 00:00:00+00:00,Germany,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-02 00:00:00+00:00,Germany,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-03 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-04 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-05 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-06 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-07 00:00:00+00:00,Germany,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-08 00:00:00+00:00,Germany,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-09 00:00:00+00:00,Germany,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-10 00:00:00+00:00,Germany,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-11 00:00:00+00:00,Germany,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-12 00:00:00+00:00,Germany,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-13 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-14 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-15 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-16 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-17 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-18 00:00:00+00:00,Germany,16.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-19 00:00:00+00:00,Germany,16.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-20 00:00:00+00:00,Germany,16.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-21 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-22 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-23 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-24 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-25 00:00:00+00:00,Germany,17.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-26 00:00:00+00:00,Germany,27.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-27 00:00:00+00:00,Germany,46.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-28 00:00:00+00:00,Germany,48.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-02-29 00:00:00+00:00,Germany,79.0,63.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-01 00:00:00+00:00,Germany,130.0,114.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-02 00:00:00+00:00,Germany,159.0,143.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-03 00:00:00+00:00,Germany,196.0,180.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-04 00:00:00+00:00,Germany,262.0,246.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-05 00:00:00+00:00,Germany,482.0,466.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-06 00:00:00+00:00,Germany,670.0,653.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-07 00:00:00+00:00,Germany,799.0,781.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-08 00:00:00+00:00,Germany,1040.0,1022.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-09 00:00:00+00:00,Germany,1176.0,1156.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-10 00:00:00+00:00,Germany,1457.0,1437.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-11 00:00:00+00:00,Germany,1908.0,1880.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-12 00:00:00+00:00,Germany,2078.0,2050.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -DE,2020-03-13 00:00:00+00:00,Germany,3675.0,3622.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-14 00:00:00+00:00,Germany,4585.0,4530.0,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-15 00:00:00+00:00,Germany,5795.0,5738.0,11.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-16 00:00:00+00:00,Germany,7272.0,7188.0,17.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-17 00:00:00+00:00,Germany,9257.0,9166.0,24.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-18 00:00:00+00:00,Germany,12327.0,12194.0,28.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-19 00:00:00+00:00,Germany,15320.0,15163.0,44.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-20 00:00:00+00:00,Germany,19848.0,19601.0,67.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-21 00:00:00+00:00,Germany,22213.0,21896.0,84.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -DE,2020-03-22 00:00:00+00:00,Germany,24873.0,24513.0,94.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-23 00:00:00+00:00,Germany,29056.0,28667.0,123.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-24 00:00:00+00:00,Germany,32986.0,29586.0,157.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-25 00:00:00+00:00,Germany,37323.0,33570.0,206.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-26 00:00:00+00:00,Germany,43938.0,37998.0,267.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-27 00:00:00+00:00,Germany,50871.0,43871.0,342.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-28 00:00:00+00:00,Germany,57695.0,48781.0,433.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-29 00:00:00+00:00,Germany,62095.0,52351.0,533.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-30 00:00:00+00:00,Germany,66885.0,52740.0,645.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-03-31 00:00:00+00:00,Germany,71808.0,54933.0,775.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-01 00:00:00+00:00,Germany,77872.0,58252.0,920.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-02 00:00:00+00:00,Germany,84794.0,61247.0,1107.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-03 00:00:00+00:00,Germany,91159.0,65309.0,1275.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-04 00:00:00+00:00,Germany,96092.0,68248.0,1444.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-05 00:00:00+00:00,Germany,100123.0,69839.0,1584.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-06 00:00:00+00:00,Germany,103374.0,72864.0,1810.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-07 00:00:00+00:00,Germany,107663.0,69566.0,2016.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-08 00:00:00+00:00,Germany,113296.0,64647.0,2349.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-09 00:00:00+00:00,Germany,118181.0,63167.0,2607.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-10 00:00:00+00:00,Germany,122171.0,65491.0,2767.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-11 00:00:00+00:00,Germany,124908.0,64772.0,2736.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-12 00:00:00+00:00,Germany,127854.0,64532.0,3022.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-13 00:00:00+00:00,Germany,130072.0,62578.0,3194.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-14 00:00:00+00:00,Germany,131359.0,59865.0,3294.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-15 00:00:00+00:00,Germany,134753.0,58349.0,3804.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-16 00:00:00+00:00,Germany,137698.0,56646.0,4052.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-17 00:00:00+00:00,Germany,141397.0,53931.0,4352.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-18 00:00:00+00:00,Germany,143342.0,53483.0,4459.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-19 00:00:00+00:00,Germany,145184.0,52598.0,4586.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-20 00:00:00+00:00,Germany,147065.0,50703.0,4862.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-21 00:00:00+00:00,Germany,148291.0,48058.0,5033.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-22 00:00:00+00:00,Germany,150648.0,45969.0,5279.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-23 00:00:00+00:00,Germany,153129.0,44254.0,5575.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-24 00:00:00+00:00,Germany,154999.0,39439.0,5760.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -DE,2020-04-25 00:00:00+00:00,Germany,156513.0,40836.0,5877.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -GR,2020-01-22 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-23 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-24 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-25 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-26 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-27 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-28 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-29 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-30 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-01-31 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-01 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-02 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-03 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-04 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-05 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-06 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-07 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-08 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-09 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-10 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-11 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-12 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-13 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-14 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-15 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-16 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-17 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-18 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-19 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-20 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-21 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-22 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-23 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-24 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-25 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-26 00:00:00+00:00,Greece,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-27 00:00:00+00:00,Greece,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-28 00:00:00+00:00,Greece,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-02-29 00:00:00+00:00,Greece,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-01 00:00:00+00:00,Greece,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-02 00:00:00+00:00,Greece,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-03 00:00:00+00:00,Greece,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-04 00:00:00+00:00,Greece,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-05 00:00:00+00:00,Greece,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-06 00:00:00+00:00,Greece,45.0,45.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-07 00:00:00+00:00,Greece,46.0,46.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-08 00:00:00+00:00,Greece,73.0,73.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-09 00:00:00+00:00,Greece,73.0,73.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -GR,2020-03-10 00:00:00+00:00,Greece,89.0,89.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -GR,2020-03-11 00:00:00+00:00,Greece,99.0,98.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -GR,2020-03-12 00:00:00+00:00,Greece,99.0,98.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -GR,2020-03-13 00:00:00+00:00,Greece,190.0,189.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -GR,2020-03-14 00:00:00+00:00,Greece,228.0,217.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -GR,2020-03-15 00:00:00+00:00,Greece,331.0,319.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -GR,2020-03-16 00:00:00+00:00,Greece,331.0,319.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -GR,2020-03-17 00:00:00+00:00,Greece,387.0,374.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -GR,2020-03-18 00:00:00+00:00,Greece,418.0,405.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -GR,2020-03-19 00:00:00+00:00,Greece,418.0,404.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GR,2020-03-20 00:00:00+00:00,Greece,495.0,470.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GR,2020-03-21 00:00:00+00:00,Greece,530.0,498.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GR,2020-03-22 00:00:00+00:00,Greece,624.0,590.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GR,2020-03-23 00:00:00+00:00,Greece,695.0,659.0,17.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-24 00:00:00+00:00,Greece,743.0,694.0,20.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-25 00:00:00+00:00,Greece,821.0,763.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-26 00:00:00+00:00,Greece,892.0,830.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-27 00:00:00+00:00,Greece,966.0,886.0,28.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-28 00:00:00+00:00,Greece,1061.0,977.0,32.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-29 00:00:00+00:00,Greece,1156.0,1066.0,38.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-30 00:00:00+00:00,Greece,1212.0,1117.0,43.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-03-31 00:00:00+00:00,Greece,1314.0,1213.0,49.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-01 00:00:00+00:00,Greece,1415.0,1313.0,50.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-02 00:00:00+00:00,Greece,1544.0,1430.0,53.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-03 00:00:00+00:00,Greece,1613.0,1472.0,63.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-04 00:00:00+00:00,Greece,1673.0,1527.0,68.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-05 00:00:00+00:00,Greece,1735.0,1584.0,73.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-06 00:00:00+00:00,Greece,1755.0,1407.0,79.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-07 00:00:00+00:00,Greece,1832.0,1482.0,81.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-08 00:00:00+00:00,Greece,1884.0,1532.0,83.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-09 00:00:00+00:00,Greece,1955.0,1599.0,87.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-10 00:00:00+00:00,Greece,2011.0,1650.0,92.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-11 00:00:00+00:00,Greece,2081.0,1719.0,93.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-12 00:00:00+00:00,Greece,2114.0,1747.0,98.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-13 00:00:00+00:00,Greece,2145.0,1777.0,99.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-14 00:00:00+00:00,Greece,2170.0,1800.0,101.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-15 00:00:00+00:00,Greece,2192.0,1821.0,102.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-16 00:00:00+00:00,Greece,2207.0,1833.0,105.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-17 00:00:00+00:00,Greece,2224.0,1847.0,108.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-18 00:00:00+00:00,Greece,2235.0,1856.0,110.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-19 00:00:00+00:00,Greece,2235.0,1853.0,113.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-20 00:00:00+00:00,Greece,2245.0,1860.0,116.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-21 00:00:00+00:00,Greece,2401.0,1703.0,121.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-22 00:00:00+00:00,Greece,2408.0,1710.0,121.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-23 00:00:00+00:00,Greece,2463.0,1761.0,125.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-24 00:00:00+00:00,Greece,2490.0,1783.0,130.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GR,2020-04-25 00:00:00+00:00,Greece,2506.0,1799.0,130.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -HU,2020-01-22 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-23 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-24 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-25 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-26 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-27 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-28 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-29 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-30 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-01-31 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-01 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-02 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-03 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-04 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-05 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-06 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-07 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-08 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-09 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-10 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-11 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-12 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-13 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-14 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-15 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-16 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-17 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-18 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-19 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-20 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-21 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-22 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-23 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-24 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-25 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-26 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-27 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-28 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-02-29 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-01 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-02 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-03 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-04 00:00:00+00:00,Hungary,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-05 00:00:00+00:00,Hungary,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-06 00:00:00+00:00,Hungary,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-07 00:00:00+00:00,Hungary,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-08 00:00:00+00:00,Hungary,7.0,7.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-09 00:00:00+00:00,Hungary,9.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-10 00:00:00+00:00,Hungary,9.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-11 00:00:00+00:00,Hungary,13.0,13.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-12 00:00:00+00:00,Hungary,13.0,13.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-13 00:00:00+00:00,Hungary,19.0,19.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-14 00:00:00+00:00,Hungary,30.0,29.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-15 00:00:00+00:00,Hungary,32.0,30.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -HU,2020-03-16 00:00:00+00:00,Hungary,39.0,37.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-17 00:00:00+00:00,Hungary,50.0,47.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-18 00:00:00+00:00,Hungary,58.0,55.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-19 00:00:00+00:00,Hungary,73.0,70.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-20 00:00:00+00:00,Hungary,85.0,80.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-21 00:00:00+00:00,Hungary,103.0,92.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-22 00:00:00+00:00,Hungary,131.0,109.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-23 00:00:00+00:00,Hungary,167.0,144.0,7.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-24 00:00:00+00:00,Hungary,187.0,157.0,9.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-25 00:00:00+00:00,Hungary,226.0,195.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-26 00:00:00+00:00,Hungary,261.0,223.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-27 00:00:00+00:00,Hungary,300.0,256.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -HU,2020-03-28 00:00:00+00:00,Hungary,343.0,298.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-03-29 00:00:00+00:00,Hungary,408.0,361.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-03-30 00:00:00+00:00,Hungary,447.0,398.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-03-31 00:00:00+00:00,Hungary,492.0,439.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-01 00:00:00+00:00,Hungary,525.0,465.0,20.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-02 00:00:00+00:00,Hungary,585.0,522.0,21.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-03 00:00:00+00:00,Hungary,623.0,554.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-04 00:00:00+00:00,Hungary,678.0,588.0,32.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-05 00:00:00+00:00,Hungary,733.0,633.0,34.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-06 00:00:00+00:00,Hungary,744.0,639.0,38.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-07 00:00:00+00:00,Hungary,817.0,699.0,47.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-08 00:00:00+00:00,Hungary,895.0,743.0,58.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-09 00:00:00+00:00,Hungary,980.0,818.0,66.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-10 00:00:00+00:00,Hungary,1190.0,1001.0,77.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-11 00:00:00+00:00,Hungary,1310.0,1110.0,85.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-12 00:00:00+00:00,Hungary,1410.0,1193.0,99.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-13 00:00:00+00:00,Hungary,1458.0,1229.0,109.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-14 00:00:00+00:00,Hungary,1512.0,1268.0,122.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-15 00:00:00+00:00,Hungary,1579.0,1253.0,134.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-16 00:00:00+00:00,Hungary,1652.0,1311.0,142.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-17 00:00:00+00:00,Hungary,1763.0,1400.0,156.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-18 00:00:00+00:00,Hungary,1834.0,1431.0,172.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-19 00:00:00+00:00,Hungary,1916.0,1477.0,189.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-20 00:00:00+00:00,Hungary,1984.0,1518.0,199.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-21 00:00:00+00:00,Hungary,2098.0,1598.0,213.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-22 00:00:00+00:00,Hungary,2168.0,1648.0,225.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-23 00:00:00+00:00,Hungary,2284.0,1655.0,239.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-24 00:00:00+00:00,Hungary,2443.0,1723.0,262.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -HU,2020-04-25 00:00:00+00:00,Hungary,2443.0,1723.0,262.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -IS,2020-01-22 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-23 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-24 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-25 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-26 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-27 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-28 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-29 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-30 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-01-31 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-01 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-02 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-03 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-04 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-05 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-06 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-07 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-08 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-09 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-10 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-11 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-12 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-13 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-14 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-15 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-16 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-17 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-18 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-19 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-20 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-21 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-22 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-23 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-24 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-25 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-26 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-27 00:00:00+00:00,Iceland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-28 00:00:00+00:00,Iceland,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-02-29 00:00:00+00:00,Iceland,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-01 00:00:00+00:00,Iceland,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-02 00:00:00+00:00,Iceland,6.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-03 00:00:00+00:00,Iceland,11.0,11.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-04 00:00:00+00:00,Iceland,26.0,26.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-05 00:00:00+00:00,Iceland,34.0,34.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-06 00:00:00+00:00,Iceland,43.0,43.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-07 00:00:00+00:00,Iceland,50.0,50.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-08 00:00:00+00:00,Iceland,50.0,50.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-09 00:00:00+00:00,Iceland,58.0,58.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-10 00:00:00+00:00,Iceland,69.0,68.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-11 00:00:00+00:00,Iceland,85.0,84.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-12 00:00:00+00:00,Iceland,103.0,102.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-13 00:00:00+00:00,Iceland,134.0,133.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-14 00:00:00+00:00,Iceland,156.0,155.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-15 00:00:00+00:00,Iceland,171.0,158.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IS,2020-03-16 00:00:00+00:00,Iceland,180.0,180.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-17 00:00:00+00:00,Iceland,220.0,219.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-18 00:00:00+00:00,Iceland,250.0,244.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-19 00:00:00+00:00,Iceland,330.0,324.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-20 00:00:00+00:00,Iceland,409.0,404.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-21 00:00:00+00:00,Iceland,473.0,450.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-22 00:00:00+00:00,Iceland,568.0,531.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-23 00:00:00+00:00,Iceland,588.0,551.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IS,2020-03-24 00:00:00+00:00,Iceland,648.0,595.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-25 00:00:00+00:00,Iceland,737.0,679.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-26 00:00:00+00:00,Iceland,802.0,718.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-27 00:00:00+00:00,Iceland,890.0,791.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-28 00:00:00+00:00,Iceland,963.0,847.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-29 00:00:00+00:00,Iceland,1020.0,883.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-30 00:00:00+00:00,Iceland,1086.0,927.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-03-31 00:00:00+00:00,Iceland,1135.0,935.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-01 00:00:00+00:00,Iceland,1220.0,993.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-02 00:00:00+00:00,Iceland,1319.0,1031.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-03 00:00:00+00:00,Iceland,1364.0,1051.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-04 00:00:00+00:00,Iceland,1417.0,1017.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-05 00:00:00+00:00,Iceland,1486.0,1054.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-06 00:00:00+00:00,Iceland,1562.0,1096.0,6.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-07 00:00:00+00:00,Iceland,1586.0,1021.0,6.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-08 00:00:00+00:00,Iceland,1616.0,977.0,6.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-09 00:00:00+00:00,Iceland,1648.0,954.0,6.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-10 00:00:00+00:00,Iceland,1675.0,917.0,7.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-11 00:00:00+00:00,Iceland,1689.0,840.0,8.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-12 00:00:00+00:00,Iceland,1701.0,804.0,8.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-13 00:00:00+00:00,Iceland,1711.0,770.0,8.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-14 00:00:00+00:00,Iceland,1720.0,723.0,8.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-15 00:00:00+00:00,Iceland,1727.0,642.0,8.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-16 00:00:00+00:00,Iceland,1739.0,587.0,8.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-17 00:00:00+00:00,Iceland,1754.0,521.0,9.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-18 00:00:00+00:00,Iceland,1760.0,460.0,9.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-19 00:00:00+00:00,Iceland,1771.0,471.0,9.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-20 00:00:00+00:00,Iceland,1773.0,401.0,10.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-21 00:00:00+00:00,Iceland,1778.0,351.0,10.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-22 00:00:00+00:00,Iceland,1785.0,313.0,10.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-23 00:00:00+00:00,Iceland,1789.0,270.0,10.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-24 00:00:00+00:00,Iceland,1789.0,237.0,10.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IS,2020-04-25 00:00:00+00:00,Iceland,1790.0,210.0,10.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-01-22 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-23 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-24 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-25 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-26 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-27 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-28 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-29 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-30 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-01-31 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-01 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-02 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-03 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-04 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-05 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-06 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-07 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-08 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-09 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-10 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-11 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-12 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-13 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-14 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-15 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-16 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-17 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-18 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-19 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-20 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-21 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-22 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-23 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-24 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-25 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-26 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-27 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-28 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-02-29 00:00:00+00:00,Ireland,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-01 00:00:00+00:00,Ireland,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-02 00:00:00+00:00,Ireland,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-03 00:00:00+00:00,Ireland,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-04 00:00:00+00:00,Ireland,6.0,6.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-05 00:00:00+00:00,Ireland,6.0,6.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-06 00:00:00+00:00,Ireland,18.0,18.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-07 00:00:00+00:00,Ireland,18.0,18.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-08 00:00:00+00:00,Ireland,19.0,19.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-09 00:00:00+00:00,Ireland,21.0,21.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-10 00:00:00+00:00,Ireland,34.0,34.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-11 00:00:00+00:00,Ireland,43.0,42.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IE,2020-03-12 00:00:00+00:00,Ireland,43.0,42.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IE,2020-03-13 00:00:00+00:00,Ireland,90.0,89.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IE,2020-03-14 00:00:00+00:00,Ireland,129.0,127.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IE,2020-03-15 00:00:00+00:00,Ireland,129.0,127.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -IE,2020-03-16 00:00:00+00:00,Ireland,169.0,167.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-17 00:00:00+00:00,Ireland,223.0,216.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-18 00:00:00+00:00,Ireland,292.0,285.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-19 00:00:00+00:00,Ireland,557.0,549.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-20 00:00:00+00:00,Ireland,683.0,675.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-21 00:00:00+00:00,Ireland,785.0,777.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-22 00:00:00+00:00,Ireland,906.0,897.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-23 00:00:00+00:00,Ireland,1125.0,1114.0,6.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -IE,2020-03-24 00:00:00+00:00,Ireland,1329.0,1317.0,7.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -IE,2020-03-25 00:00:00+00:00,Ireland,1564.0,1550.0,9.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IE,2020-03-26 00:00:00+00:00,Ireland,1819.0,1795.0,19.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IE,2020-03-27 00:00:00+00:00,Ireland,2121.0,2094.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IE,2020-03-28 00:00:00+00:00,Ireland,2415.0,2374.0,36.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-03-29 00:00:00+00:00,Ireland,2615.0,2564.0,46.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-03-30 00:00:00+00:00,Ireland,2910.0,2851.0,54.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-03-31 00:00:00+00:00,Ireland,3235.0,3159.0,71.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-01 00:00:00+00:00,Ireland,3447.0,3357.0,85.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-02 00:00:00+00:00,Ireland,3849.0,3746.0,98.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-03 00:00:00+00:00,Ireland,4273.0,4148.0,120.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-04 00:00:00+00:00,Ireland,4604.0,4442.0,137.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-05 00:00:00+00:00,Ireland,4994.0,4811.0,158.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-06 00:00:00+00:00,Ireland,5364.0,5165.0,174.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-07 00:00:00+00:00,Ireland,5709.0,5474.0,210.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-08 00:00:00+00:00,Ireland,6074.0,5814.0,235.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-09 00:00:00+00:00,Ireland,6574.0,6286.0,263.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-10 00:00:00+00:00,Ireland,8089.0,7777.0,287.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-11 00:00:00+00:00,Ireland,8928.0,8583.0,320.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-12 00:00:00+00:00,Ireland,9655.0,9296.0,334.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-13 00:00:00+00:00,Ireland,10647.0,10257.0,365.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-14 00:00:00+00:00,Ireland,11479.0,11048.0,406.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-15 00:00:00+00:00,Ireland,12547.0,12026.0,444.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-16 00:00:00+00:00,Ireland,13271.0,12708.0,486.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-17 00:00:00+00:00,Ireland,13980.0,13373.0,530.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-18 00:00:00+00:00,Ireland,14758.0,14110.0,571.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-19 00:00:00+00:00,Ireland,15251.0,14564.0,610.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-20 00:00:00+00:00,Ireland,15652.0,14888.0,687.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-21 00:00:00+00:00,Ireland,16040.0,6077.0,730.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-22 00:00:00+00:00,Ireland,16671.0,6669.0,769.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-23 00:00:00+00:00,Ireland,17607.0,7580.0,794.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-24 00:00:00+00:00,Ireland,18184.0,7937.0,1014.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IE,2020-04-25 00:00:00+00:00,Ireland,18561.0,8265.0,1063.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IL,2020-01-22 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-23 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-24 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-25 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-26 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-27 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-28 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-29 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-30 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-01-31 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-01 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-02 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-03 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-04 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-05 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-06 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-07 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-08 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-09 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-10 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-11 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-12 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-13 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-14 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-15 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-16 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-17 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-18 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-19 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-20 00:00:00+00:00,Israel,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-21 00:00:00+00:00,Israel,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-22 00:00:00+00:00,Israel,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-23 00:00:00+00:00,Israel,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-24 00:00:00+00:00,Israel,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-25 00:00:00+00:00,Israel,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-26 00:00:00+00:00,Israel,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-27 00:00:00+00:00,Israel,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-28 00:00:00+00:00,Israel,4.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-02-29 00:00:00+00:00,Israel,7.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-01 00:00:00+00:00,Israel,10.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-02 00:00:00+00:00,Israel,10.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-03 00:00:00+00:00,Israel,12.0,11.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-04 00:00:00+00:00,Israel,15.0,14.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-05 00:00:00+00:00,Israel,20.0,19.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-06 00:00:00+00:00,Israel,37.0,35.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-07 00:00:00+00:00,Israel,43.0,41.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-08 00:00:00+00:00,Israel,61.0,59.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-09 00:00:00+00:00,Israel,61.0,59.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-10 00:00:00+00:00,Israel,75.0,71.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-11 00:00:00+00:00,Israel,79.0,75.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-12 00:00:00+00:00,Israel,100.0,96.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-13 00:00:00+00:00,Israel,126.0,122.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-14 00:00:00+00:00,Israel,155.0,151.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -IL,2020-03-15 00:00:00+00:00,Israel,213.0,209.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-16 00:00:00+00:00,Israel,218.0,214.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-17 00:00:00+00:00,Israel,250.0,239.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-18 00:00:00+00:00,Israel,304.0,293.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-19 00:00:00+00:00,Israel,427.0,416.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-20 00:00:00+00:00,Israel,529.0,515.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-21 00:00:00+00:00,Israel,712.0,675.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-22 00:00:00+00:00,Israel,883.0,845.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-23 00:00:00+00:00,Israel,1071.0,1033.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-24 00:00:00+00:00,Israel,1238.0,1182.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-25 00:00:00+00:00,Israel,2369.0,2306.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-26 00:00:00+00:00,Israel,2693.0,2617.0,8.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-27 00:00:00+00:00,Israel,3035.0,2944.0,12.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-28 00:00:00+00:00,Israel,3619.0,3518.0,12.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-29 00:00:00+00:00,Israel,4247.0,4100.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-30 00:00:00+00:00,Israel,4695.0,4518.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-03-31 00:00:00+00:00,Israel,5358.0,5114.0,20.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-01 00:00:00+00:00,Israel,6092.0,5825.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-02 00:00:00+00:00,Israel,6857.0,6483.0,36.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-03 00:00:00+00:00,Israel,7428.0,6985.0,40.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-04 00:00:00+00:00,Israel,7851.0,7380.0,44.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-05 00:00:00+00:00,Israel,8430.0,7904.0,49.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-06 00:00:00+00:00,Israel,8904.0,8262.0,57.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-07 00:00:00+00:00,Israel,9248.0,8413.0,65.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-08 00:00:00+00:00,Israel,9404.0,8530.0,73.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-09 00:00:00+00:00,Israel,9968.0,8871.0,86.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-10 00:00:00+00:00,Israel,10408.0,9130.0,95.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-11 00:00:00+00:00,Israel,10743.0,9301.0,101.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-12 00:00:00+00:00,Israel,11145.0,9415.0,103.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-13 00:00:00+00:00,Israel,11586.0,9615.0,116.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-14 00:00:00+00:00,Israel,12046.0,9728.0,123.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-15 00:00:00+00:00,Israel,12501.0,9808.0,130.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-16 00:00:00+00:00,Israel,12758.0,9798.0,142.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-17 00:00:00+00:00,Israel,12982.0,9705.0,151.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-18 00:00:00+00:00,Israel,13265.0,9645.0,164.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-19 00:00:00+00:00,Israel,13491.0,9565.0,172.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-20 00:00:00+00:00,Israel,13713.0,9487.0,177.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-21 00:00:00+00:00,Israel,13942.0,9251.0,184.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-22 00:00:00+00:00,Israel,14498.0,9094.0,189.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-23 00:00:00+00:00,Israel,14803.0,9000.0,192.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-24 00:00:00+00:00,Israel,15058.0,8861.0,194.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IL,2020-04-25 00:00:00+00:00,Israel,15298.0,8664.0,199.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -IT,2020-01-22 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-23 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-24 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-25 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-26 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-27 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-28 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-29 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-30 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-01-31 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-01 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-02 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-03 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-04 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-05 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-06 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-07 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-08 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-09 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-10 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-11 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-12 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-13 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-14 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-15 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-16 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-17 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-18 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-19 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-20 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-21 00:00:00+00:00,Italy,20.0,19.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-22 00:00:00+00:00,Italy,62.0,59.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-23 00:00:00+00:00,Italy,155.0,150.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-24 00:00:00+00:00,Italy,229.0,221.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-25 00:00:00+00:00,Italy,322.0,311.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-26 00:00:00+00:00,Italy,453.0,438.0,12.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-27 00:00:00+00:00,Italy,655.0,593.0,17.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-28 00:00:00+00:00,Italy,888.0,821.0,21.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-02-29 00:00:00+00:00,Italy,1128.0,1053.0,29.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-03-01 00:00:00+00:00,Italy,1694.0,1577.0,34.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-03-02 00:00:00+00:00,Italy,2036.0,1835.0,52.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-03-03 00:00:00+00:00,Italy,2502.0,2263.0,79.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-03-04 00:00:00+00:00,Italy,3089.0,2706.0,107.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -IT,2020-03-05 00:00:00+00:00,Italy,3858.0,3296.0,148.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -IT,2020-03-06 00:00:00+00:00,Italy,4636.0,3916.0,197.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -IT,2020-03-07 00:00:00+00:00,Italy,5883.0,5061.0,233.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -IT,2020-03-08 00:00:00+00:00,Italy,7375.0,6387.0,366.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -IT,2020-03-09 00:00:00+00:00,Italy,9172.0,7985.0,463.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -IT,2020-03-10 00:00:00+00:00,Italy,10149.0,8794.0,631.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 -IT,2020-03-11 00:00:00+00:00,Italy,12462.0,10590.0,827.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-12 00:00:00+00:00,Italy,12462.0,10590.0,827.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-13 00:00:00+00:00,Italy,17660.0,14955.0,1266.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-14 00:00:00+00:00,Italy,21157.0,17750.0,1441.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-15 00:00:00+00:00,Italy,24747.0,20603.0,1809.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-16 00:00:00+00:00,Italy,27980.0,23073.0,2158.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-17 00:00:00+00:00,Italy,31506.0,26062.0,2503.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-18 00:00:00+00:00,Italy,35713.0,28710.0,2978.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-19 00:00:00+00:00,Italy,41035.0,33190.0,3405.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-20 00:00:00+00:00,Italy,47021.0,38549.0,4032.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-21 00:00:00+00:00,Italy,53578.0,42681.0,4825.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-22 00:00:00+00:00,Italy,59138.0,46638.0,5476.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-23 00:00:00+00:00,Italy,63927.0,50826.0,6077.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-24 00:00:00+00:00,Italy,69176.0,54030.0,6820.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-25 00:00:00+00:00,Italy,74386.0,57521.0,7503.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-26 00:00:00+00:00,Italy,80589.0,62013.0,8215.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-27 00:00:00+00:00,Italy,86498.0,66414.0,9134.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-28 00:00:00+00:00,Italy,92472.0,70065.0,10023.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-29 00:00:00+00:00,Italy,97689.0,73880.0,10779.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-30 00:00:00+00:00,Italy,101739.0,75528.0,11591.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-03-31 00:00:00+00:00,Italy,105792.0,77635.0,12428.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-01 00:00:00+00:00,Italy,110574.0,80572.0,13155.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-02 00:00:00+00:00,Italy,115242.0,83049.0,13915.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-03 00:00:00+00:00,Italy,119827.0,85388.0,14681.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-04 00:00:00+00:00,Italy,124632.0,88274.0,15362.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-05 00:00:00+00:00,Italy,128948.0,91246.0,15887.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-06 00:00:00+00:00,Italy,132547.0,93187.0,16523.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-07 00:00:00+00:00,Italy,135586.0,94067.0,17127.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-08 00:00:00+00:00,Italy,139422.0,95262.0,17669.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-09 00:00:00+00:00,Italy,143626.0,96877.0,18279.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-10 00:00:00+00:00,Italy,147577.0,98273.0,18849.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-11 00:00:00+00:00,Italy,152271.0,100269.0,19468.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-12 00:00:00+00:00,Italy,156363.0,102253.0,19899.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-13 00:00:00+00:00,Italy,159516.0,103616.0,20465.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-14 00:00:00+00:00,Italy,162488.0,104291.0,21067.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-15 00:00:00+00:00,Italy,165155.0,105418.0,21645.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-16 00:00:00+00:00,Italy,168941.0,106607.0,22170.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-17 00:00:00+00:00,Italy,172434.0,106962.0,22745.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-18 00:00:00+00:00,Italy,175925.0,107771.0,23227.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-19 00:00:00+00:00,Italy,178972.0,108257.0,23660.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-20 00:00:00+00:00,Italy,181228.0,108237.0,24114.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-21 00:00:00+00:00,Italy,183957.0,107709.0,24648.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-22 00:00:00+00:00,Italy,187327.0,107699.0,25085.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-23 00:00:00+00:00,Italy,189973.0,106848.0,25549.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-24 00:00:00+00:00,Italy,192994.0,106527.0,25969.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -IT,2020-04-25 00:00:00+00:00,Italy,195351.0,105847.0,26384.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -LV,2020-01-22 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-23 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-24 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-25 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-26 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-27 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-28 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-29 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-30 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-01-31 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-01 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-02 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-03 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-04 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-05 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-06 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-07 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-08 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-09 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-10 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-11 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-12 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-13 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-14 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-15 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-16 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-17 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-18 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-19 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-20 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-21 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-22 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-23 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-24 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-25 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-26 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-27 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-28 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-02-29 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-01 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-02 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-03 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-04 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-05 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-06 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-07 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-08 00:00:00+00:00,Latvia,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-09 00:00:00+00:00,Latvia,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-10 00:00:00+00:00,Latvia,8.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-11 00:00:00+00:00,Latvia,10.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LV,2020-03-12 00:00:00+00:00,Latvia,10.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -LV,2020-03-13 00:00:00+00:00,Latvia,17.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-14 00:00:00+00:00,Latvia,26.0,25.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-15 00:00:00+00:00,Latvia,30.0,29.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-16 00:00:00+00:00,Latvia,34.0,33.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-17 00:00:00+00:00,Latvia,49.0,48.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-18 00:00:00+00:00,Latvia,71.0,70.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-19 00:00:00+00:00,Latvia,86.0,85.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-20 00:00:00+00:00,Latvia,111.0,110.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-21 00:00:00+00:00,Latvia,124.0,123.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-22 00:00:00+00:00,Latvia,139.0,138.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-23 00:00:00+00:00,Latvia,180.0,179.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-24 00:00:00+00:00,Latvia,197.0,196.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-25 00:00:00+00:00,Latvia,221.0,220.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-26 00:00:00+00:00,Latvia,244.0,243.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-27 00:00:00+00:00,Latvia,280.0,279.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-28 00:00:00+00:00,Latvia,305.0,304.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-29 00:00:00+00:00,Latvia,347.0,346.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -LV,2020-03-30 00:00:00+00:00,Latvia,376.0,375.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-03-31 00:00:00+00:00,Latvia,398.0,397.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-01 00:00:00+00:00,Latvia,446.0,445.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-02 00:00:00+00:00,Latvia,458.0,427.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-03 00:00:00+00:00,Latvia,493.0,491.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-04 00:00:00+00:00,Latvia,509.0,507.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-05 00:00:00+00:00,Latvia,533.0,531.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-06 00:00:00+00:00,Latvia,542.0,525.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-07 00:00:00+00:00,Latvia,548.0,530.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-08 00:00:00+00:00,Latvia,577.0,559.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-09 00:00:00+00:00,Latvia,589.0,570.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-10 00:00:00+00:00,Latvia,612.0,593.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-11 00:00:00+00:00,Latvia,630.0,611.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-12 00:00:00+00:00,Latvia,651.0,630.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-13 00:00:00+00:00,Latvia,655.0,634.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-14 00:00:00+00:00,Latvia,657.0,636.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-15 00:00:00+00:00,Latvia,666.0,617.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-16 00:00:00+00:00,Latvia,675.0,613.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-17 00:00:00+00:00,Latvia,682.0,589.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-18 00:00:00+00:00,Latvia,712.0,619.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-19 00:00:00+00:00,Latvia,727.0,634.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-20 00:00:00+00:00,Latvia,739.0,646.0,5.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-21 00:00:00+00:00,Latvia,748.0,606.0,9.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-22 00:00:00+00:00,Latvia,761.0,617.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-23 00:00:00+00:00,Latvia,778.0,634.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-24 00:00:00+00:00,Latvia,784.0,505.0,12.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LV,2020-04-25 00:00:00+00:00,Latvia,804.0,525.0,12.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -LT,2020-01-22 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-23 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-24 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-25 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-26 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-27 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-28 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-29 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-30 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-01-31 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-01 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-02 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-03 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-04 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-05 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-06 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-07 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-08 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-09 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-10 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-11 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-12 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-13 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-14 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-15 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-16 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-17 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-18 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-19 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-20 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-21 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-22 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-23 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-24 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-25 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-26 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-27 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-28 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-02-29 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-01 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-02 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-03 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-04 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-05 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-06 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-07 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-08 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-09 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-10 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-11 00:00:00+00:00,Lithuania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-12 00:00:00+00:00,Lithuania,3.0,3.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -LT,2020-03-13 00:00:00+00:00,Lithuania,6.0,6.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -LT,2020-03-14 00:00:00+00:00,Lithuania,8.0,8.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -LT,2020-03-15 00:00:00+00:00,Lithuania,12.0,11.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -LT,2020-03-16 00:00:00+00:00,Lithuania,17.0,16.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-17 00:00:00+00:00,Lithuania,25.0,24.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-18 00:00:00+00:00,Lithuania,27.0,26.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-19 00:00:00+00:00,Lithuania,36.0,35.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-20 00:00:00+00:00,Lithuania,49.0,48.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-21 00:00:00+00:00,Lithuania,83.0,81.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-22 00:00:00+00:00,Lithuania,143.0,141.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-23 00:00:00+00:00,Lithuania,179.0,177.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-24 00:00:00+00:00,Lithuania,209.0,206.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-25 00:00:00+00:00,Lithuania,274.0,269.0,4.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-26 00:00:00+00:00,Lithuania,299.0,294.0,4.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-27 00:00:00+00:00,Lithuania,358.0,352.0,5.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-28 00:00:00+00:00,Lithuania,394.0,386.0,7.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-29 00:00:00+00:00,Lithuania,460.0,452.0,7.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-30 00:00:00+00:00,Lithuania,491.0,477.0,7.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-03-31 00:00:00+00:00,Lithuania,537.0,522.0,8.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-01 00:00:00+00:00,Lithuania,581.0,566.0,8.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-02 00:00:00+00:00,Lithuania,649.0,633.0,9.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-03 00:00:00+00:00,Lithuania,696.0,680.0,9.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-04 00:00:00+00:00,Lithuania,771.0,753.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-05 00:00:00+00:00,Lithuania,811.0,791.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-06 00:00:00+00:00,Lithuania,843.0,820.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-07 00:00:00+00:00,Lithuania,880.0,857.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-08 00:00:00+00:00,Lithuania,912.0,889.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-09 00:00:00+00:00,Lithuania,955.0,931.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-10 00:00:00+00:00,Lithuania,999.0,923.0,22.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-11 00:00:00+00:00,Lithuania,1026.0,949.0,23.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-12 00:00:00+00:00,Lithuania,1053.0,933.0,23.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-13 00:00:00+00:00,Lithuania,1062.0,937.0,24.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-14 00:00:00+00:00,Lithuania,1070.0,940.0,29.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-15 00:00:00+00:00,Lithuania,1091.0,923.0,30.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-16 00:00:00+00:00,Lithuania,1128.0,918.0,32.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-17 00:00:00+00:00,Lithuania,1149.0,906.0,33.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-18 00:00:00+00:00,Lithuania,1239.0,978.0,33.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-19 00:00:00+00:00,Lithuania,1298.0,1021.0,35.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-20 00:00:00+00:00,Lithuania,1326.0,1047.0,37.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-21 00:00:00+00:00,Lithuania,1350.0,1014.0,38.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-22 00:00:00+00:00,Lithuania,1370.0,975.0,38.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-23 00:00:00+00:00,Lithuania,1398.0,959.0,40.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-24 00:00:00+00:00,Lithuania,1410.0,940.0,40.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -LT,2020-04-25 00:00:00+00:00,Lithuania,1426.0,925.0,41.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MY,2020-01-22 00:00:00+00:00,Malaysia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-23 00:00:00+00:00,Malaysia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-24 00:00:00+00:00,Malaysia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-25 00:00:00+00:00,Malaysia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-26 00:00:00+00:00,Malaysia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-27 00:00:00+00:00,Malaysia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-28 00:00:00+00:00,Malaysia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-29 00:00:00+00:00,Malaysia,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-30 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-01-31 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-01 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-02 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-03 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-04 00:00:00+00:00,Malaysia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-05 00:00:00+00:00,Malaysia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-06 00:00:00+00:00,Malaysia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-07 00:00:00+00:00,Malaysia,12.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-08 00:00:00+00:00,Malaysia,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-09 00:00:00+00:00,Malaysia,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-10 00:00:00+00:00,Malaysia,18.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-11 00:00:00+00:00,Malaysia,18.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-12 00:00:00+00:00,Malaysia,18.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-13 00:00:00+00:00,Malaysia,19.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-14 00:00:00+00:00,Malaysia,19.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-15 00:00:00+00:00,Malaysia,22.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-16 00:00:00+00:00,Malaysia,22.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-17 00:00:00+00:00,Malaysia,22.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-18 00:00:00+00:00,Malaysia,22.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-19 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-20 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-21 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-22 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-23 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-24 00:00:00+00:00,Malaysia,22.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-25 00:00:00+00:00,Malaysia,22.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-26 00:00:00+00:00,Malaysia,22.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-27 00:00:00+00:00,Malaysia,23.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-28 00:00:00+00:00,Malaysia,23.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-02-29 00:00:00+00:00,Malaysia,25.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-01 00:00:00+00:00,Malaysia,29.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-02 00:00:00+00:00,Malaysia,29.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-03 00:00:00+00:00,Malaysia,36.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-04 00:00:00+00:00,Malaysia,50.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-05 00:00:00+00:00,Malaysia,50.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-06 00:00:00+00:00,Malaysia,83.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-07 00:00:00+00:00,Malaysia,93.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-08 00:00:00+00:00,Malaysia,99.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-09 00:00:00+00:00,Malaysia,117.0,93.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-10 00:00:00+00:00,Malaysia,129.0,105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-11 00:00:00+00:00,Malaysia,149.0,123.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-12 00:00:00+00:00,Malaysia,149.0,123.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-13 00:00:00+00:00,Malaysia,197.0,171.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-14 00:00:00+00:00,Malaysia,238.0,203.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-15 00:00:00+00:00,Malaysia,428.0,386.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-16 00:00:00+00:00,Malaysia,566.0,524.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-17 00:00:00+00:00,Malaysia,673.0,622.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MY,2020-03-18 00:00:00+00:00,Malaysia,790.0,728.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-19 00:00:00+00:00,Malaysia,900.0,823.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-20 00:00:00+00:00,Malaysia,1030.0,940.0,3.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-21 00:00:00+00:00,Malaysia,1183.0,1065.0,4.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-22 00:00:00+00:00,Malaysia,1306.0,1157.0,10.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-23 00:00:00+00:00,Malaysia,1518.0,1365.0,14.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-24 00:00:00+00:00,Malaysia,1624.0,1425.0,16.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-25 00:00:00+00:00,Malaysia,1796.0,1577.0,20.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-26 00:00:00+00:00,Malaysia,2031.0,1793.0,23.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-27 00:00:00+00:00,Malaysia,2161.0,1876.0,26.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-28 00:00:00+00:00,Malaysia,2320.0,1973.0,27.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-29 00:00:00+00:00,Malaysia,2470.0,2047.0,35.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-30 00:00:00+00:00,Malaysia,2626.0,2110.0,37.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-03-31 00:00:00+00:00,Malaysia,2766.0,2186.0,43.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-01 00:00:00+00:00,Malaysia,2908.0,2218.0,45.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-02 00:00:00+00:00,Malaysia,3116.0,2299.0,50.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-03 00:00:00+00:00,Malaysia,3333.0,2453.0,53.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-04 00:00:00+00:00,Malaysia,3483.0,2511.0,57.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-05 00:00:00+00:00,Malaysia,3662.0,2596.0,61.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-06 00:00:00+00:00,Malaysia,3793.0,2490.0,62.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-07 00:00:00+00:00,Malaysia,3963.0,2579.0,63.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-08 00:00:00+00:00,Malaysia,4119.0,2567.0,65.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-09 00:00:00+00:00,Malaysia,4228.0,2553.0,67.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-10 00:00:00+00:00,Malaysia,4346.0,2446.0,70.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-11 00:00:00+00:00,Malaysia,4530.0,2462.0,73.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-12 00:00:00+00:00,Malaysia,4683.0,2499.0,76.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-13 00:00:00+00:00,Malaysia,4817.0,2464.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-14 00:00:00+00:00,Malaysia,4987.0,2427.0,82.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-15 00:00:00+00:00,Malaysia,5072.0,2342.0,83.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-16 00:00:00+00:00,Malaysia,5182.0,2332.0,84.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-17 00:00:00+00:00,Malaysia,5251.0,2198.0,86.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-18 00:00:00+00:00,Malaysia,5305.0,2115.0,88.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-19 00:00:00+00:00,Malaysia,5389.0,2103.0,89.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-20 00:00:00+00:00,Malaysia,5425.0,2041.0,89.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-21 00:00:00+00:00,Malaysia,5482.0,2041.0,92.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-22 00:00:00+00:00,Malaysia,5532.0,1987.0,93.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-23 00:00:00+00:00,Malaysia,5603.0,1966.0,95.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-24 00:00:00+00:00,Malaysia,5691.0,1932.0,96.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MY,2020-04-25 00:00:00+00:00,Malaysia,5742.0,1882.0,98.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -MT,2020-01-22 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-23 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-24 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-25 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-26 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-27 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-28 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-29 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-30 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-01-31 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-01 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-02 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-03 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-04 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-05 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-06 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-07 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-08 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-09 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-10 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-11 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-12 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-13 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-14 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-15 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-16 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-17 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-18 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-19 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-20 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-21 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-22 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-23 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-24 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-25 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-26 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-27 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-28 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-02-29 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-01 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-02 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-03 00:00:00+00:00,Malta,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-04 00:00:00+00:00,Malta,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-05 00:00:00+00:00,Malta,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-06 00:00:00+00:00,Malta,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-07 00:00:00+00:00,Malta,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-08 00:00:00+00:00,Malta,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-09 00:00:00+00:00,Malta,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-10 00:00:00+00:00,Malta,5.0,5.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-11 00:00:00+00:00,Malta,6.0,6.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-12 00:00:00+00:00,Malta,6.0,6.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MT,2020-03-13 00:00:00+00:00,Malta,12.0,11.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -MT,2020-03-14 00:00:00+00:00,Malta,18.0,17.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -MT,2020-03-15 00:00:00+00:00,Malta,21.0,20.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -MT,2020-03-16 00:00:00+00:00,Malta,30.0,28.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -MT,2020-03-17 00:00:00+00:00,Malta,38.0,36.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -MT,2020-03-18 00:00:00+00:00,Malta,38.0,36.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -MT,2020-03-19 00:00:00+00:00,Malta,53.0,51.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -MT,2020-03-20 00:00:00+00:00,Malta,64.0,62.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -MT,2020-03-21 00:00:00+00:00,Malta,73.0,71.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -MT,2020-03-22 00:00:00+00:00,Malta,90.0,88.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-23 00:00:00+00:00,Malta,107.0,105.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-24 00:00:00+00:00,Malta,110.0,108.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-25 00:00:00+00:00,Malta,129.0,127.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-26 00:00:00+00:00,Malta,134.0,132.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-27 00:00:00+00:00,Malta,139.0,137.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-28 00:00:00+00:00,Malta,149.0,147.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-29 00:00:00+00:00,Malta,151.0,149.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-30 00:00:00+00:00,Malta,156.0,154.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-03-31 00:00:00+00:00,Malta,169.0,167.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-01 00:00:00+00:00,Malta,188.0,186.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-02 00:00:00+00:00,Malta,196.0,194.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-03 00:00:00+00:00,Malta,202.0,200.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-04 00:00:00+00:00,Malta,213.0,211.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-05 00:00:00+00:00,Malta,227.0,222.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-06 00:00:00+00:00,Malta,241.0,236.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-07 00:00:00+00:00,Malta,293.0,288.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-08 00:00:00+00:00,Malta,299.0,282.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-09 00:00:00+00:00,Malta,337.0,319.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-10 00:00:00+00:00,Malta,350.0,332.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-11 00:00:00+00:00,Malta,370.0,351.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-12 00:00:00+00:00,Malta,378.0,331.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-13 00:00:00+00:00,Malta,384.0,337.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-14 00:00:00+00:00,Malta,393.0,346.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-15 00:00:00+00:00,Malta,399.0,352.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-16 00:00:00+00:00,Malta,412.0,327.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-17 00:00:00+00:00,Malta,422.0,328.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-18 00:00:00+00:00,Malta,426.0,324.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-19 00:00:00+00:00,Malta,427.0,306.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-20 00:00:00+00:00,Malta,431.0,302.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-21 00:00:00+00:00,Malta,443.0,290.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-22 00:00:00+00:00,Malta,444.0,276.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-23 00:00:00+00:00,Malta,445.0,238.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-24 00:00:00+00:00,Malta,447.0,221.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MT,2020-04-25 00:00:00+00:00,Malta,448.0,195.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -MX,2020-01-22 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-23 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-24 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-25 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-26 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-27 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-28 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-29 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-30 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-01-31 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-01 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-02 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-03 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-04 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-05 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-06 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-07 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-08 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-09 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-10 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-11 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-12 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-13 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-14 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-15 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-16 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-17 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-18 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-19 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-20 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-21 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-22 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-23 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-24 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-25 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-26 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-27 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-28 00:00:00+00:00,Mexico,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-02-29 00:00:00+00:00,Mexico,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-01 00:00:00+00:00,Mexico,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-02 00:00:00+00:00,Mexico,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-03 00:00:00+00:00,Mexico,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-04 00:00:00+00:00,Mexico,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-05 00:00:00+00:00,Mexico,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-06 00:00:00+00:00,Mexico,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-07 00:00:00+00:00,Mexico,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-08 00:00:00+00:00,Mexico,7.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-09 00:00:00+00:00,Mexico,7.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-10 00:00:00+00:00,Mexico,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-11 00:00:00+00:00,Mexico,8.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-12 00:00:00+00:00,Mexico,12.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-13 00:00:00+00:00,Mexico,26.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-14 00:00:00+00:00,Mexico,41.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-15 00:00:00+00:00,Mexico,53.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-16 00:00:00+00:00,Mexico,82.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-17 00:00:00+00:00,Mexico,93.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-18 00:00:00+00:00,Mexico,118.0,114.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-19 00:00:00+00:00,Mexico,164.0,159.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MX,2020-03-20 00:00:00+00:00,Mexico,203.0,197.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -MX,2020-03-21 00:00:00+00:00,Mexico,251.0,245.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -MX,2020-03-22 00:00:00+00:00,Mexico,316.0,309.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-23 00:00:00+00:00,Mexico,367.0,359.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-24 00:00:00+00:00,Mexico,405.0,396.0,5.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-25 00:00:00+00:00,Mexico,475.0,465.0,6.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-26 00:00:00+00:00,Mexico,585.0,573.0,8.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-27 00:00:00+00:00,Mexico,717.0,701.0,12.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-28 00:00:00+00:00,Mexico,848.0,828.0,16.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-29 00:00:00+00:00,Mexico,993.0,969.0,20.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-30 00:00:00+00:00,Mexico,1094.0,1031.0,28.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-03-31 00:00:00+00:00,Mexico,1215.0,1151.0,29.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MX,2020-04-01 00:00:00+00:00,Mexico,1378.0,1306.0,37.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-02 00:00:00+00:00,Mexico,1510.0,1425.0,50.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-03 00:00:00+00:00,Mexico,1688.0,995.0,60.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-04 00:00:00+00:00,Mexico,1890.0,1178.0,79.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-05 00:00:00+00:00,Mexico,2143.0,1416.0,94.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-06 00:00:00+00:00,Mexico,2439.0,1681.0,125.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-07 00:00:00+00:00,Mexico,2785.0,2011.0,141.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-08 00:00:00+00:00,Mexico,3181.0,2374.0,174.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-09 00:00:00+00:00,Mexico,3441.0,2614.0,194.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-10 00:00:00+00:00,Mexico,3844.0,2978.0,233.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-11 00:00:00+00:00,Mexico,4219.0,3313.0,273.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-12 00:00:00+00:00,Mexico,4661.0,2593.0,296.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-13 00:00:00+00:00,Mexico,5014.0,2839.0,332.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-14 00:00:00+00:00,Mexico,5399.0,3029.0,406.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-15 00:00:00+00:00,Mexico,5847.0,3273.0,449.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-16 00:00:00+00:00,Mexico,6297.0,3686.0,486.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-17 00:00:00+00:00,Mexico,6875.0,4204.0,546.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-18 00:00:00+00:00,Mexico,7497.0,4722.0,650.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-19 00:00:00+00:00,Mexico,8261.0,4948.0,686.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-20 00:00:00+00:00,Mexico,8772.0,5433.0,712.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-21 00:00:00+00:00,Mexico,9501.0,6017.0,857.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-22 00:00:00+00:00,Mexico,10544.0,6947.0,970.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-23 00:00:00+00:00,Mexico,11633.0,7937.0,1069.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-24 00:00:00+00:00,Mexico,12872.0,9024.0,1221.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MX,2020-04-25 00:00:00+00:00,Mexico,13842.0,5388.0,1305.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -MA,2020-01-22 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-23 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-24 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-25 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-26 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-27 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-28 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-29 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-30 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-01-31 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-01 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-02 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-03 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-04 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-05 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-06 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-07 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-08 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-09 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-10 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-11 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-12 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-13 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-14 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-15 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-16 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-17 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-18 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-19 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-20 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-21 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-22 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-23 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-24 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-25 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-26 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-27 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-28 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-02-29 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-01 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-02 00:00:00+00:00,Morocco,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-03 00:00:00+00:00,Morocco,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-04 00:00:00+00:00,Morocco,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-05 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-06 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-07 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-08 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-09 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-10 00:00:00+00:00,Morocco,3.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-11 00:00:00+00:00,Morocco,5.0,4.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-12 00:00:00+00:00,Morocco,6.0,5.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-13 00:00:00+00:00,Morocco,7.0,5.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-14 00:00:00+00:00,Morocco,17.0,15.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-15 00:00:00+00:00,Morocco,28.0,26.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -MA,2020-03-16 00:00:00+00:00,Morocco,29.0,27.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MA,2020-03-17 00:00:00+00:00,Morocco,38.0,35.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MA,2020-03-18 00:00:00+00:00,Morocco,49.0,46.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MA,2020-03-19 00:00:00+00:00,Morocco,63.0,60.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -MA,2020-03-20 00:00:00+00:00,Morocco,77.0,73.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-21 00:00:00+00:00,Morocco,96.0,90.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-22 00:00:00+00:00,Morocco,115.0,108.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-23 00:00:00+00:00,Morocco,143.0,136.0,4.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-24 00:00:00+00:00,Morocco,170.0,159.0,5.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-25 00:00:00+00:00,Morocco,225.0,212.0,6.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-26 00:00:00+00:00,Morocco,275.0,256.0,11.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-27 00:00:00+00:00,Morocco,345.0,311.0,23.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-28 00:00:00+00:00,Morocco,402.0,366.0,25.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-29 00:00:00+00:00,Morocco,479.0,440.0,26.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-30 00:00:00+00:00,Morocco,556.0,508.0,33.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-03-31 00:00:00+00:00,Morocco,617.0,557.0,36.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-01 00:00:00+00:00,Morocco,654.0,586.0,39.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-02 00:00:00+00:00,Morocco,708.0,633.0,44.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-03 00:00:00+00:00,Morocco,791.0,686.0,48.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-04 00:00:00+00:00,Morocco,919.0,794.0,59.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-05 00:00:00+00:00,Morocco,1021.0,875.0,70.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-06 00:00:00+00:00,Morocco,1120.0,959.0,80.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-07 00:00:00+00:00,Morocco,1184.0,1001.0,90.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-08 00:00:00+00:00,Morocco,1275.0,1085.0,93.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-09 00:00:00+00:00,Morocco,1374.0,1168.0,97.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-10 00:00:00+00:00,Morocco,1448.0,1219.0,107.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-11 00:00:00+00:00,Morocco,1545.0,1288.0,111.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-12 00:00:00+00:00,Morocco,1661.0,1366.0,118.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-13 00:00:00+00:00,Morocco,1763.0,1434.0,126.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-14 00:00:00+00:00,Morocco,1888.0,1545.0,126.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-15 00:00:00+00:00,Morocco,2024.0,1668.0,127.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-16 00:00:00+00:00,Morocco,2283.0,1904.0,130.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-17 00:00:00+00:00,Morocco,2564.0,2148.0,135.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-18 00:00:00+00:00,Morocco,2685.0,2234.0,137.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-19 00:00:00+00:00,Morocco,2855.0,2387.0,141.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-20 00:00:00+00:00,Morocco,3046.0,2553.0,143.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-21 00:00:00+00:00,Morocco,3209.0,2671.0,145.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-22 00:00:00+00:00,Morocco,3446.0,2880.0,149.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-23 00:00:00+00:00,Morocco,3568.0,2957.0,155.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-24 00:00:00+00:00,Morocco,3758.0,3114.0,158.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -MA,2020-04-25 00:00:00+00:00,Morocco,3897.0,3201.0,159.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -NL,2020-01-22 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-23 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-24 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-25 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-26 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-27 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-28 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-29 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-30 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-01-31 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-01 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-02 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-03 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-04 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-05 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-06 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-07 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-08 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-09 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-10 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-11 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-12 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-13 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-14 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-15 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-16 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-17 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-18 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-19 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-20 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-21 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-22 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-23 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-24 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-25 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-26 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-27 00:00:00+00:00,Netherlands,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-28 00:00:00+00:00,Netherlands,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-02-29 00:00:00+00:00,Netherlands,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-01 00:00:00+00:00,Netherlands,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-02 00:00:00+00:00,Netherlands,18.0,18.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-03 00:00:00+00:00,Netherlands,24.0,24.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-04 00:00:00+00:00,Netherlands,38.0,38.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-05 00:00:00+00:00,Netherlands,82.0,82.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-06 00:00:00+00:00,Netherlands,128.0,127.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-07 00:00:00+00:00,Netherlands,188.0,187.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-08 00:00:00+00:00,Netherlands,265.0,262.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-09 00:00:00+00:00,Netherlands,321.0,318.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-10 00:00:00+00:00,Netherlands,382.0,378.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-11 00:00:00+00:00,Netherlands,503.0,498.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-12 00:00:00+00:00,Netherlands,503.0,498.0,5.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-13 00:00:00+00:00,Netherlands,804.0,794.0,10.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-14 00:00:00+00:00,Netherlands,959.0,945.0,12.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NL,2020-03-15 00:00:00+00:00,Netherlands,1135.0,1113.0,20.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-16 00:00:00+00:00,Netherlands,1413.0,1387.0,24.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-17 00:00:00+00:00,Netherlands,1705.0,1660.0,43.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-18 00:00:00+00:00,Netherlands,2051.0,1991.0,58.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-19 00:00:00+00:00,Netherlands,2460.0,2382.0,76.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-20 00:00:00+00:00,Netherlands,2994.0,2886.0,106.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-21 00:00:00+00:00,Netherlands,3631.0,3493.0,136.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-22 00:00:00+00:00,Netherlands,4204.0,4023.0,179.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -NL,2020-03-23 00:00:00+00:00,Netherlands,4749.0,4534.0,213.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-24 00:00:00+00:00,Netherlands,5560.0,5282.0,276.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-25 00:00:00+00:00,Netherlands,6412.0,6053.0,356.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-26 00:00:00+00:00,Netherlands,7431.0,6994.0,434.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-27 00:00:00+00:00,Netherlands,8603.0,8054.0,546.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-28 00:00:00+00:00,Netherlands,9762.0,9120.0,639.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-29 00:00:00+00:00,Netherlands,10866.0,9845.0,771.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-30 00:00:00+00:00,Netherlands,11750.0,10636.0,864.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-03-31 00:00:00+00:00,Netherlands,12595.0,11306.0,1039.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-01 00:00:00+00:00,Netherlands,13614.0,12191.0,1173.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-02 00:00:00+00:00,Netherlands,14697.0,13108.0,1339.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-03 00:00:00+00:00,Netherlands,15723.0,13986.0,1487.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-04 00:00:00+00:00,Netherlands,16627.0,14726.0,1651.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-05 00:00:00+00:00,Netherlands,17851.0,15835.0,1766.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-06 00:00:00+00:00,Netherlands,18803.0,16686.0,1867.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-07 00:00:00+00:00,Netherlands,19580.0,17229.0,2101.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-08 00:00:00+00:00,Netherlands,20549.0,18051.0,2248.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-09 00:00:00+00:00,Netherlands,21762.0,19116.0,2396.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-10 00:00:00+00:00,Netherlands,23097.0,20336.0,2511.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-11 00:00:00+00:00,Netherlands,24413.0,21520.0,2643.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-12 00:00:00+00:00,Netherlands,25587.0,22600.0,2737.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-13 00:00:00+00:00,Netherlands,26551.0,23478.0,2823.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-14 00:00:00+00:00,Netherlands,27419.0,24224.0,2945.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-15 00:00:00+00:00,Netherlands,28153.0,24769.0,3134.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-16 00:00:00+00:00,Netherlands,29214.0,25649.0,3315.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-17 00:00:00+00:00,Netherlands,30449.0,26740.0,3459.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-18 00:00:00+00:00,Netherlands,31589.0,27738.0,3601.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-19 00:00:00+00:00,Netherlands,32655.0,28721.0,3684.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-20 00:00:00+00:00,Netherlands,33405.0,29404.0,3751.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-21 00:00:00+00:00,Netherlands,34134.0,30218.0,3916.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-22 00:00:00+00:00,Netherlands,34842.0,30788.0,4054.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-23 00:00:00+00:00,Netherlands,35729.0,31552.0,4177.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-24 00:00:00+00:00,Netherlands,36535.0,32246.0,4289.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NL,2020-04-25 00:00:00+00:00,Netherlands,37190.0,32781.0,4409.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -NZ,2020-01-22 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-23 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-24 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-25 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-26 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-27 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-28 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-29 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-30 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-01-31 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-01 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-02 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-03 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-04 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-05 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-06 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-07 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-08 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-09 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-10 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-11 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-12 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-13 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-14 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-15 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-16 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-17 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-18 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-19 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-20 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-21 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-22 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-23 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-24 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-25 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-26 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-27 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-28 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-02-29 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-01 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-02 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-03 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-04 00:00:00+00:00,New Zealand,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-05 00:00:00+00:00,New Zealand,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-06 00:00:00+00:00,New Zealand,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-07 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-08 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-09 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-10 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-11 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-12 00:00:00+00:00,New Zealand,5.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-13 00:00:00+00:00,New Zealand,5.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-14 00:00:00+00:00,New Zealand,6.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-15 00:00:00+00:00,New Zealand,8.0,8.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-16 00:00:00+00:00,New Zealand,8.0,8.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-17 00:00:00+00:00,New Zealand,12.0,12.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-18 00:00:00+00:00,New Zealand,20.0,20.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-19 00:00:00+00:00,New Zealand,28.0,28.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-20 00:00:00+00:00,New Zealand,39.0,39.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-21 00:00:00+00:00,New Zealand,52.0,52.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-22 00:00:00+00:00,New Zealand,102.0,102.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -NZ,2020-03-23 00:00:00+00:00,New Zealand,102.0,102.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 -NZ,2020-03-24 00:00:00+00:00,New Zealand,155.0,143.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 -NZ,2020-03-25 00:00:00+00:00,New Zealand,205.0,183.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-03-26 00:00:00+00:00,New Zealand,283.0,256.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-03-27 00:00:00+00:00,New Zealand,368.0,331.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-03-28 00:00:00+00:00,New Zealand,451.0,401.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-03-29 00:00:00+00:00,New Zealand,514.0,457.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-03-30 00:00:00+00:00,New Zealand,589.0,525.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-03-31 00:00:00+00:00,New Zealand,647.0,572.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-01 00:00:00+00:00,New Zealand,708.0,624.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-02 00:00:00+00:00,New Zealand,797.0,704.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-03 00:00:00+00:00,New Zealand,868.0,764.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-04 00:00:00+00:00,New Zealand,950.0,822.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-05 00:00:00+00:00,New Zealand,1039.0,882.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-06 00:00:00+00:00,New Zealand,1106.0,929.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-07 00:00:00+00:00,New Zealand,1160.0,918.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-08 00:00:00+00:00,New Zealand,1210.0,927.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-09 00:00:00+00:00,New Zealand,1239.0,921.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-10 00:00:00+00:00,New Zealand,1283.0,908.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-11 00:00:00+00:00,New Zealand,1312.0,886.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-12 00:00:00+00:00,New Zealand,1330.0,855.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-13 00:00:00+00:00,New Zealand,1349.0,798.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-14 00:00:00+00:00,New Zealand,1366.0,729.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-15 00:00:00+00:00,New Zealand,1386.0,649.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-16 00:00:00+00:00,New Zealand,1401.0,622.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-17 00:00:00+00:00,New Zealand,1409.0,582.0,11.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-18 00:00:00+00:00,New Zealand,1422.0,544.0,11.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-19 00:00:00+00:00,New Zealand,1431.0,507.0,12.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-20 00:00:00+00:00,New Zealand,1440.0,454.0,12.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-21 00:00:00+00:00,New Zealand,1445.0,426.0,13.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-22 00:00:00+00:00,New Zealand,1451.0,401.0,14.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-23 00:00:00+00:00,New Zealand,1456.0,344.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-24 00:00:00+00:00,New Zealand,1461.0,325.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NZ,2020-04-25 00:00:00+00:00,New Zealand,1470.0,310.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -NO,2020-01-22 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-23 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-24 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-25 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-26 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-27 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-28 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-29 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-30 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-01-31 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-01 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-02 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-03 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-04 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-05 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-06 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-07 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-08 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-09 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-10 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-11 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-12 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-13 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-14 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-15 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-16 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-17 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-18 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-19 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-20 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-21 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-22 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-23 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-24 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-25 00:00:00+00:00,Norway,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-26 00:00:00+00:00,Norway,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-27 00:00:00+00:00,Norway,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-28 00:00:00+00:00,Norway,6.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-02-29 00:00:00+00:00,Norway,15.0,15.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-01 00:00:00+00:00,Norway,19.0,19.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-02 00:00:00+00:00,Norway,25.0,25.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-03 00:00:00+00:00,Norway,32.0,32.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-04 00:00:00+00:00,Norway,56.0,56.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-05 00:00:00+00:00,Norway,87.0,87.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-06 00:00:00+00:00,Norway,108.0,108.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-07 00:00:00+00:00,Norway,147.0,147.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-08 00:00:00+00:00,Norway,176.0,176.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-09 00:00:00+00:00,Norway,205.0,204.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-10 00:00:00+00:00,Norway,400.0,399.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-11 00:00:00+00:00,Norway,598.0,597.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -NO,2020-03-12 00:00:00+00:00,Norway,702.0,701.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-13 00:00:00+00:00,Norway,996.0,995.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-14 00:00:00+00:00,Norway,1090.0,1086.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-15 00:00:00+00:00,Norway,1221.0,1217.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-16 00:00:00+00:00,Norway,1333.0,1329.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-17 00:00:00+00:00,Norway,1463.0,1459.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-18 00:00:00+00:00,Norway,1550.0,1543.0,6.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-19 00:00:00+00:00,Norway,1746.0,1738.0,7.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-20 00:00:00+00:00,Norway,1914.0,1906.0,7.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-21 00:00:00+00:00,Norway,2118.0,2110.0,7.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-22 00:00:00+00:00,Norway,2385.0,2377.0,7.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-23 00:00:00+00:00,Norway,2621.0,2610.0,10.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-24 00:00:00+00:00,Norway,2863.0,2845.0,12.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0 -NO,2020-03-25 00:00:00+00:00,Norway,3084.0,3064.0,14.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-03-26 00:00:00+00:00,Norway,3369.0,3349.0,14.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-03-27 00:00:00+00:00,Norway,3755.0,3730.0,19.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-03-28 00:00:00+00:00,Norway,4015.0,3985.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-03-29 00:00:00+00:00,Norway,4284.0,4252.0,25.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-03-30 00:00:00+00:00,Norway,4445.0,4401.0,32.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-03-31 00:00:00+00:00,Norway,4641.0,4589.0,39.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-01 00:00:00+00:00,Norway,4863.0,4806.0,44.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-02 00:00:00+00:00,Norway,5147.0,5065.0,50.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-03 00:00:00+00:00,Norway,5370.0,5279.0,59.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-04 00:00:00+00:00,Norway,5550.0,5456.0,62.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-05 00:00:00+00:00,Norway,5687.0,5584.0,71.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-06 00:00:00+00:00,Norway,5865.0,5757.0,76.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-07 00:00:00+00:00,Norway,6086.0,5965.0,89.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-08 00:00:00+00:00,Norway,6086.0,5953.0,101.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-09 00:00:00+00:00,Norway,6211.0,6071.0,108.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-10 00:00:00+00:00,Norway,6314.0,6169.0,113.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-11 00:00:00+00:00,Norway,6409.0,6258.0,119.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-12 00:00:00+00:00,Norway,6525.0,6365.0,128.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-13 00:00:00+00:00,Norway,6603.0,6437.0,134.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-14 00:00:00+00:00,Norway,6623.0,6452.0,139.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-15 00:00:00+00:00,Norway,6740.0,6558.0,150.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-16 00:00:00+00:00,Norway,6896.0,6712.0,152.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-17 00:00:00+00:00,Norway,6937.0,6744.0,161.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-18 00:00:00+00:00,Norway,7036.0,6840.0,164.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-19 00:00:00+00:00,Norway,7078.0,6881.0,165.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-20 00:00:00+00:00,Norway,7156.0,6943.0,181.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-21 00:00:00+00:00,Norway,7191.0,6977.0,182.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-22 00:00:00+00:00,Norway,7338.0,7119.0,187.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-23 00:00:00+00:00,Norway,7401.0,7175.0,194.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-24 00:00:00+00:00,Norway,7463.0,7232.0,199.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -NO,2020-04-25 00:00:00+00:00,Norway,7499.0,7266.0,201.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -PL,2020-01-22 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-23 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-24 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-25 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-26 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-27 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-28 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-29 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-30 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-01-31 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-01 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-02 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-03 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-04 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-05 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-06 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-07 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-08 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-09 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-10 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-11 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-12 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-13 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-14 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-15 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-16 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-17 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-18 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-19 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-20 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-21 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-22 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-23 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-24 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-25 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-26 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-27 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-28 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-02-29 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-01 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-02 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-03 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-04 00:00:00+00:00,Poland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-05 00:00:00+00:00,Poland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-06 00:00:00+00:00,Poland,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-07 00:00:00+00:00,Poland,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-08 00:00:00+00:00,Poland,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-09 00:00:00+00:00,Poland,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-10 00:00:00+00:00,Poland,22.0,22.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-11 00:00:00+00:00,Poland,31.0,31.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PL,2020-03-12 00:00:00+00:00,Poland,49.0,48.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -PL,2020-03-13 00:00:00+00:00,Poland,68.0,66.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -PL,2020-03-14 00:00:00+00:00,Poland,103.0,100.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-15 00:00:00+00:00,Poland,119.0,116.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-16 00:00:00+00:00,Poland,177.0,160.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-17 00:00:00+00:00,Poland,238.0,220.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-18 00:00:00+00:00,Poland,251.0,233.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-19 00:00:00+00:00,Poland,355.0,349.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-20 00:00:00+00:00,Poland,425.0,419.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-21 00:00:00+00:00,Poland,536.0,530.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-22 00:00:00+00:00,Poland,634.0,626.0,7.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-23 00:00:00+00:00,Poland,749.0,740.0,8.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0 -PL,2020-03-24 00:00:00+00:00,Poland,901.0,890.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-25 00:00:00+00:00,Poland,1051.0,1030.0,14.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-26 00:00:00+00:00,Poland,1221.0,1198.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-27 00:00:00+00:00,Poland,1389.0,1366.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-28 00:00:00+00:00,Poland,1638.0,1613.0,18.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-29 00:00:00+00:00,Poland,1862.0,1833.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-30 00:00:00+00:00,Poland,2055.0,2017.0,31.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-03-31 00:00:00+00:00,Poland,2311.0,2271.0,33.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-01 00:00:00+00:00,Poland,2554.0,2464.0,43.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-02 00:00:00+00:00,Poland,2946.0,2833.0,57.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-03 00:00:00+00:00,Poland,3383.0,3256.0,71.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-04 00:00:00+00:00,Poland,3627.0,3432.0,79.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-05 00:00:00+00:00,Poland,4102.0,3874.0,94.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-06 00:00:00+00:00,Poland,4413.0,4144.0,107.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-07 00:00:00+00:00,Poland,4848.0,4528.0,129.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-08 00:00:00+00:00,Poland,5205.0,4824.0,159.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-09 00:00:00+00:00,Poland,5575.0,5117.0,174.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-10 00:00:00+00:00,Poland,5955.0,5456.0,181.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-11 00:00:00+00:00,Poland,6356.0,5773.0,208.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-12 00:00:00+00:00,Poland,6674.0,6003.0,232.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-13 00:00:00+00:00,Poland,6934.0,6202.0,245.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-14 00:00:00+00:00,Poland,7202.0,6321.0,263.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-15 00:00:00+00:00,Poland,7582.0,6628.0,286.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-16 00:00:00+00:00,Poland,7918.0,6830.0,314.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-17 00:00:00+00:00,Poland,8379.0,7181.0,332.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-18 00:00:00+00:00,Poland,8742.0,7414.0,347.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-19 00:00:00+00:00,Poland,9287.0,7887.0,360.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-20 00:00:00+00:00,Poland,9593.0,8080.0,380.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-21 00:00:00+00:00,Poland,9856.0,8158.0,401.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-22 00:00:00+00:00,Poland,10169.0,8230.0,426.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-23 00:00:00+00:00,Poland,10511.0,8317.0,454.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-24 00:00:00+00:00,Poland,10892.0,8454.0,494.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PL,2020-04-25 00:00:00+00:00,Poland,11273.0,8623.0,524.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-01-22 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-23 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-24 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-25 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-26 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-27 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-28 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-29 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-30 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-01-31 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-01 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-02 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-03 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-04 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-05 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-06 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-07 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-08 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-09 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-10 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-11 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-12 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-13 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-14 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-15 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-16 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-17 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-18 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-19 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-20 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-21 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-22 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-23 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-24 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-25 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-26 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-27 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-28 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-02-29 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-01 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-02 00:00:00+00:00,Portugal,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-03 00:00:00+00:00,Portugal,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-04 00:00:00+00:00,Portugal,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-05 00:00:00+00:00,Portugal,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-06 00:00:00+00:00,Portugal,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-07 00:00:00+00:00,Portugal,20.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-08 00:00:00+00:00,Portugal,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-09 00:00:00+00:00,Portugal,30.0,30.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-10 00:00:00+00:00,Portugal,41.0,41.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-11 00:00:00+00:00,Portugal,59.0,59.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-12 00:00:00+00:00,Portugal,59.0,59.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-13 00:00:00+00:00,Portugal,112.0,111.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -PT,2020-03-14 00:00:00+00:00,Portugal,169.0,167.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0 -PT,2020-03-15 00:00:00+00:00,Portugal,245.0,243.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0 -PT,2020-03-16 00:00:00+00:00,Portugal,331.0,328.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -PT,2020-03-17 00:00:00+00:00,Portugal,448.0,444.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -PT,2020-03-18 00:00:00+00:00,Portugal,448.0,443.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-19 00:00:00+00:00,Portugal,785.0,779.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-20 00:00:00+00:00,Portugal,1020.0,1009.0,6.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-21 00:00:00+00:00,Portugal,1280.0,1263.0,12.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-22 00:00:00+00:00,Portugal,1600.0,1581.0,14.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-23 00:00:00+00:00,Portugal,2060.0,2032.0,23.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-24 00:00:00+00:00,Portugal,2362.0,2307.0,33.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-25 00:00:00+00:00,Portugal,2995.0,2930.0,43.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-26 00:00:00+00:00,Portugal,3544.0,3441.0,60.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-27 00:00:00+00:00,Portugal,4268.0,4149.0,76.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-28 00:00:00+00:00,Portugal,5170.0,5027.0,100.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-29 00:00:00+00:00,Portugal,5962.0,5800.0,119.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-30 00:00:00+00:00,Portugal,6408.0,6225.0,140.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-03-31 00:00:00+00:00,Portugal,7443.0,7240.0,160.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-01 00:00:00+00:00,Portugal,8251.0,8021.0,187.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-02 00:00:00+00:00,Portugal,9034.0,8757.0,209.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-03 00:00:00+00:00,Portugal,9886.0,9572.0,246.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-04 00:00:00+00:00,Portugal,10524.0,10183.0,266.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-05 00:00:00+00:00,Portugal,11278.0,10908.0,295.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-06 00:00:00+00:00,Portugal,11730.0,11279.0,311.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-07 00:00:00+00:00,Portugal,12442.0,11913.0,345.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-08 00:00:00+00:00,Portugal,13141.0,12565.0,380.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-09 00:00:00+00:00,Portugal,13956.0,13342.0,409.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-10 00:00:00+00:00,Portugal,15472.0,14804.0,435.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-11 00:00:00+00:00,Portugal,15987.0,15251.0,470.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-12 00:00:00+00:00,Portugal,16585.0,15804.0,504.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-13 00:00:00+00:00,Portugal,16934.0,16122.0,535.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-14 00:00:00+00:00,Portugal,17448.0,16534.0,567.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-15 00:00:00+00:00,Portugal,18091.0,17109.0,599.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-16 00:00:00+00:00,Portugal,18841.0,17719.0,629.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-17 00:00:00+00:00,Portugal,19022.0,17846.0,657.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-18 00:00:00+00:00,Portugal,19685.0,18388.0,687.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-19 00:00:00+00:00,Portugal,20206.0,18882.0,714.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-20 00:00:00+00:00,Portugal,20863.0,19518.0,735.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-21 00:00:00+00:00,Portugal,21379.0,19700.0,762.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-22 00:00:00+00:00,Portugal,21982.0,20054.0,785.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-23 00:00:00+00:00,Portugal,22353.0,20332.0,820.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-24 00:00:00+00:00,Portugal,22797.0,20715.0,854.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -PT,2020-04-25 00:00:00+00:00,Portugal,23392.0,21235.0,880.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-01-22 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-23 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-24 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-25 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-26 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-27 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-28 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-29 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-30 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-01-31 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-01 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-02 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-03 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-04 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-05 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-06 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-07 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-08 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-09 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-10 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-11 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-12 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-13 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-14 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-15 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-16 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-17 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-18 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-19 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-20 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-21 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-22 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-23 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-24 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-25 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-26 00:00:00+00:00,Romania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-27 00:00:00+00:00,Romania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-28 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-02-29 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-01 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-02 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-03 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-04 00:00:00+00:00,Romania,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-05 00:00:00+00:00,Romania,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-06 00:00:00+00:00,Romania,9.0,8.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-07 00:00:00+00:00,Romania,9.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-08 00:00:00+00:00,Romania,15.0,12.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-09 00:00:00+00:00,Romania,15.0,12.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-10 00:00:00+00:00,Romania,25.0,22.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -RO,2020-03-11 00:00:00+00:00,Romania,45.0,39.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -RO,2020-03-12 00:00:00+00:00,Romania,49.0,43.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RO,2020-03-13 00:00:00+00:00,Romania,89.0,82.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RO,2020-03-14 00:00:00+00:00,Romania,123.0,114.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RO,2020-03-15 00:00:00+00:00,Romania,131.0,122.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RO,2020-03-16 00:00:00+00:00,Romania,158.0,149.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -RO,2020-03-17 00:00:00+00:00,Romania,184.0,168.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0 -RO,2020-03-18 00:00:00+00:00,Romania,260.0,241.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -RO,2020-03-19 00:00:00+00:00,Romania,277.0,252.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -RO,2020-03-20 00:00:00+00:00,Romania,308.0,283.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -RO,2020-03-21 00:00:00+00:00,Romania,367.0,315.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0 -RO,2020-03-22 00:00:00+00:00,Romania,433.0,366.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RO,2020-03-23 00:00:00+00:00,Romania,576.0,505.0,7.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RO,2020-03-24 00:00:00+00:00,Romania,794.0,704.0,11.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RO,2020-03-25 00:00:00+00:00,Romania,906.0,803.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-03-26 00:00:00+00:00,Romania,1029.0,912.0,23.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-03-27 00:00:00+00:00,Romania,1292.0,1151.0,26.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-03-28 00:00:00+00:00,Romania,1452.0,1276.0,37.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-03-29 00:00:00+00:00,Romania,1815.0,1566.0,43.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-03-30 00:00:00+00:00,Romania,2109.0,1835.0,65.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-03-31 00:00:00+00:00,Romania,2245.0,1943.0,82.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-01 00:00:00+00:00,Romania,2460.0,2116.0,92.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-02 00:00:00+00:00,Romania,2738.0,2356.0,115.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-03 00:00:00+00:00,Romania,3183.0,2767.0,133.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-04 00:00:00+00:00,Romania,3613.0,3138.0,146.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-05 00:00:00+00:00,Romania,3864.0,3339.0,151.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-06 00:00:00+00:00,Romania,4057.0,3475.0,176.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-07 00:00:00+00:00,Romania,4417.0,3760.0,197.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-08 00:00:00+00:00,Romania,4761.0,4013.0,220.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-09 00:00:00+00:00,Romania,5202.0,4307.0,248.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-10 00:00:00+00:00,Romania,5467.0,4468.0,270.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-11 00:00:00+00:00,Romania,5990.0,4941.0,291.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-12 00:00:00+00:00,Romania,6300.0,5132.0,316.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-13 00:00:00+00:00,Romania,6633.0,5388.0,331.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-14 00:00:00+00:00,Romania,6879.0,5477.0,351.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-15 00:00:00+00:00,Romania,7216.0,5627.0,372.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-16 00:00:00+00:00,Romania,7707.0,5958.0,392.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-17 00:00:00+00:00,Romania,8067.0,6148.0,411.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-18 00:00:00+00:00,Romania,8418.0,6267.0,421.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-19 00:00:00+00:00,Romania,8746.0,6403.0,451.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-20 00:00:00+00:00,Romania,8936.0,6441.0,478.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-21 00:00:00+00:00,Romania,9242.0,6591.0,498.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-22 00:00:00+00:00,Romania,9710.0,6780.0,524.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-23 00:00:00+00:00,Romania,10096.0,7073.0,545.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-24 00:00:00+00:00,Romania,10417.0,7033.0,567.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RO,2020-04-25 00:00:00+00:00,Romania,10635.0,7144.0,601.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-01-22 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-23 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-24 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-25 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-26 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-27 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-28 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-29 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-30 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-01-31 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-01 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-02 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-03 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-04 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-05 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-06 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-07 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-08 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-09 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-10 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-11 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-12 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-13 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-14 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-15 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-16 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-17 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-18 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-19 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-20 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-21 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-22 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-23 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-24 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-25 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-26 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-27 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-28 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-02-29 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-01 00:00:00+00:00,Serbia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-02 00:00:00+00:00,Serbia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-03 00:00:00+00:00,Serbia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-04 00:00:00+00:00,Serbia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-05 00:00:00+00:00,Serbia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-06 00:00:00+00:00,Serbia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-07 00:00:00+00:00,Serbia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-08 00:00:00+00:00,Serbia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-09 00:00:00+00:00,Serbia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-10 00:00:00+00:00,Serbia,5.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-11 00:00:00+00:00,Serbia,12.0,12.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-12 00:00:00+00:00,Serbia,19.0,19.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-13 00:00:00+00:00,Serbia,35.0,35.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-14 00:00:00+00:00,Serbia,46.0,46.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-15 00:00:00+00:00,Serbia,48.0,48.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -RS,2020-03-16 00:00:00+00:00,Serbia,55.0,54.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RS,2020-03-17 00:00:00+00:00,Serbia,65.0,64.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RS,2020-03-18 00:00:00+00:00,Serbia,83.0,82.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RS,2020-03-19 00:00:00+00:00,Serbia,103.0,102.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RS,2020-03-20 00:00:00+00:00,Serbia,135.0,133.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -RS,2020-03-21 00:00:00+00:00,Serbia,171.0,169.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-22 00:00:00+00:00,Serbia,222.0,219.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-23 00:00:00+00:00,Serbia,249.0,245.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-24 00:00:00+00:00,Serbia,303.0,285.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-25 00:00:00+00:00,Serbia,384.0,365.0,4.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-26 00:00:00+00:00,Serbia,384.0,383.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-27 00:00:00+00:00,Serbia,457.0,456.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -RS,2020-03-28 00:00:00+00:00,Serbia,659.0,649.0,10.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-03-29 00:00:00+00:00,Serbia,741.0,728.0,13.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-03-30 00:00:00+00:00,Serbia,785.0,769.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-03-31 00:00:00+00:00,Serbia,900.0,884.0,16.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-01 00:00:00+00:00,Serbia,1060.0,1032.0,28.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-02 00:00:00+00:00,Serbia,1171.0,1140.0,31.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-03 00:00:00+00:00,Serbia,1476.0,1437.0,39.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-04 00:00:00+00:00,Serbia,1624.0,1580.0,44.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-05 00:00:00+00:00,Serbia,1908.0,1857.0,51.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-06 00:00:00+00:00,Serbia,2200.0,2142.0,58.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-07 00:00:00+00:00,Serbia,2447.0,2386.0,61.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-08 00:00:00+00:00,Serbia,2666.0,2601.0,65.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-09 00:00:00+00:00,Serbia,2867.0,2801.0,66.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-10 00:00:00+00:00,Serbia,3105.0,3034.0,71.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-11 00:00:00+00:00,Serbia,3380.0,3306.0,74.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-12 00:00:00+00:00,Serbia,3630.0,3550.0,80.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-13 00:00:00+00:00,Serbia,4054.0,3969.0,85.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-14 00:00:00+00:00,Serbia,4465.0,4371.0,94.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-15 00:00:00+00:00,Serbia,4873.0,4774.0,99.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-16 00:00:00+00:00,Serbia,5318.0,5215.0,103.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-17 00:00:00+00:00,Serbia,5690.0,5046.0,110.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-18 00:00:00+00:00,Serbia,5994.0,5240.0,117.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-19 00:00:00+00:00,Serbia,6318.0,5443.0,122.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-20 00:00:00+00:00,Serbia,6630.0,5635.0,125.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-21 00:00:00+00:00,Serbia,6890.0,5783.0,130.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-22 00:00:00+00:00,Serbia,7144.0,5985.0,134.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-23 00:00:00+00:00,Serbia,7276.0,6070.0,139.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-24 00:00:00+00:00,Serbia,7483.0,6245.0,144.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -RS,2020-04-25 00:00:00+00:00,Serbia,7779.0,6476.0,151.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SG,2020-01-22 00:00:00+00:00,Singapore,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-23 00:00:00+00:00,Singapore,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-24 00:00:00+00:00,Singapore,3.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-25 00:00:00+00:00,Singapore,3.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-26 00:00:00+00:00,Singapore,4.0,4.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-27 00:00:00+00:00,Singapore,5.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-28 00:00:00+00:00,Singapore,7.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-29 00:00:00+00:00,Singapore,7.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-30 00:00:00+00:00,Singapore,10.0,10.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-01-31 00:00:00+00:00,Singapore,13.0,13.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-01 00:00:00+00:00,Singapore,16.0,16.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-02 00:00:00+00:00,Singapore,18.0,18.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-03 00:00:00+00:00,Singapore,18.0,18.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-04 00:00:00+00:00,Singapore,24.0,24.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-05 00:00:00+00:00,Singapore,28.0,28.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-06 00:00:00+00:00,Singapore,28.0,28.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-07 00:00:00+00:00,Singapore,30.0,30.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-08 00:00:00+00:00,Singapore,33.0,31.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-09 00:00:00+00:00,Singapore,40.0,38.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-10 00:00:00+00:00,Singapore,45.0,43.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-11 00:00:00+00:00,Singapore,47.0,38.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-12 00:00:00+00:00,Singapore,50.0,35.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-13 00:00:00+00:00,Singapore,58.0,43.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-14 00:00:00+00:00,Singapore,67.0,50.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-15 00:00:00+00:00,Singapore,72.0,54.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-16 00:00:00+00:00,Singapore,75.0,57.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-17 00:00:00+00:00,Singapore,77.0,53.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-18 00:00:00+00:00,Singapore,81.0,52.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-19 00:00:00+00:00,Singapore,84.0,50.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-20 00:00:00+00:00,Singapore,84.0,50.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-21 00:00:00+00:00,Singapore,85.0,48.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-22 00:00:00+00:00,Singapore,85.0,48.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-23 00:00:00+00:00,Singapore,89.0,38.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-24 00:00:00+00:00,Singapore,89.0,38.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-25 00:00:00+00:00,Singapore,91.0,38.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-26 00:00:00+00:00,Singapore,93.0,31.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-27 00:00:00+00:00,Singapore,93.0,31.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-28 00:00:00+00:00,Singapore,93.0,31.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-02-29 00:00:00+00:00,Singapore,102.0,30.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-01 00:00:00+00:00,Singapore,106.0,34.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-02 00:00:00+00:00,Singapore,108.0,30.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-03 00:00:00+00:00,Singapore,110.0,32.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-04 00:00:00+00:00,Singapore,110.0,32.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-05 00:00:00+00:00,Singapore,117.0,39.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-06 00:00:00+00:00,Singapore,130.0,52.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-07 00:00:00+00:00,Singapore,138.0,60.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-08 00:00:00+00:00,Singapore,150.0,72.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-09 00:00:00+00:00,Singapore,150.0,72.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-10 00:00:00+00:00,Singapore,160.0,82.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-11 00:00:00+00:00,Singapore,178.0,82.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-12 00:00:00+00:00,Singapore,178.0,82.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-13 00:00:00+00:00,Singapore,200.0,103.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-14 00:00:00+00:00,Singapore,212.0,107.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-15 00:00:00+00:00,Singapore,226.0,121.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-16 00:00:00+00:00,Singapore,243.0,134.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-17 00:00:00+00:00,Singapore,266.0,152.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-18 00:00:00+00:00,Singapore,313.0,199.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-19 00:00:00+00:00,Singapore,345.0,231.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-20 00:00:00+00:00,Singapore,385.0,261.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-21 00:00:00+00:00,Singapore,432.0,290.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-22 00:00:00+00:00,Singapore,455.0,309.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-23 00:00:00+00:00,Singapore,509.0,363.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-24 00:00:00+00:00,Singapore,558.0,400.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-25 00:00:00+00:00,Singapore,631.0,469.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SG,2020-03-26 00:00:00+00:00,Singapore,683.0,509.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-03-27 00:00:00+00:00,Singapore,732.0,547.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-03-28 00:00:00+00:00,Singapore,802.0,602.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-03-29 00:00:00+00:00,Singapore,844.0,629.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-03-30 00:00:00+00:00,Singapore,879.0,648.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-03-31 00:00:00+00:00,Singapore,926.0,683.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-01 00:00:00+00:00,Singapore,1000.0,752.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-02 00:00:00+00:00,Singapore,1049.0,779.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-03 00:00:00+00:00,Singapore,1114.0,827.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-04 00:00:00+00:00,Singapore,1189.0,886.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-05 00:00:00+00:00,Singapore,1309.0,983.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-06 00:00:00+00:00,Singapore,1375.0,1025.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0 -SG,2020-04-07 00:00:00+00:00,Singapore,1481.0,1098.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0 -SG,2020-04-08 00:00:00+00:00,Singapore,1623.0,1211.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-09 00:00:00+00:00,Singapore,1910.0,1444.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-10 00:00:00+00:00,Singapore,2108.0,1609.0,7.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-11 00:00:00+00:00,Singapore,2299.0,1763.0,8.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-12 00:00:00+00:00,Singapore,2532.0,1964.0,8.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-13 00:00:00+00:00,Singapore,2918.0,2323.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-14 00:00:00+00:00,Singapore,3252.0,2631.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-15 00:00:00+00:00,Singapore,3699.0,3037.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-16 00:00:00+00:00,Singapore,4427.0,3734.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-17 00:00:00+00:00,Singapore,5050.0,4331.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-18 00:00:00+00:00,Singapore,5992.0,5241.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-19 00:00:00+00:00,Singapore,6588.0,5809.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-20 00:00:00+00:00,Singapore,8014.0,7202.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-21 00:00:00+00:00,Singapore,9125.0,8275.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-22 00:00:00+00:00,Singapore,10141.0,9233.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-23 00:00:00+00:00,Singapore,11178.0,10242.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-24 00:00:00+00:00,Singapore,12075.0,11107.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SG,2020-04-25 00:00:00+00:00,Singapore,12693.0,11679.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SK,2020-01-22 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-23 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-24 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-25 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-26 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-27 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-28 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-29 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-30 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-01-31 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-01 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-02 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-03 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-04 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-05 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-06 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-07 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-08 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-09 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-10 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-11 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-12 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-13 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-14 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-15 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-16 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-17 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-18 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-19 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-20 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-21 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-22 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-23 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-24 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-25 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-26 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-27 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-28 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-02-29 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-01 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-02 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-03 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-04 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-05 00:00:00+00:00,Slovakia,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-06 00:00:00+00:00,Slovakia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-07 00:00:00+00:00,Slovakia,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-08 00:00:00+00:00,Slovakia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-09 00:00:00+00:00,Slovakia,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-10 00:00:00+00:00,Slovakia,7.0,7.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-11 00:00:00+00:00,Slovakia,10.0,10.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-12 00:00:00+00:00,Slovakia,16.0,16.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-13 00:00:00+00:00,Slovakia,32.0,32.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-14 00:00:00+00:00,Slovakia,44.0,44.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-15 00:00:00+00:00,Slovakia,54.0,54.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SK,2020-03-16 00:00:00+00:00,Slovakia,63.0,63.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-17 00:00:00+00:00,Slovakia,72.0,72.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-18 00:00:00+00:00,Slovakia,105.0,104.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-19 00:00:00+00:00,Slovakia,123.0,122.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-20 00:00:00+00:00,Slovakia,137.0,136.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-21 00:00:00+00:00,Slovakia,178.0,177.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-22 00:00:00+00:00,Slovakia,185.0,178.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-23 00:00:00+00:00,Slovakia,186.0,179.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-24 00:00:00+00:00,Slovakia,204.0,197.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-25 00:00:00+00:00,Slovakia,216.0,209.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-26 00:00:00+00:00,Slovakia,226.0,224.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-27 00:00:00+00:00,Slovakia,269.0,267.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-28 00:00:00+00:00,Slovakia,292.0,290.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-29 00:00:00+00:00,Slovakia,314.0,312.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-30 00:00:00+00:00,Slovakia,336.0,329.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-03-31 00:00:00+00:00,Slovakia,363.0,360.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-01 00:00:00+00:00,Slovakia,400.0,396.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-02 00:00:00+00:00,Slovakia,426.0,420.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-03 00:00:00+00:00,Slovakia,450.0,439.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-04 00:00:00+00:00,Slovakia,471.0,460.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-05 00:00:00+00:00,Slovakia,485.0,474.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-06 00:00:00+00:00,Slovakia,534.0,524.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-07 00:00:00+00:00,Slovakia,581.0,566.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-08 00:00:00+00:00,Slovakia,682.0,664.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SK,2020-04-09 00:00:00+00:00,Slovakia,701.0,676.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-10 00:00:00+00:00,Slovakia,715.0,690.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-11 00:00:00+00:00,Slovakia,728.0,703.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-12 00:00:00+00:00,Slovakia,742.0,717.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-13 00:00:00+00:00,Slovakia,769.0,660.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-14 00:00:00+00:00,Slovakia,835.0,720.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-15 00:00:00+00:00,Slovakia,863.0,706.0,6.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-16 00:00:00+00:00,Slovakia,977.0,802.0,8.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-17 00:00:00+00:00,Slovakia,1049.0,865.0,9.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-18 00:00:00+00:00,Slovakia,1089.0,865.0,11.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-19 00:00:00+00:00,Slovakia,1161.0,920.0,12.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-20 00:00:00+00:00,Slovakia,1173.0,909.0,13.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-21 00:00:00+00:00,Slovakia,1199.0,927.0,14.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-22 00:00:00+00:00,Slovakia,1244.0,946.0,14.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-23 00:00:00+00:00,Slovakia,1325.0,1022.0,15.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-24 00:00:00+00:00,Slovakia,1360.0,988.0,17.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SK,2020-04-25 00:00:00+00:00,Slovakia,1373.0,970.0,17.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-01-22 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-23 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-24 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-25 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-26 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-27 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-28 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-29 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-30 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-01-31 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-01 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-02 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-03 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-04 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-05 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-06 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-07 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-08 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-09 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-10 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-11 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-12 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-13 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-14 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-15 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-16 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-17 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-18 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-19 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-20 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-21 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-22 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-23 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-24 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-25 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-26 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-27 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-28 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-02-29 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-01 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-02 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-03 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-04 00:00:00+00:00,Slovenia,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-05 00:00:00+00:00,Slovenia,2.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-06 00:00:00+00:00,Slovenia,7.0,7.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-07 00:00:00+00:00,Slovenia,7.0,7.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-08 00:00:00+00:00,Slovenia,16.0,16.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-09 00:00:00+00:00,Slovenia,16.0,16.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-10 00:00:00+00:00,Slovenia,31.0,31.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-11 00:00:00+00:00,Slovenia,57.0,57.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-12 00:00:00+00:00,Slovenia,89.0,89.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-13 00:00:00+00:00,Slovenia,141.0,141.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-14 00:00:00+00:00,Slovenia,181.0,180.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-15 00:00:00+00:00,Slovenia,219.0,218.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -SI,2020-03-16 00:00:00+00:00,Slovenia,253.0,252.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SI,2020-03-17 00:00:00+00:00,Slovenia,275.0,274.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SI,2020-03-18 00:00:00+00:00,Slovenia,275.0,274.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SI,2020-03-19 00:00:00+00:00,Slovenia,286.0,285.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -SI,2020-03-20 00:00:00+00:00,Slovenia,341.0,340.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-21 00:00:00+00:00,Slovenia,383.0,382.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-22 00:00:00+00:00,Slovenia,414.0,412.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-23 00:00:00+00:00,Slovenia,442.0,439.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-24 00:00:00+00:00,Slovenia,480.0,476.0,4.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-25 00:00:00+00:00,Slovenia,528.0,513.0,5.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-26 00:00:00+00:00,Slovenia,562.0,546.0,6.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-27 00:00:00+00:00,Slovenia,632.0,613.0,9.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-28 00:00:00+00:00,Slovenia,684.0,665.0,9.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-29 00:00:00+00:00,Slovenia,730.0,709.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -SI,2020-03-30 00:00:00+00:00,Slovenia,756.0,735.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-03-31 00:00:00+00:00,Slovenia,802.0,777.0,15.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-01 00:00:00+00:00,Slovenia,841.0,816.0,15.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-02 00:00:00+00:00,Slovenia,897.0,810.0,17.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-03 00:00:00+00:00,Slovenia,934.0,844.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-04 00:00:00+00:00,Slovenia,977.0,876.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-05 00:00:00+00:00,Slovenia,997.0,890.0,28.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-06 00:00:00+00:00,Slovenia,1021.0,889.0,30.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-07 00:00:00+00:00,Slovenia,1059.0,921.0,36.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-08 00:00:00+00:00,Slovenia,1091.0,931.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-09 00:00:00+00:00,Slovenia,1124.0,953.0,43.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-10 00:00:00+00:00,Slovenia,1160.0,978.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-11 00:00:00+00:00,Slovenia,1188.0,990.0,50.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-12 00:00:00+00:00,Slovenia,1205.0,1002.0,53.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-13 00:00:00+00:00,Slovenia,1212.0,1005.0,55.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-14 00:00:00+00:00,Slovenia,1220.0,1012.0,56.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-15 00:00:00+00:00,Slovenia,1248.0,1022.0,61.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-16 00:00:00+00:00,Slovenia,1268.0,1033.0,61.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-17 00:00:00+00:00,Slovenia,1304.0,1064.0,66.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-18 00:00:00+00:00,Slovenia,1317.0,1057.0,70.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-19 00:00:00+00:00,Slovenia,1330.0,1064.0,74.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-20 00:00:00+00:00,Slovenia,1335.0,1065.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-21 00:00:00+00:00,Slovenia,1344.0,1070.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-22 00:00:00+00:00,Slovenia,1353.0,1069.0,79.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-23 00:00:00+00:00,Slovenia,1366.0,1076.0,79.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-24 00:00:00+00:00,Slovenia,1373.0,1082.0,80.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SI,2020-04-25 00:00:00+00:00,Slovenia,1388.0,1088.0,81.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-01-22 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-23 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-24 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-25 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-26 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-27 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-28 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-29 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-30 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-01-31 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-01 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-02 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-03 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-04 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-05 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-06 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-07 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-08 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-09 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-10 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-11 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-12 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-13 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-14 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-15 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-16 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-17 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-18 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-19 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-20 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-21 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-22 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-23 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-24 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-25 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-26 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-27 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-28 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-02-29 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-01 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-02 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-03 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-04 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-05 00:00:00+00:00,South Africa,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-06 00:00:00+00:00,South Africa,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-07 00:00:00+00:00,South Africa,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-08 00:00:00+00:00,South Africa,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-09 00:00:00+00:00,South Africa,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-10 00:00:00+00:00,South Africa,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-11 00:00:00+00:00,South Africa,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-12 00:00:00+00:00,South Africa,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-13 00:00:00+00:00,South Africa,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-14 00:00:00+00:00,South Africa,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-15 00:00:00+00:00,South Africa,51.0,51.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-16 00:00:00+00:00,South Africa,62.0,62.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-17 00:00:00+00:00,South Africa,62.0,62.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0 -ZA,2020-03-18 00:00:00+00:00,South Africa,116.0,116.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-19 00:00:00+00:00,South Africa,150.0,150.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-20 00:00:00+00:00,South Africa,202.0,202.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-21 00:00:00+00:00,South Africa,240.0,240.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-22 00:00:00+00:00,South Africa,274.0,274.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-23 00:00:00+00:00,South Africa,402.0,402.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-24 00:00:00+00:00,South Africa,554.0,550.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-25 00:00:00+00:00,South Africa,709.0,697.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -ZA,2020-03-26 00:00:00+00:00,South Africa,927.0,915.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-03-27 00:00:00+00:00,South Africa,1170.0,1138.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-03-28 00:00:00+00:00,South Africa,1187.0,1155.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-03-29 00:00:00+00:00,South Africa,1280.0,1247.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-03-30 00:00:00+00:00,South Africa,1326.0,1292.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-03-31 00:00:00+00:00,South Africa,1353.0,1317.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-01 00:00:00+00:00,South Africa,1380.0,1325.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-02 00:00:00+00:00,South Africa,1462.0,1407.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-03 00:00:00+00:00,South Africa,1505.0,1401.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-04 00:00:00+00:00,South Africa,1585.0,1481.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-05 00:00:00+00:00,South Africa,1655.0,1549.0,11.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-06 00:00:00+00:00,South Africa,1686.0,1579.0,12.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-07 00:00:00+00:00,South Africa,1749.0,1641.0,13.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-08 00:00:00+00:00,South Africa,1845.0,1732.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-09 00:00:00+00:00,South Africa,1934.0,1821.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-10 00:00:00+00:00,South Africa,2003.0,1569.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-11 00:00:00+00:00,South Africa,2028.0,1593.0,25.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-12 00:00:00+00:00,South Africa,2173.0,1738.0,25.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-13 00:00:00+00:00,South Africa,2272.0,1835.0,27.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-14 00:00:00+00:00,South Africa,2415.0,1978.0,27.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-15 00:00:00+00:00,South Africa,2506.0,2062.0,34.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-16 00:00:00+00:00,South Africa,2605.0,1654.0,48.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-17 00:00:00+00:00,South Africa,2783.0,1830.0,50.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-18 00:00:00+00:00,South Africa,3034.0,2079.0,52.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-19 00:00:00+00:00,South Africa,3158.0,2201.0,54.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-20 00:00:00+00:00,South Africa,3300.0,2187.0,58.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-21 00:00:00+00:00,South Africa,3465.0,2352.0,58.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-22 00:00:00+00:00,South Africa,3635.0,2515.0,65.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-23 00:00:00+00:00,South Africa,3953.0,2405.0,75.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-24 00:00:00+00:00,South Africa,4220.0,2668.0,79.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ZA,2020-04-25 00:00:00+00:00,South Africa,4361.0,2802.0,86.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-01-22 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-23 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-24 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-25 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-26 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-27 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-28 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-29 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-30 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-01-31 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-01 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-02 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-03 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-04 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-05 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-06 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-07 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-08 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-09 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-10 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-11 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-12 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-13 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-14 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-15 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-16 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-17 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-18 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-19 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-20 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-21 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-22 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-23 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-24 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-25 00:00:00+00:00,Spain,6.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-26 00:00:00+00:00,Spain,13.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-27 00:00:00+00:00,Spain,15.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-28 00:00:00+00:00,Spain,32.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-02-29 00:00:00+00:00,Spain,45.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-01 00:00:00+00:00,Spain,84.0,82.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-02 00:00:00+00:00,Spain,120.0,118.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-03 00:00:00+00:00,Spain,165.0,162.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-04 00:00:00+00:00,Spain,222.0,218.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-05 00:00:00+00:00,Spain,259.0,254.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-06 00:00:00+00:00,Spain,400.0,393.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-07 00:00:00+00:00,Spain,500.0,460.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-08 00:00:00+00:00,Spain,673.0,626.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-09 00:00:00+00:00,Spain,1073.0,1013.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-10 00:00:00+00:00,Spain,1695.0,1628.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-11 00:00:00+00:00,Spain,2277.0,2040.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -ES,2020-03-12 00:00:00+00:00,Spain,2277.0,2039.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -ES,2020-03-13 00:00:00+00:00,Spain,5232.0,4906.0,133.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -ES,2020-03-14 00:00:00+00:00,Spain,6391.0,5679.0,195.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-15 00:00:00+00:00,Spain,7798.0,6992.0,289.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-16 00:00:00+00:00,Spain,9942.0,9070.0,342.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-17 00:00:00+00:00,Spain,11748.0,10187.0,533.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-18 00:00:00+00:00,Spain,13910.0,12206.0,623.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-19 00:00:00+00:00,Spain,17963.0,16026.0,830.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-20 00:00:00+00:00,Spain,20410.0,17779.0,1043.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-21 00:00:00+00:00,Spain,25374.0,21874.0,1375.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-22 00:00:00+00:00,Spain,28768.0,24421.0,1772.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-23 00:00:00+00:00,Spain,35136.0,30250.0,2311.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-24 00:00:00+00:00,Spain,39885.0,33283.0,2808.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-25 00:00:00+00:00,Spain,49515.0,40501.0,3647.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-26 00:00:00+00:00,Spain,57786.0,46406.0,4365.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-27 00:00:00+00:00,Spain,65719.0,51224.0,5138.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-28 00:00:00+00:00,Spain,73235.0,54968.0,5982.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-29 00:00:00+00:00,Spain,80110.0,58598.0,6803.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-30 00:00:00+00:00,Spain,87956.0,63460.0,7716.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-03-31 00:00:00+00:00,Spain,95923.0,68200.0,8464.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-01 00:00:00+00:00,Spain,104118.0,72084.0,9387.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-02 00:00:00+00:00,Spain,112065.0,74974.0,10348.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-03 00:00:00+00:00,Spain,119199.0,77488.0,11198.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-04 00:00:00+00:00,Spain,126168.0,80002.0,11947.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-05 00:00:00+00:00,Spain,131646.0,80925.0,12641.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-06 00:00:00+00:00,Spain,136675.0,82897.0,13341.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-07 00:00:00+00:00,Spain,141942.0,84689.0,14045.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-08 00:00:00+00:00,Spain,148220.0,85407.0,14792.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-09 00:00:00+00:00,Spain,153222.0,85610.0,15447.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-10 00:00:00+00:00,Spain,158273.0,86524.0,16081.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-11 00:00:00+00:00,Spain,163027.0,87312.0,16606.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-12 00:00:00+00:00,Spain,166831.0,87231.0,17209.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-13 00:00:00+00:00,Spain,170099.0,87616.0,17756.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-14 00:00:00+00:00,Spain,172541.0,86981.0,18056.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-15 00:00:00+00:00,Spain,177644.0,88083.0,18708.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-16 00:00:00+00:00,Spain,184948.0,90836.0,19315.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-17 00:00:00+00:00,Spain,190839.0,96040.0,20002.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-18 00:00:00+00:00,Spain,191726.0,96886.0,20043.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-19 00:00:00+00:00,Spain,198674.0,100864.0,20453.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-20 00:00:00+00:00,Spain,200210.0,98771.0,20852.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-21 00:00:00+00:00,Spain,204178.0,100382.0,21282.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-22 00:00:00+00:00,Spain,208389.0,100757.0,21717.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-23 00:00:00+00:00,Spain,213024.0,101617.0,22157.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-24 00:00:00+00:00,Spain,202990.0,88111.0,22524.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -ES,2020-04-25 00:00:00+00:00,Spain,205905.0,87295.0,22902.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -SE,2020-01-22 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-23 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-24 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-25 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-26 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-27 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-28 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-29 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-30 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-01-31 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-01 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-02 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-03 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-04 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-05 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-06 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-07 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-08 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-09 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-10 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-11 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-12 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-13 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-14 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-15 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-16 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-17 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-18 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-19 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-20 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-21 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-22 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-23 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-24 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-25 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-26 00:00:00+00:00,Sweden,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-27 00:00:00+00:00,Sweden,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-28 00:00:00+00:00,Sweden,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-02-29 00:00:00+00:00,Sweden,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-01 00:00:00+00:00,Sweden,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-02 00:00:00+00:00,Sweden,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-03 00:00:00+00:00,Sweden,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-04 00:00:00+00:00,Sweden,35.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-05 00:00:00+00:00,Sweden,94.0,94.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-06 00:00:00+00:00,Sweden,101.0,101.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-07 00:00:00+00:00,Sweden,161.0,161.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-08 00:00:00+00:00,Sweden,203.0,203.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-09 00:00:00+00:00,Sweden,248.0,247.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-10 00:00:00+00:00,Sweden,355.0,354.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-11 00:00:00+00:00,Sweden,500.0,498.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-12 00:00:00+00:00,Sweden,599.0,597.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-13 00:00:00+00:00,Sweden,814.0,812.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-14 00:00:00+00:00,Sweden,961.0,958.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-15 00:00:00+00:00,Sweden,1022.0,1018.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-16 00:00:00+00:00,Sweden,1103.0,1096.0,6.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-17 00:00:00+00:00,Sweden,1190.0,1182.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -SE,2020-03-18 00:00:00+00:00,Sweden,1279.0,1268.0,10.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-19 00:00:00+00:00,Sweden,1439.0,1412.0,11.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-20 00:00:00+00:00,Sweden,1639.0,1607.0,16.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-21 00:00:00+00:00,Sweden,1763.0,1727.0,20.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-22 00:00:00+00:00,Sweden,1934.0,1897.0,21.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-23 00:00:00+00:00,Sweden,2046.0,2005.0,25.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-24 00:00:00+00:00,Sweden,2286.0,2234.0,36.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-25 00:00:00+00:00,Sweden,2526.0,2448.0,62.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-26 00:00:00+00:00,Sweden,2840.0,2747.0,77.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-27 00:00:00+00:00,Sweden,3069.0,2948.0,105.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-28 00:00:00+00:00,Sweden,3447.0,3326.0,105.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-29 00:00:00+00:00,Sweden,3700.0,3574.0,110.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-30 00:00:00+00:00,Sweden,4028.0,3866.0,146.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-03-31 00:00:00+00:00,Sweden,4435.0,4239.0,180.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-01 00:00:00+00:00,Sweden,4947.0,4605.0,239.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-02 00:00:00+00:00,Sweden,5568.0,5157.0,308.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-03 00:00:00+00:00,Sweden,6131.0,5568.0,358.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-04 00:00:00+00:00,Sweden,6443.0,5865.0,373.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-05 00:00:00+00:00,Sweden,6830.0,6224.0,401.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-06 00:00:00+00:00,Sweden,7206.0,6524.0,477.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-07 00:00:00+00:00,Sweden,7693.0,6897.0,591.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-08 00:00:00+00:00,Sweden,8419.0,7527.0,687.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-09 00:00:00+00:00,Sweden,9141.0,8143.0,793.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-10 00:00:00+00:00,Sweden,9685.0,8434.0,870.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-11 00:00:00+00:00,Sweden,10151.0,8883.0,887.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-12 00:00:00+00:00,Sweden,10483.0,9203.0,899.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-13 00:00:00+00:00,Sweden,10948.0,9648.0,919.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-14 00:00:00+00:00,Sweden,11445.0,10031.0,1033.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-15 00:00:00+00:00,Sweden,11927.0,10343.0,1203.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-16 00:00:00+00:00,Sweden,12540.0,10657.0,1333.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-17 00:00:00+00:00,Sweden,13216.0,11266.0,1400.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-18 00:00:00+00:00,Sweden,13822.0,11761.0,1511.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-19 00:00:00+00:00,Sweden,14385.0,12295.0,1540.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-20 00:00:00+00:00,Sweden,14777.0,12647.0,1580.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-21 00:00:00+00:00,Sweden,15322.0,13007.0,1765.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-22 00:00:00+00:00,Sweden,16004.0,13517.0,1937.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-23 00:00:00+00:00,Sweden,16755.0,14184.0,2021.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-24 00:00:00+00:00,Sweden,17567.0,14410.0,2152.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -SE,2020-04-25 00:00:00+00:00,Sweden,18177.0,14980.0,2192.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CH,2020-01-22 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-23 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-24 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-25 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-26 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-27 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-28 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-29 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-30 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-01-31 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-01 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-02 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-03 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-04 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-05 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-06 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-07 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-08 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-09 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-10 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-11 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-12 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-13 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-14 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-15 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-16 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-17 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-18 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-19 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-20 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-21 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-22 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-23 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-24 00:00:00+00:00,Switzerland,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-25 00:00:00+00:00,Switzerland,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-26 00:00:00+00:00,Switzerland,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-27 00:00:00+00:00,Switzerland,8.0,8.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-28 00:00:00+00:00,Switzerland,8.0,8.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-02-29 00:00:00+00:00,Switzerland,18.0,18.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-01 00:00:00+00:00,Switzerland,27.0,27.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-02 00:00:00+00:00,Switzerland,42.0,42.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-03 00:00:00+00:00,Switzerland,56.0,54.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-04 00:00:00+00:00,Switzerland,90.0,87.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-05 00:00:00+00:00,Switzerland,114.0,110.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-06 00:00:00+00:00,Switzerland,214.0,210.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-07 00:00:00+00:00,Switzerland,268.0,264.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-08 00:00:00+00:00,Switzerland,337.0,332.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-09 00:00:00+00:00,Switzerland,374.0,369.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-10 00:00:00+00:00,Switzerland,491.0,485.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-11 00:00:00+00:00,Switzerland,652.0,644.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-12 00:00:00+00:00,Switzerland,652.0,644.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -CH,2020-03-13 00:00:00+00:00,Switzerland,1139.0,1124.0,11.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CH,2020-03-14 00:00:00+00:00,Switzerland,1359.0,1342.0,13.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CH,2020-03-15 00:00:00+00:00,Switzerland,2200.0,2182.0,14.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0 -CH,2020-03-16 00:00:00+00:00,Switzerland,2200.0,2182.0,14.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -CH,2020-03-17 00:00:00+00:00,Switzerland,2700.0,2669.0,27.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -CH,2020-03-18 00:00:00+00:00,Switzerland,3028.0,2985.0,28.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -CH,2020-03-19 00:00:00+00:00,Switzerland,4075.0,4019.0,41.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0 -CH,2020-03-20 00:00:00+00:00,Switzerland,5294.0,5225.0,54.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-21 00:00:00+00:00,Switzerland,6575.0,6485.0,75.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-22 00:00:00+00:00,Switzerland,7474.0,7245.0,98.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-23 00:00:00+00:00,Switzerland,8795.0,8544.0,120.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-24 00:00:00+00:00,Switzerland,9877.0,9624.0,122.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-25 00:00:00+00:00,Switzerland,10897.0,10613.0,153.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-26 00:00:00+00:00,Switzerland,11811.0,11489.0,191.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-27 00:00:00+00:00,Switzerland,12928.0,11167.0,231.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-28 00:00:00+00:00,Switzerland,14076.0,12282.0,264.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-29 00:00:00+00:00,Switzerland,14829.0,12934.0,300.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-30 00:00:00+00:00,Switzerland,15922.0,13740.0,359.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-03-31 00:00:00+00:00,Switzerland,16605.0,14349.0,433.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-01 00:00:00+00:00,Switzerland,17768.0,14313.0,488.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-02 00:00:00+00:00,Switzerland,18827.0,14278.0,536.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-03 00:00:00+00:00,Switzerland,19606.0,14169.0,591.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-04 00:00:00+00:00,Switzerland,20505.0,13424.0,666.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-05 00:00:00+00:00,Switzerland,21100.0,13970.0,715.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-06 00:00:00+00:00,Switzerland,21657.0,12836.0,765.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-07 00:00:00+00:00,Switzerland,22253.0,12728.0,821.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-08 00:00:00+00:00,Switzerland,23280.0,12585.0,895.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-09 00:00:00+00:00,Switzerland,24051.0,12503.0,948.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-10 00:00:00+00:00,Switzerland,24551.0,12449.0,1002.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-11 00:00:00+00:00,Switzerland,25107.0,11971.0,1036.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-12 00:00:00+00:00,Switzerland,25415.0,11609.0,1106.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-13 00:00:00+00:00,Switzerland,25688.0,10850.0,1138.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-14 00:00:00+00:00,Switzerland,25936.0,11062.0,1174.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-15 00:00:00+00:00,Switzerland,26336.0,9697.0,1239.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-16 00:00:00+00:00,Switzerland,26732.0,9551.0,1281.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-17 00:00:00+00:00,Switzerland,27078.0,9351.0,1327.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-18 00:00:00+00:00,Switzerland,27404.0,8936.0,1368.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-19 00:00:00+00:00,Switzerland,27740.0,8547.0,1393.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-20 00:00:00+00:00,Switzerland,27944.0,7915.0,1429.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-21 00:00:00+00:00,Switzerland,28063.0,7185.0,1478.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-22 00:00:00+00:00,Switzerland,28268.0,6859.0,1509.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-23 00:00:00+00:00,Switzerland,28496.0,6347.0,1549.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-24 00:00:00+00:00,Switzerland,28677.0,6088.0,1589.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -CH,2020-04-25 00:00:00+00:00,Switzerland,28894.0,5995.0,1599.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 -GB,2020-01-22 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-23 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-24 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-25 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-26 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-27 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-28 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-29 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-30 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-01-31 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-01 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-02 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-03 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-04 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-05 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-06 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-07 00:00:00+00:00,United Kingdom,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-08 00:00:00+00:00,United Kingdom,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-09 00:00:00+00:00,United Kingdom,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-10 00:00:00+00:00,United Kingdom,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-11 00:00:00+00:00,United Kingdom,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-12 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-13 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-14 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-15 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-16 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-17 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-18 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-19 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-20 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-21 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-22 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-23 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-24 00:00:00+00:00,United Kingdom,13.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-25 00:00:00+00:00,United Kingdom,13.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-26 00:00:00+00:00,United Kingdom,13.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-27 00:00:00+00:00,United Kingdom,15.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-28 00:00:00+00:00,United Kingdom,20.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-02-29 00:00:00+00:00,United Kingdom,23.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-01 00:00:00+00:00,United Kingdom,36.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-02 00:00:00+00:00,United Kingdom,40.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-03 00:00:00+00:00,United Kingdom,51.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-04 00:00:00+00:00,United Kingdom,85.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-05 00:00:00+00:00,United Kingdom,115.0,107.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-06 00:00:00+00:00,United Kingdom,163.0,154.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-07 00:00:00+00:00,United Kingdom,206.0,186.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-08 00:00:00+00:00,United Kingdom,273.0,253.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-09 00:00:00+00:00,United Kingdom,321.0,300.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-10 00:00:00+00:00,United Kingdom,382.0,357.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-11 00:00:00+00:00,United Kingdom,456.0,431.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-12 00:00:00+00:00,United Kingdom,456.0,429.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-13 00:00:00+00:00,United Kingdom,798.0,770.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-14 00:00:00+00:00,United Kingdom,1140.0,1094.0,28.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-15 00:00:00+00:00,United Kingdom,1140.0,1079.0,43.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-16 00:00:00+00:00,United Kingdom,1543.0,1458.0,65.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-17 00:00:00+00:00,United Kingdom,1950.0,1817.0,81.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-18 00:00:00+00:00,United Kingdom,2626.0,2446.0,115.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-19 00:00:00+00:00,United Kingdom,2689.0,2466.0,158.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -GB,2020-03-20 00:00:00+00:00,United Kingdom,3983.0,3724.0,194.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -GB,2020-03-21 00:00:00+00:00,United Kingdom,5018.0,4703.0,250.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -GB,2020-03-22 00:00:00+00:00,United Kingdom,5683.0,5333.0,285.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0 -GB,2020-03-23 00:00:00+00:00,United Kingdom,6650.0,6226.0,359.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-24 00:00:00+00:00,United Kingdom,8077.0,7434.0,508.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-25 00:00:00+00:00,United Kingdom,9529.0,8700.0,694.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-26 00:00:00+00:00,United Kingdom,11658.0,10646.0,877.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-27 00:00:00+00:00,United Kingdom,14543.0,13247.0,1161.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-28 00:00:00+00:00,United Kingdom,17089.0,15499.0,1455.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-29 00:00:00+00:00,United Kingdom,19522.0,17718.0,1669.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-30 00:00:00+00:00,United Kingdom,22141.0,19963.0,2043.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-03-31 00:00:00+00:00,United Kingdom,25150.0,22590.0,2425.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-01 00:00:00+00:00,United Kingdom,29474.0,26244.0,3095.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-02 00:00:00+00:00,United Kingdom,33718.0,29836.0,3747.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-03 00:00:00+00:00,United Kingdom,38168.0,33572.0,4461.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-04 00:00:00+00:00,United Kingdom,41903.0,36547.0,5221.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-05 00:00:00+00:00,United Kingdom,47806.0,41806.0,5865.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-06 00:00:00+00:00,United Kingdom,51608.0,45040.0,6433.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-07 00:00:00+00:00,United Kingdom,55242.0,47636.0,7471.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-08 00:00:00+00:00,United Kingdom,60733.0,52093.0,8505.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-09 00:00:00+00:00,United Kingdom,65077.0,55334.0,9608.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-10 00:00:00+00:00,United Kingdom,73758.0,62654.0,10760.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-11 00:00:00+00:00,United Kingdom,78991.0,67048.0,11599.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-12 00:00:00+00:00,United Kingdom,84279.0,71650.0,12285.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-13 00:00:00+00:00,United Kingdom,88621.0,75592.0,13029.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-14 00:00:00+00:00,United Kingdom,93873.0,79800.0,14073.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-15 00:00:00+00:00,United Kingdom,98476.0,83561.0,14915.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-16 00:00:00+00:00,United Kingdom,103093.0,87149.0,15944.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-17 00:00:00+00:00,United Kingdom,108692.0,91813.0,16879.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-18 00:00:00+00:00,United Kingdom,114217.0,96223.0,17994.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-19 00:00:00+00:00,United Kingdom,120067.0,101575.0,18492.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-20 00:00:00+00:00,United Kingdom,124743.0,105692.0,19051.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-21 00:00:00+00:00,United Kingdom,129044.0,108821.0,20223.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-22 00:00:00+00:00,United Kingdom,133495.0,112435.0,21060.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-23 00:00:00+00:00,United Kingdom,138078.0,116291.0,21787.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-24 00:00:00+00:00,United Kingdom,143464.0,120672.0,22792.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -GB,2020-04-25 00:00:00+00:00,United Kingdom,148377.0,124742.0,23635.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +Country Code,Date,Region Name,Confirmed,Active,Deaths,Mask Wearing,Symptomatic Testing,Gatherings <1000,Gatherings <100,Gatherings <10,Some Businesses Suspended,Most Businesses Suspended,School Closure,University Closure,Stay Home Order,Travel Screen/Quarantine,Travel Bans,Public Transport Limited,Internal Movement Limited,Public Information Campaigns +AL,2020-01-22 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-23 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-24 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-25 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-26 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-27 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-28 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-29 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-30 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-01-31 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-01 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-02 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-03 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-04 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-05 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-06 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-07 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-08 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-09 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-10 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-11 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-12 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-13 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AL,2020-02-14 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-15 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-16 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-17 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-18 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-19 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-20 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-21 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-22 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-23 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-24 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AL,2020-02-25 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-02-26 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-02-27 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-02-28 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-02-29 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-01 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-02 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-03 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-04 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-05 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-06 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-07 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-08 00:00:00+00:00,Albania,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-09 00:00:00+00:00,Albania,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-10 00:00:00+00:00,Albania,10.0,10.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-11 00:00:00+00:00,Albania,12.0,11.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-12 00:00:00+00:00,Albania,23.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +AL,2020-03-13 00:00:00+00:00,Albania,33.0,32.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +AL,2020-03-14 00:00:00+00:00,Albania,38.0,37.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +AL,2020-03-15 00:00:00+00:00,Albania,42.0,41.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-16 00:00:00+00:00,Albania,51.0,50.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-17 00:00:00+00:00,Albania,55.0,54.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-18 00:00:00+00:00,Albania,59.0,57.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-19 00:00:00+00:00,Albania,64.0,62.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-20 00:00:00+00:00,Albania,70.0,68.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-21 00:00:00+00:00,Albania,76.0,72.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-22 00:00:00+00:00,Albania,89.0,85.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-23 00:00:00+00:00,Albania,104.0,98.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-24 00:00:00+00:00,Albania,123.0,108.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-25 00:00:00+00:00,Albania,146.0,124.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-26 00:00:00+00:00,Albania,174.0,151.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-27 00:00:00+00:00,Albania,186.0,147.0,8.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-28 00:00:00+00:00,Albania,197.0,156.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-29 00:00:00+00:00,Albania,212.0,169.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-30 00:00:00+00:00,Albania,223.0,168.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-03-31 00:00:00+00:00,Albania,243.0,176.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-01 00:00:00+00:00,Albania,259.0,177.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-02 00:00:00+00:00,Albania,277.0,185.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-03 00:00:00+00:00,Albania,304.0,198.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-04 00:00:00+00:00,Albania,333.0,214.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-05 00:00:00+00:00,Albania,361.0,237.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-06 00:00:00+00:00,Albania,377.0,240.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-07 00:00:00+00:00,Albania,383.0,230.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-08 00:00:00+00:00,Albania,400.0,224.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-09 00:00:00+00:00,Albania,409.0,221.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-10 00:00:00+00:00,Albania,416.0,211.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-11 00:00:00+00:00,Albania,433.0,213.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-12 00:00:00+00:00,Albania,446.0,206.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-13 00:00:00+00:00,Albania,467.0,212.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-14 00:00:00+00:00,Albania,475.0,203.0,24.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-15 00:00:00+00:00,Albania,494.0,218.0,25.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-16 00:00:00+00:00,Albania,518.0,215.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-17 00:00:00+00:00,Albania,539.0,230.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-18 00:00:00+00:00,Albania,548.0,220.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-19 00:00:00+00:00,Albania,562.0,222.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-20 00:00:00+00:00,Albania,584.0,231.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-21 00:00:00+00:00,Albania,609.0,238.0,26.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-22 00:00:00+00:00,Albania,634.0,251.0,27.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-23 00:00:00+00:00,Albania,663.0,251.0,27.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-24 00:00:00+00:00,Albania,678.0,257.0,27.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-25 00:00:00+00:00,Albania,712.0,282.0,27.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-26 00:00:00+00:00,Albania,726.0,288.0,28.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-27 00:00:00+00:00,Albania,736.0,286.0,28.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-28 00:00:00+00:00,Albania,750.0,289.0,30.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-29 00:00:00+00:00,Albania,766.0,281.0,30.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-04-30 00:00:00+00:00,Albania,773.0,272.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-01 00:00:00+00:00,Albania,782.0,263.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-02 00:00:00+00:00,Albania,789.0,239.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-03 00:00:00+00:00,Albania,795.0,233.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-04 00:00:00+00:00,Albania,803.0,229.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-05 00:00:00+00:00,Albania,820.0,219.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-06 00:00:00+00:00,Albania,832.0,206.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-07 00:00:00+00:00,Albania,842.0,206.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-08 00:00:00+00:00,Albania,850.0,199.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-09 00:00:00+00:00,Albania,856.0,198.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-10 00:00:00+00:00,Albania,868.0,187.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-11 00:00:00+00:00,Albania,872.0,187.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-12 00:00:00+00:00,Albania,876.0,163.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-13 00:00:00+00:00,Albania,880.0,161.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-14 00:00:00+00:00,Albania,898.0,173.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-15 00:00:00+00:00,Albania,916.0,180.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-16 00:00:00+00:00,Albania,933.0,188.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-17 00:00:00+00:00,Albania,946.0,200.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +AL,2020-05-18 00:00:00+00:00,Albania,948.0,190.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-19 00:00:00+00:00,Albania,949.0,176.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-20 00:00:00+00:00,Albania,964.0,175.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-21 00:00:00+00:00,Albania,969.0,167.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-22 00:00:00+00:00,Albania,981.0,173.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-23 00:00:00+00:00,Albania,989.0,175.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-24 00:00:00+00:00,Albania,998.0,177.0,32.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-25 00:00:00+00:00,Albania,1004.0,177.0,32.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +AL,2020-05-26 00:00:00+00:00,Albania,1029.0,193.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AL,2020-05-27 00:00:00+00:00,Albania,1050.0,205.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AL,2020-05-28 00:00:00+00:00,Albania,1076.0,220.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AL,2020-05-29 00:00:00+00:00,Albania,1099.0,215.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AL,2020-05-30 00:00:00+00:00,Albania,1122.0,232.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-01-22 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-23 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-24 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-25 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-26 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-27 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-28 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-29 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-30 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-01-31 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-01 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-02 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-03 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-04 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-05 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-06 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-07 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-08 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-09 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-10 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-11 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-12 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-13 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-14 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-15 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-16 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-17 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-18 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-19 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-20 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-21 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-22 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-23 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-24 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-25 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-26 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-27 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-28 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-02-29 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-01 00:00:00+00:00,Andorra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-02 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-03 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-04 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-05 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-06 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-07 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-08 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-09 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-10 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-11 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-12 00:00:00+00:00,Andorra,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-13 00:00:00+00:00,Andorra,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-14 00:00:00+00:00,Andorra,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-15 00:00:00+00:00,Andorra,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-16 00:00:00+00:00,Andorra,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-17 00:00:00+00:00,Andorra,39.0,38.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-18 00:00:00+00:00,Andorra,39.0,38.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-19 00:00:00+00:00,Andorra,53.0,52.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-20 00:00:00+00:00,Andorra,75.0,74.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-21 00:00:00+00:00,Andorra,88.0,87.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-22 00:00:00+00:00,Andorra,113.0,111.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-23 00:00:00+00:00,Andorra,133.0,131.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-24 00:00:00+00:00,Andorra,164.0,162.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +AD,2020-03-25 00:00:00+00:00,Andorra,188.0,186.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-03-26 00:00:00+00:00,Andorra,224.0,220.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-03-27 00:00:00+00:00,Andorra,267.0,263.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-03-28 00:00:00+00:00,Andorra,308.0,304.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-03-29 00:00:00+00:00,Andorra,334.0,327.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-03-30 00:00:00+00:00,Andorra,370.0,352.0,8.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-03-31 00:00:00+00:00,Andorra,376.0,354.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-01 00:00:00+00:00,Andorra,390.0,366.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-02 00:00:00+00:00,Andorra,428.0,403.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-03 00:00:00+00:00,Andorra,439.0,407.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-04 00:00:00+00:00,Andorra,466.0,428.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-05 00:00:00+00:00,Andorra,501.0,457.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-06 00:00:00+00:00,Andorra,525.0,473.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-07 00:00:00+00:00,Andorra,545.0,484.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +AD,2020-04-08 00:00:00+00:00,Andorra,564.0,489.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-09 00:00:00+00:00,Andorra,583.0,500.0,25.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-10 00:00:00+00:00,Andorra,601.0,504.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-11 00:00:00+00:00,Andorra,601.0,504.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-12 00:00:00+00:00,Andorra,638.0,481.0,29.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-13 00:00:00+00:00,Andorra,646.0,489.0,29.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-14 00:00:00+00:00,Andorra,659.0,500.0,31.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-15 00:00:00+00:00,Andorra,673.0,471.0,33.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-16 00:00:00+00:00,Andorra,673.0,471.0,33.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-17 00:00:00+00:00,Andorra,696.0,470.0,35.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-18 00:00:00+00:00,Andorra,704.0,464.0,35.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-19 00:00:00+00:00,Andorra,713.0,442.0,36.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-20 00:00:00+00:00,Andorra,717.0,432.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-21 00:00:00+00:00,Andorra,717.0,398.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-22 00:00:00+00:00,Andorra,723.0,377.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-23 00:00:00+00:00,Andorra,723.0,353.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-24 00:00:00+00:00,Andorra,731.0,347.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-25 00:00:00+00:00,Andorra,738.0,354.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-26 00:00:00+00:00,Andorra,738.0,354.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-27 00:00:00+00:00,Andorra,743.0,318.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-28 00:00:00+00:00,Andorra,743.0,304.0,41.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-29 00:00:00+00:00,Andorra,743.0,278.0,42.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-04-30 00:00:00+00:00,Andorra,745.0,235.0,42.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-01 00:00:00+00:00,Andorra,745.0,234.0,43.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-02 00:00:00+00:00,Andorra,747.0,231.0,44.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-03 00:00:00+00:00,Andorra,748.0,210.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-04 00:00:00+00:00,Andorra,750.0,206.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-05 00:00:00+00:00,Andorra,751.0,191.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-06 00:00:00+00:00,Andorra,751.0,184.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-07 00:00:00+00:00,Andorra,752.0,179.0,47.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-08 00:00:00+00:00,Andorra,752.0,168.0,47.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-09 00:00:00+00:00,Andorra,754.0,161.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-10 00:00:00+00:00,Andorra,755.0,157.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +AD,2020-05-11 00:00:00+00:00,Andorra,755.0,157.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-12 00:00:00+00:00,Andorra,758.0,142.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-13 00:00:00+00:00,Andorra,760.0,135.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-14 00:00:00+00:00,Andorra,761.0,116.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-15 00:00:00+00:00,Andorra,761.0,108.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-16 00:00:00+00:00,Andorra,761.0,95.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-17 00:00:00+00:00,Andorra,761.0,93.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-18 00:00:00+00:00,Andorra,761.0,86.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-19 00:00:00+00:00,Andorra,761.0,82.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-20 00:00:00+00:00,Andorra,762.0,72.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-21 00:00:00+00:00,Andorra,762.0,72.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-22 00:00:00+00:00,Andorra,762.0,59.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-23 00:00:00+00:00,Andorra,762.0,58.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-24 00:00:00+00:00,Andorra,762.0,58.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-25 00:00:00+00:00,Andorra,763.0,49.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-26 00:00:00+00:00,Andorra,763.0,36.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-27 00:00:00+00:00,Andorra,763.0,36.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-28 00:00:00+00:00,Andorra,763.0,31.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-29 00:00:00+00:00,Andorra,764.0,29.0,51.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AD,2020-05-30 00:00:00+00:00,Andorra,764.0,21.0,51.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +AT,2020-01-22 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-23 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-24 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-25 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-26 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-27 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-28 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-29 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-30 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-01-31 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-01 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-02 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-03 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-04 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-05 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-06 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-07 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-08 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-09 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-10 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-11 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-12 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-13 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-14 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-15 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-16 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-17 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-18 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-19 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-20 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-21 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-22 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-23 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +AT,2020-02-24 00:00:00+00:00,Austria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-02-25 00:00:00+00:00,Austria,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-02-26 00:00:00+00:00,Austria,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-02-27 00:00:00+00:00,Austria,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-02-28 00:00:00+00:00,Austria,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-02-29 00:00:00+00:00,Austria,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-01 00:00:00+00:00,Austria,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-02 00:00:00+00:00,Austria,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-03 00:00:00+00:00,Austria,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-04 00:00:00+00:00,Austria,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-05 00:00:00+00:00,Austria,41.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-06 00:00:00+00:00,Austria,55.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-07 00:00:00+00:00,Austria,79.0,79.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-08 00:00:00+00:00,Austria,104.0,104.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +AT,2020-03-09 00:00:00+00:00,Austria,131.0,129.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +AT,2020-03-10 00:00:00+00:00,Austria,182.0,178.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +AT,2020-03-11 00:00:00+00:00,Austria,246.0,242.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +AT,2020-03-12 00:00:00+00:00,Austria,302.0,297.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +AT,2020-03-13 00:00:00+00:00,Austria,504.0,497.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-14 00:00:00+00:00,Austria,655.0,648.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-15 00:00:00+00:00,Austria,860.0,853.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-16 00:00:00+00:00,Austria,1018.0,1009.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-17 00:00:00+00:00,Austria,1332.0,1328.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-18 00:00:00+00:00,Austria,1646.0,1633.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-19 00:00:00+00:00,Austria,2013.0,1998.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-20 00:00:00+00:00,Austria,2388.0,2373.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-21 00:00:00+00:00,Austria,2814.0,2797.0,8.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-22 00:00:00+00:00,Austria,3582.0,3557.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-23 00:00:00+00:00,Austria,4474.0,4444.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-24 00:00:00+00:00,Austria,5283.0,5246.0,28.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-25 00:00:00+00:00,Austria,5588.0,5549.0,30.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-26 00:00:00+00:00,Austria,6909.0,6748.0,49.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-27 00:00:00+00:00,Austria,7657.0,7374.0,58.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-28 00:00:00+00:00,Austria,8271.0,7978.0,68.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-29 00:00:00+00:00,Austria,8788.0,8223.0,86.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-30 00:00:00+00:00,Austria,9618.0,8874.0,108.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-03-31 00:00:00+00:00,Austria,10180.0,8957.0,128.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-01 00:00:00+00:00,Austria,10711.0,9129.0,146.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-02 00:00:00+00:00,Austria,11129.0,9222.0,158.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-03 00:00:00+00:00,Austria,11524.0,9334.0,168.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-04 00:00:00+00:00,Austria,11781.0,9088.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-05 00:00:00+00:00,Austria,12051.0,8849.0,204.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-06 00:00:00+00:00,Austria,12297.0,8614.0,220.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-07 00:00:00+00:00,Austria,12639.0,8350.0,243.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-08 00:00:00+00:00,Austria,12942.0,8157.0,273.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-09 00:00:00+00:00,Austria,13244.0,7709.0,295.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-10 00:00:00+00:00,Austria,13555.0,7172.0,319.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-11 00:00:00+00:00,Austria,13806.0,6865.0,337.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-12 00:00:00+00:00,Austria,13945.0,6608.0,350.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-13 00:00:00+00:00,Austria,14041.0,6330.0,368.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-14 00:00:00+00:00,Austria,14226.0,6209.0,384.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-15 00:00:00+00:00,Austria,14336.0,5845.0,393.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-16 00:00:00+00:00,Austria,14476.0,5080.0,410.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-17 00:00:00+00:00,Austria,14595.0,4460.0,431.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-18 00:00:00+00:00,Austria,14671.0,4014.0,443.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-19 00:00:00+00:00,Austria,14749.0,3796.0,452.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-20 00:00:00+00:00,Austria,14795.0,3694.0,470.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-21 00:00:00+00:00,Austria,14873.0,3411.0,491.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-22 00:00:00+00:00,Austria,14925.0,3087.0,510.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +AT,2020-04-23 00:00:00+00:00,Austria,15002.0,2786.0,522.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-24 00:00:00+00:00,Austria,15071.0,2669.0,530.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-25 00:00:00+00:00,Austria,15148.0,2509.0,536.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-26 00:00:00+00:00,Austria,15225.0,2401.0,542.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-27 00:00:00+00:00,Austria,15274.0,2363.0,549.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-28 00:00:00+00:00,Austria,15357.0,2208.0,569.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-29 00:00:00+00:00,Austria,15402.0,2043.0,580.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-04-30 00:00:00+00:00,Austria,15452.0,1961.0,584.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-01 00:00:00+00:00,Austria,15531.0,1832.0,589.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-02 00:00:00+00:00,Austria,15558.0,1782.0,596.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-03 00:00:00+00:00,Austria,15597.0,1771.0,598.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-04 00:00:00+00:00,Austria,15621.0,1705.0,600.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-05 00:00:00+00:00,Austria,15650.0,1582.0,606.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-06 00:00:00+00:00,Austria,15684.0,1437.0,608.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-07 00:00:00+00:00,Austria,15752.0,1445.0,609.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-08 00:00:00+00:00,Austria,15774.0,1324.0,614.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-09 00:00:00+00:00,Austria,15833.0,1290.0,615.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-10 00:00:00+00:00,Austria,15871.0,1262.0,618.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-11 00:00:00+00:00,Austria,15882.0,1201.0,620.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-12 00:00:00+00:00,Austria,15961.0,1190.0,623.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-13 00:00:00+00:00,Austria,15997.0,1069.0,624.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-14 00:00:00+00:00,Austria,16058.0,1027.0,626.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-15 00:00:00+00:00,Austria,16109.0,1010.0,628.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-16 00:00:00+00:00,Austria,16201.0,1048.0,629.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-17 00:00:00+00:00,Austria,16242.0,1050.0,629.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-18 00:00:00+00:00,Austria,16269.0,1026.0,629.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-19 00:00:00+00:00,Austria,16321.0,1011.0,632.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-20 00:00:00+00:00,Austria,16353.0,838.0,633.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-21 00:00:00+00:00,Austria,16404.0,820.0,633.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-22 00:00:00+00:00,Austria,16436.0,796.0,635.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-23 00:00:00+00:00,Austria,16486.0,810.0,639.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-24 00:00:00+00:00,Austria,16503.0,800.0,640.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-25 00:00:00+00:00,Austria,16539.0,760.0,641.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-26 00:00:00+00:00,Austria,16557.0,732.0,643.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-27 00:00:00+00:00,Austria,16591.0,718.0,645.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-28 00:00:00+00:00,Austria,16628.0,674.0,668.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-29 00:00:00+00:00,Austria,16655.0,640.0,668.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +AT,2020-05-30 00:00:00+00:00,Austria,16685.0,497.0,668.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +BE,2020-01-22 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BE,2020-01-23 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BE,2020-01-24 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BE,2020-01-25 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BE,2020-01-26 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BE,2020-01-27 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BE,2020-01-28 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-01-29 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-01-30 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-01-31 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-01 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-02 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-03 00:00:00+00:00,Belgium,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-04 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-05 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-06 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-07 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-08 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-09 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-10 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-11 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-12 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-13 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-14 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-15 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-16 00:00:00+00:00,Belgium,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-17 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-18 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-19 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-20 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-21 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-22 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-23 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-24 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-25 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-26 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-27 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-28 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-02-29 00:00:00+00:00,Belgium,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-03-01 00:00:00+00:00,Belgium,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-03-02 00:00:00+00:00,Belgium,8.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-03-03 00:00:00+00:00,Belgium,13.0,12.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BE,2020-03-04 00:00:00+00:00,Belgium,23.0,22.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-05 00:00:00+00:00,Belgium,50.0,49.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-06 00:00:00+00:00,Belgium,109.0,108.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-07 00:00:00+00:00,Belgium,169.0,168.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-08 00:00:00+00:00,Belgium,200.0,199.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-09 00:00:00+00:00,Belgium,239.0,238.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-10 00:00:00+00:00,Belgium,267.0,266.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-11 00:00:00+00:00,Belgium,314.0,310.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-12 00:00:00+00:00,Belgium,314.0,310.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-13 00:00:00+00:00,Belgium,559.0,555.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +BE,2020-03-14 00:00:00+00:00,Belgium,689.0,684.0,4.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +BE,2020-03-15 00:00:00+00:00,Belgium,886.0,881.0,4.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +BE,2020-03-16 00:00:00+00:00,Belgium,1058.0,1052.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +BE,2020-03-17 00:00:00+00:00,Belgium,1243.0,1232.0,10.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +BE,2020-03-18 00:00:00+00:00,Belgium,1486.0,1441.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 +BE,2020-03-19 00:00:00+00:00,Belgium,1795.0,1743.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 +BE,2020-03-20 00:00:00+00:00,Belgium,2257.0,2219.0,37.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-21 00:00:00+00:00,Belgium,2815.0,2485.0,67.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-22 00:00:00+00:00,Belgium,3401.0,3063.0,75.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-23 00:00:00+00:00,Belgium,3743.0,3392.0,88.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-24 00:00:00+00:00,Belgium,4269.0,3686.0,122.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-25 00:00:00+00:00,Belgium,4937.0,4212.0,178.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-26 00:00:00+00:00,Belgium,6235.0,5340.0,220.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-27 00:00:00+00:00,Belgium,7284.0,6137.0,289.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-28 00:00:00+00:00,Belgium,9134.0,7718.0,353.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-29 00:00:00+00:00,Belgium,10836.0,9046.0,431.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-30 00:00:00+00:00,Belgium,11899.0,9859.0,513.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-03-31 00:00:00+00:00,Belgium,12775.0,10374.0,705.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-01 00:00:00+00:00,Belgium,13964.0,11004.0,828.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-02 00:00:00+00:00,Belgium,15348.0,11842.0,1011.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-03 00:00:00+00:00,Belgium,16770.0,12755.0,1143.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-04 00:00:00+00:00,Belgium,18431.0,13901.0,1283.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-05 00:00:00+00:00,Belgium,19691.0,14493.0,1447.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-06 00:00:00+00:00,Belgium,20814.0,15196.0,1632.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-07 00:00:00+00:00,Belgium,22194.0,16002.0,2035.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-08 00:00:00+00:00,Belgium,23403.0,16482.0,2240.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-09 00:00:00+00:00,Belgium,24983.0,17296.0,2523.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-10 00:00:00+00:00,Belgium,26667.0,18080.0,3019.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-11 00:00:00+00:00,Belgium,28018.0,18686.0,3346.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-12 00:00:00+00:00,Belgium,29647.0,19584.0,3600.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-13 00:00:00+00:00,Belgium,30589.0,19979.0,3903.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-14 00:00:00+00:00,Belgium,31119.0,20094.0,4157.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-15 00:00:00+00:00,Belgium,33573.0,22026.0,4440.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-16 00:00:00+00:00,Belgium,34809.0,22390.0,4857.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-17 00:00:00+00:00,Belgium,36138.0,23014.0,5163.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-18 00:00:00+00:00,Belgium,37183.0,23382.0,5453.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-19 00:00:00+00:00,Belgium,38496.0,24056.0,5683.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-20 00:00:00+00:00,Belgium,39983.0,25260.0,5828.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-21 00:00:00+00:00,Belgium,40956.0,25956.0,5998.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-22 00:00:00+00:00,Belgium,41889.0,26194.0,6262.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-23 00:00:00+00:00,Belgium,42797.0,26507.0,6490.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-24 00:00:00+00:00,Belgium,44293.0,27492.0,6679.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-25 00:00:00+00:00,Belgium,45325.0,27991.0,6917.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-26 00:00:00+00:00,Belgium,46134.0,28255.0,7094.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-27 00:00:00+00:00,Belgium,46687.0,28602.0,7207.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-28 00:00:00+00:00,Belgium,47334.0,29060.0,7331.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-29 00:00:00+00:00,Belgium,47859.0,29075.0,7501.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-04-30 00:00:00+00:00,Belgium,48519.0,29349.0,7594.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-01 00:00:00+00:00,Belgium,49032.0,29437.0,7703.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-02 00:00:00+00:00,Belgium,49517.0,29541.0,7765.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-03 00:00:00+00:00,Belgium,49906.0,29753.0,7844.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-04 00:00:00+00:00,Belgium,50267.0,29965.0,7924.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-05 00:00:00+00:00,Belgium,50509.0,30052.0,8016.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-06 00:00:00+00:00,Belgium,50781.0,29711.0,8339.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-07 00:00:00+00:00,Belgium,51420.0,30025.0,8415.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-08 00:00:00+00:00,Belgium,52011.0,30289.0,8521.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-09 00:00:00+00:00,Belgium,52596.0,30604.0,8581.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-10 00:00:00+00:00,Belgium,53081.0,30783.0,8656.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-11 00:00:00+00:00,Belgium,53449.0,31045.0,8707.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-12 00:00:00+00:00,Belgium,53779.0,31286.0,8761.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-13 00:00:00+00:00,Belgium,53981.0,31201.0,8843.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-14 00:00:00+00:00,Belgium,54288.0,31274.0,8903.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-15 00:00:00+00:00,Belgium,54644.0,31384.0,8959.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-16 00:00:00+00:00,Belgium,54989.0,31524.0,9005.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-17 00:00:00+00:00,Belgium,55280.0,31598.0,9052.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-18 00:00:00+00:00,Belgium,55559.0,31822.0,9080.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-19 00:00:00+00:00,Belgium,55791.0,31996.0,9108.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-20 00:00:00+00:00,Belgium,55983.0,31986.0,9150.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-21 00:00:00+00:00,Belgium,56235.0,32061.0,9186.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-22 00:00:00+00:00,Belgium,56511.0,32176.0,9212.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-23 00:00:00+00:00,Belgium,56810.0,32418.0,9237.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-24 00:00:00+00:00,Belgium,57092.0,32540.0,9280.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-25 00:00:00+00:00,Belgium,57342.0,32733.0,9312.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-26 00:00:00+00:00,Belgium,57455.0,32801.0,9334.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-27 00:00:00+00:00,Belgium,57592.0,32763.0,9364.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-28 00:00:00+00:00,Belgium,57849.0,32889.0,9388.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-29 00:00:00+00:00,Belgium,58061.0,32949.0,9430.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BE,2020-05-30 00:00:00+00:00,Belgium,58186.0,32964.0,9453.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BA,2020-01-22 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-23 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-24 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-25 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-26 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-27 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-28 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-29 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-30 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BA,2020-01-31 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-01 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-02 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-03 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-04 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-05 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-06 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-07 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-08 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-09 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-10 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-11 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-12 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-13 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-14 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-15 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-16 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-17 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-18 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-19 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-20 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-21 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-22 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-23 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-24 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-25 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-26 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-27 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-28 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-02-29 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-01 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-02 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-03 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-04 00:00:00+00:00,Bosnia and Herzegovina,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-05 00:00:00+00:00,Bosnia and Herzegovina,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-06 00:00:00+00:00,Bosnia and Herzegovina,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-07 00:00:00+00:00,Bosnia and Herzegovina,3.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-08 00:00:00+00:00,Bosnia and Herzegovina,3.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-09 00:00:00+00:00,Bosnia and Herzegovina,3.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +BA,2020-03-10 00:00:00+00:00,Bosnia and Herzegovina,5.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-11 00:00:00+00:00,Bosnia and Herzegovina,7.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-12 00:00:00+00:00,Bosnia and Herzegovina,11.0,11.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-13 00:00:00+00:00,Bosnia and Herzegovina,13.0,13.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-14 00:00:00+00:00,Bosnia and Herzegovina,18.0,18.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-15 00:00:00+00:00,Bosnia and Herzegovina,24.0,24.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-16 00:00:00+00:00,Bosnia and Herzegovina,25.0,25.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BA,2020-03-17 00:00:00+00:00,Bosnia and Herzegovina,26.0,24.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BA,2020-03-18 00:00:00+00:00,Bosnia and Herzegovina,38.0,36.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BA,2020-03-19 00:00:00+00:00,Bosnia and Herzegovina,63.0,61.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BA,2020-03-20 00:00:00+00:00,Bosnia and Herzegovina,89.0,87.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-21 00:00:00+00:00,Bosnia and Herzegovina,93.0,90.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-22 00:00:00+00:00,Bosnia and Herzegovina,126.0,123.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-23 00:00:00+00:00,Bosnia and Herzegovina,136.0,133.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-24 00:00:00+00:00,Bosnia and Herzegovina,166.0,161.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-25 00:00:00+00:00,Bosnia and Herzegovina,176.0,171.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-26 00:00:00+00:00,Bosnia and Herzegovina,191.0,186.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-27 00:00:00+00:00,Bosnia and Herzegovina,237.0,228.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-28 00:00:00+00:00,Bosnia and Herzegovina,258.0,248.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-29 00:00:00+00:00,Bosnia and Herzegovina,323.0,309.0,6.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-30 00:00:00+00:00,Bosnia and Herzegovina,368.0,341.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-03-31 00:00:00+00:00,Bosnia and Herzegovina,420.0,390.0,13.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-01 00:00:00+00:00,Bosnia and Herzegovina,459.0,427.0,13.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-02 00:00:00+00:00,Bosnia and Herzegovina,533.0,497.0,16.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-03 00:00:00+00:00,Bosnia and Herzegovina,579.0,535.0,17.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-04 00:00:00+00:00,Bosnia and Herzegovina,624.0,573.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-05 00:00:00+00:00,Bosnia and Herzegovina,654.0,601.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-06 00:00:00+00:00,Bosnia and Herzegovina,674.0,598.0,29.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-07 00:00:00+00:00,Bosnia and Herzegovina,764.0,663.0,33.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-08 00:00:00+00:00,Bosnia and Herzegovina,804.0,691.0,34.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-09 00:00:00+00:00,Bosnia and Herzegovina,858.0,722.0,35.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-04-10 00:00:00+00:00,Bosnia and Herzegovina,901.0,736.0,36.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-11 00:00:00+00:00,Bosnia and Herzegovina,946.0,770.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-12 00:00:00+00:00,Bosnia and Herzegovina,1009.0,777.0,39.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-13 00:00:00+00:00,Bosnia and Herzegovina,1037.0,792.0,39.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-14 00:00:00+00:00,Bosnia and Herzegovina,1083.0,807.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-15 00:00:00+00:00,Bosnia and Herzegovina,1110.0,816.0,41.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-16 00:00:00+00:00,Bosnia and Herzegovina,1167.0,847.0,43.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-17 00:00:00+00:00,Bosnia and Herzegovina,1214.0,848.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-18 00:00:00+00:00,Bosnia and Herzegovina,1268.0,883.0,47.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-19 00:00:00+00:00,Bosnia and Herzegovina,1285.0,890.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-20 00:00:00+00:00,Bosnia and Herzegovina,1309.0,879.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-21 00:00:00+00:00,Bosnia and Herzegovina,1342.0,854.0,51.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-22 00:00:00+00:00,Bosnia and Herzegovina,1368.0,855.0,53.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-23 00:00:00+00:00,Bosnia and Herzegovina,1413.0,874.0,54.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-24 00:00:00+00:00,Bosnia and Herzegovina,1421.0,828.0,55.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-25 00:00:00+00:00,Bosnia and Herzegovina,1486.0,837.0,57.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-26 00:00:00+00:00,Bosnia and Herzegovina,1516.0,833.0,59.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-27 00:00:00+00:00,Bosnia and Herzegovina,1565.0,846.0,60.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-28 00:00:00+00:00,Bosnia and Herzegovina,1585.0,840.0,63.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-29 00:00:00+00:00,Bosnia and Herzegovina,1677.0,902.0,65.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-04-30 00:00:00+00:00,Bosnia and Herzegovina,1757.0,961.0,69.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-01 00:00:00+00:00,Bosnia and Herzegovina,1781.0,956.0,70.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-02 00:00:00+00:00,Bosnia and Herzegovina,1839.0,988.0,72.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-03 00:00:00+00:00,Bosnia and Herzegovina,1857.0,955.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-04 00:00:00+00:00,Bosnia and Herzegovina,1926.0,993.0,78.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-05 00:00:00+00:00,Bosnia and Herzegovina,1946.0,956.0,79.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-06 00:00:00+00:00,Bosnia and Herzegovina,1987.0,973.0,86.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-07 00:00:00+00:00,Bosnia and Herzegovina,2027.0,983.0,90.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-08 00:00:00+00:00,Bosnia and Herzegovina,2070.0,1012.0,98.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-09 00:00:00+00:00,Bosnia and Herzegovina,2090.0,929.0,102.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-10 00:00:00+00:00,Bosnia and Herzegovina,2117.0,904.0,107.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +BA,2020-05-11 00:00:00+00:00,Bosnia and Herzegovina,2141.0,914.0,113.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-12 00:00:00+00:00,Bosnia and Herzegovina,2158.0,873.0,117.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-13 00:00:00+00:00,Bosnia and Herzegovina,2181.0,833.0,120.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-14 00:00:00+00:00,Bosnia and Herzegovina,2218.0,824.0,122.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-15 00:00:00+00:00,Bosnia and Herzegovina,2236.0,772.0,128.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-16 00:00:00+00:00,Bosnia and Herzegovina,2267.0,783.0,129.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-17 00:00:00+00:00,Bosnia and Herzegovina,2290.0,721.0,133.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-18 00:00:00+00:00,Bosnia and Herzegovina,2304.0,707.0,133.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-19 00:00:00+00:00,Bosnia and Herzegovina,2321.0,665.0,134.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-20 00:00:00+00:00,Bosnia and Herzegovina,2338.0,645.0,136.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-21 00:00:00+00:00,Bosnia and Herzegovina,2350.0,614.0,140.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-22 00:00:00+00:00,Bosnia and Herzegovina,2372.0,617.0,141.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-23 00:00:00+00:00,Bosnia and Herzegovina,2391.0,588.0,141.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-24 00:00:00+00:00,Bosnia and Herzegovina,2401.0,577.0,144.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-25 00:00:00+00:00,Bosnia and Herzegovina,2406.0,564.0,146.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-26 00:00:00+00:00,Bosnia and Herzegovina,2416.0,546.0,149.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-27 00:00:00+00:00,Bosnia and Herzegovina,2435.0,540.0,151.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-28 00:00:00+00:00,Bosnia and Herzegovina,2462.0,528.0,153.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BA,2020-05-29 00:00:00+00:00,Bosnia and Herzegovina,2485.0,529.0,153.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BA,2020-05-30 00:00:00+00:00,Bosnia and Herzegovina,2494.0,510.0,153.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-01-22 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-23 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-24 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-25 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-26 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-27 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-28 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-29 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-30 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-01-31 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-02-01 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-02-02 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +BG,2020-02-03 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-04 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-05 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-06 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-07 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-08 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-09 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-10 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +BG,2020-02-11 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-12 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-13 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-14 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-15 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-16 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-17 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-18 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-19 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-20 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-21 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-22 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-23 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-24 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-25 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-26 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-27 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-28 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-02-29 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-01 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-02 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-03 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-04 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-05 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-06 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-07 00:00:00+00:00,Bulgaria,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-08 00:00:00+00:00,Bulgaria,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-09 00:00:00+00:00,Bulgaria,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-10 00:00:00+00:00,Bulgaria,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-11 00:00:00+00:00,Bulgaria,7.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-12 00:00:00+00:00,Bulgaria,7.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-13 00:00:00+00:00,Bulgaria,23.0,22.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-14 00:00:00+00:00,Bulgaria,41.0,39.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-15 00:00:00+00:00,Bulgaria,51.0,49.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-16 00:00:00+00:00,Bulgaria,52.0,50.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +BG,2020-03-17 00:00:00+00:00,Bulgaria,67.0,65.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BG,2020-03-18 00:00:00+00:00,Bulgaria,92.0,90.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BG,2020-03-19 00:00:00+00:00,Bulgaria,94.0,91.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BG,2020-03-20 00:00:00+00:00,Bulgaria,127.0,124.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +BG,2020-03-21 00:00:00+00:00,Bulgaria,163.0,157.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-22 00:00:00+00:00,Bulgaria,187.0,181.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-23 00:00:00+00:00,Bulgaria,201.0,195.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-24 00:00:00+00:00,Bulgaria,218.0,212.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-25 00:00:00+00:00,Bulgaria,242.0,235.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-26 00:00:00+00:00,Bulgaria,264.0,253.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-27 00:00:00+00:00,Bulgaria,293.0,281.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-28 00:00:00+00:00,Bulgaria,331.0,313.0,7.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-29 00:00:00+00:00,Bulgaria,346.0,324.0,8.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-30 00:00:00+00:00,Bulgaria,359.0,334.0,8.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-03-31 00:00:00+00:00,Bulgaria,399.0,374.0,8.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-01 00:00:00+00:00,Bulgaria,422.0,392.0,10.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-02 00:00:00+00:00,Bulgaria,457.0,422.0,10.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-03 00:00:00+00:00,Bulgaria,485.0,441.0,14.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-04 00:00:00+00:00,Bulgaria,503.0,452.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-05 00:00:00+00:00,Bulgaria,531.0,474.0,20.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-06 00:00:00+00:00,Bulgaria,549.0,488.0,22.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-07 00:00:00+00:00,Bulgaria,577.0,512.0,23.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-08 00:00:00+00:00,Bulgaria,593.0,527.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-09 00:00:00+00:00,Bulgaria,618.0,546.0,24.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-10 00:00:00+00:00,Bulgaria,635.0,556.0,25.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-11 00:00:00+00:00,Bulgaria,661.0,571.0,28.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-12 00:00:00+00:00,Bulgaria,675.0,578.0,29.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-13 00:00:00+00:00,Bulgaria,685.0,582.0,32.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-14 00:00:00+00:00,Bulgaria,713.0,597.0,35.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-15 00:00:00+00:00,Bulgaria,747.0,606.0,36.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-16 00:00:00+00:00,Bulgaria,800.0,640.0,38.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-17 00:00:00+00:00,Bulgaria,846.0,664.0,41.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-18 00:00:00+00:00,Bulgaria,878.0,684.0,41.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-19 00:00:00+00:00,Bulgaria,894.0,691.0,42.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-20 00:00:00+00:00,Bulgaria,929.0,719.0,43.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-21 00:00:00+00:00,Bulgaria,975.0,760.0,45.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-22 00:00:00+00:00,Bulgaria,1024.0,801.0,49.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-23 00:00:00+00:00,Bulgaria,1097.0,855.0,52.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-24 00:00:00+00:00,Bulgaria,1234.0,983.0,54.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-25 00:00:00+00:00,Bulgaria,1247.0,995.0,55.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-26 00:00:00+00:00,Bulgaria,1300.0,1039.0,56.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-27 00:00:00+00:00,Bulgaria,1363.0,1099.0,58.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-28 00:00:00+00:00,Bulgaria,1399.0,1119.0,58.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-29 00:00:00+00:00,Bulgaria,1447.0,1140.0,64.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-04-30 00:00:00+00:00,Bulgaria,1506.0,1174.0,66.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-01 00:00:00+00:00,Bulgaria,1555.0,1211.0,68.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-02 00:00:00+00:00,Bulgaria,1594.0,1235.0,72.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-03 00:00:00+00:00,Bulgaria,1618.0,1237.0,73.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-04 00:00:00+00:00,Bulgaria,1652.0,1253.0,78.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-05 00:00:00+00:00,Bulgaria,1704.0,1282.0,80.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-06 00:00:00+00:00,Bulgaria,1778.0,1334.0,84.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-07 00:00:00+00:00,Bulgaria,1829.0,1361.0,84.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-08 00:00:00+00:00,Bulgaria,1872.0,1385.0,86.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-09 00:00:00+00:00,Bulgaria,1921.0,1409.0,90.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-10 00:00:00+00:00,Bulgaria,1965.0,1430.0,91.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-11 00:00:00+00:00,Bulgaria,1990.0,1436.0,93.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-12 00:00:00+00:00,Bulgaria,2023.0,1452.0,95.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-13 00:00:00+00:00,Bulgaria,2069.0,1474.0,96.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-14 00:00:00+00:00,Bulgaria,2100.0,1470.0,99.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-15 00:00:00+00:00,Bulgaria,2138.0,1491.0,102.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-16 00:00:00+00:00,Bulgaria,2175.0,1497.0,105.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-17 00:00:00+00:00,Bulgaria,2211.0,1505.0,108.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-18 00:00:00+00:00,Bulgaria,2235.0,1513.0,110.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-19 00:00:00+00:00,Bulgaria,2259.0,1501.0,112.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-20 00:00:00+00:00,Bulgaria,2292.0,1492.0,116.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-21 00:00:00+00:00,Bulgaria,2331.0,1484.0,120.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-22 00:00:00+00:00,Bulgaria,2372.0,1478.0,125.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-23 00:00:00+00:00,Bulgaria,2408.0,1474.0,126.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-24 00:00:00+00:00,Bulgaria,2427.0,1457.0,130.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-25 00:00:00+00:00,Bulgaria,2433.0,1441.0,130.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-26 00:00:00+00:00,Bulgaria,2443.0,1433.0,130.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-27 00:00:00+00:00,Bulgaria,2460.0,1415.0,133.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-28 00:00:00+00:00,Bulgaria,2477.0,1378.0,134.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-29 00:00:00+00:00,Bulgaria,2485.0,1333.0,136.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +BG,2020-05-30 00:00:00+00:00,Bulgaria,2499.0,1296.0,139.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-01-22 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HR,2020-01-23 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HR,2020-01-24 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HR,2020-01-25 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HR,2020-01-26 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HR,2020-01-27 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-01-28 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-01-29 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-01-30 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-01-31 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-02-01 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-02-02 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-02-03 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HR,2020-02-04 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-05 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-06 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-07 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-08 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-09 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-10 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-11 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-12 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-13 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-14 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-15 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-16 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-17 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-18 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-19 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-20 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-21 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-22 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-23 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-24 00:00:00+00:00,Croatia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-25 00:00:00+00:00,Croatia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-26 00:00:00+00:00,Croatia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-27 00:00:00+00:00,Croatia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-28 00:00:00+00:00,Croatia,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-02-29 00:00:00+00:00,Croatia,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-01 00:00:00+00:00,Croatia,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-02 00:00:00+00:00,Croatia,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-03 00:00:00+00:00,Croatia,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-04 00:00:00+00:00,Croatia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-05 00:00:00+00:00,Croatia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-06 00:00:00+00:00,Croatia,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-07 00:00:00+00:00,Croatia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-08 00:00:00+00:00,Croatia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-09 00:00:00+00:00,Croatia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-10 00:00:00+00:00,Croatia,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-11 00:00:00+00:00,Croatia,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-12 00:00:00+00:00,Croatia,19.0,19.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-13 00:00:00+00:00,Croatia,32.0,31.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-14 00:00:00+00:00,Croatia,38.0,37.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-15 00:00:00+00:00,Croatia,49.0,48.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-16 00:00:00+00:00,Croatia,57.0,55.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-17 00:00:00+00:00,Croatia,65.0,61.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-18 00:00:00+00:00,Croatia,81.0,77.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +HR,2020-03-19 00:00:00+00:00,Croatia,105.0,99.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +HR,2020-03-20 00:00:00+00:00,Croatia,128.0,122.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +HR,2020-03-21 00:00:00+00:00,Croatia,206.0,200.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +HR,2020-03-22 00:00:00+00:00,Croatia,254.0,248.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-03-23 00:00:00+00:00,Croatia,315.0,309.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-24 00:00:00+00:00,Croatia,382.0,376.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-25 00:00:00+00:00,Croatia,442.0,419.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-26 00:00:00+00:00,Croatia,495.0,470.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-27 00:00:00+00:00,Croatia,586.0,546.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-28 00:00:00+00:00,Croatia,657.0,607.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-29 00:00:00+00:00,Croatia,713.0,655.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-30 00:00:00+00:00,Croatia,790.0,717.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-03-31 00:00:00+00:00,Croatia,867.0,794.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-01 00:00:00+00:00,Croatia,963.0,884.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-02 00:00:00+00:00,Croatia,1011.0,916.0,7.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-03 00:00:00+00:00,Croatia,1079.0,979.0,8.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-04 00:00:00+00:00,Croatia,1126.0,995.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-05 00:00:00+00:00,Croatia,1182.0,1042.0,15.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-06 00:00:00+00:00,Croatia,1222.0,1076.0,16.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-07 00:00:00+00:00,Croatia,1282.0,1097.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-08 00:00:00+00:00,Croatia,1343.0,1145.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-09 00:00:00+00:00,Croatia,1407.0,1168.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-10 00:00:00+00:00,Croatia,1495.0,1243.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-11 00:00:00+00:00,Croatia,1534.0,1190.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-12 00:00:00+00:00,Croatia,1600.0,1204.0,23.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-13 00:00:00+00:00,Croatia,1650.0,1225.0,25.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-14 00:00:00+00:00,Croatia,1704.0,1258.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-15 00:00:00+00:00,Croatia,1741.0,1235.0,33.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-16 00:00:00+00:00,Croatia,1791.0,1227.0,35.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-17 00:00:00+00:00,Croatia,1814.0,1178.0,36.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-18 00:00:00+00:00,Croatia,1832.0,1178.0,39.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-19 00:00:00+00:00,Croatia,1871.0,1115.0,47.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-20 00:00:00+00:00,Croatia,1881.0,1063.0,47.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-21 00:00:00+00:00,Croatia,1908.0,1059.0,48.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-22 00:00:00+00:00,Croatia,1950.0,1033.0,48.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-23 00:00:00+00:00,Croatia,1981.0,1048.0,50.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-24 00:00:00+00:00,Croatia,2009.0,976.0,51.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-25 00:00:00+00:00,Croatia,2016.0,928.0,54.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-26 00:00:00+00:00,Croatia,2030.0,872.0,55.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HR,2020-04-27 00:00:00+00:00,Croatia,2039.0,814.0,59.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-04-28 00:00:00+00:00,Croatia,2047.0,752.0,63.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-04-29 00:00:00+00:00,Croatia,2062.0,707.0,67.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-04-30 00:00:00+00:00,Croatia,2076.0,659.0,69.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-01 00:00:00+00:00,Croatia,2085.0,589.0,75.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-02 00:00:00+00:00,Croatia,2088.0,548.0,77.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-03 00:00:00+00:00,Croatia,2096.0,528.0,79.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-04 00:00:00+00:00,Croatia,2101.0,499.0,80.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-05 00:00:00+00:00,Croatia,2112.0,469.0,83.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-06 00:00:00+00:00,Croatia,2119.0,433.0,85.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-07 00:00:00+00:00,Croatia,2125.0,398.0,86.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-08 00:00:00+00:00,Croatia,2161.0,386.0,86.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-09 00:00:00+00:00,Croatia,2176.0,363.0,87.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-10 00:00:00+00:00,Croatia,2187.0,333.0,90.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +HR,2020-05-11 00:00:00+00:00,Croatia,2196.0,321.0,91.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-12 00:00:00+00:00,Croatia,2207.0,308.0,91.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-13 00:00:00+00:00,Croatia,2213.0,285.0,94.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-14 00:00:00+00:00,Croatia,2221.0,277.0,94.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-15 00:00:00+00:00,Croatia,2222.0,258.0,95.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-16 00:00:00+00:00,Croatia,2224.0,216.0,95.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-17 00:00:00+00:00,Croatia,2226.0,195.0,95.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-18 00:00:00+00:00,Croatia,2228.0,187.0,95.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-19 00:00:00+00:00,Croatia,2232.0,169.0,96.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-20 00:00:00+00:00,Croatia,2234.0,160.0,96.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-21 00:00:00+00:00,Croatia,2237.0,162.0,97.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-22 00:00:00+00:00,Croatia,2243.0,133.0,99.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-23 00:00:00+00:00,Croatia,2243.0,121.0,99.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-24 00:00:00+00:00,Croatia,2244.0,118.0,99.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-25 00:00:00+00:00,Croatia,2244.0,109.0,100.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-26 00:00:00+00:00,Croatia,2244.0,97.0,101.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-27 00:00:00+00:00,Croatia,2244.0,96.0,101.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-28 00:00:00+00:00,Croatia,2245.0,92.0,102.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-29 00:00:00+00:00,Croatia,2245.0,83.0,103.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +HR,2020-05-30 00:00:00+00:00,Croatia,2246.0,80.0,103.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +CZ,2020-01-22 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CZ,2020-01-23 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CZ,2020-01-24 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CZ,2020-01-25 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CZ,2020-01-26 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CZ,2020-01-27 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +CZ,2020-01-28 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +CZ,2020-01-29 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +CZ,2020-01-30 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-01-31 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-01 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-02 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-03 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-04 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-05 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-06 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-07 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-08 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-09 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-10 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-11 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-12 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-13 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-14 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-15 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-16 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-17 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-18 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-19 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-20 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-21 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-22 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-23 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-24 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-25 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-26 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-27 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +CZ,2020-02-28 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-02-29 00:00:00+00:00,Czech Republic,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-01 00:00:00+00:00,Czech Republic,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-02 00:00:00+00:00,Czech Republic,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-03 00:00:00+00:00,Czech Republic,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-04 00:00:00+00:00,Czech Republic,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-05 00:00:00+00:00,Czech Republic,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-06 00:00:00+00:00,Czech Republic,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-07 00:00:00+00:00,Czech Republic,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-08 00:00:00+00:00,Czech Republic,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-09 00:00:00+00:00,Czech Republic,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-10 00:00:00+00:00,Czech Republic,41.0,41.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-11 00:00:00+00:00,Czech Republic,91.0,91.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-12 00:00:00+00:00,Czech Republic,94.0,94.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-13 00:00:00+00:00,Czech Republic,141.0,141.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-14 00:00:00+00:00,Czech Republic,189.0,189.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-15 00:00:00+00:00,Czech Republic,253.0,253.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-16 00:00:00+00:00,Czech Republic,298.0,295.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-17 00:00:00+00:00,Czech Republic,396.0,393.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-18 00:00:00+00:00,Czech Republic,464.0,461.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-19 00:00:00+00:00,Czech Republic,694.0,691.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-20 00:00:00+00:00,Czech Republic,833.0,829.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-21 00:00:00+00:00,Czech Republic,995.0,989.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-22 00:00:00+00:00,Czech Republic,1120.0,1113.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-23 00:00:00+00:00,Czech Republic,1236.0,1229.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-24 00:00:00+00:00,Czech Republic,1394.0,1381.0,3.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-25 00:00:00+00:00,Czech Republic,1654.0,1638.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-26 00:00:00+00:00,Czech Republic,1925.0,1906.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-27 00:00:00+00:00,Czech Republic,2279.0,2259.0,9.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-28 00:00:00+00:00,Czech Republic,2631.0,2609.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-29 00:00:00+00:00,Czech Republic,2817.0,2790.0,16.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-30 00:00:00+00:00,Czech Republic,3001.0,2953.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-03-31 00:00:00+00:00,Czech Republic,3308.0,3232.0,31.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-01 00:00:00+00:00,Czech Republic,3508.0,3408.0,39.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-02 00:00:00+00:00,Czech Republic,3858.0,3747.0,44.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-03 00:00:00+00:00,Czech Republic,4091.0,3966.0,53.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-04 00:00:00+00:00,Czech Republic,4472.0,4335.0,59.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-05 00:00:00+00:00,Czech Republic,4587.0,4424.0,67.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-06 00:00:00+00:00,Czech Republic,4822.0,4623.0,78.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-07 00:00:00+00:00,Czech Republic,5017.0,4757.0,88.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-08 00:00:00+00:00,Czech Republic,5312.0,4980.0,99.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-09 00:00:00+00:00,Czech Republic,5569.0,5156.0,112.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-10 00:00:00+00:00,Czech Republic,5732.0,5267.0,119.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-11 00:00:00+00:00,Czech Republic,5831.0,5291.0,129.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-12 00:00:00+00:00,Czech Republic,5991.0,5389.0,138.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-13 00:00:00+00:00,Czech Republic,6059.0,5397.0,143.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +CZ,2020-04-14 00:00:00+00:00,Czech Republic,6111.0,5308.0,161.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-15 00:00:00+00:00,Czech Republic,6216.0,5231.0,166.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-16 00:00:00+00:00,Czech Republic,6433.0,5292.0,169.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-17 00:00:00+00:00,Czech Republic,6549.0,5202.0,173.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-18 00:00:00+00:00,Czech Republic,6606.0,5198.0,181.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-19 00:00:00+00:00,Czech Republic,6746.0,5262.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-20 00:00:00+00:00,Czech Republic,6900.0,5147.0,194.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-21 00:00:00+00:00,Czech Republic,7033.0,5079.0,201.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-22 00:00:00+00:00,Czech Republic,7132.0,4935.0,208.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-23 00:00:00+00:00,Czech Republic,7187.0,4825.0,210.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-24 00:00:00+00:00,Czech Republic,7273.0,4688.0,214.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-25 00:00:00+00:00,Czech Republic,7352.0,4681.0,218.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-26 00:00:00+00:00,Czech Republic,7404.0,4639.0,220.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-27 00:00:00+00:00,Czech Republic,7445.0,4396.0,223.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-28 00:00:00+00:00,Czech Republic,7504.0,4329.0,227.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-29 00:00:00+00:00,Czech Republic,7579.0,4244.0,227.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-04-30 00:00:00+00:00,Czech Republic,7682.0,4132.0,236.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-01 00:00:00+00:00,Czech Republic,7737.0,4125.0,240.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-02 00:00:00+00:00,Czech Republic,7755.0,4049.0,245.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-03 00:00:00+00:00,Czech Republic,7781.0,3946.0,248.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-04 00:00:00+00:00,Czech Republic,7819.0,3760.0,252.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-05 00:00:00+00:00,Czech Republic,7896.0,3633.0,257.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-06 00:00:00+00:00,Czech Republic,7974.0,3507.0,262.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-07 00:00:00+00:00,Czech Republic,8031.0,3390.0,270.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-08 00:00:00+00:00,Czech Republic,8077.0,3391.0,273.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-09 00:00:00+00:00,Czech Republic,8095.0,3372.0,276.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-10 00:00:00+00:00,Czech Republic,8123.0,3369.0,280.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-11 00:00:00+00:00,Czech Republic,8176.0,3183.0,282.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-12 00:00:00+00:00,Czech Republic,8221.0,3049.0,283.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-13 00:00:00+00:00,Czech Republic,8269.0,2932.0,290.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-14 00:00:00+00:00,Czech Republic,8351.0,2817.0,293.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-15 00:00:00+00:00,Czech Republic,8406.0,2730.0,295.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-16 00:00:00+00:00,Czech Republic,8455.0,2737.0,296.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-17 00:00:00+00:00,Czech Republic,8475.0,2715.0,298.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-18 00:00:00+00:00,Czech Republic,8586.0,2648.0,297.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-19 00:00:00+00:00,Czech Republic,8647.0,2619.0,302.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-20 00:00:00+00:00,Czech Republic,8721.0,2587.0,304.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-21 00:00:00+00:00,Czech Republic,8754.0,2522.0,306.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-22 00:00:00+00:00,Czech Republic,8813.0,2476.0,312.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-23 00:00:00+00:00,Czech Republic,8890.0,2532.0,314.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-24 00:00:00+00:00,Czech Republic,8955.0,2562.0,315.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-25 00:00:00+00:00,Czech Republic,9002.0,2503.0,317.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-26 00:00:00+00:00,Czech Republic,9050.0,2463.0,317.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-27 00:00:00+00:00,Czech Republic,9086.0,2399.0,317.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-28 00:00:00+00:00,Czech Republic,9140.0,2361.0,319.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-29 00:00:00+00:00,Czech Republic,9196.0,2377.0,319.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +CZ,2020-05-30 00:00:00+00:00,Czech Republic,9230.0,2365.0,319.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-01-22 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-23 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-24 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-25 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-26 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-27 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-28 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-29 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-30 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-01-31 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-01 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-02 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-03 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-04 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-05 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-06 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-07 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-08 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-09 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-10 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-11 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-12 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-13 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-14 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-15 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-16 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-17 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-18 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-19 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-20 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-21 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-22 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-23 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-24 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-25 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-26 00:00:00+00:00,Denmark,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DK,2020-02-27 00:00:00+00:00,Denmark,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DK,2020-02-28 00:00:00+00:00,Denmark,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DK,2020-02-29 00:00:00+00:00,Denmark,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DK,2020-03-01 00:00:00+00:00,Denmark,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DK,2020-03-02 00:00:00+00:00,Denmark,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DK,2020-03-03 00:00:00+00:00,Denmark,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-04 00:00:00+00:00,Denmark,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-05 00:00:00+00:00,Denmark,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-06 00:00:00+00:00,Denmark,23.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-07 00:00:00+00:00,Denmark,23.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-08 00:00:00+00:00,Denmark,35.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-09 00:00:00+00:00,Denmark,90.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DK,2020-03-10 00:00:00+00:00,Denmark,262.0,261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0 +DK,2020-03-11 00:00:00+00:00,Denmark,442.0,441.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +DK,2020-03-12 00:00:00+00:00,Denmark,615.0,614.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +DK,2020-03-13 00:00:00+00:00,Denmark,801.0,800.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-14 00:00:00+00:00,Denmark,827.0,825.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-15 00:00:00+00:00,Denmark,864.0,861.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-16 00:00:00+00:00,Denmark,914.0,910.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-17 00:00:00+00:00,Denmark,977.0,972.0,4.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-18 00:00:00+00:00,Denmark,1057.0,1052.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-19 00:00:00+00:00,Denmark,1151.0,1144.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-20 00:00:00+00:00,Denmark,1255.0,1245.0,9.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-21 00:00:00+00:00,Denmark,1326.0,1312.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-22 00:00:00+00:00,Denmark,1395.0,1381.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-23 00:00:00+00:00,Denmark,1450.0,1425.0,24.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-24 00:00:00+00:00,Denmark,1591.0,1558.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-25 00:00:00+00:00,Denmark,1724.0,1689.0,34.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-26 00:00:00+00:00,Denmark,1877.0,1835.0,41.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-27 00:00:00+00:00,Denmark,2046.0,1993.0,52.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-28 00:00:00+00:00,Denmark,2201.0,2135.0,65.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-29 00:00:00+00:00,Denmark,2395.0,2322.0,72.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-30 00:00:00+00:00,Denmark,2577.0,2499.0,77.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-03-31 00:00:00+00:00,Denmark,2860.0,2769.0,90.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-01 00:00:00+00:00,Denmark,3107.0,2109.0,104.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-02 00:00:00+00:00,Denmark,3386.0,2174.0,123.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-03 00:00:00+00:00,Denmark,3757.0,2425.0,139.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-04 00:00:00+00:00,Denmark,4077.0,2633.0,161.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-05 00:00:00+00:00,Denmark,4369.0,2863.0,179.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-06 00:00:00+00:00,Denmark,4681.0,3116.0,187.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-07 00:00:00+00:00,Denmark,5071.0,3377.0,203.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-08 00:00:00+00:00,Denmark,5402.0,3563.0,218.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-09 00:00:00+00:00,Denmark,5635.0,3662.0,237.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-10 00:00:00+00:00,Denmark,5819.0,3799.0,247.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-11 00:00:00+00:00,Denmark,5996.0,3781.0,260.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-12 00:00:00+00:00,Denmark,6174.0,3778.0,273.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-13 00:00:00+00:00,Denmark,6318.0,3798.0,285.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-14 00:00:00+00:00,Denmark,6511.0,3697.0,299.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-15 00:00:00+00:00,Denmark,6681.0,3624.0,309.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-16 00:00:00+00:00,Denmark,6879.0,3535.0,321.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-17 00:00:00+00:00,Denmark,7073.0,3348.0,336.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-18 00:00:00+00:00,Denmark,7242.0,3049.0,346.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-19 00:00:00+00:00,Denmark,7384.0,2888.0,355.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-20 00:00:00+00:00,Denmark,7515.0,2839.0,364.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-21 00:00:00+00:00,Denmark,7695.0,2625.0,370.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-22 00:00:00+00:00,Denmark,7912.0,2441.0,384.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-23 00:00:00+00:00,Denmark,8073.0,2295.0,394.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-24 00:00:00+00:00,Denmark,8210.0,2281.0,403.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-25 00:00:00+00:00,Denmark,8445.0,2358.0,418.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-26 00:00:00+00:00,Denmark,8575.0,2348.0,422.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-27 00:00:00+00:00,Denmark,8698.0,2312.0,427.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-28 00:00:00+00:00,Denmark,8851.0,2296.0,434.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-29 00:00:00+00:00,Denmark,9008.0,2199.0,443.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-04-30 00:00:00+00:00,Denmark,9158.0,2160.0,452.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-01 00:00:00+00:00,Denmark,9311.0,2122.0,460.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-02 00:00:00+00:00,Denmark,9407.0,2043.0,475.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-03 00:00:00+00:00,Denmark,9523.0,2052.0,484.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-04 00:00:00+00:00,Denmark,9670.0,2089.0,493.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-05 00:00:00+00:00,Denmark,9821.0,2022.0,503.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-06 00:00:00+00:00,Denmark,9938.0,1939.0,506.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-07 00:00:00+00:00,Denmark,10083.0,1858.0,514.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-08 00:00:00+00:00,Denmark,10218.0,1769.0,522.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-09 00:00:00+00:00,Denmark,10319.0,1700.0,526.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-10 00:00:00+00:00,Denmark,10429.0,1683.0,529.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-11 00:00:00+00:00,Denmark,10513.0,1652.0,533.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-12 00:00:00+00:00,Denmark,10591.0,1484.0,527.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-13 00:00:00+00:00,Denmark,10667.0,1471.0,533.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-14 00:00:00+00:00,Denmark,10713.0,1371.0,537.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-15 00:00:00+00:00,Denmark,10791.0,1295.0,537.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-16 00:00:00+00:00,Denmark,10858.0,1208.0,543.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-17 00:00:00+00:00,Denmark,10927.0,1153.0,547.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-18 00:00:00+00:00,Denmark,10968.0,1119.0,548.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-19 00:00:00+00:00,Denmark,11044.0,1077.0,551.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-20 00:00:00+00:00,Denmark,11117.0,1027.0,554.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-21 00:00:00+00:00,Denmark,11182.0,978.0,561.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-22 00:00:00+00:00,Denmark,11230.0,905.0,561.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-23 00:00:00+00:00,Denmark,11289.0,892.0,561.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-24 00:00:00+00:00,Denmark,11360.0,898.0,562.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-25 00:00:00+00:00,Denmark,11387.0,860.0,563.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-26 00:00:00+00:00,Denmark,11428.0,821.0,563.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-27 00:00:00+00:00,Denmark,11480.0,809.0,565.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-28 00:00:00+00:00,Denmark,11512.0,764.0,568.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-29 00:00:00+00:00,Denmark,11593.0,785.0,568.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DK,2020-05-30 00:00:00+00:00,Denmark,11633.0,735.0,571.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +EE,2020-01-22 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-23 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-24 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-25 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-26 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-27 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-28 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-29 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-30 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-01-31 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-01 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-02 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-03 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-04 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-05 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-06 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-07 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-08 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-09 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-10 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-11 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-12 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-13 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-14 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-15 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-16 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-17 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-18 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-19 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-20 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-21 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-22 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-23 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-24 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-25 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-26 00:00:00+00:00,Estonia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-27 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-28 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-02-29 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-01 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-02 00:00:00+00:00,Estonia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-03 00:00:00+00:00,Estonia,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-04 00:00:00+00:00,Estonia,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-05 00:00:00+00:00,Estonia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-06 00:00:00+00:00,Estonia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-07 00:00:00+00:00,Estonia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-08 00:00:00+00:00,Estonia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-09 00:00:00+00:00,Estonia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-10 00:00:00+00:00,Estonia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-11 00:00:00+00:00,Estonia,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +EE,2020-03-12 00:00:00+00:00,Estonia,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-03-13 00:00:00+00:00,Estonia,79.0,79.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-03-14 00:00:00+00:00,Estonia,115.0,115.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-03-15 00:00:00+00:00,Estonia,171.0,170.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-03-16 00:00:00+00:00,Estonia,205.0,204.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-03-17 00:00:00+00:00,Estonia,225.0,224.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-18 00:00:00+00:00,Estonia,258.0,257.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-19 00:00:00+00:00,Estonia,267.0,266.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-20 00:00:00+00:00,Estonia,283.0,282.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-21 00:00:00+00:00,Estonia,306.0,305.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-22 00:00:00+00:00,Estonia,326.0,324.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-23 00:00:00+00:00,Estonia,352.0,350.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-24 00:00:00+00:00,Estonia,369.0,362.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-25 00:00:00+00:00,Estonia,404.0,395.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-26 00:00:00+00:00,Estonia,538.0,529.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-27 00:00:00+00:00,Estonia,575.0,563.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-28 00:00:00+00:00,Estonia,645.0,624.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-29 00:00:00+00:00,Estonia,679.0,656.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-30 00:00:00+00:00,Estonia,715.0,692.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-03-31 00:00:00+00:00,Estonia,745.0,715.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-01 00:00:00+00:00,Estonia,779.0,741.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-02 00:00:00+00:00,Estonia,858.0,802.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-03 00:00:00+00:00,Estonia,961.0,901.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-04 00:00:00+00:00,Estonia,1039.0,967.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-05 00:00:00+00:00,Estonia,1097.0,1020.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-06 00:00:00+00:00,Estonia,1108.0,1027.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-07 00:00:00+00:00,Estonia,1149.0,1059.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-08 00:00:00+00:00,Estonia,1185.0,1089.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-09 00:00:00+00:00,Estonia,1207.0,1100.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-10 00:00:00+00:00,Estonia,1258.0,1141.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-11 00:00:00+00:00,Estonia,1304.0,1187.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-12 00:00:00+00:00,Estonia,1309.0,1186.0,25.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-13 00:00:00+00:00,Estonia,1332.0,1202.0,28.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-14 00:00:00+00:00,Estonia,1373.0,1227.0,31.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-15 00:00:00+00:00,Estonia,1400.0,1248.0,35.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-16 00:00:00+00:00,Estonia,1434.0,1265.0,36.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-17 00:00:00+00:00,Estonia,1459.0,1276.0,38.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-18 00:00:00+00:00,Estonia,1512.0,1312.0,38.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-19 00:00:00+00:00,Estonia,1528.0,1324.0,40.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-20 00:00:00+00:00,Estonia,1535.0,1330.0,40.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-21 00:00:00+00:00,Estonia,1552.0,1340.0,43.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-22 00:00:00+00:00,Estonia,1559.0,1331.0,44.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-23 00:00:00+00:00,Estonia,1592.0,1355.0,45.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-24 00:00:00+00:00,Estonia,1605.0,1353.0,46.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-25 00:00:00+00:00,Estonia,1635.0,1361.0,46.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-26 00:00:00+00:00,Estonia,1643.0,1361.0,49.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +EE,2020-04-27 00:00:00+00:00,Estonia,1647.0,1364.0,50.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-04-28 00:00:00+00:00,Estonia,1660.0,1370.0,50.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-04-29 00:00:00+00:00,Estonia,1666.0,1380.0,50.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-04-30 00:00:00+00:00,Estonia,1689.0,1388.0,52.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-01 00:00:00+00:00,Estonia,1694.0,1389.0,52.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-02 00:00:00+00:00,Estonia,1699.0,1390.0,53.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-03 00:00:00+00:00,Estonia,1700.0,1386.0,55.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-04 00:00:00+00:00,Estonia,1703.0,1389.0,55.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-05 00:00:00+00:00,Estonia,1711.0,1395.0,55.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-06 00:00:00+00:00,Estonia,1713.0,1394.0,55.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-07 00:00:00+00:00,Estonia,1720.0,1391.0,56.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-08 00:00:00+00:00,Estonia,1725.0,965.0,56.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-09 00:00:00+00:00,Estonia,1733.0,926.0,60.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-10 00:00:00+00:00,Estonia,1739.0,929.0,60.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-11 00:00:00+00:00,Estonia,1741.0,929.0,61.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-12 00:00:00+00:00,Estonia,1746.0,908.0,61.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-13 00:00:00+00:00,Estonia,1751.0,913.0,61.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-14 00:00:00+00:00,Estonia,1758.0,787.0,62.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-15 00:00:00+00:00,Estonia,1766.0,780.0,63.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-16 00:00:00+00:00,Estonia,1770.0,773.0,63.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-17 00:00:00+00:00,Estonia,1774.0,773.0,63.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-18 00:00:00+00:00,Estonia,1784.0,782.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-19 00:00:00+00:00,Estonia,1791.0,789.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-20 00:00:00+00:00,Estonia,1794.0,774.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-21 00:00:00+00:00,Estonia,1800.0,248.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-22 00:00:00+00:00,Estonia,1807.0,235.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-23 00:00:00+00:00,Estonia,1821.0,231.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-24 00:00:00+00:00,Estonia,1823.0,227.0,64.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-25 00:00:00+00:00,Estonia,1824.0,221.0,65.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-26 00:00:00+00:00,Estonia,1834.0,217.0,65.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-27 00:00:00+00:00,Estonia,1840.0,213.0,66.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-28 00:00:00+00:00,Estonia,1851.0,211.0,66.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-29 00:00:00+00:00,Estonia,1859.0,182.0,67.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +EE,2020-05-30 00:00:00+00:00,Estonia,1865.0,176.0,67.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +FI,2020-01-22 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +FI,2020-01-23 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +FI,2020-01-24 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +FI,2020-01-25 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +FI,2020-01-26 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +FI,2020-01-27 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-01-28 00:00:00+00:00,Finland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-01-29 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-01-30 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-01-31 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-02-01 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-02-02 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-02-03 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-02-04 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-02-05 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +FI,2020-02-06 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-07 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-08 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-09 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-10 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-11 00:00:00+00:00,Finland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-12 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-13 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-14 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-15 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-16 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-17 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-18 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-19 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-20 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-21 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-22 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-23 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-24 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-25 00:00:00+00:00,Finland,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-26 00:00:00+00:00,Finland,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-27 00:00:00+00:00,Finland,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-28 00:00:00+00:00,Finland,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-02-29 00:00:00+00:00,Finland,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-01 00:00:00+00:00,Finland,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-02 00:00:00+00:00,Finland,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-03 00:00:00+00:00,Finland,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-04 00:00:00+00:00,Finland,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-05 00:00:00+00:00,Finland,12.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-06 00:00:00+00:00,Finland,15.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-07 00:00:00+00:00,Finland,15.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-08 00:00:00+00:00,Finland,23.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-09 00:00:00+00:00,Finland,30.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-10 00:00:00+00:00,Finland,40.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-11 00:00:00+00:00,Finland,59.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-12 00:00:00+00:00,Finland,59.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-13 00:00:00+00:00,Finland,155.0,154.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-14 00:00:00+00:00,Finland,225.0,224.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-15 00:00:00+00:00,Finland,244.0,234.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-16 00:00:00+00:00,Finland,277.0,267.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-17 00:00:00+00:00,Finland,321.0,311.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-18 00:00:00+00:00,Finland,336.0,326.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-19 00:00:00+00:00,Finland,400.0,390.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-20 00:00:00+00:00,Finland,450.0,440.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-21 00:00:00+00:00,Finland,523.0,512.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-22 00:00:00+00:00,Finland,626.0,615.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-23 00:00:00+00:00,Finland,700.0,689.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-24 00:00:00+00:00,Finland,792.0,781.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-25 00:00:00+00:00,Finland,880.0,867.0,3.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-26 00:00:00+00:00,Finland,958.0,943.0,5.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-27 00:00:00+00:00,Finland,1041.0,1024.0,7.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-03-28 00:00:00+00:00,Finland,1167.0,1148.0,9.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-29 00:00:00+00:00,Finland,1240.0,1219.0,11.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-30 00:00:00+00:00,Finland,1352.0,1329.0,13.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-03-31 00:00:00+00:00,Finland,1418.0,1391.0,17.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-01 00:00:00+00:00,Finland,1446.0,1419.0,17.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-02 00:00:00+00:00,Finland,1518.0,1199.0,19.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-03 00:00:00+00:00,Finland,1615.0,1295.0,20.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-04 00:00:00+00:00,Finland,1882.0,1557.0,25.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-05 00:00:00+00:00,Finland,1927.0,1599.0,28.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-06 00:00:00+00:00,Finland,2176.0,1849.0,27.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-07 00:00:00+00:00,Finland,2308.0,1974.0,34.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-08 00:00:00+00:00,Finland,2487.0,2147.0,40.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-09 00:00:00+00:00,Finland,2605.0,2263.0,42.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-10 00:00:00+00:00,Finland,2769.0,2421.0,48.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-11 00:00:00+00:00,Finland,2905.0,2556.0,49.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-12 00:00:00+00:00,Finland,2974.0,2618.0,56.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-13 00:00:00+00:00,Finland,3064.0,2705.0,59.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-14 00:00:00+00:00,Finland,3161.0,2797.0,64.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +FI,2020-04-15 00:00:00+00:00,Finland,3237.0,2865.0,72.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-16 00:00:00+00:00,Finland,3369.0,1594.0,75.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-17 00:00:00+00:00,Finland,3489.0,1707.0,82.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-18 00:00:00+00:00,Finland,3681.0,1891.0,90.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-19 00:00:00+00:00,Finland,3783.0,1989.0,94.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-20 00:00:00+00:00,Finland,3868.0,1770.0,98.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-21 00:00:00+00:00,Finland,4014.0,1873.0,141.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-22 00:00:00+00:00,Finland,4129.0,1980.0,149.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-23 00:00:00+00:00,Finland,4284.0,2112.0,172.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-24 00:00:00+00:00,Finland,4395.0,1718.0,177.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-25 00:00:00+00:00,Finland,4475.0,1789.0,186.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-26 00:00:00+00:00,Finland,4576.0,1886.0,190.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-27 00:00:00+00:00,Finland,4695.0,2002.0,193.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-28 00:00:00+00:00,Finland,4740.0,1741.0,199.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-29 00:00:00+00:00,Finland,4906.0,1900.0,206.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-04-30 00:00:00+00:00,Finland,4995.0,1784.0,211.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-01 00:00:00+00:00,Finland,5051.0,1833.0,218.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-02 00:00:00+00:00,Finland,5176.0,1956.0,220.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-03 00:00:00+00:00,Finland,5254.0,2024.0,230.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-04 00:00:00+00:00,Finland,5327.0,1587.0,240.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-05 00:00:00+00:00,Finland,5412.0,1666.0,246.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-06 00:00:00+00:00,Finland,5573.0,1821.0,252.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-07 00:00:00+00:00,Finland,5673.0,1918.0,255.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-08 00:00:00+00:00,Finland,5738.0,1478.0,260.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-09 00:00:00+00:00,Finland,5880.0,1615.0,265.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-10 00:00:00+00:00,Finland,5962.0,1695.0,267.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-11 00:00:00+00:00,Finland,5984.0,1713.0,271.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-12 00:00:00+00:00,Finland,6003.0,1428.0,275.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-13 00:00:00+00:00,Finland,6054.0,1470.0,284.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-14 00:00:00+00:00,Finland,6145.0,1558.0,287.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-15 00:00:00+00:00,Finland,6228.0,935.0,293.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-16 00:00:00+00:00,Finland,6286.0,989.0,297.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-17 00:00:00+00:00,Finland,6347.0,1049.0,298.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-18 00:00:00+00:00,Finland,6380.0,1080.0,300.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-19 00:00:00+00:00,Finland,6399.0,1098.0,301.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-20 00:00:00+00:00,Finland,6443.0,1339.0,304.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-21 00:00:00+00:00,Finland,6493.0,1387.0,306.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-22 00:00:00+00:00,Finland,6537.0,1431.0,306.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-23 00:00:00+00:00,Finland,6568.0,1462.0,306.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-24 00:00:00+00:00,Finland,6579.0,1472.0,307.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-25 00:00:00+00:00,Finland,6599.0,1191.0,308.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-26 00:00:00+00:00,Finland,6628.0,1216.0,312.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-27 00:00:00+00:00,Finland,6692.0,1279.0,313.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-28 00:00:00+00:00,Finland,6743.0,930.0,313.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-29 00:00:00+00:00,Finland,6776.0,962.0,314.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FI,2020-05-30 00:00:00+00:00,Finland,6826.0,1010.0,316.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +FR,2020-01-22 00:00:00+00:00,France,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +FR,2020-01-23 00:00:00+00:00,France,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-24 00:00:00+00:00,France,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-25 00:00:00+00:00,France,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-26 00:00:00+00:00,France,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-27 00:00:00+00:00,France,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-28 00:00:00+00:00,France,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-29 00:00:00+00:00,France,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-30 00:00:00+00:00,France,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-01-31 00:00:00+00:00,France,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-01 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-02 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-03 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-04 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-05 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-06 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-07 00:00:00+00:00,France,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-08 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-09 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-10 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-11 00:00:00+00:00,France,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-12 00:00:00+00:00,France,11.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-13 00:00:00+00:00,France,11.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-14 00:00:00+00:00,France,11.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-15 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-16 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-17 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-18 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-19 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-20 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-21 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-22 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-23 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-24 00:00:00+00:00,France,12.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +FR,2020-02-25 00:00:00+00:00,France,14.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-02-26 00:00:00+00:00,France,18.0,5.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-02-27 00:00:00+00:00,France,38.0,25.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-02-28 00:00:00+00:00,France,57.0,44.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-02-29 00:00:00+00:00,France,100.0,86.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-01 00:00:00+00:00,France,130.0,116.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-02 00:00:00+00:00,France,191.0,176.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-03 00:00:00+00:00,France,204.0,188.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-04 00:00:00+00:00,France,285.0,269.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-05 00:00:00+00:00,France,377.0,359.0,6.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-06 00:00:00+00:00,France,653.0,632.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-07 00:00:00+00:00,France,949.0,926.0,11.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-08 00:00:00+00:00,France,1126.0,1095.0,19.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-09 00:00:00+00:00,France,1209.0,1178.0,19.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-10 00:00:00+00:00,France,1784.0,1739.0,33.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-11 00:00:00+00:00,France,2281.0,2221.0,48.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-12 00:00:00+00:00,France,2281.0,2221.0,48.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-13 00:00:00+00:00,France,3661.0,3570.0,79.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +FR,2020-03-14 00:00:00+00:00,France,4469.0,4366.0,91.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0 +FR,2020-03-15 00:00:00+00:00,France,4499.0,4396.0,91.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0 +FR,2020-03-16 00:00:00+00:00,France,6633.0,6473.0,148.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +FR,2020-03-17 00:00:00+00:00,France,7652.0,7492.0,148.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-18 00:00:00+00:00,France,9043.0,8883.0,148.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-19 00:00:00+00:00,France,10871.0,10616.0,243.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-20 00:00:00+00:00,France,12612.0,12150.0,450.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-21 00:00:00+00:00,France,14282.0,13708.0,562.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-22 00:00:00+00:00,France,16018.0,13144.0,674.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-23 00:00:00+00:00,France,19856.0,16796.0,860.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-24 00:00:00+00:00,France,22304.0,17961.0,1100.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-25 00:00:00+00:00,France,25233.0,20002.0,1331.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-26 00:00:00+00:00,France,29155.0,22511.0,1696.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-27 00:00:00+00:00,France,32964.0,25269.0,1995.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-28 00:00:00+00:00,France,37575.0,29561.0,2314.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-29 00:00:00+00:00,France,40174.0,30366.0,2606.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-30 00:00:00+00:00,France,44550.0,33599.0,3024.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-03-31 00:00:00+00:00,France,52128.0,39161.0,3523.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-01 00:00:00+00:00,France,56989.0,41652.0,4403.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-02 00:00:00+00:00,France,59105.0,41290.0,5387.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-03 00:00:00+00:00,France,64338.0,43823.0,6507.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-04 00:00:00+00:00,France,68605.0,45607.0,7560.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-05 00:00:00+00:00,France,70478.0,46217.0,8078.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-06 00:00:00+00:00,France,74390.0,48229.0,8911.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-07 00:00:00+00:00,France,78167.0,48502.0,10328.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-08 00:00:00+00:00,France,82048.0,49925.0,10869.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-09 00:00:00+00:00,France,86334.0,50918.0,12210.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-10 00:00:00+00:00,France,90676.0,52547.0,13197.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-11 00:00:00+00:00,France,93790.0,53567.0,13832.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-12 00:00:00+00:00,France,120633.0,79054.0,14393.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-13 00:00:00+00:00,France,124298.0,81613.0,14967.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-14 00:00:00+00:00,France,129257.0,85033.0,15712.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-15 00:00:00+00:00,France,132473.0,84885.0,17148.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-16 00:00:00+00:00,France,144944.0,94746.0,17901.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-17 00:00:00+00:00,France,146923.0,94428.0,18661.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-18 00:00:00+00:00,France,146906.0,92224.0,19303.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-19 00:00:00+00:00,France,151808.0,96141.0,19694.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-20 00:00:00+00:00,France,154188.0,97166.0,20240.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-21 00:00:00+00:00,France,156921.0,97613.0,20765.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-22 00:00:00+00:00,France,154715.0,93418.0,21309.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-23 00:00:00+00:00,France,157026.0,93787.0,21825.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-24 00:00:00+00:00,France,158636.0,93707.0,22214.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-25 00:00:00+00:00,France,160292.0,93893.0,22583.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-26 00:00:00+00:00,France,160847.0,93897.0,22825.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-27 00:00:00+00:00,France,164589.0,96594.0,23262.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-28 00:00:00+00:00,France,167605.0,97979.0,23629.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-29 00:00:00+00:00,France,165093.0,93699.0,24056.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-04-30 00:00:00+00:00,France,165764.0,92847.0,24345.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-01 00:00:00+00:00,France,165764.0,91901.0,24563.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-02 00:00:00+00:00,France,166976.0,92496.0,24729.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-03 00:00:00+00:00,France,167272.0,92435.0,24864.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-04 00:00:00+00:00,France,167886.0,92280.0,25168.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-05 00:00:00+00:00,France,168935.0,91634.0,25498.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-06 00:00:00+00:00,France,172465.0,93671.0,25772.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-07 00:00:00+00:00,France,173040.0,93015.0,25949.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-08 00:00:00+00:00,France,174318.0,93356.0,26192.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-09 00:00:00+00:00,France,174758.0,93601.0,26271.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-10 00:00:00+00:00,France,175027.0,93624.0,26341.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-11 00:00:00+00:00,France,175479.0,93306.0,26604.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-12 00:00:00+00:00,France,176207.0,92639.0,26951.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-13 00:00:00+00:00,France,175981.0,91581.0,27032.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-14 00:00:00+00:00,France,176712.0,91031.0,27381.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-15 00:00:00+00:00,France,177319.0,90691.0,27485.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-16 00:00:00+00:00,France,177207.0,90582.0,27483.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-17 00:00:00+00:00,France,177240.0,89271.0,28062.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-18 00:00:00+00:00,France,177554.0,88945.0,28193.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-19 00:00:00+00:00,France,178428.0,89206.0,27976.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-20 00:00:00+00:00,France,179069.0,89272.0,28084.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-21 00:00:00+00:00,France,179306.0,88923.0,28167.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-22 00:00:00+00:00,France,179645.0,88847.0,28241.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-23 00:00:00+00:00,France,179964.0,88787.0,28284.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-24 00:00:00+00:00,France,179859.0,88581.0,28317.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-25 00:00:00+00:00,France,180166.0,88217.0,28407.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-26 00:00:00+00:00,France,179887.0,87185.0,28480.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-27 00:00:00+00:00,France,180044.0,86995.0,28546.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-28 00:00:00+00:00,France,183309.0,89600.0,28611.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-29 00:00:00+00:00,France,183816.0,89554.0,28663.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +FR,2020-05-30 00:00:00+00:00,France,185616.0,90845.0,28720.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-01-22 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GE,2020-01-23 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GE,2020-01-24 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GE,2020-01-25 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GE,2020-01-26 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GE,2020-01-27 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GE,2020-01-28 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +GE,2020-01-29 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-01-30 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-01-31 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-01 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-02 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-03 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-04 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-05 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-06 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-07 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-08 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-09 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-10 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-11 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-12 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-13 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-14 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-15 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-16 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-17 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-18 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-19 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-20 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-21 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-22 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-23 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-24 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-25 00:00:00+00:00,Georgia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-26 00:00:00+00:00,Georgia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-27 00:00:00+00:00,Georgia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-28 00:00:00+00:00,Georgia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-02-29 00:00:00+00:00,Georgia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-01 00:00:00+00:00,Georgia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-02 00:00:00+00:00,Georgia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-03 00:00:00+00:00,Georgia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-04 00:00:00+00:00,Georgia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-05 00:00:00+00:00,Georgia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-06 00:00:00+00:00,Georgia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-07 00:00:00+00:00,Georgia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-08 00:00:00+00:00,Georgia,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-09 00:00:00+00:00,Georgia,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-10 00:00:00+00:00,Georgia,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-11 00:00:00+00:00,Georgia,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-12 00:00:00+00:00,Georgia,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-13 00:00:00+00:00,Georgia,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-14 00:00:00+00:00,Georgia,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-15 00:00:00+00:00,Georgia,33.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-16 00:00:00+00:00,Georgia,33.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-17 00:00:00+00:00,Georgia,34.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-18 00:00:00+00:00,Georgia,38.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-19 00:00:00+00:00,Georgia,40.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-20 00:00:00+00:00,Georgia,43.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-21 00:00:00+00:00,Georgia,49.0,48.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-22 00:00:00+00:00,Georgia,54.0,51.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-23 00:00:00+00:00,Georgia,61.0,58.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-24 00:00:00+00:00,Georgia,70.0,61.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-25 00:00:00+00:00,Georgia,75.0,65.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-26 00:00:00+00:00,Georgia,79.0,68.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-27 00:00:00+00:00,Georgia,83.0,69.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-28 00:00:00+00:00,Georgia,90.0,76.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-29 00:00:00+00:00,Georgia,91.0,73.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-30 00:00:00+00:00,Georgia,103.0,83.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +GE,2020-03-31 00:00:00+00:00,Georgia,110.0,89.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-01 00:00:00+00:00,Georgia,117.0,94.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-02 00:00:00+00:00,Georgia,134.0,108.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-03 00:00:00+00:00,Georgia,155.0,127.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-04 00:00:00+00:00,Georgia,162.0,125.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-05 00:00:00+00:00,Georgia,174.0,136.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-06 00:00:00+00:00,Georgia,188.0,147.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-07 00:00:00+00:00,Georgia,196.0,147.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-08 00:00:00+00:00,Georgia,211.0,158.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-09 00:00:00+00:00,Georgia,218.0,164.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-10 00:00:00+00:00,Georgia,234.0,177.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-11 00:00:00+00:00,Georgia,242.0,179.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-12 00:00:00+00:00,Georgia,257.0,187.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-13 00:00:00+00:00,Georgia,272.0,201.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-14 00:00:00+00:00,Georgia,300.0,228.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-15 00:00:00+00:00,Georgia,306.0,232.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-16 00:00:00+00:00,Georgia,348.0,269.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-17 00:00:00+00:00,Georgia,370.0,288.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-18 00:00:00+00:00,Georgia,388.0,298.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-19 00:00:00+00:00,Georgia,394.0,297.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-20 00:00:00+00:00,Georgia,402.0,303.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-21 00:00:00+00:00,Georgia,408.0,307.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-22 00:00:00+00:00,Georgia,416.0,304.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-23 00:00:00+00:00,Georgia,425.0,309.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-24 00:00:00+00:00,Georgia,444.0,307.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-25 00:00:00+00:00,Georgia,456.0,312.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-26 00:00:00+00:00,Georgia,486.0,331.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-27 00:00:00+00:00,Georgia,497.0,335.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-28 00:00:00+00:00,Georgia,511.0,337.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-29 00:00:00+00:00,Georgia,517.0,333.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-04-30 00:00:00+00:00,Georgia,539.0,349.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-01 00:00:00+00:00,Georgia,566.0,352.0,7.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-02 00:00:00+00:00,Georgia,582.0,367.0,8.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-03 00:00:00+00:00,Georgia,589.0,357.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-04 00:00:00+00:00,Georgia,593.0,361.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-05 00:00:00+00:00,Georgia,604.0,355.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-06 00:00:00+00:00,Georgia,610.0,332.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-07 00:00:00+00:00,Georgia,615.0,331.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-08 00:00:00+00:00,Georgia,623.0,325.0,10.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-09 00:00:00+00:00,Georgia,626.0,319.0,10.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-10 00:00:00+00:00,Georgia,635.0,316.0,10.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-11 00:00:00+00:00,Georgia,638.0,310.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-12 00:00:00+00:00,Georgia,642.0,282.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-13 00:00:00+00:00,Georgia,647.0,264.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-14 00:00:00+00:00,Georgia,667.0,272.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-15 00:00:00+00:00,Georgia,671.0,266.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-16 00:00:00+00:00,Georgia,683.0,252.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-17 00:00:00+00:00,Georgia,695.0,258.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-18 00:00:00+00:00,Georgia,701.0,257.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-19 00:00:00+00:00,Georgia,707.0,239.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-20 00:00:00+00:00,Georgia,713.0,226.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-21 00:00:00+00:00,Georgia,721.0,224.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-22 00:00:00+00:00,Georgia,723.0,216.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-23 00:00:00+00:00,Georgia,728.0,207.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-24 00:00:00+00:00,Georgia,730.0,196.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-25 00:00:00+00:00,Georgia,731.0,193.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-26 00:00:00+00:00,Georgia,732.0,183.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-27 00:00:00+00:00,Georgia,735.0,166.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-28 00:00:00+00:00,Georgia,738.0,153.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-29 00:00:00+00:00,Georgia,746.0,158.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +GE,2020-05-30 00:00:00+00:00,Georgia,757.0,145.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +DE,2020-01-22 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DE,2020-01-23 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +DE,2020-01-24 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-25 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-26 00:00:00+00:00,Germany,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-27 00:00:00+00:00,Germany,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-28 00:00:00+00:00,Germany,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-29 00:00:00+00:00,Germany,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-30 00:00:00+00:00,Germany,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-01-31 00:00:00+00:00,Germany,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-01 00:00:00+00:00,Germany,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-02 00:00:00+00:00,Germany,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-03 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-04 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-05 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-06 00:00:00+00:00,Germany,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-07 00:00:00+00:00,Germany,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-08 00:00:00+00:00,Germany,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-09 00:00:00+00:00,Germany,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-10 00:00:00+00:00,Germany,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-11 00:00:00+00:00,Germany,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-12 00:00:00+00:00,Germany,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-13 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-14 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-15 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-16 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-17 00:00:00+00:00,Germany,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-18 00:00:00+00:00,Germany,16.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-19 00:00:00+00:00,Germany,16.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-20 00:00:00+00:00,Germany,16.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-21 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-22 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-23 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-24 00:00:00+00:00,Germany,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-25 00:00:00+00:00,Germany,17.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-26 00:00:00+00:00,Germany,27.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-27 00:00:00+00:00,Germany,46.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +DE,2020-02-28 00:00:00+00:00,Germany,48.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-02-29 00:00:00+00:00,Germany,79.0,63.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-01 00:00:00+00:00,Germany,130.0,114.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-02 00:00:00+00:00,Germany,159.0,143.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-03 00:00:00+00:00,Germany,196.0,180.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-04 00:00:00+00:00,Germany,262.0,246.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-05 00:00:00+00:00,Germany,482.0,466.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-06 00:00:00+00:00,Germany,670.0,653.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-07 00:00:00+00:00,Germany,799.0,781.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-08 00:00:00+00:00,Germany,1040.0,1022.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-09 00:00:00+00:00,Germany,1176.0,1156.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-10 00:00:00+00:00,Germany,1457.0,1437.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-11 00:00:00+00:00,Germany,1908.0,1880.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-12 00:00:00+00:00,Germany,2078.0,2050.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-13 00:00:00+00:00,Germany,3675.0,3622.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-14 00:00:00+00:00,Germany,4585.0,4530.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-15 00:00:00+00:00,Germany,5795.0,5738.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +DE,2020-03-16 00:00:00+00:00,Germany,7272.0,7188.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-17 00:00:00+00:00,Germany,9257.0,9166.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-18 00:00:00+00:00,Germany,12327.0,12194.0,28.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +DE,2020-03-19 00:00:00+00:00,Germany,15320.0,15163.0,44.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-20 00:00:00+00:00,Germany,19848.0,19601.0,67.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-21 00:00:00+00:00,Germany,22213.0,21896.0,84.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-22 00:00:00+00:00,Germany,24873.0,24513.0,94.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-23 00:00:00+00:00,Germany,29056.0,28667.0,123.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-24 00:00:00+00:00,Germany,32986.0,29586.0,157.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-25 00:00:00+00:00,Germany,37323.0,33570.0,206.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-26 00:00:00+00:00,Germany,43938.0,37998.0,267.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-27 00:00:00+00:00,Germany,50871.0,43871.0,342.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-28 00:00:00+00:00,Germany,57695.0,48781.0,433.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-29 00:00:00+00:00,Germany,62095.0,52351.0,533.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-30 00:00:00+00:00,Germany,66885.0,52740.0,645.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-03-31 00:00:00+00:00,Germany,71808.0,54933.0,775.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-01 00:00:00+00:00,Germany,77872.0,58252.0,920.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-02 00:00:00+00:00,Germany,84794.0,61247.0,1107.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-03 00:00:00+00:00,Germany,91159.0,65309.0,1275.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-04 00:00:00+00:00,Germany,96092.0,68248.0,1444.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-05 00:00:00+00:00,Germany,100123.0,69839.0,1584.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-06 00:00:00+00:00,Germany,103374.0,72864.0,1810.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-07 00:00:00+00:00,Germany,107663.0,69566.0,2016.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-08 00:00:00+00:00,Germany,113296.0,64647.0,2349.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-09 00:00:00+00:00,Germany,118181.0,63167.0,2607.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-10 00:00:00+00:00,Germany,122171.0,65491.0,2767.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-11 00:00:00+00:00,Germany,124908.0,64772.0,2736.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-12 00:00:00+00:00,Germany,127854.0,64532.0,3022.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-13 00:00:00+00:00,Germany,130072.0,62578.0,3194.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-14 00:00:00+00:00,Germany,131359.0,59865.0,3294.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-15 00:00:00+00:00,Germany,134753.0,58349.0,3804.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-16 00:00:00+00:00,Germany,137698.0,56646.0,4052.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-17 00:00:00+00:00,Germany,141397.0,53931.0,4352.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-18 00:00:00+00:00,Germany,143342.0,53483.0,4459.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-19 00:00:00+00:00,Germany,145184.0,52598.0,4586.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-20 00:00:00+00:00,Germany,147065.0,50703.0,4862.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-21 00:00:00+00:00,Germany,148291.0,48058.0,5033.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-22 00:00:00+00:00,Germany,150648.0,45969.0,5279.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-23 00:00:00+00:00,Germany,153129.0,44254.0,5575.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-24 00:00:00+00:00,Germany,154999.0,39439.0,5760.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-25 00:00:00+00:00,Germany,156513.0,40836.0,5877.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-26 00:00:00+00:00,Germany,157770.0,39794.0,5976.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-27 00:00:00+00:00,Germany,158758.0,38132.0,6126.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-28 00:00:00+00:00,Germany,159912.0,36198.0,6314.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-29 00:00:00+00:00,Germany,161539.0,34672.0,6467.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-04-30 00:00:00+00:00,Germany,163009.0,32886.0,6623.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-01 00:00:00+00:00,Germany,164077.0,30441.0,6736.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-02 00:00:00+00:00,Germany,164967.0,29155.0,6812.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-03 00:00:00+00:00,Germany,165664.0,28198.0,6866.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-04 00:00:00+00:00,Germany,166152.0,26459.0,6993.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-05 00:00:00+00:00,Germany,167007.0,24914.0,6993.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-06 00:00:00+00:00,Germany,168162.0,20987.0,7275.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-07 00:00:00+00:00,Germany,169430.0,20338.0,7392.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-08 00:00:00+00:00,Germany,170588.0,21378.0,7510.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-09 00:00:00+00:00,Germany,171324.0,20475.0,7549.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-10 00:00:00+00:00,Germany,171879.0,19910.0,7569.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-11 00:00:00+00:00,Germany,172576.0,19298.0,7661.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-12 00:00:00+00:00,Germany,173171.0,18233.0,7738.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-13 00:00:00+00:00,Germany,174098.0,17537.0,7861.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-14 00:00:00+00:00,Germany,174478.0,16294.0,7884.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-15 00:00:00+00:00,Germany,175233.0,15739.0,7897.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-16 00:00:00+00:00,Germany,175752.0,15214.0,7938.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-17 00:00:00+00:00,Germany,176369.0,14396.0,7962.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-18 00:00:00+00:00,Germany,176551.0,13507.0,8003.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-19 00:00:00+00:00,Germany,177778.0,14016.0,8081.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-20 00:00:00+00:00,Germany,178473.0,13363.0,8144.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-21 00:00:00+00:00,Germany,179021.0,12731.0,8203.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-22 00:00:00+00:00,Germany,179710.0,12418.0,8228.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-23 00:00:00+00:00,Germany,179986.0,12009.0,8261.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-24 00:00:00+00:00,Germany,180328.0,11764.0,8283.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-25 00:00:00+00:00,Germany,180600.0,11092.0,8309.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-26 00:00:00+00:00,Germany,181200.0,10861.0,8372.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-27 00:00:00+00:00,Germany,181524.0,10276.0,8428.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-28 00:00:00+00:00,Germany,182196.0,10366.0,8470.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-29 00:00:00+00:00,Germany,182922.0,10173.0,8504.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +DE,2020-05-30 00:00:00+00:00,Germany,183189.0,9751.0,8530.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +GR,2020-01-22 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-23 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-24 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-25 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-26 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-27 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-28 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-29 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-30 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-01-31 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-01 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-02 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-03 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-04 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-05 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-06 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-07 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-08 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-09 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-10 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-11 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-12 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-13 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-14 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-15 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-16 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-17 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-18 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-19 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-20 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-21 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-22 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-23 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-24 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GR,2020-02-25 00:00:00+00:00,Greece,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-02-26 00:00:00+00:00,Greece,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-02-27 00:00:00+00:00,Greece,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-02-28 00:00:00+00:00,Greece,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-02-29 00:00:00+00:00,Greece,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-01 00:00:00+00:00,Greece,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-02 00:00:00+00:00,Greece,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-03 00:00:00+00:00,Greece,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-04 00:00:00+00:00,Greece,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-05 00:00:00+00:00,Greece,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-06 00:00:00+00:00,Greece,45.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-07 00:00:00+00:00,Greece,46.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-08 00:00:00+00:00,Greece,73.0,73.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-09 00:00:00+00:00,Greece,73.0,73.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-10 00:00:00+00:00,Greece,89.0,89.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-11 00:00:00+00:00,Greece,99.0,98.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-12 00:00:00+00:00,Greece,99.0,98.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-13 00:00:00+00:00,Greece,190.0,189.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +GR,2020-03-14 00:00:00+00:00,Greece,228.0,217.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-15 00:00:00+00:00,Greece,331.0,319.0,4.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-16 00:00:00+00:00,Greece,331.0,319.0,4.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-17 00:00:00+00:00,Greece,387.0,374.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-18 00:00:00+00:00,Greece,418.0,405.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-19 00:00:00+00:00,Greece,418.0,404.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-20 00:00:00+00:00,Greece,495.0,470.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-21 00:00:00+00:00,Greece,530.0,498.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-22 00:00:00+00:00,Greece,624.0,590.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-03-23 00:00:00+00:00,Greece,695.0,659.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-24 00:00:00+00:00,Greece,743.0,694.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-25 00:00:00+00:00,Greece,821.0,763.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-26 00:00:00+00:00,Greece,892.0,830.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-27 00:00:00+00:00,Greece,966.0,886.0,28.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-28 00:00:00+00:00,Greece,1061.0,977.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-29 00:00:00+00:00,Greece,1156.0,1066.0,38.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-30 00:00:00+00:00,Greece,1212.0,1117.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-03-31 00:00:00+00:00,Greece,1314.0,1213.0,49.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-01 00:00:00+00:00,Greece,1415.0,1313.0,50.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-02 00:00:00+00:00,Greece,1544.0,1430.0,53.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-03 00:00:00+00:00,Greece,1613.0,1472.0,63.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-04 00:00:00+00:00,Greece,1673.0,1527.0,68.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-05 00:00:00+00:00,Greece,1735.0,1584.0,73.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-06 00:00:00+00:00,Greece,1755.0,1407.0,79.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-07 00:00:00+00:00,Greece,1832.0,1482.0,81.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-08 00:00:00+00:00,Greece,1884.0,1532.0,83.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-09 00:00:00+00:00,Greece,1955.0,1599.0,87.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-10 00:00:00+00:00,Greece,2011.0,1650.0,92.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-11 00:00:00+00:00,Greece,2081.0,1719.0,93.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-12 00:00:00+00:00,Greece,2114.0,1747.0,98.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-13 00:00:00+00:00,Greece,2145.0,1777.0,99.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-14 00:00:00+00:00,Greece,2170.0,1800.0,101.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-15 00:00:00+00:00,Greece,2192.0,1821.0,102.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-16 00:00:00+00:00,Greece,2207.0,1833.0,105.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-17 00:00:00+00:00,Greece,2224.0,1847.0,108.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-18 00:00:00+00:00,Greece,2235.0,1856.0,110.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-19 00:00:00+00:00,Greece,2235.0,1853.0,113.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-20 00:00:00+00:00,Greece,2245.0,1860.0,116.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-21 00:00:00+00:00,Greece,2401.0,1703.0,121.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-22 00:00:00+00:00,Greece,2408.0,1710.0,121.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-23 00:00:00+00:00,Greece,2463.0,1761.0,125.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-24 00:00:00+00:00,Greece,2490.0,1783.0,130.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-25 00:00:00+00:00,Greece,2506.0,1799.0,130.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-26 00:00:00+00:00,Greece,2517.0,1806.0,134.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-27 00:00:00+00:00,Greece,2534.0,1821.0,136.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-28 00:00:00+00:00,Greece,2566.0,1851.0,138.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-29 00:00:00+00:00,Greece,2576.0,1860.0,139.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-04-30 00:00:00+00:00,Greece,2591.0,1077.0,140.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-05-01 00:00:00+00:00,Greece,2612.0,1098.0,140.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-05-02 00:00:00+00:00,Greece,2620.0,1103.0,143.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-05-03 00:00:00+00:00,Greece,2626.0,1108.0,144.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +GR,2020-05-04 00:00:00+00:00,Greece,2632.0,1112.0,146.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-05 00:00:00+00:00,Greece,2642.0,1122.0,146.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-06 00:00:00+00:00,Greece,2663.0,1142.0,147.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-07 00:00:00+00:00,Greece,2678.0,1156.0,148.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-08 00:00:00+00:00,Greece,2691.0,1167.0,150.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-09 00:00:00+00:00,Greece,2710.0,1185.0,151.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-10 00:00:00+00:00,Greece,2716.0,1191.0,151.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-11 00:00:00+00:00,Greece,2726.0,1201.0,151.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-12 00:00:00+00:00,Greece,2744.0,1218.0,152.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-13 00:00:00+00:00,Greece,2760.0,1231.0,155.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-14 00:00:00+00:00,Greece,2770.0,1240.0,156.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-15 00:00:00+00:00,Greece,2810.0,1276.0,160.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-16 00:00:00+00:00,Greece,2819.0,1283.0,162.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-17 00:00:00+00:00,Greece,2834.0,1297.0,163.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-18 00:00:00+00:00,Greece,2836.0,1297.0,165.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-19 00:00:00+00:00,Greece,2840.0,1301.0,165.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-20 00:00:00+00:00,Greece,2850.0,1310.0,166.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-21 00:00:00+00:00,Greece,2853.0,1311.0,168.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-22 00:00:00+00:00,Greece,2874.0,1331.0,169.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-23 00:00:00+00:00,Greece,2876.0,1331.0,171.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-24 00:00:00+00:00,Greece,2878.0,1333.0,171.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-25 00:00:00+00:00,Greece,2882.0,1336.0,172.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-26 00:00:00+00:00,Greece,2892.0,1345.0,173.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-27 00:00:00+00:00,Greece,2903.0,1356.0,173.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-28 00:00:00+00:00,Greece,2906.0,1357.0,175.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-29 00:00:00+00:00,Greece,2909.0,1360.0,175.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GR,2020-05-30 00:00:00+00:00,Greece,2915.0,1366.0,175.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-01-22 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-23 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-24 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-25 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-26 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-27 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-28 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-29 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-30 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-01-31 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-01 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-02 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-03 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-04 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-05 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-06 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-07 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-08 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-09 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-10 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-11 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-12 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-13 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-14 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-15 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-16 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-17 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-18 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-19 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-20 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-21 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-22 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-23 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-24 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-25 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-26 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-27 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +HU,2020-02-28 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-02-29 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-01 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-02 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-03 00:00:00+00:00,Hungary,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-04 00:00:00+00:00,Hungary,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-05 00:00:00+00:00,Hungary,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-06 00:00:00+00:00,Hungary,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-07 00:00:00+00:00,Hungary,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-08 00:00:00+00:00,Hungary,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +HU,2020-03-09 00:00:00+00:00,Hungary,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +HU,2020-03-10 00:00:00+00:00,Hungary,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +HU,2020-03-11 00:00:00+00:00,Hungary,13.0,13.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +HU,2020-03-12 00:00:00+00:00,Hungary,13.0,13.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +HU,2020-03-13 00:00:00+00:00,Hungary,19.0,19.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +HU,2020-03-14 00:00:00+00:00,Hungary,30.0,29.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +HU,2020-03-15 00:00:00+00:00,Hungary,32.0,30.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +HU,2020-03-16 00:00:00+00:00,Hungary,39.0,37.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-17 00:00:00+00:00,Hungary,50.0,47.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-18 00:00:00+00:00,Hungary,58.0,55.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-19 00:00:00+00:00,Hungary,73.0,70.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-20 00:00:00+00:00,Hungary,85.0,80.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-21 00:00:00+00:00,Hungary,103.0,92.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-22 00:00:00+00:00,Hungary,131.0,109.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-23 00:00:00+00:00,Hungary,167.0,144.0,7.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-24 00:00:00+00:00,Hungary,187.0,157.0,9.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-25 00:00:00+00:00,Hungary,226.0,195.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-26 00:00:00+00:00,Hungary,261.0,223.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-27 00:00:00+00:00,Hungary,300.0,256.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-28 00:00:00+00:00,Hungary,343.0,298.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-29 00:00:00+00:00,Hungary,408.0,361.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-30 00:00:00+00:00,Hungary,447.0,398.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-03-31 00:00:00+00:00,Hungary,492.0,439.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-01 00:00:00+00:00,Hungary,525.0,465.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-02 00:00:00+00:00,Hungary,585.0,522.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-03 00:00:00+00:00,Hungary,623.0,554.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-04 00:00:00+00:00,Hungary,678.0,588.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-05 00:00:00+00:00,Hungary,733.0,633.0,34.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-06 00:00:00+00:00,Hungary,744.0,639.0,38.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-07 00:00:00+00:00,Hungary,817.0,699.0,47.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-08 00:00:00+00:00,Hungary,895.0,743.0,58.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-09 00:00:00+00:00,Hungary,980.0,818.0,66.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-10 00:00:00+00:00,Hungary,1190.0,1001.0,77.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-11 00:00:00+00:00,Hungary,1310.0,1110.0,85.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-12 00:00:00+00:00,Hungary,1410.0,1193.0,99.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-13 00:00:00+00:00,Hungary,1458.0,1229.0,109.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-14 00:00:00+00:00,Hungary,1512.0,1268.0,122.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-15 00:00:00+00:00,Hungary,1579.0,1253.0,134.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-16 00:00:00+00:00,Hungary,1652.0,1311.0,142.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-17 00:00:00+00:00,Hungary,1763.0,1400.0,156.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-18 00:00:00+00:00,Hungary,1834.0,1431.0,172.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-19 00:00:00+00:00,Hungary,1916.0,1477.0,189.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-20 00:00:00+00:00,Hungary,1984.0,1518.0,199.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-21 00:00:00+00:00,Hungary,2098.0,1598.0,213.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-22 00:00:00+00:00,Hungary,2168.0,1648.0,225.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-23 00:00:00+00:00,Hungary,2284.0,1655.0,239.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-24 00:00:00+00:00,Hungary,2443.0,1723.0,262.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-25 00:00:00+00:00,Hungary,2443.0,1723.0,262.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-26 00:00:00+00:00,Hungary,2500.0,1743.0,272.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-27 00:00:00+00:00,Hungary,2583.0,1805.0,280.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-28 00:00:00+00:00,Hungary,2649.0,1842.0,291.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-29 00:00:00+00:00,Hungary,2727.0,1891.0,300.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-04-30 00:00:00+00:00,Hungary,2775.0,1882.0,312.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-01 00:00:00+00:00,Hungary,2863.0,1931.0,323.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-02 00:00:00+00:00,Hungary,2942.0,1982.0,335.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-03 00:00:00+00:00,Hungary,2998.0,2029.0,340.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-04 00:00:00+00:00,Hungary,3035.0,2054.0,351.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-05 00:00:00+00:00,Hungary,3065.0,1993.0,363.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-06 00:00:00+00:00,Hungary,3111.0,1979.0,373.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-07 00:00:00+00:00,Hungary,3150.0,1966.0,383.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-08 00:00:00+00:00,Hungary,3178.0,1921.0,392.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-09 00:00:00+00:00,Hungary,3213.0,1904.0,405.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-10 00:00:00+00:00,Hungary,3263.0,1917.0,413.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-11 00:00:00+00:00,Hungary,3284.0,1905.0,421.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-12 00:00:00+00:00,Hungary,3313.0,1881.0,425.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-13 00:00:00+00:00,Hungary,3341.0,1809.0,430.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-14 00:00:00+00:00,Hungary,3380.0,1775.0,436.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-15 00:00:00+00:00,Hungary,3417.0,1688.0,442.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-16 00:00:00+00:00,Hungary,3473.0,1654.0,448.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-17 00:00:00+00:00,Hungary,3509.0,1662.0,451.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-18 00:00:00+00:00,Hungary,3535.0,1673.0,462.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-19 00:00:00+00:00,Hungary,3556.0,1677.0,467.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-20 00:00:00+00:00,Hungary,3598.0,1674.0,470.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-21 00:00:00+00:00,Hungary,3641.0,1659.0,473.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-22 00:00:00+00:00,Hungary,3678.0,1615.0,476.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-23 00:00:00+00:00,Hungary,3713.0,1576.0,482.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-24 00:00:00+00:00,Hungary,3741.0,1565.0,486.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-25 00:00:00+00:00,Hungary,3756.0,1554.0,491.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-26 00:00:00+00:00,Hungary,3771.0,1436.0,499.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-27 00:00:00+00:00,Hungary,3793.0,1432.0,505.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-28 00:00:00+00:00,Hungary,3816.0,1311.0,509.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-29 00:00:00+00:00,Hungary,3841.0,1300.0,517.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +HU,2020-05-30 00:00:00+00:00,Hungary,3867.0,1201.0,524.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +IS,2020-01-22 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IS,2020-01-23 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IS,2020-01-24 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IS,2020-01-25 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IS,2020-01-26 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IS,2020-01-27 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IS,2020-01-28 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IS,2020-01-29 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-01-30 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-01-31 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-01 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-02 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-03 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-04 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-05 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-06 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-07 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-08 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-09 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-10 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-11 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-12 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-13 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-14 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-15 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-16 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-17 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-18 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-19 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-20 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-21 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-22 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-23 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-24 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-25 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-26 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-27 00:00:00+00:00,Iceland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-28 00:00:00+00:00,Iceland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-02-29 00:00:00+00:00,Iceland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-01 00:00:00+00:00,Iceland,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-02 00:00:00+00:00,Iceland,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-03 00:00:00+00:00,Iceland,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-04 00:00:00+00:00,Iceland,26.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-05 00:00:00+00:00,Iceland,34.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-06 00:00:00+00:00,Iceland,43.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-07 00:00:00+00:00,Iceland,50.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-08 00:00:00+00:00,Iceland,50.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-09 00:00:00+00:00,Iceland,58.0,58.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-10 00:00:00+00:00,Iceland,69.0,68.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-11 00:00:00+00:00,Iceland,85.0,84.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-12 00:00:00+00:00,Iceland,103.0,102.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-13 00:00:00+00:00,Iceland,134.0,133.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-14 00:00:00+00:00,Iceland,156.0,155.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-15 00:00:00+00:00,Iceland,171.0,158.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-16 00:00:00+00:00,Iceland,180.0,180.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-17 00:00:00+00:00,Iceland,220.0,219.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-18 00:00:00+00:00,Iceland,250.0,244.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-19 00:00:00+00:00,Iceland,330.0,324.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +IS,2020-03-20 00:00:00+00:00,Iceland,409.0,404.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-21 00:00:00+00:00,Iceland,473.0,450.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-22 00:00:00+00:00,Iceland,568.0,531.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-23 00:00:00+00:00,Iceland,588.0,551.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-24 00:00:00+00:00,Iceland,648.0,595.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-25 00:00:00+00:00,Iceland,737.0,679.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-26 00:00:00+00:00,Iceland,802.0,718.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-27 00:00:00+00:00,Iceland,890.0,791.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-28 00:00:00+00:00,Iceland,963.0,847.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-29 00:00:00+00:00,Iceland,1020.0,883.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-30 00:00:00+00:00,Iceland,1086.0,927.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-03-31 00:00:00+00:00,Iceland,1135.0,935.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-01 00:00:00+00:00,Iceland,1220.0,993.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-02 00:00:00+00:00,Iceland,1319.0,1031.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-03 00:00:00+00:00,Iceland,1364.0,1051.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-04 00:00:00+00:00,Iceland,1417.0,1017.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-05 00:00:00+00:00,Iceland,1486.0,1054.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-06 00:00:00+00:00,Iceland,1562.0,1096.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-07 00:00:00+00:00,Iceland,1586.0,1021.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-08 00:00:00+00:00,Iceland,1616.0,977.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-09 00:00:00+00:00,Iceland,1648.0,954.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-10 00:00:00+00:00,Iceland,1675.0,917.0,7.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-11 00:00:00+00:00,Iceland,1689.0,840.0,8.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-12 00:00:00+00:00,Iceland,1701.0,804.0,8.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-13 00:00:00+00:00,Iceland,1711.0,770.0,8.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-14 00:00:00+00:00,Iceland,1720.0,723.0,8.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-15 00:00:00+00:00,Iceland,1727.0,642.0,8.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-16 00:00:00+00:00,Iceland,1739.0,587.0,8.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-17 00:00:00+00:00,Iceland,1754.0,521.0,9.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-18 00:00:00+00:00,Iceland,1760.0,460.0,9.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-19 00:00:00+00:00,Iceland,1771.0,471.0,9.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-20 00:00:00+00:00,Iceland,1773.0,401.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-21 00:00:00+00:00,Iceland,1778.0,351.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-22 00:00:00+00:00,Iceland,1785.0,313.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-23 00:00:00+00:00,Iceland,1789.0,270.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-24 00:00:00+00:00,Iceland,1789.0,237.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-25 00:00:00+00:00,Iceland,1790.0,210.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-26 00:00:00+00:00,Iceland,1792.0,174.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-27 00:00:00+00:00,Iceland,1792.0,158.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-28 00:00:00+00:00,Iceland,1795.0,149.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-29 00:00:00+00:00,Iceland,1797.0,131.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-04-30 00:00:00+00:00,Iceland,1797.0,117.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-01 00:00:00+00:00,Iceland,1798.0,99.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-02 00:00:00+00:00,Iceland,1798.0,82.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-03 00:00:00+00:00,Iceland,1799.0,72.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-04 00:00:00+00:00,Iceland,1799.0,66.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-05 00:00:00+00:00,Iceland,1799.0,56.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-06 00:00:00+00:00,Iceland,1799.0,39.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-07 00:00:00+00:00,Iceland,1801.0,36.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-08 00:00:00+00:00,Iceland,1801.0,26.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-09 00:00:00+00:00,Iceland,1801.0,18.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-10 00:00:00+00:00,Iceland,1801.0,18.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-11 00:00:00+00:00,Iceland,1801.0,18.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-12 00:00:00+00:00,Iceland,1801.0,15.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-13 00:00:00+00:00,Iceland,1802.0,12.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-14 00:00:00+00:00,Iceland,1802.0,12.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-15 00:00:00+00:00,Iceland,1802.0,10.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-16 00:00:00+00:00,Iceland,1802.0,6.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-17 00:00:00+00:00,Iceland,1802.0,6.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-18 00:00:00+00:00,Iceland,1802.0,6.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-19 00:00:00+00:00,Iceland,1802.0,3.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-20 00:00:00+00:00,Iceland,1803.0,4.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-21 00:00:00+00:00,Iceland,1803.0,3.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-22 00:00:00+00:00,Iceland,1803.0,2.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-23 00:00:00+00:00,Iceland,1804.0,3.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-24 00:00:00+00:00,Iceland,1804.0,3.0,10.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-25 00:00:00+00:00,Iceland,1804.0,3.0,10.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-26 00:00:00+00:00,Iceland,1804.0,2.0,10.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-27 00:00:00+00:00,Iceland,1805.0,3.0,10.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-28 00:00:00+00:00,Iceland,1805.0,3.0,10.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-29 00:00:00+00:00,Iceland,1805.0,1.0,10.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IS,2020-05-30 00:00:00+00:00,Iceland,1806.0,2.0,10.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IE,2020-01-22 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-23 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-24 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-25 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-26 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-27 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-28 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-29 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-30 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-01-31 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-02-01 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-02-02 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-02-03 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IE,2020-02-04 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-05 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-06 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-07 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-08 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-09 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-10 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-11 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-12 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-13 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-14 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-15 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-16 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-17 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-18 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-19 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-20 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-21 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-22 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-23 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-24 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-25 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-26 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-27 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-28 00:00:00+00:00,Ireland,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-02-29 00:00:00+00:00,Ireland,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-01 00:00:00+00:00,Ireland,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-02 00:00:00+00:00,Ireland,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-03 00:00:00+00:00,Ireland,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-04 00:00:00+00:00,Ireland,6.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-05 00:00:00+00:00,Ireland,6.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-06 00:00:00+00:00,Ireland,18.0,18.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-07 00:00:00+00:00,Ireland,18.0,18.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-08 00:00:00+00:00,Ireland,19.0,19.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-09 00:00:00+00:00,Ireland,21.0,21.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-10 00:00:00+00:00,Ireland,34.0,34.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-11 00:00:00+00:00,Ireland,43.0,42.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-12 00:00:00+00:00,Ireland,43.0,42.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-13 00:00:00+00:00,Ireland,90.0,89.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-14 00:00:00+00:00,Ireland,129.0,127.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-15 00:00:00+00:00,Ireland,129.0,127.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-16 00:00:00+00:00,Ireland,169.0,167.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-17 00:00:00+00:00,Ireland,223.0,216.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-18 00:00:00+00:00,Ireland,292.0,285.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-19 00:00:00+00:00,Ireland,557.0,549.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-20 00:00:00+00:00,Ireland,683.0,675.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-21 00:00:00+00:00,Ireland,785.0,777.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-22 00:00:00+00:00,Ireland,906.0,897.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-23 00:00:00+00:00,Ireland,1125.0,1114.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-24 00:00:00+00:00,Ireland,1329.0,1317.0,7.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-25 00:00:00+00:00,Ireland,1564.0,1550.0,9.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +IE,2020-03-26 00:00:00+00:00,Ireland,1819.0,1795.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +IE,2020-03-27 00:00:00+00:00,Ireland,2121.0,2094.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-03-28 00:00:00+00:00,Ireland,2415.0,2374.0,36.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-03-29 00:00:00+00:00,Ireland,2615.0,2564.0,46.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-03-30 00:00:00+00:00,Ireland,2910.0,2851.0,54.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-03-31 00:00:00+00:00,Ireland,3235.0,3159.0,71.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-04-01 00:00:00+00:00,Ireland,3447.0,3357.0,85.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-04-02 00:00:00+00:00,Ireland,3849.0,3746.0,98.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-04-03 00:00:00+00:00,Ireland,4273.0,4148.0,120.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-04-04 00:00:00+00:00,Ireland,4604.0,4442.0,137.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-04-05 00:00:00+00:00,Ireland,4994.0,4811.0,158.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +IE,2020-04-06 00:00:00+00:00,Ireland,5364.0,5165.0,174.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-07 00:00:00+00:00,Ireland,5709.0,5474.0,210.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-08 00:00:00+00:00,Ireland,6074.0,5814.0,235.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-09 00:00:00+00:00,Ireland,6574.0,6286.0,263.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-10 00:00:00+00:00,Ireland,8089.0,7777.0,287.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-11 00:00:00+00:00,Ireland,8928.0,8583.0,320.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-12 00:00:00+00:00,Ireland,9655.0,9296.0,334.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-13 00:00:00+00:00,Ireland,10647.0,10257.0,365.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-14 00:00:00+00:00,Ireland,11479.0,11048.0,406.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-15 00:00:00+00:00,Ireland,12547.0,12026.0,444.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-16 00:00:00+00:00,Ireland,13271.0,12708.0,486.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-17 00:00:00+00:00,Ireland,13980.0,13373.0,530.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-18 00:00:00+00:00,Ireland,14758.0,14110.0,571.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-19 00:00:00+00:00,Ireland,15251.0,14564.0,610.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-20 00:00:00+00:00,Ireland,15652.0,14888.0,687.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-21 00:00:00+00:00,Ireland,16040.0,6077.0,730.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-22 00:00:00+00:00,Ireland,16671.0,6669.0,769.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-23 00:00:00+00:00,Ireland,17607.0,7580.0,794.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-24 00:00:00+00:00,Ireland,18184.0,7937.0,1014.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-25 00:00:00+00:00,Ireland,18561.0,8265.0,1063.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-26 00:00:00+00:00,Ireland,19262.0,8942.0,1087.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-27 00:00:00+00:00,Ireland,19648.0,9313.0,1102.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-28 00:00:00+00:00,Ireland,19877.0,9485.0,1159.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-29 00:00:00+00:00,Ireland,20253.0,5677.0,1190.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-04-30 00:00:00+00:00,Ireland,20612.0,5994.0,1232.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-01 00:00:00+00:00,Ireland,20833.0,6182.0,1265.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-02 00:00:00+00:00,Ireland,21176.0,6504.0,1286.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-03 00:00:00+00:00,Ireland,21506.0,6817.0,1303.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-04 00:00:00+00:00,Ireland,21772.0,7067.0,1319.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-05 00:00:00+00:00,Ireland,21983.0,7258.0,1339.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-06 00:00:00+00:00,Ireland,22248.0,3763.0,1375.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-07 00:00:00+00:00,Ireland,22385.0,3872.0,1403.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-08 00:00:00+00:00,Ireland,22541.0,4002.0,1429.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-09 00:00:00+00:00,Ireland,22760.0,4204.0,1446.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-10 00:00:00+00:00,Ireland,22996.0,4428.0,1458.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-11 00:00:00+00:00,Ireland,23135.0,4558.0,1467.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-12 00:00:00+00:00,Ireland,23242.0,4644.0,1488.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-13 00:00:00+00:00,Ireland,23401.0,2434.0,1497.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-14 00:00:00+00:00,Ireland,23827.0,2851.0,1506.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-15 00:00:00+00:00,Ireland,23956.0,2968.0,1518.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-16 00:00:00+00:00,Ireland,24048.0,3045.0,1533.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-17 00:00:00+00:00,Ireland,24112.0,3099.0,1543.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-18 00:00:00+00:00,Ireland,24200.0,3183.0,1547.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-19 00:00:00+00:00,Ireland,24251.0,3220.0,1561.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-20 00:00:00+00:00,Ireland,24315.0,1684.0,1571.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-21 00:00:00+00:00,Ireland,24391.0,1748.0,1583.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-22 00:00:00+00:00,Ireland,24506.0,1854.0,1592.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-23 00:00:00+00:00,Ireland,24582.0,1918.0,1604.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-24 00:00:00+00:00,Ireland,24639.0,1971.0,1608.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-25 00:00:00+00:00,Ireland,24698.0,2032.0,1606.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-26 00:00:00+00:00,Ireland,24735.0,2060.0,1615.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-27 00:00:00+00:00,Ireland,24803.0,1083.0,1631.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-28 00:00:00+00:00,Ireland,24841.0,1113.0,1639.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-29 00:00:00+00:00,Ireland,24876.0,1142.0,1645.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IE,2020-05-30 00:00:00+00:00,Ireland,24929.0,1189.0,1651.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IL,2020-01-22 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-23 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-24 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-25 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-26 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-27 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-28 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-29 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-30 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-01-31 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-02-01 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IL,2020-02-02 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-03 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-04 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-05 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-06 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-07 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-08 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-09 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-10 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-11 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-12 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-13 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-14 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-15 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-16 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-17 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-18 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-19 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-20 00:00:00+00:00,Israel,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-21 00:00:00+00:00,Israel,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-22 00:00:00+00:00,Israel,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-23 00:00:00+00:00,Israel,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-24 00:00:00+00:00,Israel,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-25 00:00:00+00:00,Israel,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-26 00:00:00+00:00,Israel,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-27 00:00:00+00:00,Israel,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-28 00:00:00+00:00,Israel,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-02-29 00:00:00+00:00,Israel,7.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-01 00:00:00+00:00,Israel,10.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-02 00:00:00+00:00,Israel,10.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-03 00:00:00+00:00,Israel,12.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-04 00:00:00+00:00,Israel,15.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-05 00:00:00+00:00,Israel,20.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-06 00:00:00+00:00,Israel,37.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-07 00:00:00+00:00,Israel,43.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-08 00:00:00+00:00,Israel,61.0,59.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-09 00:00:00+00:00,Israel,61.0,59.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-10 00:00:00+00:00,Israel,75.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-11 00:00:00+00:00,Israel,79.0,75.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-12 00:00:00+00:00,Israel,100.0,96.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-13 00:00:00+00:00,Israel,126.0,122.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-14 00:00:00+00:00,Israel,155.0,151.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-15 00:00:00+00:00,Israel,213.0,209.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IL,2020-03-16 00:00:00+00:00,Israel,218.0,214.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-03-17 00:00:00+00:00,Israel,250.0,239.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-18 00:00:00+00:00,Israel,304.0,293.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-19 00:00:00+00:00,Israel,427.0,416.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-20 00:00:00+00:00,Israel,529.0,515.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-21 00:00:00+00:00,Israel,712.0,675.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-22 00:00:00+00:00,Israel,883.0,845.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-23 00:00:00+00:00,Israel,1071.0,1033.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-24 00:00:00+00:00,Israel,1238.0,1182.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-25 00:00:00+00:00,Israel,2369.0,2306.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-26 00:00:00+00:00,Israel,2693.0,2617.0,8.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-27 00:00:00+00:00,Israel,3035.0,2944.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-28 00:00:00+00:00,Israel,3619.0,3518.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-29 00:00:00+00:00,Israel,4247.0,4100.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-30 00:00:00+00:00,Israel,4695.0,4518.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-03-31 00:00:00+00:00,Israel,5358.0,5114.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-01 00:00:00+00:00,Israel,6092.0,5825.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-02 00:00:00+00:00,Israel,6857.0,6483.0,36.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-03 00:00:00+00:00,Israel,7428.0,6985.0,40.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-04 00:00:00+00:00,Israel,7851.0,7380.0,44.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-05 00:00:00+00:00,Israel,8430.0,7904.0,49.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-06 00:00:00+00:00,Israel,8904.0,8262.0,57.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-07 00:00:00+00:00,Israel,9248.0,8413.0,65.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-08 00:00:00+00:00,Israel,9404.0,8530.0,73.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-09 00:00:00+00:00,Israel,9968.0,8871.0,86.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-10 00:00:00+00:00,Israel,10408.0,9130.0,95.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-11 00:00:00+00:00,Israel,10743.0,9301.0,101.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-12 00:00:00+00:00,Israel,11145.0,9415.0,103.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-13 00:00:00+00:00,Israel,11586.0,9615.0,116.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-14 00:00:00+00:00,Israel,12046.0,9728.0,123.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-15 00:00:00+00:00,Israel,12501.0,9808.0,130.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-16 00:00:00+00:00,Israel,12758.0,9798.0,142.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-17 00:00:00+00:00,Israel,12982.0,9705.0,151.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-18 00:00:00+00:00,Israel,13265.0,9645.0,164.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-19 00:00:00+00:00,Israel,13491.0,9565.0,172.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-20 00:00:00+00:00,Israel,13713.0,9487.0,177.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-21 00:00:00+00:00,Israel,13942.0,9251.0,184.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-22 00:00:00+00:00,Israel,14498.0,9094.0,189.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-23 00:00:00+00:00,Israel,14803.0,9000.0,192.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-24 00:00:00+00:00,Israel,15058.0,8861.0,194.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-25 00:00:00+00:00,Israel,15298.0,8664.0,199.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-26 00:00:00+00:00,Israel,15443.0,8511.0,201.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-27 00:00:00+00:00,Israel,15555.0,8151.0,204.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-04-28 00:00:00+00:00,Israel,15728.0,7772.0,210.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-29 00:00:00+00:00,Israel,15834.0,7386.0,215.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IL,2020-04-30 00:00:00+00:00,Israel,15946.0,7163.0,222.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-01 00:00:00+00:00,Israel,16101.0,6720.0,225.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-02 00:00:00+00:00,Israel,16185.0,6363.0,229.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-03 00:00:00+00:00,Israel,16208.0,6227.0,232.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-04 00:00:00+00:00,Israel,16246.0,5947.0,235.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-05 00:00:00+00:00,Israel,16289.0,5586.0,238.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-06 00:00:00+00:00,Israel,16310.0,5434.0,239.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-07 00:00:00+00:00,Israel,16381.0,5268.0,240.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-08 00:00:00+00:00,Israel,16436.0,4962.0,245.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-09 00:00:00+00:00,Israel,16454.0,4831.0,247.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-10 00:00:00+00:00,Israel,16477.0,4795.0,252.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-11 00:00:00+00:00,Israel,16506.0,4405.0,258.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-12 00:00:00+00:00,Israel,16529.0,4186.0,260.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-13 00:00:00+00:00,Israel,16548.0,4052.0,264.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-14 00:00:00+00:00,Israel,16579.0,3793.0,265.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-15 00:00:00+00:00,Israel,16589.0,3736.0,266.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-16 00:00:00+00:00,Israel,16608.0,3485.0,268.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-17 00:00:00+00:00,Israel,16617.0,3403.0,272.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-18 00:00:00+00:00,Israel,16643.0,3114.0,276.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-19 00:00:00+00:00,Israel,16659.0,2946.0,278.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-20 00:00:00+00:00,Israel,16667.0,2884.0,279.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-21 00:00:00+00:00,Israel,16683.0,2680.0,279.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-22 00:00:00+00:00,Israel,16690.0,2496.0,279.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-23 00:00:00+00:00,Israel,16712.0,2343.0,279.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-24 00:00:00+00:00,Israel,16717.0,2285.0,279.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-25 00:00:00+00:00,Israel,16734.0,2146.0,281.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-26 00:00:00+00:00,Israel,16757.0,2019.0,281.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-27 00:00:00+00:00,Israel,16793.0,1942.0,281.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-28 00:00:00+00:00,Israel,16872.0,1909.0,284.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-29 00:00:00+00:00,Israel,16987.0,1927.0,284.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IL,2020-05-30 00:00:00+00:00,Israel,17012.0,1917.0,284.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +IT,2020-01-22 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +IT,2020-01-23 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-24 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-25 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-26 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-27 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-28 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-29 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +IT,2020-01-30 00:00:00+00:00,Italy,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +IT,2020-01-31 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-01 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-02 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-03 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-04 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-05 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-06 00:00:00+00:00,Italy,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-07 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-08 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-09 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-10 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-11 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-12 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-13 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-14 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-15 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-16 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-17 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-18 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-19 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-20 00:00:00+00:00,Italy,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-21 00:00:00+00:00,Italy,20.0,19.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-22 00:00:00+00:00,Italy,62.0,59.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-23 00:00:00+00:00,Italy,155.0,150.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-24 00:00:00+00:00,Italy,229.0,221.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-25 00:00:00+00:00,Italy,322.0,311.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-26 00:00:00+00:00,Italy,453.0,438.0,12.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-27 00:00:00+00:00,Italy,655.0,593.0,17.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-28 00:00:00+00:00,Italy,888.0,821.0,21.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-02-29 00:00:00+00:00,Italy,1128.0,1053.0,29.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-01 00:00:00+00:00,Italy,1694.0,1577.0,34.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-02 00:00:00+00:00,Italy,2036.0,1835.0,52.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-03 00:00:00+00:00,Italy,2502.0,2263.0,79.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-04 00:00:00+00:00,Italy,3089.0,2706.0,107.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-05 00:00:00+00:00,Italy,3858.0,3296.0,148.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-06 00:00:00+00:00,Italy,4636.0,3916.0,197.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-07 00:00:00+00:00,Italy,5883.0,5061.0,233.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-08 00:00:00+00:00,Italy,7375.0,6387.0,366.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-09 00:00:00+00:00,Italy,9172.0,7985.0,463.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +IT,2020-03-10 00:00:00+00:00,Italy,10149.0,8794.0,631.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-11 00:00:00+00:00,Italy,12462.0,10590.0,827.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-12 00:00:00+00:00,Italy,15113.0,13052.0,1016.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-13 00:00:00+00:00,Italy,17660.0,14955.0,1266.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-14 00:00:00+00:00,Italy,21157.0,17750.0,1441.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-15 00:00:00+00:00,Italy,24747.0,20603.0,1809.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-16 00:00:00+00:00,Italy,27980.0,23073.0,2158.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-17 00:00:00+00:00,Italy,31506.0,26062.0,2503.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-18 00:00:00+00:00,Italy,35713.0,28710.0,2978.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-19 00:00:00+00:00,Italy,41035.0,33190.0,3405.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +IT,2020-03-20 00:00:00+00:00,Italy,47021.0,38549.0,4032.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-21 00:00:00+00:00,Italy,53578.0,42681.0,4825.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-22 00:00:00+00:00,Italy,59138.0,46638.0,5476.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-23 00:00:00+00:00,Italy,63927.0,50826.0,6077.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-24 00:00:00+00:00,Italy,69176.0,54030.0,6820.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-25 00:00:00+00:00,Italy,74386.0,57521.0,7503.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-26 00:00:00+00:00,Italy,80589.0,62013.0,8215.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-27 00:00:00+00:00,Italy,86498.0,66414.0,9134.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-28 00:00:00+00:00,Italy,92472.0,70065.0,10023.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-29 00:00:00+00:00,Italy,97689.0,73880.0,10779.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-30 00:00:00+00:00,Italy,101739.0,75528.0,11591.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-03-31 00:00:00+00:00,Italy,105792.0,77635.0,12428.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-01 00:00:00+00:00,Italy,110574.0,80572.0,13155.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-02 00:00:00+00:00,Italy,115242.0,83049.0,13915.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-03 00:00:00+00:00,Italy,119827.0,85388.0,14681.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-04 00:00:00+00:00,Italy,124632.0,88274.0,15362.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-05 00:00:00+00:00,Italy,128948.0,91246.0,15887.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-06 00:00:00+00:00,Italy,132547.0,93187.0,16523.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-07 00:00:00+00:00,Italy,135586.0,94067.0,17127.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-08 00:00:00+00:00,Italy,139422.0,95262.0,17669.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-09 00:00:00+00:00,Italy,143626.0,96877.0,18279.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-10 00:00:00+00:00,Italy,147577.0,98273.0,18849.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-11 00:00:00+00:00,Italy,152271.0,100269.0,19468.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-12 00:00:00+00:00,Italy,156363.0,102253.0,19899.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-13 00:00:00+00:00,Italy,159516.0,103616.0,20465.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-14 00:00:00+00:00,Italy,162488.0,104291.0,21067.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-15 00:00:00+00:00,Italy,165155.0,105418.0,21645.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-16 00:00:00+00:00,Italy,168941.0,106607.0,22170.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-17 00:00:00+00:00,Italy,172434.0,106962.0,22745.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-18 00:00:00+00:00,Italy,175925.0,107771.0,23227.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-19 00:00:00+00:00,Italy,178972.0,108257.0,23660.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-20 00:00:00+00:00,Italy,181228.0,108237.0,24114.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-21 00:00:00+00:00,Italy,183957.0,107709.0,24648.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-22 00:00:00+00:00,Italy,187327.0,107699.0,25085.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-23 00:00:00+00:00,Italy,189973.0,106848.0,25549.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-24 00:00:00+00:00,Italy,192994.0,106527.0,25969.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-25 00:00:00+00:00,Italy,195351.0,105847.0,26384.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-26 00:00:00+00:00,Italy,197675.0,106103.0,26644.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-27 00:00:00+00:00,Italy,199414.0,105813.0,26977.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-28 00:00:00+00:00,Italy,201505.0,105205.0,27359.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-29 00:00:00+00:00,Italy,203591.0,104657.0,27682.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-04-30 00:00:00+00:00,Italy,205463.0,101551.0,27967.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-01 00:00:00+00:00,Italy,207428.0,100943.0,28236.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-02 00:00:00+00:00,Italy,209328.0,100704.0,28710.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-03 00:00:00+00:00,Italy,210717.0,100179.0,28884.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-04 00:00:00+00:00,Italy,211938.0,99980.0,29079.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-05 00:00:00+00:00,Italy,213013.0,98467.0,29315.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-06 00:00:00+00:00,Italy,214457.0,91528.0,29684.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-07 00:00:00+00:00,Italy,215858.0,89624.0,29958.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-08 00:00:00+00:00,Italy,217185.0,87961.0,30201.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-09 00:00:00+00:00,Italy,218268.0,84842.0,30395.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-10 00:00:00+00:00,Italy,219070.0,83324.0,30560.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-11 00:00:00+00:00,Italy,219814.0,82488.0,30739.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-12 00:00:00+00:00,Italy,221216.0,81266.0,30911.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-13 00:00:00+00:00,Italy,222104.0,78457.0,31106.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-14 00:00:00+00:00,Italy,223096.0,76440.0,31368.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-15 00:00:00+00:00,Italy,223885.0,72070.0,31610.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-16 00:00:00+00:00,Italy,224760.0,70187.0,31763.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-17 00:00:00+00:00,Italy,225435.0,68351.0,31908.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +IT,2020-05-18 00:00:00+00:00,Italy,225886.0,66553.0,32007.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-19 00:00:00+00:00,Italy,226699.0,65129.0,32169.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-20 00:00:00+00:00,Italy,227364.0,62752.0,32330.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-21 00:00:00+00:00,Italy,228006.0,60960.0,32486.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-22 00:00:00+00:00,Italy,228658.0,59322.0,32616.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-23 00:00:00+00:00,Italy,229327.0,57752.0,32735.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-24 00:00:00+00:00,Italy,229858.0,56594.0,32785.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-25 00:00:00+00:00,Italy,230158.0,55300.0,32877.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-26 00:00:00+00:00,Italy,230555.0,52942.0,32955.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-27 00:00:00+00:00,Italy,231139.0,50966.0,33072.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-28 00:00:00+00:00,Italy,231732.0,47986.0,33142.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-29 00:00:00+00:00,Italy,232248.0,46175.0,33229.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +IT,2020-05-30 00:00:00+00:00,Italy,232664.0,43691.0,33340.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LV,2020-01-22 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-23 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-24 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-25 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-26 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-27 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-28 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-29 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-30 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-01-31 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-01 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-02 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-03 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-04 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-05 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-06 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-07 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-08 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-09 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-10 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-11 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-12 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-13 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-14 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-15 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-16 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-17 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-18 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-19 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-20 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-21 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-22 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-23 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-24 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-25 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-26 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-27 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-28 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-02-29 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-01 00:00:00+00:00,Latvia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-02 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-03 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-04 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-05 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-06 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-07 00:00:00+00:00,Latvia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-08 00:00:00+00:00,Latvia,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-09 00:00:00+00:00,Latvia,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-10 00:00:00+00:00,Latvia,8.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-11 00:00:00+00:00,Latvia,10.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-12 00:00:00+00:00,Latvia,10.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LV,2020-03-13 00:00:00+00:00,Latvia,17.0,16.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +LV,2020-03-14 00:00:00+00:00,Latvia,26.0,25.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +LV,2020-03-15 00:00:00+00:00,Latvia,30.0,29.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +LV,2020-03-16 00:00:00+00:00,Latvia,34.0,33.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +LV,2020-03-17 00:00:00+00:00,Latvia,49.0,48.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-18 00:00:00+00:00,Latvia,71.0,70.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-19 00:00:00+00:00,Latvia,86.0,85.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-20 00:00:00+00:00,Latvia,111.0,110.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-21 00:00:00+00:00,Latvia,124.0,123.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-22 00:00:00+00:00,Latvia,139.0,138.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-23 00:00:00+00:00,Latvia,180.0,179.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-24 00:00:00+00:00,Latvia,197.0,196.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-25 00:00:00+00:00,Latvia,221.0,220.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-26 00:00:00+00:00,Latvia,244.0,243.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-27 00:00:00+00:00,Latvia,280.0,279.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-28 00:00:00+00:00,Latvia,305.0,304.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-29 00:00:00+00:00,Latvia,347.0,346.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-30 00:00:00+00:00,Latvia,376.0,375.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-03-31 00:00:00+00:00,Latvia,398.0,397.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-01 00:00:00+00:00,Latvia,446.0,445.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-02 00:00:00+00:00,Latvia,458.0,427.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-03 00:00:00+00:00,Latvia,493.0,491.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-04 00:00:00+00:00,Latvia,509.0,507.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-05 00:00:00+00:00,Latvia,533.0,531.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-06 00:00:00+00:00,Latvia,542.0,525.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-07 00:00:00+00:00,Latvia,548.0,530.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-08 00:00:00+00:00,Latvia,577.0,559.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-09 00:00:00+00:00,Latvia,589.0,570.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-10 00:00:00+00:00,Latvia,612.0,593.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-11 00:00:00+00:00,Latvia,630.0,611.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-12 00:00:00+00:00,Latvia,651.0,630.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-13 00:00:00+00:00,Latvia,655.0,634.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-14 00:00:00+00:00,Latvia,657.0,636.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-15 00:00:00+00:00,Latvia,666.0,617.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-16 00:00:00+00:00,Latvia,675.0,613.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-17 00:00:00+00:00,Latvia,682.0,589.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-18 00:00:00+00:00,Latvia,712.0,619.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-19 00:00:00+00:00,Latvia,727.0,634.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-20 00:00:00+00:00,Latvia,739.0,646.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-21 00:00:00+00:00,Latvia,748.0,606.0,9.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-22 00:00:00+00:00,Latvia,761.0,617.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-23 00:00:00+00:00,Latvia,778.0,634.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-24 00:00:00+00:00,Latvia,784.0,505.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-25 00:00:00+00:00,Latvia,804.0,525.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-26 00:00:00+00:00,Latvia,812.0,533.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-27 00:00:00+00:00,Latvia,818.0,538.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-28 00:00:00+00:00,Latvia,836.0,556.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-29 00:00:00+00:00,Latvia,849.0,486.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-04-30 00:00:00+00:00,Latvia,858.0,495.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-01 00:00:00+00:00,Latvia,870.0,506.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-02 00:00:00+00:00,Latvia,871.0,507.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-03 00:00:00+00:00,Latvia,879.0,515.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-04 00:00:00+00:00,Latvia,896.0,532.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-05 00:00:00+00:00,Latvia,896.0,531.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-06 00:00:00+00:00,Latvia,900.0,419.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-07 00:00:00+00:00,Latvia,909.0,427.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-08 00:00:00+00:00,Latvia,928.0,446.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-09 00:00:00+00:00,Latvia,930.0,448.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-10 00:00:00+00:00,Latvia,939.0,457.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-11 00:00:00+00:00,Latvia,946.0,464.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-12 00:00:00+00:00,Latvia,950.0,305.0,18.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-13 00:00:00+00:00,Latvia,951.0,305.0,19.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-14 00:00:00+00:00,Latvia,962.0,316.0,19.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-15 00:00:00+00:00,Latvia,970.0,289.0,19.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-16 00:00:00+00:00,Latvia,997.0,316.0,19.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-17 00:00:00+00:00,Latvia,1008.0,327.0,19.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-18 00:00:00+00:00,Latvia,1009.0,328.0,19.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-19 00:00:00+00:00,Latvia,1012.0,297.0,21.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-20 00:00:00+00:00,Latvia,1016.0,301.0,21.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-21 00:00:00+00:00,Latvia,1025.0,309.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-22 00:00:00+00:00,Latvia,1030.0,296.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-23 00:00:00+00:00,Latvia,1046.0,312.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-24 00:00:00+00:00,Latvia,1047.0,313.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-25 00:00:00+00:00,Latvia,1049.0,315.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-26 00:00:00+00:00,Latvia,1053.0,290.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-27 00:00:00+00:00,Latvia,1057.0,293.0,23.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-28 00:00:00+00:00,Latvia,1061.0,296.0,24.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-29 00:00:00+00:00,Latvia,1064.0,295.0,24.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LV,2020-05-30 00:00:00+00:00,Latvia,1065.0,296.0,24.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +LT,2020-01-22 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-23 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-24 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-25 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-26 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-27 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-28 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-29 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-30 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-01-31 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-01 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-02 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-03 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-04 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-05 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-06 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-07 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-08 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-09 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-10 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-11 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-12 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-13 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-14 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-15 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-16 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-17 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-18 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-19 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-20 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-21 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-22 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-23 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-24 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-25 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +LT,2020-02-26 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-02-27 00:00:00+00:00,Lithuania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-02-28 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-02-29 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-01 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-02 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-03 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-04 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-05 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-06 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-07 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-08 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-09 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-10 00:00:00+00:00,Lithuania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-11 00:00:00+00:00,Lithuania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-12 00:00:00+00:00,Lithuania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +LT,2020-03-13 00:00:00+00:00,Lithuania,6.0,6.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +LT,2020-03-14 00:00:00+00:00,Lithuania,8.0,8.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +LT,2020-03-15 00:00:00+00:00,Lithuania,12.0,11.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0 +LT,2020-03-16 00:00:00+00:00,Lithuania,17.0,16.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-17 00:00:00+00:00,Lithuania,25.0,24.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-18 00:00:00+00:00,Lithuania,27.0,26.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-19 00:00:00+00:00,Lithuania,36.0,35.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-20 00:00:00+00:00,Lithuania,49.0,48.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-21 00:00:00+00:00,Lithuania,83.0,81.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-22 00:00:00+00:00,Lithuania,143.0,141.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-23 00:00:00+00:00,Lithuania,179.0,177.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-24 00:00:00+00:00,Lithuania,209.0,206.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-25 00:00:00+00:00,Lithuania,274.0,269.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-26 00:00:00+00:00,Lithuania,299.0,294.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-27 00:00:00+00:00,Lithuania,358.0,352.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-28 00:00:00+00:00,Lithuania,394.0,386.0,7.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-29 00:00:00+00:00,Lithuania,460.0,452.0,7.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-30 00:00:00+00:00,Lithuania,491.0,477.0,7.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-03-31 00:00:00+00:00,Lithuania,537.0,522.0,8.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-01 00:00:00+00:00,Lithuania,581.0,566.0,8.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-02 00:00:00+00:00,Lithuania,649.0,633.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-03 00:00:00+00:00,Lithuania,696.0,680.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-04 00:00:00+00:00,Lithuania,771.0,753.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-05 00:00:00+00:00,Lithuania,811.0,791.0,13.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-06 00:00:00+00:00,Lithuania,843.0,820.0,15.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-07 00:00:00+00:00,Lithuania,880.0,857.0,15.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-08 00:00:00+00:00,Lithuania,912.0,889.0,15.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-09 00:00:00+00:00,Lithuania,955.0,931.0,16.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-10 00:00:00+00:00,Lithuania,999.0,923.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-11 00:00:00+00:00,Lithuania,1026.0,949.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-12 00:00:00+00:00,Lithuania,1053.0,933.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-13 00:00:00+00:00,Lithuania,1062.0,937.0,24.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-14 00:00:00+00:00,Lithuania,1070.0,940.0,29.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-15 00:00:00+00:00,Lithuania,1091.0,923.0,30.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-16 00:00:00+00:00,Lithuania,1128.0,918.0,32.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-17 00:00:00+00:00,Lithuania,1149.0,906.0,33.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-18 00:00:00+00:00,Lithuania,1239.0,978.0,33.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-19 00:00:00+00:00,Lithuania,1298.0,1021.0,35.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-20 00:00:00+00:00,Lithuania,1326.0,1047.0,37.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-21 00:00:00+00:00,Lithuania,1350.0,1014.0,38.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-22 00:00:00+00:00,Lithuania,1370.0,975.0,38.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-23 00:00:00+00:00,Lithuania,1398.0,959.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-24 00:00:00+00:00,Lithuania,1410.0,940.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-25 00:00:00+00:00,Lithuania,1426.0,925.0,41.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-26 00:00:00+00:00,Lithuania,1438.0,930.0,41.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-27 00:00:00+00:00,Lithuania,1449.0,934.0,41.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-28 00:00:00+00:00,Lithuania,1344.0,764.0,44.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-29 00:00:00+00:00,Lithuania,1375.0,767.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-04-30 00:00:00+00:00,Lithuania,1385.0,751.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-01 00:00:00+00:00,Lithuania,1399.0,760.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-02 00:00:00+00:00,Lithuania,1406.0,728.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-03 00:00:00+00:00,Lithuania,1410.0,729.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-04 00:00:00+00:00,Lithuania,1419.0,735.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-05 00:00:00+00:00,Lithuania,1423.0,699.0,46.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-06 00:00:00+00:00,Lithuania,1428.0,662.0,48.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-07 00:00:00+00:00,Lithuania,1433.0,645.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-08 00:00:00+00:00,Lithuania,1436.0,622.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-09 00:00:00+00:00,Lithuania,1444.0,567.0,49.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-10 00:00:00+00:00,Lithuania,1479.0,601.0,50.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-11 00:00:00+00:00,Lithuania,1485.0,602.0,50.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-12 00:00:00+00:00,Lithuania,1491.0,591.0,50.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-13 00:00:00+00:00,Lithuania,1505.0,543.0,54.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-14 00:00:00+00:00,Lithuania,1511.0,523.0,54.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-15 00:00:00+00:00,Lithuania,1523.0,504.0,54.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-16 00:00:00+00:00,Lithuania,1534.0,491.0,55.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-17 00:00:00+00:00,Lithuania,1541.0,488.0,56.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-18 00:00:00+00:00,Lithuania,1547.0,491.0,59.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-19 00:00:00+00:00,Lithuania,1562.0,477.0,60.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-20 00:00:00+00:00,Lithuania,1577.0,468.0,60.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-21 00:00:00+00:00,Lithuania,1593.0,483.0,61.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-22 00:00:00+00:00,Lithuania,1604.0,432.0,61.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-23 00:00:00+00:00,Lithuania,1616.0,418.0,63.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-24 00:00:00+00:00,Lithuania,1623.0,422.0,63.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-25 00:00:00+00:00,Lithuania,1635.0,434.0,63.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-26 00:00:00+00:00,Lithuania,1639.0,409.0,65.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-27 00:00:00+00:00,Lithuania,1647.0,397.0,66.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-28 00:00:00+00:00,Lithuania,1656.0,395.0,68.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-29 00:00:00+00:00,Lithuania,1662.0,378.0,68.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +LT,2020-05-30 00:00:00+00:00,Lithuania,1670.0,371.0,70.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +MY,2020-01-22 00:00:00+00:00,Malaysia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-23 00:00:00+00:00,Malaysia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-24 00:00:00+00:00,Malaysia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-25 00:00:00+00:00,Malaysia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-26 00:00:00+00:00,Malaysia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-27 00:00:00+00:00,Malaysia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-28 00:00:00+00:00,Malaysia,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-29 00:00:00+00:00,Malaysia,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MY,2020-01-30 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-01-31 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-01 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-02 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-03 00:00:00+00:00,Malaysia,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-04 00:00:00+00:00,Malaysia,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-05 00:00:00+00:00,Malaysia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-06 00:00:00+00:00,Malaysia,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-07 00:00:00+00:00,Malaysia,12.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-08 00:00:00+00:00,Malaysia,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-09 00:00:00+00:00,Malaysia,16.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-10 00:00:00+00:00,Malaysia,18.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-11 00:00:00+00:00,Malaysia,18.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-12 00:00:00+00:00,Malaysia,18.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-13 00:00:00+00:00,Malaysia,19.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-14 00:00:00+00:00,Malaysia,19.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-15 00:00:00+00:00,Malaysia,22.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-16 00:00:00+00:00,Malaysia,22.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-17 00:00:00+00:00,Malaysia,22.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-18 00:00:00+00:00,Malaysia,22.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-19 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-20 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-21 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-22 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-23 00:00:00+00:00,Malaysia,22.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-24 00:00:00+00:00,Malaysia,22.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-25 00:00:00+00:00,Malaysia,22.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-26 00:00:00+00:00,Malaysia,22.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-27 00:00:00+00:00,Malaysia,23.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-28 00:00:00+00:00,Malaysia,23.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-02-29 00:00:00+00:00,Malaysia,25.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-01 00:00:00+00:00,Malaysia,29.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-02 00:00:00+00:00,Malaysia,29.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-03 00:00:00+00:00,Malaysia,36.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-04 00:00:00+00:00,Malaysia,50.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-05 00:00:00+00:00,Malaysia,50.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-06 00:00:00+00:00,Malaysia,83.0,61.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-07 00:00:00+00:00,Malaysia,93.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-08 00:00:00+00:00,Malaysia,99.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-09 00:00:00+00:00,Malaysia,117.0,93.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-10 00:00:00+00:00,Malaysia,129.0,105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-11 00:00:00+00:00,Malaysia,149.0,123.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-12 00:00:00+00:00,Malaysia,149.0,123.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-13 00:00:00+00:00,Malaysia,197.0,171.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-14 00:00:00+00:00,Malaysia,238.0,203.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-15 00:00:00+00:00,Malaysia,428.0,386.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-16 00:00:00+00:00,Malaysia,566.0,524.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-17 00:00:00+00:00,Malaysia,673.0,622.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +MY,2020-03-18 00:00:00+00:00,Malaysia,790.0,728.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-19 00:00:00+00:00,Malaysia,900.0,823.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-20 00:00:00+00:00,Malaysia,1030.0,940.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-21 00:00:00+00:00,Malaysia,1183.0,1065.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-22 00:00:00+00:00,Malaysia,1306.0,1157.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-23 00:00:00+00:00,Malaysia,1518.0,1365.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-24 00:00:00+00:00,Malaysia,1624.0,1425.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-25 00:00:00+00:00,Malaysia,1796.0,1577.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-26 00:00:00+00:00,Malaysia,2031.0,1793.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-27 00:00:00+00:00,Malaysia,2161.0,1876.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-28 00:00:00+00:00,Malaysia,2320.0,1973.0,27.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-29 00:00:00+00:00,Malaysia,2470.0,2047.0,35.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-30 00:00:00+00:00,Malaysia,2626.0,2110.0,37.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-03-31 00:00:00+00:00,Malaysia,2766.0,2186.0,43.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-01 00:00:00+00:00,Malaysia,2908.0,2218.0,45.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-02 00:00:00+00:00,Malaysia,3116.0,2299.0,50.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-03 00:00:00+00:00,Malaysia,3333.0,2453.0,53.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-04 00:00:00+00:00,Malaysia,3483.0,2511.0,57.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-05 00:00:00+00:00,Malaysia,3662.0,2596.0,61.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-06 00:00:00+00:00,Malaysia,3793.0,2490.0,62.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-07 00:00:00+00:00,Malaysia,3963.0,2579.0,63.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-08 00:00:00+00:00,Malaysia,4119.0,2567.0,65.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-09 00:00:00+00:00,Malaysia,4228.0,2553.0,67.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-10 00:00:00+00:00,Malaysia,4346.0,2446.0,70.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-11 00:00:00+00:00,Malaysia,4530.0,2462.0,73.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-12 00:00:00+00:00,Malaysia,4683.0,2499.0,76.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-13 00:00:00+00:00,Malaysia,4817.0,2464.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-14 00:00:00+00:00,Malaysia,4987.0,2427.0,82.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-15 00:00:00+00:00,Malaysia,5072.0,2342.0,83.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-16 00:00:00+00:00,Malaysia,5182.0,2332.0,84.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-17 00:00:00+00:00,Malaysia,5251.0,2198.0,86.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-18 00:00:00+00:00,Malaysia,5305.0,2115.0,88.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-19 00:00:00+00:00,Malaysia,5389.0,2103.0,89.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-20 00:00:00+00:00,Malaysia,5425.0,2041.0,89.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-21 00:00:00+00:00,Malaysia,5482.0,2041.0,92.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-22 00:00:00+00:00,Malaysia,5532.0,1987.0,93.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-23 00:00:00+00:00,Malaysia,5603.0,1966.0,95.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-24 00:00:00+00:00,Malaysia,5691.0,1932.0,96.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-25 00:00:00+00:00,Malaysia,5742.0,1882.0,98.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-26 00:00:00+00:00,Malaysia,5780.0,1820.0,98.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-27 00:00:00+00:00,Malaysia,5820.0,1764.0,99.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-28 00:00:00+00:00,Malaysia,5851.0,1719.0,100.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-29 00:00:00+00:00,Malaysia,5945.0,1758.0,100.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-04-30 00:00:00+00:00,Malaysia,6002.0,1729.0,102.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-01 00:00:00+00:00,Malaysia,6071.0,1758.0,103.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-02 00:00:00+00:00,Malaysia,6176.0,1747.0,103.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-03 00:00:00+00:00,Malaysia,6298.0,1780.0,105.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-04 00:00:00+00:00,Malaysia,6353.0,1764.0,105.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-05 00:00:00+00:00,Malaysia,6383.0,1710.0,106.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-06 00:00:00+00:00,Malaysia,6428.0,1619.0,107.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-07 00:00:00+00:00,Malaysia,6467.0,1584.0,107.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-08 00:00:00+00:00,Malaysia,6535.0,1564.0,107.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-09 00:00:00+00:00,Malaysia,6589.0,1552.0,108.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-10 00:00:00+00:00,Malaysia,6656.0,1523.0,108.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-11 00:00:00+00:00,Malaysia,6726.0,1504.0,109.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-12 00:00:00+00:00,Malaysia,6742.0,1410.0,109.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-13 00:00:00+00:00,Malaysia,6779.0,1387.0,111.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-14 00:00:00+00:00,Malaysia,6819.0,1356.0,112.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-15 00:00:00+00:00,Malaysia,6855.0,1304.0,112.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-16 00:00:00+00:00,Malaysia,6872.0,1247.0,113.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-17 00:00:00+00:00,Malaysia,6894.0,1210.0,113.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-18 00:00:00+00:00,Malaysia,6941.0,1213.0,113.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-19 00:00:00+00:00,Malaysia,6978.0,1218.0,114.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-20 00:00:00+00:00,Malaysia,7009.0,1189.0,114.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-21 00:00:00+00:00,Malaysia,7059.0,1149.0,114.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-22 00:00:00+00:00,Malaysia,7137.0,1163.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-23 00:00:00+00:00,Malaysia,7185.0,1158.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-24 00:00:00+00:00,Malaysia,7245.0,1185.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-25 00:00:00+00:00,Malaysia,7417.0,1323.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-26 00:00:00+00:00,Malaysia,7604.0,1448.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-27 00:00:00+00:00,Malaysia,7619.0,1421.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-28 00:00:00+00:00,Malaysia,7629.0,1345.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-29 00:00:00+00:00,Malaysia,7732.0,1382.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MY,2020-05-30 00:00:00+00:00,Malaysia,7762.0,1317.0,115.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +MT,2020-01-22 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-23 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-24 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-25 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-26 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-27 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-28 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-29 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-30 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-01-31 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-01 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-02 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-03 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-04 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-05 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-06 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-07 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-08 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-09 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-10 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-11 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-12 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-13 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-14 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-15 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-16 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-17 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-18 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-19 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-20 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-21 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-22 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-23 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-24 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-25 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-26 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-27 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-28 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-02-29 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-01 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-02 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-03 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-04 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-05 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-06 00:00:00+00:00,Malta,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-07 00:00:00+00:00,Malta,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-08 00:00:00+00:00,Malta,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-09 00:00:00+00:00,Malta,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-10 00:00:00+00:00,Malta,5.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-11 00:00:00+00:00,Malta,6.0,6.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-12 00:00:00+00:00,Malta,6.0,6.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-13 00:00:00+00:00,Malta,12.0,11.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-14 00:00:00+00:00,Malta,18.0,17.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-15 00:00:00+00:00,Malta,21.0,20.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-16 00:00:00+00:00,Malta,30.0,28.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-17 00:00:00+00:00,Malta,38.0,36.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-18 00:00:00+00:00,Malta,38.0,36.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-19 00:00:00+00:00,Malta,53.0,51.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-20 00:00:00+00:00,Malta,64.0,62.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-21 00:00:00+00:00,Malta,73.0,71.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-22 00:00:00+00:00,Malta,90.0,88.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-23 00:00:00+00:00,Malta,107.0,105.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-24 00:00:00+00:00,Malta,110.0,108.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-25 00:00:00+00:00,Malta,129.0,127.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-26 00:00:00+00:00,Malta,134.0,132.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-27 00:00:00+00:00,Malta,139.0,137.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-28 00:00:00+00:00,Malta,149.0,147.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-29 00:00:00+00:00,Malta,151.0,149.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-30 00:00:00+00:00,Malta,156.0,154.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-03-31 00:00:00+00:00,Malta,169.0,167.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-01 00:00:00+00:00,Malta,188.0,186.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-02 00:00:00+00:00,Malta,196.0,194.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-03 00:00:00+00:00,Malta,202.0,200.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-04 00:00:00+00:00,Malta,213.0,211.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-05 00:00:00+00:00,Malta,227.0,222.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-06 00:00:00+00:00,Malta,241.0,236.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-07 00:00:00+00:00,Malta,293.0,288.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-08 00:00:00+00:00,Malta,299.0,282.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-09 00:00:00+00:00,Malta,337.0,319.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-10 00:00:00+00:00,Malta,350.0,332.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-11 00:00:00+00:00,Malta,370.0,351.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-12 00:00:00+00:00,Malta,378.0,331.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-13 00:00:00+00:00,Malta,384.0,337.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-14 00:00:00+00:00,Malta,393.0,346.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-15 00:00:00+00:00,Malta,399.0,352.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-16 00:00:00+00:00,Malta,412.0,327.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-17 00:00:00+00:00,Malta,422.0,328.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-18 00:00:00+00:00,Malta,426.0,324.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-19 00:00:00+00:00,Malta,427.0,306.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-20 00:00:00+00:00,Malta,431.0,302.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-21 00:00:00+00:00,Malta,443.0,290.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-22 00:00:00+00:00,Malta,444.0,276.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-23 00:00:00+00:00,Malta,445.0,238.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-24 00:00:00+00:00,Malta,447.0,221.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-25 00:00:00+00:00,Malta,448.0,195.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-26 00:00:00+00:00,Malta,448.0,162.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-27 00:00:00+00:00,Malta,450.0,160.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-28 00:00:00+00:00,Malta,458.0,151.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-29 00:00:00+00:00,Malta,463.0,120.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-04-30 00:00:00+00:00,Malta,465.0,110.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-01 00:00:00+00:00,Malta,467.0,80.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-02 00:00:00+00:00,Malta,468.0,85.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-03 00:00:00+00:00,Malta,477.0,81.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-04 00:00:00+00:00,Malta,480.0,77.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-05 00:00:00+00:00,Malta,482.0,74.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-06 00:00:00+00:00,Malta,484.0,72.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-07 00:00:00+00:00,Malta,486.0,68.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-08 00:00:00+00:00,Malta,489.0,65.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-09 00:00:00+00:00,Malta,490.0,58.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-10 00:00:00+00:00,Malta,496.0,58.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-11 00:00:00+00:00,Malta,503.0,64.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-12 00:00:00+00:00,Malta,506.0,67.0,5.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-13 00:00:00+00:00,Malta,508.0,66.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-14 00:00:00+00:00,Malta,522.0,73.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-15 00:00:00+00:00,Malta,532.0,68.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-16 00:00:00+00:00,Malta,546.0,90.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-17 00:00:00+00:00,Malta,553.0,93.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-18 00:00:00+00:00,Malta,558.0,96.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-19 00:00:00+00:00,Malta,569.0,103.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-20 00:00:00+00:00,Malta,584.0,113.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-21 00:00:00+00:00,Malta,599.0,125.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-22 00:00:00+00:00,Malta,600.0,125.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-23 00:00:00+00:00,Malta,609.0,130.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-24 00:00:00+00:00,Malta,610.0,128.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-25 00:00:00+00:00,Malta,611.0,120.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-26 00:00:00+00:00,Malta,611.0,120.0,6.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-27 00:00:00+00:00,Malta,612.0,114.0,7.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-28 00:00:00+00:00,Malta,616.0,108.0,7.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-29 00:00:00+00:00,Malta,616.0,93.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MT,2020-05-30 00:00:00+00:00,Malta,618.0,84.0,9.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-22 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-23 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-24 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-25 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-26 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-27 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-28 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-29 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-30 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-01-31 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-01 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-02 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-03 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-04 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-05 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-06 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-07 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-08 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-09 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-10 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-11 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-12 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-13 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-14 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-15 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-16 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-17 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-18 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-19 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-20 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-21 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-22 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-23 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-24 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-25 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-26 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-27 00:00:00+00:00,Mexico,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MX,2020-02-28 00:00:00+00:00,Mexico,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-02-29 00:00:00+00:00,Mexico,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-01 00:00:00+00:00,Mexico,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-02 00:00:00+00:00,Mexico,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-03 00:00:00+00:00,Mexico,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-04 00:00:00+00:00,Mexico,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-05 00:00:00+00:00,Mexico,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-06 00:00:00+00:00,Mexico,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-07 00:00:00+00:00,Mexico,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-08 00:00:00+00:00,Mexico,7.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-09 00:00:00+00:00,Mexico,7.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-10 00:00:00+00:00,Mexico,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-11 00:00:00+00:00,Mexico,8.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-12 00:00:00+00:00,Mexico,12.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-13 00:00:00+00:00,Mexico,26.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-14 00:00:00+00:00,Mexico,41.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-15 00:00:00+00:00,Mexico,53.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-16 00:00:00+00:00,Mexico,82.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-17 00:00:00+00:00,Mexico,93.0,89.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-18 00:00:00+00:00,Mexico,118.0,114.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-19 00:00:00+00:00,Mexico,164.0,159.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-20 00:00:00+00:00,Mexico,203.0,197.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0 +MX,2020-03-21 00:00:00+00:00,Mexico,251.0,245.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MX,2020-03-22 00:00:00+00:00,Mexico,316.0,309.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MX,2020-03-23 00:00:00+00:00,Mexico,367.0,359.0,4.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MX,2020-03-24 00:00:00+00:00,Mexico,405.0,396.0,5.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-25 00:00:00+00:00,Mexico,475.0,465.0,6.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-26 00:00:00+00:00,Mexico,585.0,573.0,8.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-27 00:00:00+00:00,Mexico,717.0,701.0,12.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-28 00:00:00+00:00,Mexico,848.0,828.0,16.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-29 00:00:00+00:00,Mexico,993.0,969.0,20.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-30 00:00:00+00:00,Mexico,1094.0,1031.0,28.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-03-31 00:00:00+00:00,Mexico,1215.0,1151.0,29.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-01 00:00:00+00:00,Mexico,1378.0,1306.0,37.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-02 00:00:00+00:00,Mexico,1510.0,1425.0,50.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-03 00:00:00+00:00,Mexico,1688.0,995.0,60.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-04 00:00:00+00:00,Mexico,1890.0,1178.0,79.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-05 00:00:00+00:00,Mexico,2143.0,1416.0,94.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-06 00:00:00+00:00,Mexico,2439.0,1681.0,125.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-07 00:00:00+00:00,Mexico,2785.0,2011.0,141.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-08 00:00:00+00:00,Mexico,3181.0,2374.0,174.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-09 00:00:00+00:00,Mexico,3441.0,2614.0,194.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-10 00:00:00+00:00,Mexico,3844.0,2978.0,233.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-11 00:00:00+00:00,Mexico,4219.0,3313.0,273.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-12 00:00:00+00:00,Mexico,4661.0,2593.0,296.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-13 00:00:00+00:00,Mexico,5014.0,2839.0,332.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-14 00:00:00+00:00,Mexico,5399.0,3029.0,406.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-15 00:00:00+00:00,Mexico,5847.0,3273.0,449.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-16 00:00:00+00:00,Mexico,6297.0,3686.0,486.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-17 00:00:00+00:00,Mexico,6875.0,4204.0,546.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-18 00:00:00+00:00,Mexico,7497.0,4722.0,650.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-19 00:00:00+00:00,Mexico,8261.0,4948.0,686.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-20 00:00:00+00:00,Mexico,8772.0,5433.0,712.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-21 00:00:00+00:00,Mexico,9501.0,6017.0,857.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-22 00:00:00+00:00,Mexico,10544.0,6947.0,970.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-23 00:00:00+00:00,Mexico,11633.0,7937.0,1069.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-24 00:00:00+00:00,Mexico,12872.0,9024.0,1221.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-25 00:00:00+00:00,Mexico,13842.0,5388.0,1305.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-26 00:00:00+00:00,Mexico,14677.0,4972.0,1351.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-27 00:00:00+00:00,Mexico,15529.0,5009.0,1434.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-28 00:00:00+00:00,Mexico,16752.0,3760.0,1569.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-29 00:00:00+00:00,Mexico,17799.0,4644.0,1732.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-04-30 00:00:00+00:00,Mexico,19224.0,5942.0,1859.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-01 00:00:00+00:00,Mexico,20739.0,6390.0,1972.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-02 00:00:00+00:00,Mexico,22088.0,7650.0,2061.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-03 00:00:00+00:00,Mexico,23471.0,7870.0,2154.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-04 00:00:00+00:00,Mexico,24905.0,9187.0,2271.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-05 00:00:00+00:00,Mexico,26025.0,6708.0,2507.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-06 00:00:00+00:00,Mexico,27634.0,7149.0,2704.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-07 00:00:00+00:00,Mexico,29616.0,8874.0,2961.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-08 00:00:00+00:00,Mexico,31522.0,8048.0,3160.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-09 00:00:00+00:00,Mexico,33460.0,8283.0,3353.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-10 00:00:00+00:00,Mexico,35022.0,9733.0,3465.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-11 00:00:00+00:00,Mexico,36327.0,9654.0,3573.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-12 00:00:00+00:00,Mexico,38324.0,8463.0,3926.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-13 00:00:00+00:00,Mexico,40186.0,8976.0,4220.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-14 00:00:00+00:00,Mexico,42595.0,9643.0,4477.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-15 00:00:00+00:00,Mexico,45032.0,9814.0,4767.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-16 00:00:00+00:00,Mexico,47144.0,10251.0,5045.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-17 00:00:00+00:00,Mexico,49219.0,10713.0,5177.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-18 00:00:00+00:00,Mexico,51633.0,10913.0,5332.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-19 00:00:00+00:00,Mexico,54346.0,11355.0,5666.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-20 00:00:00+00:00,Mexico,56594.0,12085.0,6090.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-21 00:00:00+00:00,Mexico,59567.0,12905.0,6510.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-22 00:00:00+00:00,Mexico,62527.0,13347.0,6989.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-23 00:00:00+00:00,Mexico,65856.0,14253.0,7179.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-24 00:00:00+00:00,Mexico,68620.0,14247.0,7394.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-25 00:00:00+00:00,Mexico,71105.0,14020.0,7633.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-26 00:00:00+00:00,Mexico,74560.0,14718.0,8134.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-27 00:00:00+00:00,Mexico,78023.0,15592.0,8597.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-28 00:00:00+00:00,Mexico,81400.0,16315.0,9044.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-29 00:00:00+00:00,Mexico,84627.0,16209.0,9415.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MX,2020-05-30 00:00:00+00:00,Mexico,87512.0,16486.0,9779.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +MA,2020-01-22 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-23 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-24 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-25 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-26 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-27 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-28 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-29 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-30 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-01-31 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-01 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-02 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-03 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-04 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-05 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-06 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-07 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-08 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-09 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-10 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-11 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-12 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-13 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-14 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-15 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-16 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-17 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-18 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-19 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-20 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-21 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-22 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-23 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-24 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-25 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-26 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-27 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-28 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-02-29 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-03-01 00:00:00+00:00,Morocco,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-03-02 00:00:00+00:00,Morocco,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-03-03 00:00:00+00:00,Morocco,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MA,2020-03-04 00:00:00+00:00,Morocco,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-05 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-06 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-07 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-08 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-09 00:00:00+00:00,Morocco,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-10 00:00:00+00:00,Morocco,3.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-11 00:00:00+00:00,Morocco,5.0,4.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-12 00:00:00+00:00,Morocco,6.0,5.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +MA,2020-03-13 00:00:00+00:00,Morocco,7.0,5.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-14 00:00:00+00:00,Morocco,17.0,15.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-15 00:00:00+00:00,Morocco,28.0,26.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-16 00:00:00+00:00,Morocco,29.0,27.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-17 00:00:00+00:00,Morocco,38.0,35.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-18 00:00:00+00:00,Morocco,49.0,46.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-19 00:00:00+00:00,Morocco,63.0,60.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0 +MA,2020-03-20 00:00:00+00:00,Morocco,77.0,73.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 +MA,2020-03-21 00:00:00+00:00,Morocco,96.0,90.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 +MA,2020-03-22 00:00:00+00:00,Morocco,115.0,108.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 +MA,2020-03-23 00:00:00+00:00,Morocco,143.0,136.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 +MA,2020-03-24 00:00:00+00:00,Morocco,170.0,159.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0 +MA,2020-03-25 00:00:00+00:00,Morocco,225.0,212.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-03-26 00:00:00+00:00,Morocco,275.0,256.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-03-27 00:00:00+00:00,Morocco,345.0,311.0,23.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-03-28 00:00:00+00:00,Morocco,402.0,366.0,25.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-03-29 00:00:00+00:00,Morocco,479.0,440.0,26.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-03-30 00:00:00+00:00,Morocco,556.0,508.0,33.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-03-31 00:00:00+00:00,Morocco,617.0,557.0,36.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-01 00:00:00+00:00,Morocco,654.0,586.0,39.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-02 00:00:00+00:00,Morocco,708.0,633.0,44.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-03 00:00:00+00:00,Morocco,791.0,686.0,48.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-04 00:00:00+00:00,Morocco,919.0,794.0,59.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-05 00:00:00+00:00,Morocco,1021.0,875.0,70.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-06 00:00:00+00:00,Morocco,1120.0,959.0,80.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-07 00:00:00+00:00,Morocco,1184.0,1001.0,90.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-08 00:00:00+00:00,Morocco,1275.0,1085.0,93.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-09 00:00:00+00:00,Morocco,1374.0,1168.0,97.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-10 00:00:00+00:00,Morocco,1448.0,1219.0,107.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-11 00:00:00+00:00,Morocco,1545.0,1288.0,111.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-12 00:00:00+00:00,Morocco,1661.0,1366.0,118.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-13 00:00:00+00:00,Morocco,1763.0,1434.0,126.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-14 00:00:00+00:00,Morocco,1888.0,1545.0,126.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-15 00:00:00+00:00,Morocco,2024.0,1668.0,127.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-16 00:00:00+00:00,Morocco,2283.0,1904.0,130.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-17 00:00:00+00:00,Morocco,2564.0,2148.0,135.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-18 00:00:00+00:00,Morocco,2685.0,2234.0,137.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-19 00:00:00+00:00,Morocco,2855.0,2387.0,141.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-20 00:00:00+00:00,Morocco,3046.0,2553.0,143.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-21 00:00:00+00:00,Morocco,3209.0,2671.0,145.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-22 00:00:00+00:00,Morocco,3446.0,2880.0,149.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-23 00:00:00+00:00,Morocco,3568.0,2957.0,155.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-24 00:00:00+00:00,Morocco,3758.0,3114.0,158.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-25 00:00:00+00:00,Morocco,3897.0,3201.0,159.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-26 00:00:00+00:00,Morocco,4065.0,3311.0,161.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-27 00:00:00+00:00,Morocco,4120.0,3263.0,162.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-28 00:00:00+00:00,Morocco,4252.0,3309.0,165.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-29 00:00:00+00:00,Morocco,4321.0,3225.0,168.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-04-30 00:00:00+00:00,Morocco,4423.0,3269.0,170.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-01 00:00:00+00:00,Morocco,4569.0,3315.0,171.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-02 00:00:00+00:00,Morocco,4729.0,3300.0,173.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-03 00:00:00+00:00,Morocco,4903.0,3291.0,174.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-04 00:00:00+00:00,Morocco,5053.0,3221.0,179.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-05 00:00:00+00:00,Morocco,5219.0,3200.0,181.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-06 00:00:00+00:00,Morocco,5408.0,3208.0,183.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-07 00:00:00+00:00,Morocco,5548.0,3186.0,183.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-08 00:00:00+00:00,Morocco,5711.0,3201.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-09 00:00:00+00:00,Morocco,5910.0,3263.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-10 00:00:00+00:00,Morocco,6063.0,3321.0,188.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-11 00:00:00+00:00,Morocco,6281.0,3282.0,188.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-12 00:00:00+00:00,Morocco,6418.0,3239.0,188.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-13 00:00:00+00:00,Morocco,6512.0,3193.0,188.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-14 00:00:00+00:00,Morocco,6607.0,3107.0,190.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-15 00:00:00+00:00,Morocco,6652.0,3062.0,190.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-16 00:00:00+00:00,Morocco,6741.0,3062.0,192.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-17 00:00:00+00:00,Morocco,6870.0,3018.0,192.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-18 00:00:00+00:00,Morocco,6952.0,3002.0,192.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-19 00:00:00+00:00,Morocco,7023.0,2929.0,193.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-20 00:00:00+00:00,Morocco,7133.0,2841.0,194.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-21 00:00:00+00:00,Morocco,7211.0,2735.0,196.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-22 00:00:00+00:00,Morocco,7332.0,2758.0,197.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-23 00:00:00+00:00,Morocco,7406.0,2570.0,198.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-24 00:00:00+00:00,Morocco,7433.0,2531.0,199.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-25 00:00:00+00:00,Morocco,7532.0,2558.0,200.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-26 00:00:00+00:00,Morocco,7577.0,2494.0,202.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-27 00:00:00+00:00,Morocco,7601.0,2421.0,202.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-28 00:00:00+00:00,Morocco,7643.0,2246.0,202.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-29 00:00:00+00:00,Morocco,7714.0,2241.0,202.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +MA,2020-05-30 00:00:00+00:00,Morocco,7780.0,2175.0,204.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-01-22 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-23 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-24 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-25 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-26 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-27 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-28 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-29 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-30 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-01-31 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-01 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-02 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-03 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-04 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-05 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-06 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-07 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-08 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-09 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-10 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-11 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-12 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-13 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-14 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-15 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-16 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-17 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-18 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-19 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-20 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-21 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-22 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-23 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-24 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-25 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-26 00:00:00+00:00,Netherlands,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-27 00:00:00+00:00,Netherlands,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-28 00:00:00+00:00,Netherlands,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-02-29 00:00:00+00:00,Netherlands,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-01 00:00:00+00:00,Netherlands,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-02 00:00:00+00:00,Netherlands,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-03 00:00:00+00:00,Netherlands,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-04 00:00:00+00:00,Netherlands,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-05 00:00:00+00:00,Netherlands,82.0,82.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-06 00:00:00+00:00,Netherlands,128.0,127.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-07 00:00:00+00:00,Netherlands,188.0,187.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-08 00:00:00+00:00,Netherlands,265.0,262.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-09 00:00:00+00:00,Netherlands,321.0,318.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-10 00:00:00+00:00,Netherlands,382.0,378.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-11 00:00:00+00:00,Netherlands,503.0,498.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NL,2020-03-12 00:00:00+00:00,Netherlands,503.0,498.0,5.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NL,2020-03-13 00:00:00+00:00,Netherlands,804.0,794.0,10.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NL,2020-03-14 00:00:00+00:00,Netherlands,959.0,947.0,12.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NL,2020-03-15 00:00:00+00:00,Netherlands,1135.0,1115.0,20.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +NL,2020-03-16 00:00:00+00:00,Netherlands,1413.0,1389.0,24.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +NL,2020-03-17 00:00:00+00:00,Netherlands,1705.0,1662.0,43.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +NL,2020-03-18 00:00:00+00:00,Netherlands,2051.0,1993.0,58.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +NL,2020-03-19 00:00:00+00:00,Netherlands,2460.0,2384.0,76.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-20 00:00:00+00:00,Netherlands,2994.0,2888.0,106.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-21 00:00:00+00:00,Netherlands,3631.0,3495.0,136.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-22 00:00:00+00:00,Netherlands,4204.0,4025.0,179.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-23 00:00:00+00:00,Netherlands,4749.0,4536.0,213.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-24 00:00:00+00:00,Netherlands,5560.0,5284.0,276.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-25 00:00:00+00:00,Netherlands,6412.0,6056.0,356.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-26 00:00:00+00:00,Netherlands,7431.0,6997.0,434.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-27 00:00:00+00:00,Netherlands,8603.0,8057.0,546.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-28 00:00:00+00:00,Netherlands,9762.0,9123.0,639.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-29 00:00:00+00:00,Netherlands,10866.0,10095.0,771.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-30 00:00:00+00:00,Netherlands,11750.0,10886.0,864.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +NL,2020-03-31 00:00:00+00:00,Netherlands,12595.0,11556.0,1039.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-01 00:00:00+00:00,Netherlands,13614.0,12441.0,1173.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-02 00:00:00+00:00,Netherlands,14697.0,13358.0,1339.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-03 00:00:00+00:00,Netherlands,15723.0,14236.0,1487.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-04 00:00:00+00:00,Netherlands,16627.0,14976.0,1651.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-05 00:00:00+00:00,Netherlands,17851.0,16085.0,1766.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-06 00:00:00+00:00,Netherlands,18803.0,16936.0,1867.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-07 00:00:00+00:00,Netherlands,19580.0,17479.0,2101.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-08 00:00:00+00:00,Netherlands,20549.0,18301.0,2248.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-09 00:00:00+00:00,Netherlands,21762.0,19366.0,2396.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-10 00:00:00+00:00,Netherlands,23097.0,20586.0,2511.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-11 00:00:00+00:00,Netherlands,24413.0,21770.0,2643.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-12 00:00:00+00:00,Netherlands,25587.0,22850.0,2737.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-13 00:00:00+00:00,Netherlands,26551.0,23728.0,2823.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-14 00:00:00+00:00,Netherlands,27419.0,24474.0,2945.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-15 00:00:00+00:00,Netherlands,28153.0,25019.0,3134.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-16 00:00:00+00:00,Netherlands,29214.0,25899.0,3315.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-17 00:00:00+00:00,Netherlands,30449.0,26990.0,3459.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-18 00:00:00+00:00,Netherlands,31589.0,27988.0,3601.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-19 00:00:00+00:00,Netherlands,32655.0,28971.0,3684.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-20 00:00:00+00:00,Netherlands,33405.0,29654.0,3751.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-21 00:00:00+00:00,Netherlands,34134.0,30218.0,3916.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-22 00:00:00+00:00,Netherlands,34842.0,30788.0,4054.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-23 00:00:00+00:00,Netherlands,35729.0,31552.0,4177.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-24 00:00:00+00:00,Netherlands,36535.0,32246.0,4289.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-25 00:00:00+00:00,Netherlands,37190.0,32781.0,4409.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-26 00:00:00+00:00,Netherlands,37845.0,33370.0,4475.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-27 00:00:00+00:00,Netherlands,38245.0,33727.0,4518.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-28 00:00:00+00:00,Netherlands,38416.0,33850.0,4566.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-29 00:00:00+00:00,Netherlands,38802.0,34091.0,4711.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-04-30 00:00:00+00:00,Netherlands,39316.0,34521.0,4795.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-01 00:00:00+00:00,Netherlands,39791.0,34898.0,4893.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-02 00:00:00+00:00,Netherlands,40236.0,35249.0,4987.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-03 00:00:00+00:00,Netherlands,40571.0,35515.0,5056.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-04 00:00:00+00:00,Netherlands,40770.0,35688.0,5082.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-05 00:00:00+00:00,Netherlands,41087.0,35919.0,5168.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-06 00:00:00+00:00,Netherlands,41319.0,36115.0,5204.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-07 00:00:00+00:00,Netherlands,41774.0,36486.0,5288.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-08 00:00:00+00:00,Netherlands,42093.0,36734.0,5359.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-09 00:00:00+00:00,Netherlands,42382.0,36960.0,5422.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-10 00:00:00+00:00,Netherlands,42627.0,37187.0,5440.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-11 00:00:00+00:00,Netherlands,42788.0,37332.0,5456.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-12 00:00:00+00:00,Netherlands,42984.0,37474.0,5510.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-13 00:00:00+00:00,Netherlands,43211.0,37649.0,5562.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-14 00:00:00+00:00,Netherlands,43481.0,37891.0,5590.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-15 00:00:00+00:00,Netherlands,43681.0,38038.0,5643.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-16 00:00:00+00:00,Netherlands,43870.0,38200.0,5670.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-17 00:00:00+00:00,Netherlands,43995.0,38315.0,5680.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-18 00:00:00+00:00,Netherlands,44141.0,38447.0,5694.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-19 00:00:00+00:00,Netherlands,44249.0,38534.0,5715.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-20 00:00:00+00:00,Netherlands,44447.0,38699.0,5748.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-21 00:00:00+00:00,Netherlands,44700.0,38925.0,5775.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-22 00:00:00+00:00,Netherlands,44888.0,39100.0,5788.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-23 00:00:00+00:00,Netherlands,45064.0,39253.0,5811.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-24 00:00:00+00:00,Netherlands,45236.0,39414.0,5822.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-25 00:00:00+00:00,Netherlands,45445.0,39615.0,5830.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-26 00:00:00+00:00,Netherlands,45578.0,39722.0,5856.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-27 00:00:00+00:00,Netherlands,45768.0,39897.0,5871.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-28 00:00:00+00:00,Netherlands,45950.0,40047.0,5903.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-29 00:00:00+00:00,Netherlands,46126.0,40195.0,5931.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NL,2020-05-30 00:00:00+00:00,Netherlands,46257.0,40306.0,5951.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-01-22 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-23 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-24 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-25 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-26 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-27 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-28 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-29 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-30 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-01-31 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-02-01 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NZ,2020-02-02 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-03 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-04 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-05 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-06 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-07 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-08 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-09 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-10 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-11 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-12 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-13 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-14 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-15 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-16 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-17 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-18 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-19 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-20 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-21 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-22 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-23 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-24 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-25 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-26 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-27 00:00:00+00:00,New Zealand,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-28 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-02-29 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-01 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-02 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-03 00:00:00+00:00,New Zealand,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-04 00:00:00+00:00,New Zealand,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-05 00:00:00+00:00,New Zealand,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-06 00:00:00+00:00,New Zealand,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-07 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-08 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-09 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-10 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-11 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-12 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-13 00:00:00+00:00,New Zealand,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-14 00:00:00+00:00,New Zealand,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-15 00:00:00+00:00,New Zealand,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-16 00:00:00+00:00,New Zealand,8.0,8.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-17 00:00:00+00:00,New Zealand,12.0,12.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-18 00:00:00+00:00,New Zealand,20.0,20.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-19 00:00:00+00:00,New Zealand,28.0,28.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-20 00:00:00+00:00,New Zealand,39.0,39.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +NZ,2020-03-21 00:00:00+00:00,New Zealand,52.0,52.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +NZ,2020-03-22 00:00:00+00:00,New Zealand,102.0,102.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +NZ,2020-03-23 00:00:00+00:00,New Zealand,102.0,102.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-24 00:00:00+00:00,New Zealand,155.0,143.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-25 00:00:00+00:00,New Zealand,205.0,183.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-26 00:00:00+00:00,New Zealand,283.0,256.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-27 00:00:00+00:00,New Zealand,368.0,331.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-28 00:00:00+00:00,New Zealand,451.0,401.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-29 00:00:00+00:00,New Zealand,514.0,457.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-30 00:00:00+00:00,New Zealand,589.0,525.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-03-31 00:00:00+00:00,New Zealand,647.0,572.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-01 00:00:00+00:00,New Zealand,708.0,624.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-02 00:00:00+00:00,New Zealand,797.0,704.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-03 00:00:00+00:00,New Zealand,868.0,764.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-04 00:00:00+00:00,New Zealand,950.0,822.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-05 00:00:00+00:00,New Zealand,1039.0,882.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-06 00:00:00+00:00,New Zealand,1106.0,929.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-07 00:00:00+00:00,New Zealand,1160.0,918.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-08 00:00:00+00:00,New Zealand,1210.0,927.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-09 00:00:00+00:00,New Zealand,1239.0,921.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-10 00:00:00+00:00,New Zealand,1283.0,908.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-11 00:00:00+00:00,New Zealand,1312.0,886.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-12 00:00:00+00:00,New Zealand,1330.0,855.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-13 00:00:00+00:00,New Zealand,1349.0,798.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-14 00:00:00+00:00,New Zealand,1366.0,729.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-15 00:00:00+00:00,New Zealand,1386.0,649.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-16 00:00:00+00:00,New Zealand,1401.0,622.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-17 00:00:00+00:00,New Zealand,1409.0,582.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-18 00:00:00+00:00,New Zealand,1422.0,544.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-19 00:00:00+00:00,New Zealand,1431.0,507.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-20 00:00:00+00:00,New Zealand,1440.0,454.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-21 00:00:00+00:00,New Zealand,1445.0,426.0,13.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-22 00:00:00+00:00,New Zealand,1451.0,401.0,14.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-23 00:00:00+00:00,New Zealand,1456.0,344.0,17.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-24 00:00:00+00:00,New Zealand,1461.0,325.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-25 00:00:00+00:00,New Zealand,1470.0,310.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-26 00:00:00+00:00,New Zealand,1469.0,270.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-27 00:00:00+00:00,New Zealand,1472.0,239.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-28 00:00:00+00:00,New Zealand,1474.0,226.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-29 00:00:00+00:00,New Zealand,1476.0,216.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-04-30 00:00:00+00:00,New Zealand,1479.0,208.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-01 00:00:00+00:00,New Zealand,1485.0,202.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-02 00:00:00+00:00,New Zealand,1487.0,201.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-03 00:00:00+00:00,New Zealand,1487.0,191.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-04 00:00:00+00:00,New Zealand,1486.0,164.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-05 00:00:00+00:00,New Zealand,1488.0,151.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-06 00:00:00+00:00,New Zealand,1489.0,136.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-07 00:00:00+00:00,New Zealand,1490.0,122.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-08 00:00:00+00:00,New Zealand,1492.0,103.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-09 00:00:00+00:00,New Zealand,1494.0,102.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-10 00:00:00+00:00,New Zealand,1497.0,90.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-11 00:00:00+00:00,New Zealand,1497.0,78.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-12 00:00:00+00:00,New Zealand,1497.0,74.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-13 00:00:00+00:00,New Zealand,1497.0,65.0,21.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-14 00:00:00+00:00,New Zealand,1498.0,56.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-15 00:00:00+00:00,New Zealand,1498.0,49.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-16 00:00:00+00:00,New Zealand,1499.0,45.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-17 00:00:00+00:00,New Zealand,1499.0,45.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-18 00:00:00+00:00,New Zealand,1499.0,45.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-19 00:00:00+00:00,New Zealand,1503.0,35.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-20 00:00:00+00:00,New Zealand,1503.0,30.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-21 00:00:00+00:00,New Zealand,1504.0,28.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-22 00:00:00+00:00,New Zealand,1504.0,28.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-23 00:00:00+00:00,New Zealand,1504.0,27.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-24 00:00:00+00:00,New Zealand,1504.0,27.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-25 00:00:00+00:00,New Zealand,1504.0,22.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-26 00:00:00+00:00,New Zealand,1504.0,21.0,21.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-27 00:00:00+00:00,New Zealand,1504.0,8.0,22.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-28 00:00:00+00:00,New Zealand,1504.0,1.0,22.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-29 00:00:00+00:00,New Zealand,1504.0,1.0,22.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NZ,2020-05-30 00:00:00+00:00,New Zealand,1504.0,1.0,22.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-01-22 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-23 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-24 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-25 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-26 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-27 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-28 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-29 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-30 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +NO,2020-01-31 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-01 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-02 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-03 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-04 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-05 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-06 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-07 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-08 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-09 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-10 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-11 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-12 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-13 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-14 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-15 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-16 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-17 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-18 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-19 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-20 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-21 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-22 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-23 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-24 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-25 00:00:00+00:00,Norway,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-26 00:00:00+00:00,Norway,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-27 00:00:00+00:00,Norway,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-28 00:00:00+00:00,Norway,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-02-29 00:00:00+00:00,Norway,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-01 00:00:00+00:00,Norway,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-02 00:00:00+00:00,Norway,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-03 00:00:00+00:00,Norway,32.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-04 00:00:00+00:00,Norway,56.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-05 00:00:00+00:00,Norway,87.0,87.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-06 00:00:00+00:00,Norway,108.0,108.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-07 00:00:00+00:00,Norway,147.0,147.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-08 00:00:00+00:00,Norway,176.0,176.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-09 00:00:00+00:00,Norway,205.0,204.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-10 00:00:00+00:00,Norway,400.0,399.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-11 00:00:00+00:00,Norway,598.0,597.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +NO,2020-03-12 00:00:00+00:00,Norway,702.0,701.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +NO,2020-03-13 00:00:00+00:00,Norway,996.0,995.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +NO,2020-03-14 00:00:00+00:00,Norway,1090.0,1086.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +NO,2020-03-15 00:00:00+00:00,Norway,1221.0,1217.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +NO,2020-03-16 00:00:00+00:00,Norway,1333.0,1329.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +NO,2020-03-17 00:00:00+00:00,Norway,1463.0,1459.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +NO,2020-03-18 00:00:00+00:00,Norway,1550.0,1543.0,6.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +NO,2020-03-19 00:00:00+00:00,Norway,1746.0,1738.0,7.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-20 00:00:00+00:00,Norway,1914.0,1906.0,7.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-21 00:00:00+00:00,Norway,2118.0,2110.0,7.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-22 00:00:00+00:00,Norway,2385.0,2377.0,7.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-23 00:00:00+00:00,Norway,2621.0,2610.0,10.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-24 00:00:00+00:00,Norway,2863.0,2845.0,12.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-25 00:00:00+00:00,Norway,3084.0,3064.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-26 00:00:00+00:00,Norway,3369.0,3349.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-27 00:00:00+00:00,Norway,3755.0,3730.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-28 00:00:00+00:00,Norway,4015.0,3985.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-29 00:00:00+00:00,Norway,4284.0,4252.0,25.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-30 00:00:00+00:00,Norway,4445.0,4401.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-03-31 00:00:00+00:00,Norway,4641.0,4589.0,39.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-01 00:00:00+00:00,Norway,4863.0,4806.0,44.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-02 00:00:00+00:00,Norway,5147.0,5065.0,50.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-03 00:00:00+00:00,Norway,5370.0,5279.0,59.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-04 00:00:00+00:00,Norway,5550.0,5456.0,62.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-05 00:00:00+00:00,Norway,5687.0,5584.0,71.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-06 00:00:00+00:00,Norway,5865.0,5757.0,76.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-07 00:00:00+00:00,Norway,6086.0,5965.0,89.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-08 00:00:00+00:00,Norway,6086.0,5953.0,101.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-09 00:00:00+00:00,Norway,6211.0,6071.0,108.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-10 00:00:00+00:00,Norway,6314.0,6169.0,113.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-11 00:00:00+00:00,Norway,6409.0,6258.0,119.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-12 00:00:00+00:00,Norway,6525.0,6365.0,128.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-13 00:00:00+00:00,Norway,6603.0,6437.0,134.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-14 00:00:00+00:00,Norway,6623.0,6452.0,139.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-15 00:00:00+00:00,Norway,6740.0,6558.0,150.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-16 00:00:00+00:00,Norway,6896.0,6712.0,152.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-17 00:00:00+00:00,Norway,6937.0,6744.0,161.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-18 00:00:00+00:00,Norway,7036.0,6840.0,164.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-19 00:00:00+00:00,Norway,7078.0,6881.0,165.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-20 00:00:00+00:00,Norway,7156.0,6943.0,181.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-21 00:00:00+00:00,Norway,7191.0,6977.0,182.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-22 00:00:00+00:00,Norway,7338.0,7119.0,187.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-23 00:00:00+00:00,Norway,7401.0,7175.0,194.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-24 00:00:00+00:00,Norway,7463.0,7232.0,199.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-25 00:00:00+00:00,Norway,7499.0,7266.0,201.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-26 00:00:00+00:00,Norway,7527.0,7294.0,201.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-27 00:00:00+00:00,Norway,7599.0,7362.0,205.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-28 00:00:00+00:00,Norway,7660.0,7422.0,206.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-29 00:00:00+00:00,Norway,7710.0,7471.0,207.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-04-30 00:00:00+00:00,Norway,7738.0,7496.0,210.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-01 00:00:00+00:00,Norway,7783.0,7541.0,210.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-02 00:00:00+00:00,Norway,7809.0,7566.0,211.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-03 00:00:00+00:00,Norway,7847.0,7604.0,211.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-04 00:00:00+00:00,Norway,7904.0,7658.0,214.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-05 00:00:00+00:00,Norway,7955.0,7708.0,215.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-06 00:00:00+00:00,Norway,7996.0,7748.0,216.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-07 00:00:00+00:00,Norway,8034.0,7785.0,217.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-08 00:00:00+00:00,Norway,8070.0,7820.0,218.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-09 00:00:00+00:00,Norway,8099.0,7848.0,219.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-10 00:00:00+00:00,Norway,8105.0,7854.0,219.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-11 00:00:00+00:00,Norway,8132.0,7876.0,224.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-12 00:00:00+00:00,Norway,8157.0,7897.0,228.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-13 00:00:00+00:00,Norway,8175.0,7914.0,229.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-14 00:00:00+00:00,Norway,8196.0,7932.0,232.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-15 00:00:00+00:00,Norway,8219.0,7955.0,232.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-16 00:00:00+00:00,Norway,8237.0,7973.0,232.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-17 00:00:00+00:00,Norway,8249.0,7985.0,232.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-18 00:00:00+00:00,Norway,8257.0,7992.0,233.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-19 00:00:00+00:00,Norway,8267.0,8002.0,233.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-20 00:00:00+00:00,Norway,8281.0,8015.0,234.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-21 00:00:00+00:00,Norway,8309.0,8042.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-22 00:00:00+00:00,Norway,8332.0,370.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-23 00:00:00+00:00,Norway,8346.0,384.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-24 00:00:00+00:00,Norway,8352.0,390.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-25 00:00:00+00:00,Norway,8364.0,402.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-26 00:00:00+00:00,Norway,8383.0,421.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-27 00:00:00+00:00,Norway,8401.0,439.0,235.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-28 00:00:00+00:00,Norway,8411.0,448.0,236.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-29 00:00:00+00:00,Norway,8422.0,459.0,236.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +NO,2020-05-30 00:00:00+00:00,Norway,8437.0,474.0,236.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-01-22 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +PL,2020-01-23 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-24 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-25 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-26 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-27 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-28 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-29 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-30 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-01-31 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-01 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-02 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-03 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-04 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-05 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-06 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-07 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-08 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-09 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-10 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-11 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-12 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-13 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-14 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-15 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-16 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-17 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-18 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-19 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-20 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-21 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-22 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-23 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-24 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-25 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-26 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-27 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-28 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-02-29 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-01 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-02 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-03 00:00:00+00:00,Poland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-04 00:00:00+00:00,Poland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-05 00:00:00+00:00,Poland,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-06 00:00:00+00:00,Poland,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-07 00:00:00+00:00,Poland,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-08 00:00:00+00:00,Poland,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PL,2020-03-09 00:00:00+00:00,Poland,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +PL,2020-03-10 00:00:00+00:00,Poland,22.0,22.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +PL,2020-03-11 00:00:00+00:00,Poland,31.0,31.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +PL,2020-03-12 00:00:00+00:00,Poland,49.0,48.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +PL,2020-03-13 00:00:00+00:00,Poland,68.0,66.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +PL,2020-03-14 00:00:00+00:00,Poland,103.0,100.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0 +PL,2020-03-15 00:00:00+00:00,Poland,119.0,116.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-16 00:00:00+00:00,Poland,177.0,160.0,4.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-17 00:00:00+00:00,Poland,238.0,220.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-18 00:00:00+00:00,Poland,251.0,233.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-19 00:00:00+00:00,Poland,355.0,349.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-20 00:00:00+00:00,Poland,425.0,419.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-21 00:00:00+00:00,Poland,536.0,530.0,5.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-22 00:00:00+00:00,Poland,634.0,626.0,7.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-23 00:00:00+00:00,Poland,749.0,740.0,8.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-24 00:00:00+00:00,Poland,901.0,890.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-25 00:00:00+00:00,Poland,1051.0,1030.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-26 00:00:00+00:00,Poland,1221.0,1198.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-27 00:00:00+00:00,Poland,1389.0,1366.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-28 00:00:00+00:00,Poland,1638.0,1613.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-29 00:00:00+00:00,Poland,1862.0,1833.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-30 00:00:00+00:00,Poland,2055.0,2017.0,31.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-03-31 00:00:00+00:00,Poland,2311.0,2271.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-01 00:00:00+00:00,Poland,2554.0,2464.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-02 00:00:00+00:00,Poland,2946.0,2833.0,57.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-03 00:00:00+00:00,Poland,3383.0,3256.0,71.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-04 00:00:00+00:00,Poland,3627.0,3432.0,79.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-05 00:00:00+00:00,Poland,4102.0,3874.0,94.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-06 00:00:00+00:00,Poland,4413.0,4144.0,107.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-07 00:00:00+00:00,Poland,4848.0,4528.0,129.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-08 00:00:00+00:00,Poland,5205.0,4824.0,159.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +PL,2020-04-09 00:00:00+00:00,Poland,5575.0,5117.0,174.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-10 00:00:00+00:00,Poland,5955.0,5456.0,181.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-11 00:00:00+00:00,Poland,6356.0,5773.0,208.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-12 00:00:00+00:00,Poland,6674.0,6003.0,232.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-13 00:00:00+00:00,Poland,6934.0,6202.0,245.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-14 00:00:00+00:00,Poland,7202.0,6321.0,263.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-15 00:00:00+00:00,Poland,7582.0,6628.0,286.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-16 00:00:00+00:00,Poland,7918.0,6830.0,314.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-17 00:00:00+00:00,Poland,8379.0,7181.0,332.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-18 00:00:00+00:00,Poland,8742.0,7414.0,347.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-19 00:00:00+00:00,Poland,9287.0,7887.0,360.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-20 00:00:00+00:00,Poland,9593.0,8080.0,380.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-21 00:00:00+00:00,Poland,9856.0,8158.0,401.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-22 00:00:00+00:00,Poland,10169.0,8230.0,426.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-23 00:00:00+00:00,Poland,10511.0,8317.0,454.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-24 00:00:00+00:00,Poland,10892.0,8454.0,494.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-25 00:00:00+00:00,Poland,11273.0,8623.0,524.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-26 00:00:00+00:00,Poland,11617.0,8817.0,535.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-27 00:00:00+00:00,Poland,11902.0,8874.0,562.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-28 00:00:00+00:00,Poland,12218.0,8967.0,596.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-29 00:00:00+00:00,Poland,12640.0,8991.0,624.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-04-30 00:00:00+00:00,Poland,12877.0,8997.0,644.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-01 00:00:00+00:00,Poland,13105.0,8963.0,651.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-02 00:00:00+00:00,Poland,13375.0,8949.0,664.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-03 00:00:00+00:00,Poland,13693.0,9070.0,678.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-04 00:00:00+00:00,Poland,14006.0,9213.0,698.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-05 00:00:00+00:00,Poland,14431.0,9435.0,716.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-06 00:00:00+00:00,Poland,14740.0,9352.0,733.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-07 00:00:00+00:00,Poland,15047.0,9430.0,755.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-08 00:00:00+00:00,Poland,15366.0,9406.0,776.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-09 00:00:00+00:00,Poland,15651.0,9429.0,785.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-10 00:00:00+00:00,Poland,15996.0,9498.0,800.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-11 00:00:00+00:00,Poland,16326.0,9699.0,811.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-12 00:00:00+00:00,Poland,16921.0,9951.0,839.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-13 00:00:00+00:00,Poland,17204.0,9933.0,861.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-14 00:00:00+00:00,Poland,17615.0,10036.0,883.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-15 00:00:00+00:00,Poland,18016.0,10191.0,907.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-16 00:00:00+00:00,Poland,18257.0,10167.0,915.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-17 00:00:00+00:00,Poland,18529.0,10153.0,925.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-18 00:00:00+00:00,Poland,18885.0,10321.0,936.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-19 00:00:00+00:00,Poland,19268.0,10417.0,948.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-20 00:00:00+00:00,Poland,19739.0,10594.0,962.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-21 00:00:00+00:00,Poland,20143.0,10719.0,972.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-22 00:00:00+00:00,Poland,20619.0,10906.0,982.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-23 00:00:00+00:00,Poland,20931.0,10961.0,993.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-24 00:00:00+00:00,Poland,21326.0,11136.0,996.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-25 00:00:00+00:00,Poland,21631.0,11348.0,1007.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-26 00:00:00+00:00,Poland,22074.0,11030.0,1024.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-27 00:00:00+00:00,Poland,22473.0,11115.0,1028.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-28 00:00:00+00:00,Poland,22825.0,11227.0,1038.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-29 00:00:00+00:00,Poland,23155.0,11412.0,1051.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PL,2020-05-30 00:00:00+00:00,Poland,23571.0,11494.0,1061.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-01-22 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +PT,2020-01-23 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +PT,2020-01-24 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +PT,2020-01-25 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +PT,2020-01-26 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-01-27 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-01-28 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-01-29 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-01-30 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-01-31 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-01 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-02 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-03 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-04 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-05 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-06 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-07 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-08 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-09 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-10 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-11 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-12 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-13 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-14 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-15 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-16 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-17 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-18 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-19 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-20 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-21 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-22 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-23 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-24 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-25 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-26 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-27 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-28 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-02-29 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-01 00:00:00+00:00,Portugal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-02 00:00:00+00:00,Portugal,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-03 00:00:00+00:00,Portugal,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-04 00:00:00+00:00,Portugal,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-05 00:00:00+00:00,Portugal,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-06 00:00:00+00:00,Portugal,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-07 00:00:00+00:00,Portugal,20.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-08 00:00:00+00:00,Portugal,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-09 00:00:00+00:00,Portugal,30.0,30.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +PT,2020-03-10 00:00:00+00:00,Portugal,41.0,41.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-11 00:00:00+00:00,Portugal,59.0,59.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-12 00:00:00+00:00,Portugal,59.0,59.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-13 00:00:00+00:00,Portugal,112.0,111.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-14 00:00:00+00:00,Portugal,169.0,167.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-15 00:00:00+00:00,Portugal,245.0,243.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-16 00:00:00+00:00,Portugal,331.0,328.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-17 00:00:00+00:00,Portugal,448.0,444.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-18 00:00:00+00:00,Portugal,448.0,443.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +PT,2020-03-19 00:00:00+00:00,Portugal,785.0,779.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-20 00:00:00+00:00,Portugal,1020.0,1009.0,6.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-21 00:00:00+00:00,Portugal,1280.0,1263.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-22 00:00:00+00:00,Portugal,1600.0,1581.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-23 00:00:00+00:00,Portugal,2060.0,2032.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-24 00:00:00+00:00,Portugal,2362.0,2307.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-25 00:00:00+00:00,Portugal,2995.0,2930.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-26 00:00:00+00:00,Portugal,3544.0,3441.0,60.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-27 00:00:00+00:00,Portugal,4268.0,4149.0,76.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-28 00:00:00+00:00,Portugal,5170.0,5027.0,100.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-29 00:00:00+00:00,Portugal,5962.0,5800.0,119.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-30 00:00:00+00:00,Portugal,6408.0,6225.0,140.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-03-31 00:00:00+00:00,Portugal,7443.0,7240.0,160.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-01 00:00:00+00:00,Portugal,8251.0,8021.0,187.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-02 00:00:00+00:00,Portugal,9034.0,8757.0,209.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-03 00:00:00+00:00,Portugal,9886.0,9572.0,246.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-04 00:00:00+00:00,Portugal,10524.0,10183.0,266.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-05 00:00:00+00:00,Portugal,11278.0,10908.0,295.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-06 00:00:00+00:00,Portugal,11730.0,11279.0,311.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-07 00:00:00+00:00,Portugal,12442.0,11913.0,345.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-08 00:00:00+00:00,Portugal,13141.0,12565.0,380.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-09 00:00:00+00:00,Portugal,13956.0,13342.0,409.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-10 00:00:00+00:00,Portugal,15472.0,14804.0,435.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-11 00:00:00+00:00,Portugal,15987.0,15251.0,470.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-12 00:00:00+00:00,Portugal,16585.0,15804.0,504.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-13 00:00:00+00:00,Portugal,16934.0,16122.0,535.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-14 00:00:00+00:00,Portugal,17448.0,16534.0,567.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-15 00:00:00+00:00,Portugal,18091.0,17109.0,599.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-16 00:00:00+00:00,Portugal,18841.0,17719.0,629.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-17 00:00:00+00:00,Portugal,19022.0,17846.0,657.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-18 00:00:00+00:00,Portugal,19685.0,18388.0,687.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-19 00:00:00+00:00,Portugal,20206.0,18882.0,714.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-20 00:00:00+00:00,Portugal,20863.0,19518.0,735.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-21 00:00:00+00:00,Portugal,21379.0,19700.0,762.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-22 00:00:00+00:00,Portugal,21982.0,20054.0,785.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-23 00:00:00+00:00,Portugal,22353.0,20332.0,820.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-24 00:00:00+00:00,Portugal,22797.0,20715.0,854.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-25 00:00:00+00:00,Portugal,23392.0,21235.0,880.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-26 00:00:00+00:00,Portugal,23864.0,21632.0,903.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-27 00:00:00+00:00,Portugal,24027.0,21742.0,928.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-28 00:00:00+00:00,Portugal,24322.0,21985.0,948.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-29 00:00:00+00:00,Portugal,24505.0,22062.0,973.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-04-30 00:00:00+00:00,Portugal,25045.0,22537.0,989.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-01 00:00:00+00:00,Portugal,25351.0,22697.0,1007.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-02 00:00:00+00:00,Portugal,25190.0,22496.0,1023.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-03 00:00:00+00:00,Portugal,25282.0,22550.0,1043.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-04 00:00:00+00:00,Portugal,25524.0,22749.0,1063.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-05 00:00:00+00:00,Portugal,25702.0,22885.0,1074.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-06 00:00:00+00:00,Portugal,26182.0,23017.0,1089.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-07 00:00:00+00:00,Portugal,26715.0,23352.0,1105.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-08 00:00:00+00:00,Portugal,27268.0,23732.0,1114.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-09 00:00:00+00:00,Portugal,27406.0,23781.0,1126.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-10 00:00:00+00:00,Portugal,27581.0,23897.0,1135.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-11 00:00:00+00:00,Portugal,27679.0,23986.0,1144.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-12 00:00:00+00:00,Portugal,27913.0,23737.0,1163.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-13 00:00:00+00:00,Portugal,28132.0,23775.0,1175.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-14 00:00:00+00:00,Portugal,28319.0,23937.0,1184.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-15 00:00:00+00:00,Portugal,28583.0,24065.0,1190.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-16 00:00:00+00:00,Portugal,28810.0,23785.0,1203.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-17 00:00:00+00:00,Portugal,29036.0,23182.0,1218.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-18 00:00:00+00:00,Portugal,29209.0,21548.0,1231.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-19 00:00:00+00:00,Portugal,29432.0,21754.0,1247.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-20 00:00:00+00:00,Portugal,29660.0,21945.0,1263.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-21 00:00:00+00:00,Portugal,29912.0,22183.0,1277.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-22 00:00:00+00:00,Portugal,30200.0,21321.0,1289.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-23 00:00:00+00:00,Portugal,30471.0,21464.0,1302.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-24 00:00:00+00:00,Portugal,30623.0,11758.0,1316.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-25 00:00:00+00:00,Portugal,30788.0,11636.0,1330.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-26 00:00:00+00:00,Portugal,31007.0,11569.0,1342.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-27 00:00:00+00:00,Portugal,31292.0,11587.0,1356.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-28 00:00:00+00:00,Portugal,31596.0,11590.0,1369.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-29 00:00:00+00:00,Portugal,31946.0,11652.0,1383.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +PT,2020-05-30 00:00:00+00:00,Portugal,32203.0,11621.0,1396.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RO,2020-01-22 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +RO,2020-01-23 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +RO,2020-01-24 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +RO,2020-01-25 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +RO,2020-01-26 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +RO,2020-01-27 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-01-28 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-01-29 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-01-30 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-01-31 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-01 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-02 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-03 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-04 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-05 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-06 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-07 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-08 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-09 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-10 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-11 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-12 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-13 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-14 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-15 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-16 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-17 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-18 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-19 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-20 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-21 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-22 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-23 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-24 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RO,2020-02-25 00:00:00+00:00,Romania,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-02-26 00:00:00+00:00,Romania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-02-27 00:00:00+00:00,Romania,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-02-28 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-02-29 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-01 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-02 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-03 00:00:00+00:00,Romania,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-04 00:00:00+00:00,Romania,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-05 00:00:00+00:00,Romania,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-06 00:00:00+00:00,Romania,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-07 00:00:00+00:00,Romania,9.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-08 00:00:00+00:00,Romania,15.0,12.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RO,2020-03-09 00:00:00+00:00,Romania,15.0,12.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-10 00:00:00+00:00,Romania,25.0,22.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-11 00:00:00+00:00,Romania,45.0,39.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-12 00:00:00+00:00,Romania,49.0,43.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-13 00:00:00+00:00,Romania,89.0,82.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-14 00:00:00+00:00,Romania,123.0,114.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-15 00:00:00+00:00,Romania,131.0,122.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-16 00:00:00+00:00,Romania,158.0,149.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-17 00:00:00+00:00,Romania,184.0,168.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-18 00:00:00+00:00,Romania,260.0,241.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-19 00:00:00+00:00,Romania,277.0,252.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-20 00:00:00+00:00,Romania,308.0,283.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-21 00:00:00+00:00,Romania,367.0,315.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-22 00:00:00+00:00,Romania,433.0,366.0,3.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-23 00:00:00+00:00,Romania,576.0,505.0,7.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-24 00:00:00+00:00,Romania,794.0,704.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-25 00:00:00+00:00,Romania,906.0,803.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-26 00:00:00+00:00,Romania,1029.0,912.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-27 00:00:00+00:00,Romania,1292.0,1151.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-28 00:00:00+00:00,Romania,1452.0,1276.0,37.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-29 00:00:00+00:00,Romania,1815.0,1566.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-03-30 00:00:00+00:00,Romania,2109.0,1835.0,65.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-03-31 00:00:00+00:00,Romania,2245.0,1943.0,82.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-01 00:00:00+00:00,Romania,2460.0,2116.0,92.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-02 00:00:00+00:00,Romania,2738.0,2356.0,115.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-03 00:00:00+00:00,Romania,3183.0,2767.0,133.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-04 00:00:00+00:00,Romania,3613.0,3138.0,146.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-05 00:00:00+00:00,Romania,3864.0,3339.0,151.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-06 00:00:00+00:00,Romania,4057.0,3475.0,176.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-07 00:00:00+00:00,Romania,4417.0,3760.0,197.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-08 00:00:00+00:00,Romania,4761.0,4013.0,220.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-09 00:00:00+00:00,Romania,5202.0,4307.0,248.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-10 00:00:00+00:00,Romania,5467.0,4468.0,270.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-11 00:00:00+00:00,Romania,5990.0,4941.0,291.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-12 00:00:00+00:00,Romania,6300.0,5132.0,316.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-13 00:00:00+00:00,Romania,6633.0,5388.0,331.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-14 00:00:00+00:00,Romania,6879.0,5477.0,351.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-15 00:00:00+00:00,Romania,7216.0,5627.0,372.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-16 00:00:00+00:00,Romania,7707.0,5958.0,392.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-17 00:00:00+00:00,Romania,8067.0,6148.0,411.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-18 00:00:00+00:00,Romania,8418.0,6267.0,421.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-19 00:00:00+00:00,Romania,8746.0,6403.0,451.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-20 00:00:00+00:00,Romania,8936.0,6441.0,478.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-21 00:00:00+00:00,Romania,9242.0,6591.0,498.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-22 00:00:00+00:00,Romania,9710.0,6780.0,524.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-23 00:00:00+00:00,Romania,10096.0,7073.0,545.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-24 00:00:00+00:00,Romania,10417.0,7033.0,567.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-25 00:00:00+00:00,Romania,10635.0,7144.0,601.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-26 00:00:00+00:00,Romania,11036.0,7363.0,619.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-27 00:00:00+00:00,Romania,11339.0,7557.0,641.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-28 00:00:00+00:00,Romania,11616.0,7549.0,663.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-29 00:00:00+00:00,Romania,11978.0,7716.0,693.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-04-30 00:00:00+00:00,Romania,12240.0,7506.0,717.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-01 00:00:00+00:00,Romania,12567.0,7495.0,744.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-02 00:00:00+00:00,Romania,12732.0,7414.0,771.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-03 00:00:00+00:00,Romania,13163.0,7504.0,790.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-04 00:00:00+00:00,Romania,13512.0,7425.0,818.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-05 00:00:00+00:00,Romania,13837.0,7542.0,841.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-06 00:00:00+00:00,Romania,14107.0,7455.0,864.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-07 00:00:00+00:00,Romania,14499.0,7467.0,888.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-08 00:00:00+00:00,Romania,14811.0,7465.0,923.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-09 00:00:00+00:00,Romania,15131.0,7280.0,939.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-10 00:00:00+00:00,Romania,15362.0,7350.0,961.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-11 00:00:00+00:00,Romania,15588.0,7361.0,982.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-12 00:00:00+00:00,Romania,15778.0,7091.0,1002.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-13 00:00:00+00:00,Romania,16002.0,7005.0,1036.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-14 00:00:00+00:00,Romania,16247.0,6141.0,1053.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0 +RO,2020-05-15 00:00:00+00:00,Romania,16437.0,5997.0,1070.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-16 00:00:00+00:00,Romania,16704.0,6036.0,1094.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-17 00:00:00+00:00,Romania,16871.0,5874.0,1107.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-18 00:00:00+00:00,Romania,17036.0,5986.0,1120.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-19 00:00:00+00:00,Romania,17191.0,5888.0,1137.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-20 00:00:00+00:00,Romania,17387.0,5884.0,1147.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-21 00:00:00+00:00,Romania,17585.0,5848.0,1156.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-22 00:00:00+00:00,Romania,17712.0,5769.0,1166.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-23 00:00:00+00:00,Romania,17857.0,5494.0,1176.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-24 00:00:00+00:00,Romania,18070.0,5486.0,1185.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-25 00:00:00+00:00,Romania,18283.0,5448.0,1205.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-26 00:00:00+00:00,Romania,18429.0,5339.0,1216.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-27 00:00:00+00:00,Romania,18594.0,5205.0,1227.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-28 00:00:00+00:00,Romania,18791.0,4927.0,1235.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-29 00:00:00+00:00,Romania,18982.0,4905.0,1248.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RO,2020-05-30 00:00:00+00:00,Romania,19133.0,4828.0,1259.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RS,2020-01-22 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-23 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-24 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-25 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-26 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-27 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-28 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-29 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-30 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-01-31 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-01 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-02 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-03 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-04 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-05 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-06 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-07 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-08 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-09 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-10 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-11 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-12 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-13 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-14 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-15 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-16 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-17 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-18 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-19 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-20 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-21 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-22 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-23 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-24 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +RS,2020-02-25 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-02-26 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-02-27 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-02-28 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-02-29 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-01 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-02 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-03 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-04 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-05 00:00:00+00:00,Serbia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-06 00:00:00+00:00,Serbia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-07 00:00:00+00:00,Serbia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-08 00:00:00+00:00,Serbia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-09 00:00:00+00:00,Serbia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-10 00:00:00+00:00,Serbia,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +RS,2020-03-11 00:00:00+00:00,Serbia,12.0,12.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-12 00:00:00+00:00,Serbia,19.0,19.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-13 00:00:00+00:00,Serbia,35.0,35.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-14 00:00:00+00:00,Serbia,46.0,46.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-15 00:00:00+00:00,Serbia,48.0,48.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-16 00:00:00+00:00,Serbia,55.0,54.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-17 00:00:00+00:00,Serbia,65.0,64.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +RS,2020-03-18 00:00:00+00:00,Serbia,83.0,82.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RS,2020-03-19 00:00:00+00:00,Serbia,103.0,102.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RS,2020-03-20 00:00:00+00:00,Serbia,135.0,133.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +RS,2020-03-21 00:00:00+00:00,Serbia,171.0,169.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-22 00:00:00+00:00,Serbia,222.0,219.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-23 00:00:00+00:00,Serbia,249.0,245.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-24 00:00:00+00:00,Serbia,303.0,285.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-25 00:00:00+00:00,Serbia,384.0,365.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-26 00:00:00+00:00,Serbia,384.0,383.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-27 00:00:00+00:00,Serbia,457.0,456.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-28 00:00:00+00:00,Serbia,659.0,649.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-29 00:00:00+00:00,Serbia,741.0,728.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-30 00:00:00+00:00,Serbia,785.0,769.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-03-31 00:00:00+00:00,Serbia,900.0,884.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-01 00:00:00+00:00,Serbia,1060.0,1032.0,28.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-02 00:00:00+00:00,Serbia,1171.0,1140.0,31.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-03 00:00:00+00:00,Serbia,1476.0,1437.0,39.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-04 00:00:00+00:00,Serbia,1624.0,1580.0,44.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-05 00:00:00+00:00,Serbia,1908.0,1857.0,51.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-06 00:00:00+00:00,Serbia,2200.0,2142.0,58.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-07 00:00:00+00:00,Serbia,2447.0,2386.0,61.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-08 00:00:00+00:00,Serbia,2666.0,2601.0,65.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-09 00:00:00+00:00,Serbia,2867.0,2801.0,66.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-10 00:00:00+00:00,Serbia,3105.0,3034.0,71.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-11 00:00:00+00:00,Serbia,3380.0,3306.0,74.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-12 00:00:00+00:00,Serbia,3630.0,3550.0,80.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-13 00:00:00+00:00,Serbia,4054.0,3969.0,85.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-14 00:00:00+00:00,Serbia,4465.0,4371.0,94.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-15 00:00:00+00:00,Serbia,4873.0,4774.0,99.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-16 00:00:00+00:00,Serbia,5318.0,5215.0,103.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-17 00:00:00+00:00,Serbia,5690.0,5046.0,110.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-18 00:00:00+00:00,Serbia,5994.0,5240.0,117.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-19 00:00:00+00:00,Serbia,6318.0,5443.0,122.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-20 00:00:00+00:00,Serbia,6630.0,5635.0,125.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-21 00:00:00+00:00,Serbia,6890.0,5783.0,130.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-22 00:00:00+00:00,Serbia,7144.0,5985.0,134.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-23 00:00:00+00:00,Serbia,7276.0,6070.0,139.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-24 00:00:00+00:00,Serbia,7483.0,6245.0,144.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-25 00:00:00+00:00,Serbia,7779.0,6476.0,151.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-26 00:00:00+00:00,Serbia,8042.0,6704.0,156.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-04-27 00:00:00+00:00,Serbia,8275.0,6904.0,162.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-04-28 00:00:00+00:00,Serbia,8497.0,7069.0,168.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-04-29 00:00:00+00:00,Serbia,8724.0,7259.0,173.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-04-30 00:00:00+00:00,Serbia,9009.0,7487.0,179.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-05-01 00:00:00+00:00,Serbia,9009.0,7487.0,179.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-05-02 00:00:00+00:00,Serbia,9362.0,7747.0,189.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-05-03 00:00:00+00:00,Serbia,9464.0,7720.0,193.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-05-04 00:00:00+00:00,Serbia,9557.0,7786.0,197.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +RS,2020-05-05 00:00:00+00:00,Serbia,9677.0,7754.0,200.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-06 00:00:00+00:00,Serbia,9791.0,7617.0,203.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-07 00:00:00+00:00,Serbia,9848.0,7482.0,206.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-08 00:00:00+00:00,Serbia,9943.0,7281.0,209.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-09 00:00:00+00:00,Serbia,10032.0,7085.0,215.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-10 00:00:00+00:00,Serbia,10032.0,7085.0,215.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-11 00:00:00+00:00,Serbia,10176.0,6668.0,218.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-12 00:00:00+00:00,Serbia,10243.0,6423.0,220.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-13 00:00:00+00:00,Serbia,10295.0,6249.0,222.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-14 00:00:00+00:00,Serbia,10374.0,6066.0,224.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-15 00:00:00+00:00,Serbia,10438.0,5912.0,225.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-16 00:00:00+00:00,Serbia,10496.0,5789.0,228.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +RS,2020-05-17 00:00:00+00:00,Serbia,10610.0,5667.0,230.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +RS,2020-05-18 00:00:00+00:00,Serbia,10699.0,5669.0,231.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +RS,2020-05-19 00:00:00+00:00,Serbia,10733.0,5595.0,234.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +RS,2020-05-20 00:00:00+00:00,Serbia,10833.0,5531.0,235.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +RS,2020-05-21 00:00:00+00:00,Serbia,10919.0,5312.0,237.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0 +RS,2020-05-22 00:00:00+00:00,Serbia,11024.0,5246.0,237.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-23 00:00:00+00:00,Serbia,11092.0,5155.0,238.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-24 00:00:00+00:00,Serbia,11159.0,5064.0,238.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-25 00:00:00+00:00,Serbia,11193.0,5034.0,239.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-26 00:00:00+00:00,Serbia,11227.0,4921.0,239.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-27 00:00:00+00:00,Serbia,11275.0,4758.0,240.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-28 00:00:00+00:00,Serbia,11300.0,4621.0,241.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-29 00:00:00+00:00,Serbia,11354.0,4588.0,242.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +RS,2020-05-30 00:00:00+00:00,Serbia,11381.0,4533.0,242.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0 +SG,2020-01-22 00:00:00+00:00,Singapore,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +SG,2020-01-23 00:00:00+00:00,Singapore,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-24 00:00:00+00:00,Singapore,3.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-25 00:00:00+00:00,Singapore,3.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-26 00:00:00+00:00,Singapore,4.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-27 00:00:00+00:00,Singapore,5.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-28 00:00:00+00:00,Singapore,7.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-29 00:00:00+00:00,Singapore,7.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-30 00:00:00+00:00,Singapore,10.0,10.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-01-31 00:00:00+00:00,Singapore,13.0,13.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-01 00:00:00+00:00,Singapore,16.0,16.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-02 00:00:00+00:00,Singapore,18.0,18.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-03 00:00:00+00:00,Singapore,18.0,18.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-04 00:00:00+00:00,Singapore,24.0,24.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-05 00:00:00+00:00,Singapore,28.0,28.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-06 00:00:00+00:00,Singapore,28.0,28.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-07 00:00:00+00:00,Singapore,30.0,30.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-08 00:00:00+00:00,Singapore,33.0,31.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-09 00:00:00+00:00,Singapore,40.0,38.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-10 00:00:00+00:00,Singapore,45.0,43.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-11 00:00:00+00:00,Singapore,47.0,38.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-12 00:00:00+00:00,Singapore,50.0,35.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-13 00:00:00+00:00,Singapore,58.0,43.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-14 00:00:00+00:00,Singapore,67.0,50.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-15 00:00:00+00:00,Singapore,72.0,54.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-16 00:00:00+00:00,Singapore,75.0,57.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-17 00:00:00+00:00,Singapore,77.0,53.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-18 00:00:00+00:00,Singapore,81.0,52.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-19 00:00:00+00:00,Singapore,84.0,50.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-20 00:00:00+00:00,Singapore,84.0,50.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-21 00:00:00+00:00,Singapore,85.0,48.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-22 00:00:00+00:00,Singapore,85.0,48.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-23 00:00:00+00:00,Singapore,89.0,38.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-24 00:00:00+00:00,Singapore,89.0,38.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-25 00:00:00+00:00,Singapore,91.0,38.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-26 00:00:00+00:00,Singapore,93.0,31.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-27 00:00:00+00:00,Singapore,93.0,31.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-28 00:00:00+00:00,Singapore,93.0,31.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-02-29 00:00:00+00:00,Singapore,102.0,30.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-01 00:00:00+00:00,Singapore,106.0,34.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-02 00:00:00+00:00,Singapore,108.0,30.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-03 00:00:00+00:00,Singapore,110.0,32.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-04 00:00:00+00:00,Singapore,110.0,32.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-05 00:00:00+00:00,Singapore,117.0,39.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-06 00:00:00+00:00,Singapore,130.0,52.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-07 00:00:00+00:00,Singapore,138.0,60.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-08 00:00:00+00:00,Singapore,150.0,72.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-09 00:00:00+00:00,Singapore,150.0,72.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-10 00:00:00+00:00,Singapore,160.0,82.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-11 00:00:00+00:00,Singapore,178.0,82.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-12 00:00:00+00:00,Singapore,178.0,82.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-13 00:00:00+00:00,Singapore,200.0,103.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-14 00:00:00+00:00,Singapore,212.0,107.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-15 00:00:00+00:00,Singapore,226.0,121.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-16 00:00:00+00:00,Singapore,243.0,134.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-17 00:00:00+00:00,Singapore,266.0,152.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-18 00:00:00+00:00,Singapore,313.0,199.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-19 00:00:00+00:00,Singapore,345.0,231.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-20 00:00:00+00:00,Singapore,385.0,261.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-21 00:00:00+00:00,Singapore,432.0,290.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-22 00:00:00+00:00,Singapore,455.0,309.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-23 00:00:00+00:00,Singapore,509.0,363.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-24 00:00:00+00:00,Singapore,558.0,400.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-25 00:00:00+00:00,Singapore,631.0,469.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-26 00:00:00+00:00,Singapore,683.0,509.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-27 00:00:00+00:00,Singapore,732.0,547.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-28 00:00:00+00:00,Singapore,802.0,602.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-29 00:00:00+00:00,Singapore,844.0,629.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-30 00:00:00+00:00,Singapore,879.0,648.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-03-31 00:00:00+00:00,Singapore,926.0,683.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-04-01 00:00:00+00:00,Singapore,1000.0,752.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-04-02 00:00:00+00:00,Singapore,1049.0,779.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SG,2020-04-03 00:00:00+00:00,Singapore,1114.0,827.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-04 00:00:00+00:00,Singapore,1189.0,886.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-05 00:00:00+00:00,Singapore,1309.0,983.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-06 00:00:00+00:00,Singapore,1375.0,1025.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-07 00:00:00+00:00,Singapore,1481.0,1098.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-08 00:00:00+00:00,Singapore,1623.0,1211.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-09 00:00:00+00:00,Singapore,1910.0,1444.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +SG,2020-04-10 00:00:00+00:00,Singapore,2108.0,1609.0,7.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 +SG,2020-04-11 00:00:00+00:00,Singapore,2299.0,1763.0,8.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 +SG,2020-04-12 00:00:00+00:00,Singapore,2532.0,1964.0,8.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 +SG,2020-04-13 00:00:00+00:00,Singapore,2918.0,2323.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0 +SG,2020-04-14 00:00:00+00:00,Singapore,3252.0,2631.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-15 00:00:00+00:00,Singapore,3699.0,3037.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-16 00:00:00+00:00,Singapore,4427.0,3734.0,10.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-17 00:00:00+00:00,Singapore,5050.0,4331.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-18 00:00:00+00:00,Singapore,5992.0,5241.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-19 00:00:00+00:00,Singapore,6588.0,5809.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-20 00:00:00+00:00,Singapore,8014.0,7202.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-21 00:00:00+00:00,Singapore,9125.0,8275.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-22 00:00:00+00:00,Singapore,10141.0,9233.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-23 00:00:00+00:00,Singapore,11178.0,10242.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-24 00:00:00+00:00,Singapore,12075.0,11107.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-25 00:00:00+00:00,Singapore,12693.0,11679.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-26 00:00:00+00:00,Singapore,13624.0,12552.0,12.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-27 00:00:00+00:00,Singapore,14423.0,13314.0,14.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-28 00:00:00+00:00,Singapore,14951.0,13809.0,14.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-29 00:00:00+00:00,Singapore,15641.0,14439.0,14.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-04-30 00:00:00+00:00,Singapore,16169.0,14910.0,15.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-01 00:00:00+00:00,Singapore,17101.0,15817.0,16.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-02 00:00:00+00:00,Singapore,17548.0,16184.0,17.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-03 00:00:00+00:00,Singapore,18205.0,16779.0,18.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-04 00:00:00+00:00,Singapore,18778.0,17303.0,18.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-05 00:00:00+00:00,Singapore,19410.0,17873.0,18.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-06 00:00:00+00:00,Singapore,20198.0,18544.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-07 00:00:00+00:00,Singapore,20939.0,19207.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-08 00:00:00+00:00,Singapore,21707.0,19647.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-09 00:00:00+00:00,Singapore,22460.0,20144.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-10 00:00:00+00:00,Singapore,23336.0,20595.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-11 00:00:00+00:00,Singapore,23822.0,20576.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-12 00:00:00+00:00,Singapore,24671.0,20799.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-13 00:00:00+00:00,Singapore,25346.0,20516.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-14 00:00:00+00:00,Singapore,26098.0,20104.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-15 00:00:00+00:00,Singapore,26891.0,19622.0,21.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-16 00:00:00+00:00,Singapore,27356.0,18992.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-17 00:00:00+00:00,Singapore,28038.0,18676.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-18 00:00:00+00:00,Singapore,28343.0,18486.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-19 00:00:00+00:00,Singapore,28794.0,18407.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-20 00:00:00+00:00,Singapore,29364.0,18135.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-21 00:00:00+00:00,Singapore,29812.0,17672.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-22 00:00:00+00:00,Singapore,30426.0,17408.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-23 00:00:00+00:00,Singapore,31068.0,17163.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-24 00:00:00+00:00,Singapore,31616.0,16717.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-25 00:00:00+00:00,Singapore,31960.0,16199.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-26 00:00:00+00:00,Singapore,32343.0,15876.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-27 00:00:00+00:00,Singapore,32876.0,15577.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-28 00:00:00+00:00,Singapore,33249.0,14932.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-29 00:00:00+00:00,Singapore,33860.0,14206.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SG,2020-05-30 00:00:00+00:00,Singapore,34366.0,13616.0,23.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0 +SK,2020-01-22 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-23 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-24 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-25 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-26 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-27 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-28 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-29 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-30 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-01-31 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-01 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-02 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-03 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-04 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-05 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-06 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-07 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-08 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-09 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-10 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-11 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-12 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-13 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-14 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-15 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-16 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-17 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-18 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-19 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-20 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-21 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-22 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-23 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-24 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-25 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-26 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-27 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-28 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-02-29 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-03-01 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-03-02 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-03-03 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SK,2020-03-04 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SK,2020-03-05 00:00:00+00:00,Slovakia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SK,2020-03-06 00:00:00+00:00,Slovakia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SK,2020-03-07 00:00:00+00:00,Slovakia,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SK,2020-03-08 00:00:00+00:00,Slovakia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SK,2020-03-09 00:00:00+00:00,Slovakia,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +SK,2020-03-10 00:00:00+00:00,Slovakia,7.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +SK,2020-03-11 00:00:00+00:00,Slovakia,10.0,10.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +SK,2020-03-12 00:00:00+00:00,Slovakia,16.0,16.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +SK,2020-03-13 00:00:00+00:00,Slovakia,32.0,32.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SK,2020-03-14 00:00:00+00:00,Slovakia,44.0,44.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +SK,2020-03-15 00:00:00+00:00,Slovakia,54.0,54.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0 +SK,2020-03-16 00:00:00+00:00,Slovakia,63.0,63.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-17 00:00:00+00:00,Slovakia,72.0,72.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-18 00:00:00+00:00,Slovakia,105.0,104.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-19 00:00:00+00:00,Slovakia,123.0,122.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-20 00:00:00+00:00,Slovakia,137.0,136.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-21 00:00:00+00:00,Slovakia,178.0,177.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-22 00:00:00+00:00,Slovakia,185.0,178.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-23 00:00:00+00:00,Slovakia,186.0,179.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-24 00:00:00+00:00,Slovakia,204.0,197.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-25 00:00:00+00:00,Slovakia,216.0,209.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-26 00:00:00+00:00,Slovakia,226.0,224.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-27 00:00:00+00:00,Slovakia,269.0,267.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-28 00:00:00+00:00,Slovakia,292.0,290.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-29 00:00:00+00:00,Slovakia,314.0,312.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-30 00:00:00+00:00,Slovakia,336.0,329.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-03-31 00:00:00+00:00,Slovakia,363.0,360.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-01 00:00:00+00:00,Slovakia,400.0,396.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-02 00:00:00+00:00,Slovakia,426.0,420.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-03 00:00:00+00:00,Slovakia,450.0,439.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-04 00:00:00+00:00,Slovakia,471.0,460.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-05 00:00:00+00:00,Slovakia,485.0,474.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-06 00:00:00+00:00,Slovakia,534.0,524.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-07 00:00:00+00:00,Slovakia,581.0,566.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-08 00:00:00+00:00,Slovakia,682.0,664.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-09 00:00:00+00:00,Slovakia,701.0,676.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-10 00:00:00+00:00,Slovakia,715.0,690.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-11 00:00:00+00:00,Slovakia,728.0,703.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-12 00:00:00+00:00,Slovakia,742.0,717.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-13 00:00:00+00:00,Slovakia,769.0,660.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-14 00:00:00+00:00,Slovakia,835.0,720.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-15 00:00:00+00:00,Slovakia,863.0,706.0,6.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-16 00:00:00+00:00,Slovakia,977.0,802.0,8.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-17 00:00:00+00:00,Slovakia,1049.0,865.0,9.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-18 00:00:00+00:00,Slovakia,1089.0,865.0,11.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-19 00:00:00+00:00,Slovakia,1161.0,920.0,12.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-20 00:00:00+00:00,Slovakia,1173.0,909.0,13.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-21 00:00:00+00:00,Slovakia,1199.0,927.0,14.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-22 00:00:00+00:00,Slovakia,1244.0,946.0,14.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-23 00:00:00+00:00,Slovakia,1325.0,1022.0,15.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-24 00:00:00+00:00,Slovakia,1360.0,988.0,17.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-25 00:00:00+00:00,Slovakia,1373.0,970.0,17.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-26 00:00:00+00:00,Slovakia,1379.0,967.0,18.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-27 00:00:00+00:00,Slovakia,1381.0,960.0,18.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-28 00:00:00+00:00,Slovakia,1384.0,941.0,20.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-29 00:00:00+00:00,Slovakia,1391.0,885.0,22.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-04-30 00:00:00+00:00,Slovakia,1396.0,849.0,23.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-01 00:00:00+00:00,Slovakia,1403.0,822.0,23.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-02 00:00:00+00:00,Slovakia,1407.0,775.0,24.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-03 00:00:00+00:00,Slovakia,1408.0,765.0,24.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-04 00:00:00+00:00,Slovakia,1413.0,745.0,25.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-05 00:00:00+00:00,Slovakia,1421.0,655.0,25.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-06 00:00:00+00:00,Slovakia,1429.0,642.0,25.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-07 00:00:00+00:00,Slovakia,1445.0,613.0,26.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-08 00:00:00+00:00,Slovakia,1455.0,524.0,26.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-09 00:00:00+00:00,Slovakia,1455.0,510.0,26.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-10 00:00:00+00:00,Slovakia,1457.0,490.0,26.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-11 00:00:00+00:00,Slovakia,1457.0,472.0,26.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-12 00:00:00+00:00,Slovakia,1465.0,455.0,27.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-13 00:00:00+00:00,Slovakia,1469.0,382.0,27.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-14 00:00:00+00:00,Slovakia,1477.0,338.0,27.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-15 00:00:00+00:00,Slovakia,1480.0,322.0,27.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-16 00:00:00+00:00,Slovakia,1493.0,314.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-17 00:00:00+00:00,Slovakia,1494.0,303.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-18 00:00:00+00:00,Slovakia,1495.0,282.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-19 00:00:00+00:00,Slovakia,1495.0,275.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-20 00:00:00+00:00,Slovakia,1496.0,237.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-21 00:00:00+00:00,Slovakia,1502.0,229.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-22 00:00:00+00:00,Slovakia,1503.0,219.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-23 00:00:00+00:00,Slovakia,1504.0,196.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-24 00:00:00+00:00,Slovakia,1509.0,180.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-25 00:00:00+00:00,Slovakia,1511.0,176.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-26 00:00:00+00:00,Slovakia,1513.0,163.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-27 00:00:00+00:00,Slovakia,1515.0,160.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-28 00:00:00+00:00,Slovakia,1520.0,160.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-29 00:00:00+00:00,Slovakia,1520.0,154.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SK,2020-05-30 00:00:00+00:00,Slovakia,1521.0,137.0,28.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-01-22 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-23 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-24 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-25 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-26 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-27 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-28 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-29 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-30 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-01-31 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-01 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-02 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-03 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-04 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-05 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-06 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-07 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-08 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-09 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-10 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-11 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-12 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-13 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-14 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-15 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-16 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-17 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-18 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-19 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-20 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-21 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-22 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-23 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-24 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-25 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-26 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-27 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-28 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-02-29 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-03-01 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-03-02 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-03-03 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SI,2020-03-04 00:00:00+00:00,Slovenia,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SI,2020-03-05 00:00:00+00:00,Slovenia,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SI,2020-03-06 00:00:00+00:00,Slovenia,7.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SI,2020-03-07 00:00:00+00:00,Slovenia,7.0,7.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SI,2020-03-08 00:00:00+00:00,Slovenia,16.0,16.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SI,2020-03-09 00:00:00+00:00,Slovenia,16.0,16.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SI,2020-03-10 00:00:00+00:00,Slovenia,31.0,31.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SI,2020-03-11 00:00:00+00:00,Slovenia,57.0,57.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SI,2020-03-12 00:00:00+00:00,Slovenia,89.0,89.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SI,2020-03-13 00:00:00+00:00,Slovenia,141.0,141.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SI,2020-03-14 00:00:00+00:00,Slovenia,181.0,180.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SI,2020-03-15 00:00:00+00:00,Slovenia,219.0,218.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +SI,2020-03-16 00:00:00+00:00,Slovenia,253.0,252.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-17 00:00:00+00:00,Slovenia,275.0,274.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-18 00:00:00+00:00,Slovenia,275.0,274.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-19 00:00:00+00:00,Slovenia,286.0,285.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-20 00:00:00+00:00,Slovenia,341.0,340.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-21 00:00:00+00:00,Slovenia,383.0,382.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-22 00:00:00+00:00,Slovenia,414.0,412.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-23 00:00:00+00:00,Slovenia,442.0,439.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-24 00:00:00+00:00,Slovenia,480.0,476.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-25 00:00:00+00:00,Slovenia,528.0,513.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-26 00:00:00+00:00,Slovenia,562.0,546.0,6.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-27 00:00:00+00:00,Slovenia,632.0,613.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-28 00:00:00+00:00,Slovenia,684.0,665.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-29 00:00:00+00:00,Slovenia,730.0,709.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0 +SI,2020-03-30 00:00:00+00:00,Slovenia,756.0,735.0,11.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-03-31 00:00:00+00:00,Slovenia,802.0,777.0,15.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-01 00:00:00+00:00,Slovenia,841.0,816.0,15.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-02 00:00:00+00:00,Slovenia,897.0,810.0,17.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-03 00:00:00+00:00,Slovenia,934.0,844.0,20.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-04 00:00:00+00:00,Slovenia,977.0,876.0,22.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-05 00:00:00+00:00,Slovenia,997.0,890.0,28.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-06 00:00:00+00:00,Slovenia,1021.0,889.0,30.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-07 00:00:00+00:00,Slovenia,1059.0,921.0,36.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-08 00:00:00+00:00,Slovenia,1091.0,931.0,40.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-09 00:00:00+00:00,Slovenia,1124.0,953.0,43.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-10 00:00:00+00:00,Slovenia,1160.0,978.0,45.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-11 00:00:00+00:00,Slovenia,1188.0,990.0,50.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-12 00:00:00+00:00,Slovenia,1205.0,1002.0,53.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-13 00:00:00+00:00,Slovenia,1212.0,1005.0,55.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-14 00:00:00+00:00,Slovenia,1220.0,1012.0,56.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-15 00:00:00+00:00,Slovenia,1248.0,1022.0,61.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-16 00:00:00+00:00,Slovenia,1268.0,1033.0,61.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-17 00:00:00+00:00,Slovenia,1304.0,1064.0,66.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-18 00:00:00+00:00,Slovenia,1317.0,1057.0,70.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-19 00:00:00+00:00,Slovenia,1330.0,1064.0,74.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-20 00:00:00+00:00,Slovenia,1335.0,1065.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-21 00:00:00+00:00,Slovenia,1344.0,1070.0,77.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-22 00:00:00+00:00,Slovenia,1353.0,1069.0,79.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-23 00:00:00+00:00,Slovenia,1366.0,1076.0,79.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-24 00:00:00+00:00,Slovenia,1373.0,1082.0,80.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-25 00:00:00+00:00,Slovenia,1388.0,1088.0,81.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-26 00:00:00+00:00,Slovenia,1396.0,1093.0,82.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-27 00:00:00+00:00,Slovenia,1402.0,1098.0,83.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-28 00:00:00+00:00,Slovenia,1408.0,1099.0,86.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-29 00:00:00+00:00,Slovenia,1418.0,1099.0,89.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-04-30 00:00:00+00:00,Slovenia,1429.0,1105.0,91.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-01 00:00:00+00:00,Slovenia,1434.0,1109.0,92.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-02 00:00:00+00:00,Slovenia,1439.0,1106.0,94.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-03 00:00:00+00:00,Slovenia,1439.0,1102.0,96.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-04 00:00:00+00:00,Slovenia,1439.0,1101.0,97.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-05 00:00:00+00:00,Slovenia,1445.0,1103.0,98.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-06 00:00:00+00:00,Slovenia,1448.0,1103.0,99.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-07 00:00:00+00:00,Slovenia,1449.0,1103.0,99.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-08 00:00:00+00:00,Slovenia,1450.0,1098.0,100.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-09 00:00:00+00:00,Slovenia,1454.0,1098.0,101.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-10 00:00:00+00:00,Slovenia,1457.0,1099.0,102.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-11 00:00:00+00:00,Slovenia,1460.0,1102.0,102.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-12 00:00:00+00:00,Slovenia,1461.0,1100.0,102.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-13 00:00:00+00:00,Slovenia,1463.0,1100.0,103.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SI,2020-05-14 00:00:00+00:00,Slovenia,1464.0,1094.0,103.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-15 00:00:00+00:00,Slovenia,1465.0,1092.0,103.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-16 00:00:00+00:00,Slovenia,1465.0,1090.0,103.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-17 00:00:00+00:00,Slovenia,1466.0,1089.0,104.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-18 00:00:00+00:00,Slovenia,1466.0,27.0,104.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-19 00:00:00+00:00,Slovenia,1467.0,25.0,104.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-20 00:00:00+00:00,Slovenia,1468.0,23.0,105.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-21 00:00:00+00:00,Slovenia,1468.0,22.0,106.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-22 00:00:00+00:00,Slovenia,1468.0,22.0,106.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-23 00:00:00+00:00,Slovenia,1468.0,22.0,106.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-24 00:00:00+00:00,Slovenia,1468.0,21.0,107.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-25 00:00:00+00:00,Slovenia,1469.0,16.0,107.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-26 00:00:00+00:00,Slovenia,1469.0,15.0,108.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-27 00:00:00+00:00,Slovenia,1471.0,9.0,108.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-28 00:00:00+00:00,Slovenia,1473.0,9.0,108.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-29 00:00:00+00:00,Slovenia,1473.0,8.0,108.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +SI,2020-05-30 00:00:00+00:00,Slovenia,1473.0,8.0,108.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 +ZA,2020-01-22 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ZA,2020-01-23 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-24 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-25 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-26 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-27 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-28 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-29 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-30 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-01-31 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-01 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-02 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-03 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-04 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-05 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-06 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-07 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-08 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-09 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-10 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-11 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-12 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-13 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-14 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-15 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-16 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-17 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-18 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-19 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-20 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-21 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-22 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-23 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-24 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-25 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-26 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-27 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-28 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-02-29 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-03-01 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-03-02 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-03-03 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-03-04 00:00:00+00:00,South Africa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +ZA,2020-03-05 00:00:00+00:00,South Africa,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-06 00:00:00+00:00,South Africa,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-07 00:00:00+00:00,South Africa,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-08 00:00:00+00:00,South Africa,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-09 00:00:00+00:00,South Africa,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-10 00:00:00+00:00,South Africa,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-11 00:00:00+00:00,South Africa,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-12 00:00:00+00:00,South Africa,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-13 00:00:00+00:00,South Africa,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-14 00:00:00+00:00,South Africa,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0 +ZA,2020-03-15 00:00:00+00:00,South Africa,51.0,51.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0 +ZA,2020-03-16 00:00:00+00:00,South Africa,62.0,62.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0 +ZA,2020-03-17 00:00:00+00:00,South Africa,62.0,62.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0 +ZA,2020-03-18 00:00:00+00:00,South Africa,116.0,116.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-19 00:00:00+00:00,South Africa,150.0,150.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-20 00:00:00+00:00,South Africa,202.0,202.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-21 00:00:00+00:00,South Africa,240.0,240.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-22 00:00:00+00:00,South Africa,274.0,274.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-23 00:00:00+00:00,South Africa,402.0,402.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-24 00:00:00+00:00,South Africa,554.0,550.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-25 00:00:00+00:00,South Africa,709.0,697.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +ZA,2020-03-26 00:00:00+00:00,South Africa,927.0,915.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-03-27 00:00:00+00:00,South Africa,1170.0,1138.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-03-28 00:00:00+00:00,South Africa,1187.0,1155.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-03-29 00:00:00+00:00,South Africa,1280.0,1247.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-03-30 00:00:00+00:00,South Africa,1326.0,1292.0,3.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-03-31 00:00:00+00:00,South Africa,1353.0,1317.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-01 00:00:00+00:00,South Africa,1380.0,1325.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-02 00:00:00+00:00,South Africa,1462.0,1407.0,5.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-03 00:00:00+00:00,South Africa,1505.0,1401.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-04 00:00:00+00:00,South Africa,1585.0,1481.0,9.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-05 00:00:00+00:00,South Africa,1655.0,1549.0,11.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-06 00:00:00+00:00,South Africa,1686.0,1579.0,12.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-07 00:00:00+00:00,South Africa,1749.0,1641.0,13.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-08 00:00:00+00:00,South Africa,1845.0,1732.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-09 00:00:00+00:00,South Africa,1934.0,1821.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-10 00:00:00+00:00,South Africa,2003.0,1569.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-11 00:00:00+00:00,South Africa,2028.0,1593.0,25.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-12 00:00:00+00:00,South Africa,2173.0,1738.0,25.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-13 00:00:00+00:00,South Africa,2272.0,1835.0,27.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-14 00:00:00+00:00,South Africa,2415.0,1978.0,27.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-15 00:00:00+00:00,South Africa,2506.0,2062.0,34.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-16 00:00:00+00:00,South Africa,2605.0,1654.0,48.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-17 00:00:00+00:00,South Africa,2783.0,1830.0,50.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-18 00:00:00+00:00,South Africa,3034.0,2079.0,52.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-19 00:00:00+00:00,South Africa,3158.0,2201.0,54.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-20 00:00:00+00:00,South Africa,3300.0,2187.0,58.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-21 00:00:00+00:00,South Africa,3465.0,2352.0,58.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-22 00:00:00+00:00,South Africa,3635.0,2515.0,65.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-23 00:00:00+00:00,South Africa,3953.0,2405.0,75.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-24 00:00:00+00:00,South Africa,4220.0,2668.0,79.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-25 00:00:00+00:00,South Africa,4361.0,2802.0,86.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-26 00:00:00+00:00,South Africa,4546.0,2986.0,87.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-27 00:00:00+00:00,South Africa,4793.0,3230.0,90.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-28 00:00:00+00:00,South Africa,4996.0,2830.0,93.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-29 00:00:00+00:00,South Africa,5350.0,3174.0,103.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-04-30 00:00:00+00:00,South Africa,5647.0,3471.0,103.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-01 00:00:00+00:00,South Africa,5951.0,3453.0,116.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-02 00:00:00+00:00,South Africa,6336.0,3664.0,123.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-03 00:00:00+00:00,South Africa,6783.0,4103.0,131.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-04 00:00:00+00:00,South Africa,7220.0,4336.0,138.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-05 00:00:00+00:00,South Africa,7572.0,4678.0,148.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-06 00:00:00+00:00,South Africa,7808.0,4502.0,153.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-07 00:00:00+00:00,South Africa,8232.0,4918.0,161.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-08 00:00:00+00:00,South Africa,8895.0,5564.0,178.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-09 00:00:00+00:00,South Africa,9420.0,5251.0,186.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-10 00:00:00+00:00,South Africa,10015.0,5648.0,194.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-11 00:00:00+00:00,South Africa,10652.0,6089.0,206.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-12 00:00:00+00:00,South Africa,11350.0,6787.0,206.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-13 00:00:00+00:00,South Africa,12074.0,7110.0,219.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-14 00:00:00+00:00,South Africa,12739.0,6825.0,238.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-15 00:00:00+00:00,South Africa,13524.0,7194.0,247.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-16 00:00:00+00:00,South Africa,14355.0,7616.0,261.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-17 00:00:00+00:00,South Africa,15515.0,8245.0,264.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-18 00:00:00+00:00,South Africa,16433.0,8849.0,286.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-19 00:00:00+00:00,South Africa,17200.0,8928.0,312.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-20 00:00:00+00:00,South Africa,18003.0,8714.0,339.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-21 00:00:00+00:00,South Africa,19137.0,9818.0,369.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-22 00:00:00+00:00,South Africa,20125.0,9624.0,397.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-23 00:00:00+00:00,South Africa,21343.0,10832.0,407.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-24 00:00:00+00:00,South Africa,22583.0,11054.0,429.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-25 00:00:00+00:00,South Africa,23615.0,11217.0,481.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-26 00:00:00+00:00,South Africa,24264.0,10999.0,524.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-27 00:00:00+00:00,South Africa,25937.0,11934.0,552.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-28 00:00:00+00:00,South Africa,27403.0,12456.0,577.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-29 00:00:00+00:00,South Africa,29240.0,13536.0,611.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ZA,2020-05-30 00:00:00+00:00,South Africa,30967.0,14208.0,643.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-01-22 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-23 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-24 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-25 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-26 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-27 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-28 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-29 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-30 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +ES,2020-01-31 00:00:00+00:00,Spain,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-01 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-02 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-03 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-04 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-05 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-06 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-07 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-08 00:00:00+00:00,Spain,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-09 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-10 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-11 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-12 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-13 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-14 00:00:00+00:00,Spain,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-15 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-16 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-17 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-18 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-19 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-20 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-21 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-22 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-23 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-24 00:00:00+00:00,Spain,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-25 00:00:00+00:00,Spain,6.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-26 00:00:00+00:00,Spain,13.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-27 00:00:00+00:00,Spain,15.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-28 00:00:00+00:00,Spain,32.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-02-29 00:00:00+00:00,Spain,45.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-01 00:00:00+00:00,Spain,84.0,82.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-02 00:00:00+00:00,Spain,120.0,118.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-03 00:00:00+00:00,Spain,165.0,162.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-04 00:00:00+00:00,Spain,222.0,218.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-05 00:00:00+00:00,Spain,259.0,254.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-06 00:00:00+00:00,Spain,400.0,393.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-07 00:00:00+00:00,Spain,500.0,460.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-08 00:00:00+00:00,Spain,673.0,626.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-09 00:00:00+00:00,Spain,1073.0,1013.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +ES,2020-03-10 00:00:00+00:00,Spain,1695.0,1628.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +ES,2020-03-11 00:00:00+00:00,Spain,2277.0,2040.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +ES,2020-03-12 00:00:00+00:00,Spain,2277.0,2039.0,55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +ES,2020-03-13 00:00:00+00:00,Spain,5232.0,4906.0,133.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +ES,2020-03-14 00:00:00+00:00,Spain,6391.0,5679.0,195.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-15 00:00:00+00:00,Spain,7798.0,6992.0,289.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-16 00:00:00+00:00,Spain,9942.0,9070.0,342.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-17 00:00:00+00:00,Spain,11748.0,10187.0,533.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-18 00:00:00+00:00,Spain,13910.0,12206.0,623.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-19 00:00:00+00:00,Spain,17963.0,16026.0,830.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-20 00:00:00+00:00,Spain,20410.0,17779.0,1043.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-21 00:00:00+00:00,Spain,25374.0,21874.0,1375.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-22 00:00:00+00:00,Spain,28768.0,24421.0,1772.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-23 00:00:00+00:00,Spain,35136.0,30250.0,2311.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-24 00:00:00+00:00,Spain,39885.0,33283.0,2808.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-25 00:00:00+00:00,Spain,49515.0,40501.0,3647.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-26 00:00:00+00:00,Spain,57786.0,46406.0,4365.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-27 00:00:00+00:00,Spain,65719.0,51224.0,5138.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-28 00:00:00+00:00,Spain,73235.0,54968.0,5982.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-29 00:00:00+00:00,Spain,80110.0,58598.0,6803.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-30 00:00:00+00:00,Spain,87956.0,63460.0,7716.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-03-31 00:00:00+00:00,Spain,95923.0,68200.0,8464.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-01 00:00:00+00:00,Spain,104118.0,72084.0,9387.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-02 00:00:00+00:00,Spain,112065.0,74974.0,10348.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-03 00:00:00+00:00,Spain,119199.0,77488.0,11198.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-04 00:00:00+00:00,Spain,126168.0,80002.0,11947.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-05 00:00:00+00:00,Spain,131646.0,80925.0,12641.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-06 00:00:00+00:00,Spain,136675.0,82897.0,13341.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-07 00:00:00+00:00,Spain,141942.0,84689.0,14045.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-08 00:00:00+00:00,Spain,148220.0,85407.0,14792.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-09 00:00:00+00:00,Spain,153222.0,85610.0,15447.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-10 00:00:00+00:00,Spain,158273.0,86524.0,16081.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-11 00:00:00+00:00,Spain,163027.0,87312.0,16606.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-12 00:00:00+00:00,Spain,166831.0,87231.0,17209.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-13 00:00:00+00:00,Spain,170099.0,87616.0,17756.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-14 00:00:00+00:00,Spain,172541.0,86981.0,18056.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-15 00:00:00+00:00,Spain,177644.0,88083.0,18708.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-16 00:00:00+00:00,Spain,184948.0,90836.0,19315.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-17 00:00:00+00:00,Spain,190839.0,96040.0,20002.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-18 00:00:00+00:00,Spain,191726.0,96886.0,20043.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-19 00:00:00+00:00,Spain,198674.0,100864.0,20453.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-20 00:00:00+00:00,Spain,200210.0,98771.0,20852.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-21 00:00:00+00:00,Spain,204178.0,100382.0,21282.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-22 00:00:00+00:00,Spain,208389.0,100757.0,21717.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-23 00:00:00+00:00,Spain,213024.0,101617.0,22157.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-24 00:00:00+00:00,Spain,202990.0,88111.0,22524.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-25 00:00:00+00:00,Spain,205905.0,87295.0,22902.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-26 00:00:00+00:00,Spain,207634.0,86072.0,23190.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-27 00:00:00+00:00,Spain,209465.0,85069.0,23521.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-28 00:00:00+00:00,Spain,210773.0,84403.0,23822.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-29 00:00:00+00:00,Spain,212917.0,79695.0,24275.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-04-30 00:00:00+00:00,Spain,213435.0,76842.0,24543.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-01 00:00:00+00:00,Spain,215216.0,78623.0,24543.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-02 00:00:00+00:00,Spain,216582.0,74234.0,25100.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-03 00:00:00+00:00,Spain,217466.0,73300.0,25264.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-04 00:00:00+00:00,Spain,218011.0,71240.0,25428.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-05 00:00:00+00:00,Spain,219329.0,70230.0,25613.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-06 00:00:00+00:00,Spain,220325.0,68466.0,25857.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-07 00:00:00+00:00,Spain,221447.0,66866.0,26070.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-08 00:00:00+00:00,Spain,222857.0,65410.0,26299.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-09 00:00:00+00:00,Spain,223578.0,63148.0,26478.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-10 00:00:00+00:00,Spain,224350.0,61563.0,26621.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-11 00:00:00+00:00,Spain,227436.0,63553.0,26744.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-12 00:00:00+00:00,Spain,228030.0,62130.0,26920.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-13 00:00:00+00:00,Spain,228691.0,60764.0,27104.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-14 00:00:00+00:00,Spain,229540.0,58845.0,27321.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-15 00:00:00+00:00,Spain,230183.0,57941.0,27459.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-16 00:00:00+00:00,Spain,230698.0,56689.0,27563.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-17 00:00:00+00:00,Spain,230698.0,56689.0,27563.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-18 00:00:00+00:00,Spain,231606.0,53521.0,27709.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-19 00:00:00+00:00,Spain,232037.0,53883.0,27778.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-20 00:00:00+00:00,Spain,232555.0,54291.0,27888.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-21 00:00:00+00:00,Spain,233037.0,54721.0,27940.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-22 00:00:00+00:00,Spain,234824.0,55820.0,28628.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-23 00:00:00+00:00,Spain,235290.0,56236.0,28678.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-24 00:00:00+00:00,Spain,235772.0,56644.0,28752.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-25 00:00:00+00:00,Spain,235400.0,58190.0,26834.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-26 00:00:00+00:00,Spain,236259.0,58766.0,27117.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-27 00:00:00+00:00,Spain,236259.0,58766.0,27117.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-28 00:00:00+00:00,Spain,237906.0,60411.0,27119.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-29 00:00:00+00:00,Spain,238564.0,61067.0,27121.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +ES,2020-05-30 00:00:00+00:00,Spain,239228.0,61727.0,27125.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 +SE,2020-01-22 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-23 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-24 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-25 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-26 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-27 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-28 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-29 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-30 00:00:00+00:00,Sweden,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-01-31 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-01 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-02 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-03 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-04 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-05 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-06 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-07 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-08 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-09 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-10 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-11 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-12 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-13 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-14 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-15 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-16 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-17 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-18 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-19 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-20 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-21 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-22 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-23 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-24 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-25 00:00:00+00:00,Sweden,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-26 00:00:00+00:00,Sweden,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-27 00:00:00+00:00,Sweden,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-28 00:00:00+00:00,Sweden,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-02-29 00:00:00+00:00,Sweden,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-01 00:00:00+00:00,Sweden,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-02 00:00:00+00:00,Sweden,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-03 00:00:00+00:00,Sweden,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-04 00:00:00+00:00,Sweden,35.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-05 00:00:00+00:00,Sweden,94.0,94.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-06 00:00:00+00:00,Sweden,101.0,101.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-07 00:00:00+00:00,Sweden,161.0,161.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-08 00:00:00+00:00,Sweden,203.0,203.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SE,2020-03-09 00:00:00+00:00,Sweden,248.0,248.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-10 00:00:00+00:00,Sweden,355.0,355.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-11 00:00:00+00:00,Sweden,500.0,499.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-12 00:00:00+00:00,Sweden,599.0,598.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-13 00:00:00+00:00,Sweden,814.0,813.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-14 00:00:00+00:00,Sweden,961.0,959.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-15 00:00:00+00:00,Sweden,1022.0,1019.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-16 00:00:00+00:00,Sweden,1103.0,1097.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-17 00:00:00+00:00,Sweden,1190.0,1183.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-18 00:00:00+00:00,Sweden,1279.0,1269.0,10.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0 +SE,2020-03-19 00:00:00+00:00,Sweden,1439.0,1428.0,11.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-20 00:00:00+00:00,Sweden,1639.0,1623.0,16.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-21 00:00:00+00:00,Sweden,1763.0,1743.0,20.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-22 00:00:00+00:00,Sweden,1934.0,1913.0,21.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-23 00:00:00+00:00,Sweden,2046.0,2021.0,25.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-24 00:00:00+00:00,Sweden,2286.0,2250.0,36.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-25 00:00:00+00:00,Sweden,2526.0,2464.0,62.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-26 00:00:00+00:00,Sweden,2840.0,2763.0,77.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-27 00:00:00+00:00,Sweden,3069.0,2964.0,105.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-28 00:00:00+00:00,Sweden,3447.0,3342.0,105.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-29 00:00:00+00:00,Sweden,3700.0,3590.0,110.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-30 00:00:00+00:00,Sweden,4028.0,3882.0,146.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-03-31 00:00:00+00:00,Sweden,4435.0,4255.0,180.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-04-01 00:00:00+00:00,Sweden,4947.0,4708.0,239.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-04-02 00:00:00+00:00,Sweden,5568.0,5260.0,308.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-04-03 00:00:00+00:00,Sweden,6131.0,5773.0,358.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +SE,2020-04-04 00:00:00+00:00,Sweden,6443.0,6070.0,373.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-05 00:00:00+00:00,Sweden,6830.0,6429.0,401.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-06 00:00:00+00:00,Sweden,7206.0,6729.0,477.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-07 00:00:00+00:00,Sweden,7693.0,7102.0,591.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-08 00:00:00+00:00,Sweden,8419.0,7732.0,687.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-09 00:00:00+00:00,Sweden,9141.0,8348.0,793.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-10 00:00:00+00:00,Sweden,9685.0,8815.0,870.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-11 00:00:00+00:00,Sweden,10151.0,9264.0,887.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-12 00:00:00+00:00,Sweden,10483.0,9584.0,899.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-13 00:00:00+00:00,Sweden,10948.0,10029.0,919.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-14 00:00:00+00:00,Sweden,11445.0,10412.0,1033.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-15 00:00:00+00:00,Sweden,11927.0,10724.0,1203.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-16 00:00:00+00:00,Sweden,12540.0,11207.0,1333.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-17 00:00:00+00:00,Sweden,13216.0,11816.0,1400.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-18 00:00:00+00:00,Sweden,13822.0,12311.0,1511.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-19 00:00:00+00:00,Sweden,14385.0,12845.0,1540.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-20 00:00:00+00:00,Sweden,14777.0,13197.0,1580.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-21 00:00:00+00:00,Sweden,15322.0,13557.0,1765.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-22 00:00:00+00:00,Sweden,16004.0,14067.0,1937.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-23 00:00:00+00:00,Sweden,16755.0,14734.0,2021.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-24 00:00:00+00:00,Sweden,17567.0,15415.0,2152.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-25 00:00:00+00:00,Sweden,18177.0,15985.0,2192.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-26 00:00:00+00:00,Sweden,18640.0,16446.0,2194.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-27 00:00:00+00:00,Sweden,18926.0,16652.0,2274.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-28 00:00:00+00:00,Sweden,19621.0,17266.0,2355.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-29 00:00:00+00:00,Sweden,20302.0,17840.0,2462.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-04-30 00:00:00+00:00,Sweden,21092.0,18506.0,2586.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-01 00:00:00+00:00,Sweden,21520.0,18867.0,2653.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-02 00:00:00+00:00,Sweden,22082.0,19413.0,2669.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-03 00:00:00+00:00,Sweden,22317.0,19638.0,2679.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-04 00:00:00+00:00,Sweden,22721.0,19952.0,2769.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-05 00:00:00+00:00,Sweden,23216.0,20362.0,2854.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-06 00:00:00+00:00,Sweden,23918.0,20977.0,2941.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-07 00:00:00+00:00,Sweden,24623.0,21583.0,3040.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-08 00:00:00+00:00,Sweden,25265.0,22090.0,3175.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-09 00:00:00+00:00,Sweden,25921.0,22701.0,3220.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-10 00:00:00+00:00,Sweden,26322.0,23097.0,3225.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-11 00:00:00+00:00,Sweden,26670.0,23414.0,3256.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-12 00:00:00+00:00,Sweden,27272.0,23959.0,3313.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-13 00:00:00+00:00,Sweden,27909.0,24449.0,3460.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-14 00:00:00+00:00,Sweden,28582.0,25053.0,3529.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-15 00:00:00+00:00,Sweden,29207.0,25561.0,3646.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-16 00:00:00+00:00,Sweden,29677.0,26003.0,3674.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-17 00:00:00+00:00,Sweden,30143.0,26464.0,3679.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-18 00:00:00+00:00,Sweden,30377.0,26679.0,3698.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-19 00:00:00+00:00,Sweden,30799.0,27056.0,3743.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-20 00:00:00+00:00,Sweden,31523.0,27692.0,3831.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-21 00:00:00+00:00,Sweden,32172.0,28301.0,3871.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-22 00:00:00+00:00,Sweden,32809.0,28884.0,3925.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-23 00:00:00+00:00,Sweden,33188.0,29196.0,3992.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-24 00:00:00+00:00,Sweden,33459.0,29461.0,3998.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-25 00:00:00+00:00,Sweden,33843.0,29814.0,4029.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-26 00:00:00+00:00,Sweden,34440.0,30315.0,4125.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-27 00:00:00+00:00,Sweden,35088.0,30868.0,4220.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-28 00:00:00+00:00,Sweden,35727.0,31461.0,4266.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-29 00:00:00+00:00,Sweden,36476.0,32126.0,4350.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +SE,2020-05-30 00:00:00+00:00,Sweden,37113.0,32718.0,4395.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-01-22 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-23 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-24 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-25 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-26 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-27 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-28 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-29 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-30 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-01-31 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-01 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-02 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-03 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-04 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-05 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-06 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-07 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-08 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-09 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-10 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-11 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-12 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-13 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-14 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-15 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-16 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-17 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-18 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-19 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-20 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-21 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-22 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-23 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-24 00:00:00+00:00,Switzerland,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-25 00:00:00+00:00,Switzerland,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-26 00:00:00+00:00,Switzerland,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +CH,2020-02-27 00:00:00+00:00,Switzerland,8.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-02-28 00:00:00+00:00,Switzerland,8.0,8.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-02-29 00:00:00+00:00,Switzerland,18.0,18.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-01 00:00:00+00:00,Switzerland,27.0,27.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-02 00:00:00+00:00,Switzerland,42.0,42.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-03 00:00:00+00:00,Switzerland,56.0,54.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-04 00:00:00+00:00,Switzerland,90.0,87.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-05 00:00:00+00:00,Switzerland,114.0,110.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-06 00:00:00+00:00,Switzerland,214.0,210.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-07 00:00:00+00:00,Switzerland,268.0,264.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-08 00:00:00+00:00,Switzerland,337.0,332.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-09 00:00:00+00:00,Switzerland,374.0,369.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-10 00:00:00+00:00,Switzerland,491.0,485.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-11 00:00:00+00:00,Switzerland,652.0,644.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-12 00:00:00+00:00,Switzerland,652.0,644.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +CH,2020-03-13 00:00:00+00:00,Switzerland,1139.0,1124.0,11.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CH,2020-03-14 00:00:00+00:00,Switzerland,1359.0,1342.0,13.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CH,2020-03-15 00:00:00+00:00,Switzerland,2200.0,2182.0,14.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0 +CH,2020-03-16 00:00:00+00:00,Switzerland,2200.0,2182.0,14.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0 +CH,2020-03-17 00:00:00+00:00,Switzerland,2700.0,2669.0,27.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-18 00:00:00+00:00,Switzerland,3028.0,2985.0,28.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-19 00:00:00+00:00,Switzerland,4075.0,4019.0,41.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-20 00:00:00+00:00,Switzerland,5294.0,5225.0,54.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-21 00:00:00+00:00,Switzerland,6575.0,6485.0,75.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-22 00:00:00+00:00,Switzerland,7474.0,7245.0,98.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-23 00:00:00+00:00,Switzerland,8795.0,8544.0,120.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-24 00:00:00+00:00,Switzerland,9877.0,9624.0,122.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-25 00:00:00+00:00,Switzerland,10897.0,10613.0,153.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-26 00:00:00+00:00,Switzerland,11811.0,11489.0,191.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-27 00:00:00+00:00,Switzerland,12928.0,11167.0,231.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-28 00:00:00+00:00,Switzerland,14076.0,12282.0,264.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-29 00:00:00+00:00,Switzerland,14829.0,12934.0,300.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-30 00:00:00+00:00,Switzerland,15922.0,13740.0,359.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-03-31 00:00:00+00:00,Switzerland,16605.0,14349.0,433.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-01 00:00:00+00:00,Switzerland,17768.0,14313.0,488.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-02 00:00:00+00:00,Switzerland,18827.0,14278.0,536.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-03 00:00:00+00:00,Switzerland,19606.0,14169.0,591.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-04 00:00:00+00:00,Switzerland,20505.0,13424.0,666.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-05 00:00:00+00:00,Switzerland,21100.0,13970.0,715.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-06 00:00:00+00:00,Switzerland,21657.0,12836.0,765.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-07 00:00:00+00:00,Switzerland,22253.0,12728.0,821.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-08 00:00:00+00:00,Switzerland,23280.0,12585.0,895.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-09 00:00:00+00:00,Switzerland,24051.0,12503.0,948.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-10 00:00:00+00:00,Switzerland,24551.0,12449.0,1002.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-11 00:00:00+00:00,Switzerland,25107.0,11971.0,1036.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-12 00:00:00+00:00,Switzerland,25415.0,11609.0,1106.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-13 00:00:00+00:00,Switzerland,25688.0,10850.0,1138.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-14 00:00:00+00:00,Switzerland,25936.0,11062.0,1174.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-15 00:00:00+00:00,Switzerland,26336.0,9697.0,1239.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-16 00:00:00+00:00,Switzerland,26732.0,9551.0,1281.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-17 00:00:00+00:00,Switzerland,27078.0,9351.0,1327.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-18 00:00:00+00:00,Switzerland,27404.0,8936.0,1368.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-19 00:00:00+00:00,Switzerland,27740.0,8547.0,1393.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-20 00:00:00+00:00,Switzerland,27944.0,7915.0,1429.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-21 00:00:00+00:00,Switzerland,28063.0,7185.0,1478.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-22 00:00:00+00:00,Switzerland,28268.0,6859.0,1509.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-23 00:00:00+00:00,Switzerland,28496.0,6347.0,1549.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-24 00:00:00+00:00,Switzerland,28677.0,6088.0,1589.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-25 00:00:00+00:00,Switzerland,28894.0,5995.0,1599.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-26 00:00:00+00:00,Switzerland,29061.0,5651.0,1610.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-27 00:00:00+00:00,Switzerland,29164.0,5299.0,1665.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-28 00:00:00+00:00,Switzerland,29264.0,4965.0,1699.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-29 00:00:00+00:00,Switzerland,29407.0,5091.0,1716.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-04-30 00:00:00+00:00,Switzerland,29586.0,4449.0,1737.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-01 00:00:00+00:00,Switzerland,29705.0,4051.0,1754.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-02 00:00:00+00:00,Switzerland,29817.0,3855.0,1762.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-03 00:00:00+00:00,Switzerland,29905.0,3643.0,1762.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-04 00:00:00+00:00,Switzerland,29981.0,2997.0,1784.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-05 00:00:00+00:00,Switzerland,30009.0,2814.0,1795.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-06 00:00:00+00:00,Switzerland,30060.0,2555.0,1805.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-07 00:00:00+00:00,Switzerland,30126.0,2416.0,1810.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-08 00:00:00+00:00,Switzerland,30207.0,2284.0,1823.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-09 00:00:00+00:00,Switzerland,30251.0,2021.0,1830.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-10 00:00:00+00:00,Switzerland,30305.0,1872.0,1833.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-11 00:00:00+00:00,Switzerland,30344.0,1699.0,1845.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-12 00:00:00+00:00,Switzerland,30380.0,1713.0,1867.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-13 00:00:00+00:00,Switzerland,30413.0,1443.0,1870.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-14 00:00:00+00:00,Switzerland,30463.0,1491.0,1872.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-15 00:00:00+00:00,Switzerland,30514.0,1536.0,1878.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-16 00:00:00+00:00,Switzerland,30572.0,1293.0,1879.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-17 00:00:00+00:00,Switzerland,30587.0,1206.0,1881.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-18 00:00:00+00:00,Switzerland,30597.0,1111.0,1886.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-19 00:00:00+00:00,Switzerland,30618.0,1027.0,1891.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-20 00:00:00+00:00,Switzerland,30658.0,966.0,1892.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-21 00:00:00+00:00,Switzerland,30694.0,896.0,1898.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-22 00:00:00+00:00,Switzerland,30707.0,904.0,1903.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-23 00:00:00+00:00,Switzerland,30725.0,820.0,1905.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-24 00:00:00+00:00,Switzerland,30736.0,730.0,1906.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-25 00:00:00+00:00,Switzerland,30746.0,633.0,1913.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-26 00:00:00+00:00,Switzerland,30761.0,646.0,1915.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-27 00:00:00+00:00,Switzerland,30776.0,559.0,1917.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-28 00:00:00+00:00,Switzerland,30796.0,577.0,1919.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-29 00:00:00+00:00,Switzerland,30828.0,609.0,1919.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +CH,2020-05-30 00:00:00+00:00,Switzerland,30845.0,526.0,1919.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0 +GB,2020-01-22 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-23 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-24 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-25 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-26 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-27 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-28 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-29 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-30 00:00:00+00:00,United Kingdom,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-01-31 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-02-01 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +GB,2020-02-02 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-03 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-04 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-05 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-06 00:00:00+00:00,United Kingdom,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-07 00:00:00+00:00,United Kingdom,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-08 00:00:00+00:00,United Kingdom,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-09 00:00:00+00:00,United Kingdom,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-10 00:00:00+00:00,United Kingdom,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-11 00:00:00+00:00,United Kingdom,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-12 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-13 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-14 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-15 00:00:00+00:00,United Kingdom,9.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-16 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-17 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-18 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-19 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-20 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-21 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-22 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-23 00:00:00+00:00,United Kingdom,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-24 00:00:00+00:00,United Kingdom,13.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-25 00:00:00+00:00,United Kingdom,13.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-26 00:00:00+00:00,United Kingdom,13.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-27 00:00:00+00:00,United Kingdom,15.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-28 00:00:00+00:00,United Kingdom,20.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-02-29 00:00:00+00:00,United Kingdom,23.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-01 00:00:00+00:00,United Kingdom,36.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-02 00:00:00+00:00,United Kingdom,40.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-03 00:00:00+00:00,United Kingdom,51.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-04 00:00:00+00:00,United Kingdom,85.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-05 00:00:00+00:00,United Kingdom,115.0,107.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-06 00:00:00+00:00,United Kingdom,163.0,154.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-07 00:00:00+00:00,United Kingdom,206.0,186.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-08 00:00:00+00:00,United Kingdom,273.0,253.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-09 00:00:00+00:00,United Kingdom,321.0,300.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-10 00:00:00+00:00,United Kingdom,382.0,357.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-11 00:00:00+00:00,United Kingdom,456.0,431.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-12 00:00:00+00:00,United Kingdom,456.0,429.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-13 00:00:00+00:00,United Kingdom,798.0,770.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-14 00:00:00+00:00,United Kingdom,1140.0,1094.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-15 00:00:00+00:00,United Kingdom,1140.0,1079.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-16 00:00:00+00:00,United Kingdom,1543.0,1458.0,65.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-17 00:00:00+00:00,United Kingdom,1950.0,1817.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-18 00:00:00+00:00,United Kingdom,2626.0,2446.0,115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-19 00:00:00+00:00,United Kingdom,2689.0,2466.0,158.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-20 00:00:00+00:00,United Kingdom,3983.0,3724.0,194.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-21 00:00:00+00:00,United Kingdom,5018.0,4703.0,250.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +GB,2020-03-22 00:00:00+00:00,United Kingdom,5683.0,5333.0,285.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0 +GB,2020-03-23 00:00:00+00:00,United Kingdom,6650.0,6226.0,359.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +GB,2020-03-24 00:00:00+00:00,United Kingdom,8077.0,7434.0,508.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +GB,2020-03-25 00:00:00+00:00,United Kingdom,9529.0,8700.0,694.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0 +GB,2020-03-26 00:00:00+00:00,United Kingdom,11658.0,10646.0,877.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-03-27 00:00:00+00:00,United Kingdom,14543.0,13247.0,1161.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-03-28 00:00:00+00:00,United Kingdom,17089.0,15499.0,1455.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-03-29 00:00:00+00:00,United Kingdom,19522.0,17718.0,1669.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-03-30 00:00:00+00:00,United Kingdom,22141.0,19963.0,2043.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-03-31 00:00:00+00:00,United Kingdom,25150.0,22590.0,2425.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-01 00:00:00+00:00,United Kingdom,29474.0,26244.0,3095.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-02 00:00:00+00:00,United Kingdom,33718.0,29836.0,3747.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-03 00:00:00+00:00,United Kingdom,38168.0,33572.0,4461.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-04 00:00:00+00:00,United Kingdom,41903.0,36547.0,5221.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-05 00:00:00+00:00,United Kingdom,47806.0,41806.0,5865.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-06 00:00:00+00:00,United Kingdom,51608.0,45040.0,6433.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-07 00:00:00+00:00,United Kingdom,55242.0,47636.0,7471.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-08 00:00:00+00:00,United Kingdom,60733.0,52093.0,8505.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-09 00:00:00+00:00,United Kingdom,65077.0,55334.0,9608.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-10 00:00:00+00:00,United Kingdom,73758.0,62654.0,10760.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-11 00:00:00+00:00,United Kingdom,78991.0,67048.0,11599.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-12 00:00:00+00:00,United Kingdom,84279.0,71650.0,12285.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-13 00:00:00+00:00,United Kingdom,88621.0,75592.0,13029.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-14 00:00:00+00:00,United Kingdom,93873.0,79800.0,14073.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-15 00:00:00+00:00,United Kingdom,98476.0,83561.0,14915.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-16 00:00:00+00:00,United Kingdom,103093.0,87149.0,15944.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-17 00:00:00+00:00,United Kingdom,108692.0,91813.0,16879.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-18 00:00:00+00:00,United Kingdom,114217.0,96223.0,17994.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-19 00:00:00+00:00,United Kingdom,120067.0,101575.0,18492.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-20 00:00:00+00:00,United Kingdom,124743.0,105692.0,19051.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-21 00:00:00+00:00,United Kingdom,129044.0,108821.0,20223.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-22 00:00:00+00:00,United Kingdom,133495.0,112435.0,21060.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-23 00:00:00+00:00,United Kingdom,138078.0,116291.0,21787.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-24 00:00:00+00:00,United Kingdom,143464.0,120672.0,22792.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-25 00:00:00+00:00,United Kingdom,148377.0,124742.0,23635.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-26 00:00:00+00:00,United Kingdom,152840.0,128785.0,24055.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-27 00:00:00+00:00,United Kingdom,157149.0,132756.0,24393.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-28 00:00:00+00:00,United Kingdom,161145.0,135843.0,25302.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-29 00:00:00+00:00,United Kingdom,165221.0,139124.0,26097.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-04-30 00:00:00+00:00,United Kingdom,171253.0,144482.0,26771.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-01 00:00:00+00:00,United Kingdom,177454.0,149944.0,27510.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-02 00:00:00+00:00,United Kingdom,182260.0,154129.0,28131.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-03 00:00:00+00:00,United Kingdom,186599.0,158153.0,28446.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-04 00:00:00+00:00,United Kingdom,190584.0,161850.0,28734.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-05 00:00:00+00:00,United Kingdom,194990.0,165563.0,29427.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-06 00:00:00+00:00,United Kingdom,201101.0,171025.0,30076.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-07 00:00:00+00:00,United Kingdom,206715.0,176100.0,30615.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-08 00:00:00+00:00,United Kingdom,211364.0,180123.0,31241.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-09 00:00:00+00:00,United Kingdom,215260.0,183673.0,31587.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-10 00:00:00+00:00,United Kingdom,219183.0,187328.0,31855.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-11 00:00:00+00:00,United Kingdom,223060.0,190995.0,32065.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-12 00:00:00+00:00,United Kingdom,226463.0,193771.0,32692.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-13 00:00:00+00:00,United Kingdom,229705.0,196519.0,33186.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-14 00:00:00+00:00,United Kingdom,233151.0,199537.0,33614.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-15 00:00:00+00:00,United Kingdom,236711.0,202713.0,33998.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-16 00:00:00+00:00,United Kingdom,240161.0,205695.0,34466.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-17 00:00:00+00:00,United Kingdom,243695.0,209059.0,34636.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-18 00:00:00+00:00,United Kingdom,246406.0,211610.0,34796.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-19 00:00:00+00:00,United Kingdom,248818.0,213477.0,35341.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-20 00:00:00+00:00,United Kingdom,248293.0,212589.0,35704.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-21 00:00:00+00:00,United Kingdom,250908.0,214866.0,36042.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-22 00:00:00+00:00,United Kingdom,254195.0,217802.0,36393.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-23 00:00:00+00:00,United Kingdom,257154.0,220479.0,36675.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-24 00:00:00+00:00,United Kingdom,259559.0,222766.0,36793.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-25 00:00:00+00:00,United Kingdom,261184.0,224270.0,36914.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-26 00:00:00+00:00,United Kingdom,265227.0,228179.0,37048.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-27 00:00:00+00:00,United Kingdom,267240.0,229780.0,37460.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-28 00:00:00+00:00,United Kingdom,269127.0,231290.0,37837.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-29 00:00:00+00:00,United Kingdom,271222.0,233061.0,38161.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 +GB,2020-05-30 00:00:00+00:00,United Kingdom,272826.0,234450.0,38376.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0 diff --git a/data-pipeline/docker-compose.yaml b/data-pipeline/docker-compose.yaml index b63e866b..5c289237 100644 --- a/data-pipeline/docker-compose.yaml +++ b/data-pipeline/docker-compose.yaml @@ -1,8 +1,19 @@ version: "3" services: - luigi: - build: . - image: epimodel-runner + luigi-poetry: + build: + context: . + dockerfile: Dockerfile.poetry + image: epimodel-poetry volumes: - .:/app entrypoint: ["python", "run_luigi"] + + luigi-conda: + build: + context: . + dockerfile: Dockerfile.conda + image: epimodel-conda + volumes: + - .:/app + entrypoint: ["python", "run_luigi"] diff --git a/data-pipeline/epimodel/exports/__init__.py b/data-pipeline/epimodel/exports/__init__.py index e69de29b..a463c54a 100644 --- a/data-pipeline/epimodel/exports/__init__.py +++ b/data-pipeline/epimodel/exports/__init__.py @@ -0,0 +1,24 @@ +import numpy as np +import pandas as pd + +from enum import Enum +import datetime +from typing import Optional + + +def types_to_json(obj): + if isinstance(obj, np.generic): + return obj.item() + if isinstance(obj, datetime.datetime): + return obj.isoformat() + if isinstance(obj, Enum): + return obj.name + else: + raise TypeError(f"Unserializable object {obj} of type {type(obj)}") + + +def get_df_else_none(df: pd.DataFrame, code) -> Optional[pd.DataFrame]: + if code in df.index: + return df.loc[code].sort_index() + else: + return None diff --git a/data-pipeline/epimodel/exports/epidemics_org.py b/data-pipeline/epimodel/exports/epidemics_org.py index 3d5af5b7..676ba302 100644 --- a/data-pipeline/epimodel/exports/epidemics_org.py +++ b/data-pipeline/epimodel/exports/epidemics_org.py @@ -6,7 +6,6 @@ import shutil import socket import subprocess -from enum import Enum from pathlib import Path from typing import Any, Dict, List, Optional, Iterable @@ -17,6 +16,7 @@ from epimodel.imports.johns_hopkins import aggregate_countries from ..gleam import Batch from ..regions import Region, RegionDataset +from . import types_to_json, get_df_else_none import epimodel log = logging.getLogger(__name__) @@ -58,7 +58,6 @@ def new_region( un_age_dist: Optional[pd.DataFrame], r_estimates: Optional[pd.DataFrame], hospital_capacity: Optional[pd.DataFrame], - npi_model: Optional[pd.DataFrame], interventions: list, ): export_region = WebExportRegion( @@ -75,7 +74,6 @@ def new_region( un_age_dist, r_estimates, hospital_capacity, - npi_model, interventions, ) self.export_regions[region.Code] = export_region @@ -159,7 +157,6 @@ def __init__( un_age_dist: Optional[pd.DataFrame], r_estimates: Optional[pd.DataFrame], hospital_capacity: Optional[pd.DataFrame], - npi_model: Optional[pd.DataFrame], interventions: list, ): log.debug(f"Prepare WebExport: {region.Code}, {region.Name}") @@ -179,7 +176,6 @@ def __init__( un_age_dist, r_estimates, hospital_capacity, - npi_model, interventions, ) # Extended data to be written in a separate per-region file @@ -199,7 +195,6 @@ def extract_smallish_data( un_age_dist: Optional[pd.DataFrame], r_estimates: Optional[pd.DataFrame], hospital_capacity: Optional[pd.Series], - npi_model: Optional[pd.DataFrame], interventions: list, ) -> Dict[str, Dict[str, Any]]: data = {} @@ -240,12 +235,6 @@ def extract_smallish_data( **r_estimates[["MeanR", "StdR", "EnoughData"]].to_dict(orient="list"), } - if npi_model is not None: - data["NPIModel"] = { - "Date": [x.isoformat() for x in npi_model.index], - **npi_model.replace({np.nan: None}).to_dict(orient="list"), - } - if hospital_capacity is not None: data["Capacity"] = hospital_capacity.dropna().to_dict() @@ -406,17 +395,6 @@ def upload_export( log.info(f"Custom web URL: http://epidemicforecasting.org/?channel={channel}") -def types_to_json(obj): - if isinstance(obj, np.generic): - return obj.item() - if isinstance(obj, datetime.datetime): - return obj.isoformat() - if isinstance(obj, Enum): - return obj.name - else: - raise TypeError(f"Unserializable object {obj} of type {type(obj)}") - - def get_cmi(df: pd.DataFrame): return df.index.get_level_values("Code").unique() @@ -485,13 +463,6 @@ def analyze_data_consistency( ) -def get_df_else_none(df: pd.DataFrame, code) -> Optional[pd.DataFrame]: - if code in df.index: - return df.loc[code].sort_index() - else: - return None - - def get_df_list(df: pd.DataFrame, code) -> pd.DataFrame: if code not in df.index: return df.loc[[]] @@ -625,15 +596,6 @@ def process_export( foretold_df, ) - npi_model_results = inputs["npi_model"].path - npi_model_results_df: pd.DataFrame = pd.read_csv( - npi_model_results, - index_col=["Code", "Date"], - parse_dates=["Date"], - keep_default_na=False, - na_values=[""], - ) - for code in export_regions: reg: Region = rds[code] m49 = int(reg["M49Code"]) if pd.notnull(reg["M49Code"]) else -1 @@ -643,6 +605,7 @@ def process_export( ).sort_index(level="Date") else: country_cummulative_active_df = pd.DataFrame([]) + ex.new_region( reg, get_df_else_none(estimates_df, code), @@ -655,7 +618,6 @@ def process_export( get_df_else_none(un_age_dist_df, m49), get_df_else_none(r_estimates_df, code), get_df_else_none(hospital_capacity_df, code), - get_df_else_none(npi_model_results_df, code), interventions_dict.get(code, []), ) return ex diff --git a/data-pipeline/epimodel/exports/npi_model_export.py b/data-pipeline/epimodel/exports/npi_model_export.py new file mode 100644 index 00000000..1b7c2a10 --- /dev/null +++ b/data-pipeline/epimodel/exports/npi_model_export.py @@ -0,0 +1,176 @@ +import datetime +import getpass +import socket +import logging +import json +import shutil +from pathlib import Path + +import numpy as np +import pandas as pd + +from typing import Dict, Optional, Any + +from ..regions import Region, RegionDataset +from . import types_to_json, get_df_else_none + +log = logging.getLogger(__name__) + + +class NPIModelExport: + """ + Document holding one data export to web. Contains a subset of Regions. + """ + + def __init__(self, date_resample: str, comment=None): + self.created = datetime.datetime.now().astimezone(datetime.timezone.utc) + self.created_by = f"{getpass.getuser()}@{socket.gethostname()}" + self.comment = comment + self.date_resample = date_resample + self.export_regions: Dict[str, NPIModelExportRegion] = {} + + def to_json(self): + return { + "created": self.created, + "created_by": self.created_by, + "comment": self.comment, + "date_resample": self.date_resample, + "regions": { + region: export.to_json() + for region, export in self.export_regions.items() + }, + } + + def new_region( + self, region: Region, npi_model: pd.DataFrame, extrapolation_date: pd.Timestamp + ) -> "NPIModelExportRegion": + + export_region = NPIModelExportRegion(region, npi_model, extrapolation_date) + + self.export_regions[region.Code] = export_region + return export_region + + def write( + self, + main_data_path: Path, + latest: Optional[Path] = None, + overwrite=False, + indent=None, + ): + + main_data_path.parent.mkdir(parents=True, exist_ok=True) + + log.info(f"Writing NPIExport to {main_data_path} ...") + + if not overwrite and main_data_path.exists(): + raise RuntimeError( + "The export already exists, overwrite it by specifying the --overwrite flag" + ) + + with main_data_path.open("wt") as f: + json.dump( + self.to_json(), + f, + default=types_to_json, + allow_nan=False, + separators=(",", ":"), + indent=indent, + ) + log.info( + f"Exported NPI model results for {len(self.export_regions)} to {main_data_path}" + ) + + if latest is not None: + shutil.copy(main_data_path, latest) + log.info(f"Copied the NPI model export to {latest}") + + +class NPIModelExportRegion: + def __init__( + self, + region: Region, + npi_model: Optional[pd.DataFrame], + extrapolation_date: pd.Timestamp, + ): + log.debug(f"Prepare WebExport: {region.Code}, {region.Name}") + + self.region = region + + if npi_model is not None: + npi_model = npi_model.set_index("Date").sort_index() + self.data = self.extract_data(npi_model, extrapolation_date) + else: + log.warning(f"No NPI model results for region {region.Name}") + self.data = {} + + def extract_data( + self, npi_model: pd.DataFrame, extrapolation_date: pd.Timestamp + ) -> Dict[str, Any]: + data = { + "Date": [x.isoformat() for x in npi_model.index], + "ExtrapolationDate": extrapolation_date.isoformat(), + **npi_model.replace({np.nan: None}).to_dict(orient="list"), + } + + return data + + def to_json(self): + d = { + "data": self.data, + "Name": self.region.DisplayName, + } + + return d + + +def process_model_export( + inputs: Dict[str, Any], + rds: RegionDataset, + comment: str, + config: Dict[str, Any], + resample: str, +) -> NPIModelExport: + ex = NPIModelExport(resample, comment) + + countermeasures = inputs["model_data"].path + npi_model_results = inputs["npi_model"].path + + export_regions = sorted(config["export_regions"]) + + countermeasures_df = pd.read_csv( + countermeasures, + index_col=["Country Code", "Date"], + parse_dates=["Date"], + keep_default_na=False, + na_values=[""], + ) + + npi_model_results_df: pd.DataFrame = pd.read_csv( + npi_model_results, + index_col=["Code"], + parse_dates=["Date"], + keep_default_na=False, + na_values=[""], + ) + + extrapolation_date = get_extrapolation_date(countermeasures_df) + + for code in export_regions: + reg: Region = rds[code] + + ex.new_region( + reg, + get_df_else_none(npi_model_results_df, code), + extrapolation_date, + ) + + return ex + + +def get_extrapolation_date(countermeasures_df: Optional[pd.DataFrame]): + if countermeasures_df is not None: + return countermeasures_df.index.get_level_values( + "Date" + ).max() + datetime.timedelta(days=1) + else: + return None diff --git a/data-pipeline/epimodel/imports/__init__.py b/data-pipeline/epimodel/imports/__init__.py index 27f0edbb..69857143 100644 --- a/data-pipeline/epimodel/imports/__init__.py +++ b/data-pipeline/epimodel/imports/__init__.py @@ -1,3 +1,5 @@ from .johns_hopkins import import_johns_hopkins from .foretold import import_foretold from .countermeasures import import_countermeasures_csv +from .oxford_goverment_response import import_oxford_government_response_tracker +from .merge_npi import merge_npi_datasets diff --git a/data-pipeline/epimodel/imports/common.py b/data-pipeline/epimodel/imports/common.py new file mode 100644 index 00000000..0cc6e931 --- /dev/null +++ b/data-pipeline/epimodel/imports/common.py @@ -0,0 +1,11 @@ +INTERVENTION_TYPES = [ + "Mask Wearing", + "Symptomatic Testing", + "Gatherings <1000", + "Gatherings <100", + "Gatherings <10", + "Some Businesses Suspended", + "Most Businesses Suspended", + "School Closure", + "Stay Home Order", +] diff --git a/data-pipeline/epimodel/imports/interventions.py b/data-pipeline/epimodel/imports/interventions.py index 852d49d0..b86dcb72 100644 --- a/data-pipeline/epimodel/imports/interventions.py +++ b/data-pipeline/epimodel/imports/interventions.py @@ -1,18 +1,5 @@ import pandas as pd - - -INTERVENTION_TYPES = [ - "Healthcare Infection Control", - "Mask Wearing", - "Symptomatic Testing", - "Gatherings <1000", - "Gatherings <100", - "Gatherings <10", - "Some Businesses Suspended", - "Most Businesses Suspended", - "School Closure", - "Stay Home Order", -] +from .common import INTERVENTION_TYPES def create_intervetions_dict(json_path: str): diff --git a/data-pipeline/epimodel/imports/merge_npi.py b/data-pipeline/epimodel/imports/merge_npi.py new file mode 100644 index 00000000..06eafd38 --- /dev/null +++ b/data-pipeline/epimodel/imports/merge_npi.py @@ -0,0 +1,182 @@ +import logging +import pandas as pd +import numpy as np + +from typing import List + +log = logging.getLogger(__name__) + +OxCGRT_TRANSFORM_CONFIG = { + "Symptomatic Testing": [("H2_Testing policy", 2)], + "Gatherings <1000": [("C4_Restrictions on gatherings", 2), ("C4_Flag", 1)], + "Gatherings <100": [("C4_Restrictions on gatherings", 3), ("C4_Flag", 1)], + "Gatherings <10": [("C4_Restrictions on gatherings", 4), ("C4_Flag", 1)], + "Some Businesses Suspended": [("C2_Workplace closing", 2), ("C2_Flag", 1)], + "Most Businesses Suspended": [("C2_Workplace closing", 3), ("C2_Flag", 1)], + "School Closure": [("C1_School closing", 3), ("C1_Flag", 1)], + "Stay Home Order": [("C6_Stay at home requirements", 2), ("C6_Flag", 1)], +} + +NPI_NAMES = [ + "Mask Wearing", + "Symptomatic Testing", + "Gatherings <1000", + "Gatherings <100", + "Gatherings <10", + "Some Businesses Suspended", + "Most Businesses Suspended", + "School Closure", + "University Closure", + "Stay Home Order", + "Travel Screen/Quarantine", + "Travel Bans", + "Public Transport Limited", + "Internal Movement Limited", + "Public Information Campaigns", +] + + +def merge_npi_datasets( + countermeasures_path: str, + oxcgrt_path: str, + johns_hopkins_path: str, + add_canceled_npi_features: bool, + drop_npi: List[str], +) -> pd.DataFrame: + countermeasures_df = pd.read_csv(countermeasures_path, parse_dates=["Date"]) + oxcgrt_df = pd.read_csv(oxcgrt_path, parse_dates=["Date"]) + johns_hopkins_df = pd.read_csv(johns_hopkins_path, parse_dates=["Date"]) + + oxcgrt_df = _filter_out_subregions(oxcgrt_df) + oxcgrt_df = _oxcgrt_to_npi_features(oxcgrt_df) + + index = _get_index(countermeasures_df, johns_hopkins_df, oxcgrt_df) + + log.info( + f"Merging NPI data. Exporting data from {index.get_level_values('Date').min()} to " + f"{index.get_level_values('Date').max()} for the following regions:\n" + f"{list(index.unique('Country Code'))}" + ) + + countermeasures_reindexed = _reindex_and_fill( + countermeasures_df.set_index(["Country Code", "Date"]), index + ) + oxcgrt_reindexed = _reindex_and_fill( + oxcgrt_df.set_index(["Country Code", "Date"]), index + ) + johns_hopkins_reindexed = johns_hopkins_df.set_index(["Code", "Date"]).reindex( + index + ) + + merged = countermeasures_reindexed.combine_first( + johns_hopkins_reindexed + ).combine_first(oxcgrt_reindexed) + + npi_names = [npi for npi in NPI_NAMES if npi not in drop_npi] + column_names = [col for col in countermeasures_df.columns if col not in drop_npi] + + if add_canceled_npi_features: + for intervention in npi_names: + canceled_name = f"CANCELED {intervention}" + merged[canceled_name] = merged.groupby(level="Country Code")[ + intervention + ].transform(add_canceled_interventions) + column_names.append(canceled_name) + + return merged.reset_index()[column_names].set_index("Country Code") + + +def _oxcgrt_to_npi_features(df: pd.DataFrame) -> pd.DataFrame: + df = df.set_index( + [ + "Country Code", + "Date", + "Region Name", + ] + ) + + features = {} + for npi_feature, oxcgrt_cols in OxCGRT_TRANSFORM_CONFIG.items(): + cols = [] + for col_name, value in oxcgrt_cols: + cols.append(df[col_name] >= value) + features[npi_feature] = pd.DataFrame(cols).all().astype(float) + + missing_cols = set(NPI_NAMES).difference(features.keys()) + oxcgrt_npis = pd.DataFrame(features).reset_index() + oxcgrt_npis.loc[:, missing_cols] = np.nan + + return oxcgrt_npis + + +def _filter_out_subregions(df: pd.DataFrame) -> pd.DataFrame: + return df[df["RegionCode"].isna()] + + +def _get_index( + countermeasures_df: pd.DataFrame, + johns_hopkins_df: pd.DataFrame, + oxcgrt_df: pd.DataFrame, +) -> pd.MultiIndex: + exported_countries = _get_index_country_codes( + countermeasures_df, johns_hopkins_df, oxcgrt_df + ) + date_range = _get_index_date_range(countermeasures_df, johns_hopkins_df, oxcgrt_df) + + return pd.MultiIndex.from_product( + [pd.Index(exported_countries), date_range], + sortorder=0, + names=["Country Code", "Date"], + ) + + +def _get_index_country_codes( + countermeasures_df: pd.DataFrame, + johns_hopkins_df: pd.DataFrame, + oxcgrt_df: pd.DataFrame, +) -> List[str]: + oxcgrt_codes = set(oxcgrt_df["Country Code"].dropna()) + jh_codes = set(johns_hopkins_df["Code"].dropna()) + countermeasures_codes = set(countermeasures_df["Country Code"].dropna()) + + # return sorted(countermeasures_codes.union(oxcgrt_codes).intersection(jh_codes)) + # Use just the original 40 countries from the paper, we will use explicit list of countries in the future + return list(countermeasures_codes.intersection(jh_codes).intersection(oxcgrt_codes)) + + +def _get_index_date_range( + countermeasures_df: pd.DataFrame, + johns_hopkins_df: pd.DataFrame, + oxcgrt_df: pd.DataFrame, +) -> pd.DatetimeIndex: + min_date = max( + johns_hopkins_df["Date"].min(), + min(countermeasures_df["Date"].min(), oxcgrt_df["Date"].min()), + ) + max_date = min( + johns_hopkins_df["Date"].max(), + oxcgrt_df["Date"].max(), + ) + + return pd.date_range(min_date, max_date) + + +def _reindex_and_fill(df: pd.DataFrame, index: pd.MultiIndex) -> pd.DataFrame: + return df.reindex(index).groupby(level="Country Code").apply(_fill_regions) + + +def _fill_regions(region_df: pd.DataFrame) -> pd.DataFrame: + region_df["Region Name"] = region_df["Region Name"].ffill().bfill() + return region_df + + +def add_canceled_interventions(country_intervention): + on_mask = country_intervention[(country_intervention == 1.0)] + first_time_on = ( + on_mask.idxmax() if on_mask.count() > 0 else country_intervention.index.max() + )[1] + cancled = (~country_intervention.astype(bool)).astype(float) + cancled[country_intervention.isna()] = np.nan + cancled[country_intervention.index.get_level_values("Date") <= first_time_on] = 0.0 + + return cancled diff --git a/data-pipeline/epimodel/imports/oxford_goverment_response.py b/data-pipeline/epimodel/imports/oxford_goverment_response.py new file mode 100644 index 00000000..e7014c71 --- /dev/null +++ b/data-pipeline/epimodel/imports/oxford_goverment_response.py @@ -0,0 +1,64 @@ +import logging +import pandas as pd + +log = logging.getLogger(__name__) + +RENAME_COLUMNS = { + "CountryCode": "Country Code", + "CountryName": "Region Name", +} + +DROP_COLUMNS = [ + "ConfirmedCases", + "ConfirmedDeaths", + "StringencyIndex", + "StringencyIndexForDisplay", + "StringencyLegacyIndex", + "StringencyLegacyIndexForDisplay", + "GovernmentResponseIndex", + "GovernmentResponseIndexForDisplay", + "ContainmentHealthIndex", + "ContainmentHealthIndexForDisplay", + "EconomicSupportIndex", + "EconomicSupportIndexForDisplay", +] + +INDEX_COLUMNS = ["Country Code", "Date", "Region Name"] + +SPECIAL_ISO_CODE_MAPPINGS = { + "HKG": "HK", + "MAC": "MO", + "NAM": "NA", + "RKS": "XK", +} + +GITHUB_URL = "https://raw.githubusercontent.com/OxCGRT/covid-policy-tracker/master/data/OxCGRT_latest.csv" + + +def import_oxford_government_response_tracker(regions: str, url=GITHUB_URL): + """ + + :param regions: + :param url: + :return: + """ + log.info(f"Downloading OxCGRT data from {GITHUB_URL}") + df = pd.read_csv( + url, dtype="U", usecols=lambda x: x not in DROP_COLUMNS, parse_dates=["Date"] + ) + + df = df.rename(columns=RENAME_COLUMNS) + df["Date"] = df["Date"].dt.tz_localize("UTC") + + return iso3_code_to_iso2(df, regions).set_index(INDEX_COLUMNS) + + +def iso3_code_to_iso2(df: pd.DataFrame, regions: str) -> pd.DataFrame: + regions_df = pd.read_csv(regions) + codes = regions_df.set_index("CountryCodeISOa3")["Code"] + iso3_to_iso2 = codes[~codes.str.contains("-", regex=False, na=True)].to_dict() + + iso3_to_iso2.update(SPECIAL_ISO_CODE_MAPPINGS) + df["Country Code"] = df["Country Code"].transform(lambda code: iso3_to_iso2[code]) + + return df diff --git a/data-pipeline/epimodel/pymc3_models/cm_effect/datapreprocessor.py b/data-pipeline/epimodel/pymc3_models/cm_effect/datapreprocessor.py index be8f1865..c1eaf5e2 100644 --- a/data-pipeline/epimodel/pymc3_models/cm_effect/datapreprocessor.py +++ b/data-pipeline/epimodel/pymc3_models/cm_effect/datapreprocessor.py @@ -35,12 +35,17 @@ def generate_params_dict(self): "confirmed_mask": self.min_num_active_mask, } - def preprocess_data(self, data_path): + def preprocess_data(self, data_path, extrapolation_period: int = 0): # load data df = pd.read_csv( data_path, parse_dates=["Date"], infer_datetime_format=True ).set_index(["Country Code", "Date"]) - Ds = list(df.index.levels[1]) + + dates = df.index.levels[1] + dates = dates.union( + pd.date_range(dates[-1], periods=extrapolation_period + 1, freq="D") + ) + Ds = list(dates) nDs = len(Ds) all_rs = list([r for r, _ in df.index]) @@ -55,9 +60,14 @@ def preprocess_data(self, data_path): logger.info("Dropping Healthcare Infection Control") df = df.drop("Healthcare Infection Control", axis=1) - countermeasures = list(df.columns[4:]) + countermeasures = list(df.columns[5:]) num_countermeasures = len(countermeasures) + df[countermeasures] = ( + df[countermeasures].groupby(level=0).fillna(method="ffill") + ) + df[countermeasures] = df[countermeasures].fillna(value=0) + active_countermeasures = np.zeros((nRs, num_countermeasures, nDs)) confirmed = np.zeros((nRs, nDs)) deaths = np.zeros((nRs, nDs)) @@ -67,14 +77,22 @@ def preprocess_data(self, data_path): for r_i, r in enumerate(sorted_regions): region_names[r_i] = df.loc[(r, Ds[0])]["Region Name"] - for d_i, d in enumerate(Ds): - confirmed[r_i, d_i] = df.loc[(r, d)]["Confirmed"] - deaths[r_i, d_i] = df.loc[(r, d)]["Deaths"] - active[r_i, d_i] = df.loc[(r, d)]["Active"] + confirmed[r_i, :-extrapolation_period] = df.loc[r]["Confirmed"] + deaths[r_i, :-extrapolation_period] = df.loc[r]["Deaths"] + active[r_i, :-extrapolation_period] = df.loc[r]["Active"] - active_countermeasures[r_i, :, :] = ( - df.loc[r].loc[Ds][countermeasures].values.T - ) + active_countermeasures[r_i, :, :-extrapolation_period] = ( + df.loc[r].loc[Ds[:-extrapolation_period]][countermeasures].values.T + ) + + last_countermeasures = ( + df.loc[r] + .loc[Ds[-extrapolation_period - 1]][countermeasures] + .values.reshape(-1, 1) + ) + active_countermeasures[ + r_i, :, -extrapolation_period: + ] = last_countermeasures # preprocess data confirmed[confirmed < self.min_confirmed] = np.nan diff --git a/data-pipeline/epimodel/pymc3_models/cm_effect/models.py b/data-pipeline/epimodel/pymc3_models/cm_effect/models.py index fa573aed..c875e4c2 100644 --- a/data-pipeline/epimodel/pymc3_models/cm_effect/models.py +++ b/data-pipeline/epimodel/pymc3_models/cm_effect/models.py @@ -138,8 +138,9 @@ class CMCombinedModel(BaseCMModel): This model is the model used to produce results in TODO reference. """ - def __init__(self, data, name="", model=None): + def __init__(self, data, name="", model=None, extrapolation_period: int = 0): super().__init__(data, name=name, model=model) + self.extrapolation_period = extrapolation_period # infection --> confirmed delay self.DelayProbCases = np.array( @@ -256,7 +257,9 @@ def __init__(self, data, name="", model=None): self.CMDelayCut = 30 self.DailyGrowthNoise = 0.2 - self.ObservedDaysIndex = np.arange(self.CMDelayCut, len(self.data.Ds)) + self.ObservedDaysIndex = np.arange( + self.CMDelayCut, len(self.data.Ds) - self.extrapolation_period + ) self.ObservedRegion_indexes = np.arange(len(self.data.Rs)) self.num_observed_regions = self.num_regions self.num_observed_days = len(self.ObservedDaysIndex) @@ -526,7 +529,7 @@ def region_forward_pass(self, region): self.trace.InfectedCases[:, country_idx, :] ).add_prefix("DailyInfectedCases_") - ec = self.trace.ExpectedCases[:, country_idx, :] + ec = np.clip(self.trace.ExpectedCases[:, country_idx, :], 0, 1e10) predicted_cases_result = self.produce_confidence_intervals( pm.NegativeBinomial.dist( mu=ec, @@ -534,7 +537,7 @@ def region_forward_pass(self, region): ).random() ).add_prefix("PredictedNewCases_") - ed = self.trace.ExpectedDeaths[:, country_idx, :] + ed = np.clip(self.trace.ExpectedDeaths[:, country_idx, :], 0, 1e10) _, num_days = ed.shape dist = pm.NegativeBinomial.dist( mu=ed + 1e-3, diff --git a/data-pipeline/epimodel/pymc3_models/cm_effect/pipeline.py b/data-pipeline/epimodel/pymc3_models/cm_effect/pipeline.py index 154703e2..53b4e539 100644 --- a/data-pipeline/epimodel/pymc3_models/cm_effect/pipeline.py +++ b/data-pipeline/epimodel/pymc3_models/cm_effect/pipeline.py @@ -5,15 +5,15 @@ from epimodel.pymc3_models.cm_effect import CMCombinedModel -def run_model(data_file: str, output_file: str): - dp = DataPreprocessor(drop_HS=True) - data = dp.preprocess_data(data_file) +def run_model(data_file: str, output_file: str, extrapolation_period: int): + dp = DataPreprocessor(mask_zero_deaths=True, mask_zero_cases=True) + data = dp.preprocess_data(data_file, extrapolation_period=extrapolation_period) - with CMCombinedModel(data) as model: + with CMCombinedModel(data, extrapolation_period=extrapolation_period) as model: model.build_model() with model.model: - model.trace = pm.sample(2000, chains=2, cores=8, target_accept=0.95) + model.trace = pm.sample(1000, tune=2000, chains=2, cores=2, target_accept=0.95) results = [] for region in model.data.Rs: diff --git a/data-pipeline/epimodel/tasks.py b/data-pipeline/epimodel/tasks.py index 04b0192d..f8d8e528 100644 --- a/data-pipeline/epimodel/tasks.py +++ b/data-pipeline/epimodel/tasks.py @@ -3,8 +3,9 @@ import os import shutil import tempfile -from datetime import datetime +from datetime import datetime, date from pathlib import Path +from typing import List import luigi import yaml @@ -12,8 +13,11 @@ from epimodel import Level, RegionDataset, algorithms, imports from epimodel.exports.epidemics_org import process_export, upload_export -from epimodel.gleam import Batch from epimodel.imports.interventions import create_intervetions_dict +from epimodel.exports.npi_model_export import ( + process_model_export, +) # , upload_model_export +from epimodel.gleam import Batch from epimodel.pymc3_models.cm_effect import run_model logger = logging.getLogger(__name__) @@ -551,7 +555,7 @@ def requires(self): "r_estimates": EstimateR(), "hospital_capacity": HospitalCapacity(), "interventions": Interventions(), - "npi_model": NPIModel(), + "model_data": PaperCountermeasuresData(), **RegionsDatasetSubroutine.requires(), } if self.automatic: @@ -640,10 +644,31 @@ def complete(self): # if rewritten, then this task could be a regular luigi.Task -class ModelData(luigi.ExternalTask): +class OxfordGovermentResponseData(luigi.Task): + """Downloads data from OxCGRT github and exports them as CSV""" + + oxcgrt_output: str = luigi.Parameter( + description="Output filename of the exported data relative to config output dir.", + ) + + def requires(self): + return {"regions_file": RegionsFile()} + + def output(self): + return luigi.LocalTarget(self.oxcgrt_output) + + def run(self): + regions = self.input()["regions_file"].path + oxcgrt = imports.import_oxford_government_response_tracker(regions) + oxcgrt.to_csv(self.oxcgrt_output) + logger.info( + f"Saved OxCGRT to {self.oxcgrt_output}, last day is {oxcgrt.index.get_level_values('Date').max()}" + ) + + +class PaperCountermeasuresData(luigi.ExternalTask): """ - The model data - merged JH with countermeasures - TODO: have a task that merges JH with countermeasures from another data source + The original countermeasures data used in the paper - merged JH with countermeasures """ data_file: str = luigi.Parameter( @@ -654,6 +679,48 @@ def output(self): return luigi.LocalTarget(self.data_file) +class MergeNPIData(luigi.Task): + """Merge NPI model data into one file""" + + merged_npi_output: str = luigi.Parameter( + description="Output filename of the exported data relative to config output dir.", + ) + + add_canceled_npi_features: bool = luigi.BoolParameter( + description="Whether to create additional interventions which are turned on" + " when a real intervention is turned off " + ) + + drop_features: List[str] = luigi.ListParameter( + default=[], + description="List of features which should be dropped from the merged data", + ) + + def requires(self): + return { + "countermeasures": PaperCountermeasuresData(), + "oxcgrt": OxfordGovermentResponseData(), + "johns_hopkins": JohnsHopkins(), + } + + def output(self): + return luigi.LocalTarget(self.merged_npi_output) + + def run(self): + countermeasures = self.input()["countermeasures"] + oxcgrt = self.input()["oxcgrt"] + johns_hopkins = self.input()["johns_hopkins"] + merged = imports.merge_npi_datasets( + countermeasures.path, + oxcgrt.path, + johns_hopkins.path, + self.add_canceled_npi_features, + self.drop_features, + ) + merged.to_csv(self.merged_npi_output) + logger.info(f"Saved merged data to {self.merged_npi_output}") + + class Interventions(luigi.ExternalTask): """ Creates interventions json for model graphs visualization @@ -664,7 +731,7 @@ class Interventions(luigi.ExternalTask): ) def requires(self): - return {"model_data": ModelData()} + return {"model_data": MergeNPIData()} def run(self): interventions = create_intervetions_dict(self.input()["model_data"].path) @@ -678,15 +745,92 @@ def output(self): class NPIModel(luigi.Task): + """Computes the NPI model""" + output_file: str = luigi.Parameter( description="Path to the csv file with the model predictions", ) + extrapolation_period: int = luigi.IntParameter( + description="Number of days the model extrapolates", + ) + def requires(self): - return {"model_data": ModelData()} + return {"model_data": MergeNPIData()} def output(self): return luigi.LocalTarget(self.output_file) def run(self): - run_model(self.input()["model_data"].path, self.output_file) + run_model( + self.input()["model_data"].path, self.output_file, self.extrapolation_period + ) + + +class ExportNPIModelResults(luigi.Task): + """Generates export of the NPI model results used by the website.""" + + export_name: str = luigi.Parameter( + description="Directory name with exported files inside web_export_directory" + ) + pretty_print: bool = luigi.BoolParameter( + description="If true, result JSONs are indented by 4 spaces" + ) + web_export_directory: str = luigi.Parameter( + description="Root subdirectory for all exports.", + ) + model_results_filename_suffix: str = luigi.Parameter( + description="The default suffix of the mode results JSON file. " + "The filename will be in format yyyy-mm-dd_", + ) + export_latest: bool = luigi.Parameter( + description="If yes the JSON with results will also be copied into file " + "latest_" + ) + comment: str = luigi.Parameter( + description="Optional comment to the export", + ) + resample: str = luigi.Parameter(description="Pandas dataseries resample") + overwrite: bool = luigi.BoolParameter( + description="Whether to overwrite an already existing export" + ) + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + filename = f"{date.today()}_{self.model_results_filename_suffix}" + self.export_dir = Path(self.web_export_directory, self.export_name) + self.full_export_path = self.export_dir / filename + self.latest_export_path = ( + self.export_dir / f"latest_{self.model_results_filename_suffix}" + if self.export_latest + else None + ) + + def requires(self): + return { + "config_yaml": ConfigYaml(), + "model_data": MergeNPIData(), + "npi_model": NPIModel(), + **RegionsDatasetSubroutine.requires(), + } + + def output(self): + return luigi.LocalTarget(self.full_export_path) + + def run(self): + config_yaml = ConfigYaml.load(self.input()["config_yaml"].path) + regions_dataset = RegionsDatasetSubroutine.load_rds(self) + + ex = process_model_export( + self.input(), + regions_dataset, + self.comment, + config_yaml, + self.resample, + ) + ex.write( + self.full_export_path, + latest=self.latest_export_path, + overwrite=self.overwrite, + indent=4 if self.pretty_print else None, + ) diff --git a/data-pipeline/luigi.cfg b/data-pipeline/luigi.cfg index 9d20b332..bb9cba32 100644 --- a/data-pipeline/luigi.cfg +++ b/data-pipeline/luigi.cfg @@ -30,6 +30,12 @@ regions_dataset = %(output_directory)s/region_dataset.pk [JohnsHopkins] hopkins_output = %(output_directory)s/john-hopkins.csv +[OxfordGovermentResponseData] +oxcgrt_output = %(output_directory)s/oxcgrt-data.csv + +[PaperCountermeasuresData] +data_file = %(input_directory)s/countermeasures_model_data.csv + [SerialIntervalSample] serial_interval_sample = %(input_directory)s/si_sample.rds @@ -96,11 +102,29 @@ overwrite = false gs_prefix = gs://static-covid/static/v4 channel = test -[ModelData] -data_file = %(input_directory)s/countermeasures_model_data.csv +[MergeNPIData] +merged_npi_output = %(output_directory)s/merged_model_data.csv +add_canceled_npi_features = True +drop_features = [ + "Travel Screen/Quarantine", + "Travel Bans", + "Public Transport Limited", + "Internal Movement Limited", + "Public Information Campaigns" + ] [Interventions] path = %(output_directory)s/interventions.json [NPIModel] output_file = %(output_directory)s/npi_model_results.csv +extrapolation_period = 90 + +[ExportNPIModelResults] +pretty_print = false +web_export_directory = %(output_directory)s/web-exports +model_results_filename_suffix = npi-results.json +export_latest = true +comment = +resample = %(timeseries_resample)s +overwrite = false diff --git a/data-pipeline/poetry.lock b/data-pipeline/poetry.lock index 81dc0ee2..cdc0d8c7 100644 --- a/data-pipeline/poetry.lock +++ b/data-pipeline/poetry.lock @@ -139,7 +139,7 @@ description = "Foreign Function Interface for Python calling C code." name = "cffi" optional = false python-versions = "*" -version = "1.14.1" +version = "1.14.2" [package.dependencies] pycparser = "*" @@ -224,6 +224,15 @@ version = "0.10.0" [package.dependencies] six = "*" +[[package]] +category = "main" +description = "A backport of the dataclasses module for Python 3.6" +marker = "python_version < \"3.7\"" +name = "dataclasses" +optional = true +python-versions = "*" +version = "0.6" + [[package]] category = "main" description = "Decorators for Humans" @@ -270,7 +279,7 @@ description = "A nested progress with plotting options for fastai" name = "fastprogress" optional = true python-versions = ">=3.6" -version = "0.2.4" +version = "0.2.6" [[package]] category = "dev" @@ -316,7 +325,7 @@ description = "Google Authentication Library" name = "google-auth" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" -version = "1.20.0" +version = "1.20.1" [package.dependencies] cachetools = ">=2.0.0,<5.0" @@ -406,7 +415,7 @@ description = "File identification library for Python" name = "identify" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" -version = "1.4.25" +version = "1.4.28" [package.extras] license = ["editdistance"] @@ -461,6 +470,14 @@ version = ">=0.4" [package.extras] docs = ["sphinx", "rst.linker", "jaraco.packaging"] +[[package]] +category = "main" +description = "Intel(R) OpenMP Runtime Library" +name = "intel-openmp" +optional = false +python-versions = "*" +version = "2020.0.133" + [[package]] category = "main" description = "IPython Kernel for Jupyter" @@ -673,7 +690,7 @@ description = "The JupyterLab notebook server extension." name = "jupyterlab" optional = false python-versions = ">=3.5" -version = "2.2.2" +version = "2.2.5" [package.dependencies] jinja2 = ">=2.10" @@ -750,9 +767,10 @@ description = "Python plotting package" name = "matplotlib" optional = true python-versions = ">=3.6" -version = "3.3.0" +version = "3.3.1" [package.dependencies] +certifi = ">=2020.06.20" cycler = ">=0.10" kiwisolver = ">=1.0.1" numpy = ">=1.15" @@ -768,6 +786,17 @@ optional = false python-versions = "*" version = "0.8.4" +[[package]] +category = "main" +description = "Math library for Intel and compatible processors" +name = "mkl" +optional = false +python-versions = "*" +version = "2019.0" + +[package.dependencies] +intel-openmp = "*" + [[package]] category = "dev" description = "More routines for operating on iterables, beyond itertools" @@ -870,7 +899,7 @@ description = "A web-based notebook environment for interactive computing" name = "notebook" optional = false python-versions = ">=3.5" -version = "6.1.1" +version = "6.1.3" [package.dependencies] Send2Trash = "*" @@ -1120,7 +1149,7 @@ description = "Library for building powerful interactive command lines in Python name = "prompt-toolkit" optional = false python-versions = ">=3.6.1" -version = "3.0.5" +version = "3.0.6" [package.dependencies] wcwidth = "*" @@ -1183,7 +1212,7 @@ description = "Probabilistic Programming in Python: Bayesian Modeling and Probab name = "pymc3" optional = true python-versions = ">=3.6" -version = "3.9.2" +version = "3.9.3" [package.dependencies] arviz = ">=0.9.0" @@ -1193,13 +1222,17 @@ numpy = ">=1.13.0" pandas = ">=0.18.0" patsy = ">=0.5.1" scipy = ">=0.18.1" -theano = ">=1.0.4" +theano = ">=1.0.5" typing-extensions = ">=3.7.4" [package.dependencies.contextvars] python = "<3.7" version = "*" +[package.dependencies.dataclasses] +python = "<3.7" +version = "*" + [[package]] category = "main" description = "Python parsing module" @@ -1362,7 +1395,7 @@ description = "Jupyter Qt console" name = "qtconsole" optional = true python-versions = "*" -version = "4.7.5" +version = "4.7.6" [package.dependencies] ipykernel = ">=4.1" @@ -1538,7 +1571,7 @@ test = ["pathlib2"] category = "main" description = "Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs." name = "theano" -optional = true +optional = false python-versions = "*" version = "1.0.5" @@ -1648,8 +1681,7 @@ description = "Virtual Python Environment builder" name = "virtualenv" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" -version = "20.0.30" - +version = "20.0.31" [package.dependencies] appdirs = ">=1.4.3,<2" @@ -1727,8 +1759,7 @@ pymc3 = ["pymc3", "jupyter", "seaborn"] pyro = ["pyro-ppl", "jupyter", "seaborn"] [metadata] -content-hash = "e38cb4363f5a01f09722022ff07be612ac98c9a18ab156930c312e44ca9feef2" - +content-hash = "343e5b1d19cb599aa578ddd1ca9864bec7f4f4c7b0c2b0751ce6f9c6f5154aa8" lock-version = "1.0" python-versions = ">=3.6.8" @@ -1792,34 +1823,34 @@ certifi = [ {file = "certifi-2020.6.20.tar.gz", hash = "sha256:5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3"}, ] cffi = [ - {file = "cffi-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:66dd45eb9530e3dde8f7c009f84568bc7cac489b93d04ac86e3111fb46e470c2"}, - {file = "cffi-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:4f53e4128c81ca3212ff4cf097c797ab44646a40b42ec02a891155cd7a2ba4d8"}, - {file = "cffi-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:833401b15de1bb92791d7b6fb353d4af60dc688eaa521bd97203dcd2d124a7c1"}, - {file = "cffi-1.14.1-cp27-cp27m-win32.whl", hash = "sha256:26f33e8f6a70c255767e3c3f957ccafc7f1f706b966e110b855bfe944511f1f9"}, - {file = "cffi-1.14.1-cp27-cp27m-win_amd64.whl", hash = "sha256:b87dfa9f10a470eee7f24234a37d1d5f51e5f5fa9eeffda7c282e2b8f5162eb1"}, - {file = "cffi-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:effd2ba52cee4ceff1a77f20d2a9f9bf8d50353c854a282b8760ac15b9833168"}, - {file = "cffi-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bac0d6f7728a9cc3c1e06d4fcbac12aaa70e9379b3025b27ec1226f0e2d404cf"}, - {file = "cffi-1.14.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d6033b4ffa34ef70f0b8086fd4c3df4bf801fee485a8a7d4519399818351aa8e"}, - {file = "cffi-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:8416ed88ddc057bab0526d4e4e9f3660f614ac2394b5e019a628cdfff3733849"}, - {file = "cffi-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:892daa86384994fdf4856cb43c93f40cbe80f7f95bb5da94971b39c7f54b3a9c"}, - {file = "cffi-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:c991112622baee0ae4d55c008380c32ecfd0ad417bcd0417ba432e6ba7328caa"}, - {file = "cffi-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:fcf32bf76dc25e30ed793145a57426064520890d7c02866eb93d3e4abe516948"}, - {file = "cffi-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f960375e9823ae6a07072ff7f8a85954e5a6434f97869f50d0e41649a1c8144f"}, - {file = "cffi-1.14.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a6d28e7f14ecf3b2ad67c4f106841218c8ab12a0683b1528534a6c87d2307af3"}, - {file = "cffi-1.14.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:cda422d54ee7905bfc53ee6915ab68fe7b230cacf581110df4272ee10462aadc"}, - {file = "cffi-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:4a03416915b82b81af5502459a8a9dd62a3c299b295dcdf470877cb948d655f2"}, - {file = "cffi-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:4ce1e995aeecf7cc32380bc11598bfdfa017d592259d5da00fc7ded11e61d022"}, - {file = "cffi-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e23cb7f1d8e0f93addf0cae3c5b6f00324cccb4a7949ee558d7b6ca973ab8ae9"}, - {file = "cffi-1.14.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ddff0b2bd7edcc8c82d1adde6dbbf5e60d57ce985402541cd2985c27f7bec2a0"}, - {file = "cffi-1.14.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f90c2267101010de42f7273c94a1f026e56cbc043f9330acd8a80e64300aba33"}, - {file = "cffi-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:3cd2c044517f38d1b577f05927fb9729d3396f1d44d0c659a445599e79519792"}, - {file = "cffi-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fa72a52a906425416f41738728268072d5acfd48cbe7796af07a923236bcf96"}, - {file = "cffi-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:267adcf6e68d77ba154334a3e4fc921b8e63cbb38ca00d33d40655d4228502bc"}, - {file = "cffi-1.14.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:d3148b6ba3923c5850ea197a91a42683f946dba7e8eb82dfa211ab7e708de939"}, - {file = "cffi-1.14.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:98be759efdb5e5fa161e46d404f4e0ce388e72fbf7d9baf010aff16689e22abe"}, - {file = "cffi-1.14.1-cp38-cp38-win32.whl", hash = "sha256:6923d077d9ae9e8bacbdb1c07ae78405a9306c8fd1af13bfa06ca891095eb995"}, - {file = "cffi-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:b1d6ebc891607e71fd9da71688fcf332a6630b7f5b7f5549e6e631821c0e5d90"}, - {file = "cffi-1.14.1.tar.gz", hash = "sha256:b2a2b0d276a136146e012154baefaea2758ef1f56ae9f4e01c612b0831e0bd2f"}, + {file = "cffi-1.14.2-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:da9d3c506f43e220336433dffe643fbfa40096d408cb9b7f2477892f369d5f82"}, + {file = "cffi-1.14.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23e44937d7695c27c66a54d793dd4b45889a81b35c0751ba91040fe825ec59c4"}, + {file = "cffi-1.14.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:0da50dcbccd7cb7e6c741ab7912b2eff48e85af217d72b57f80ebc616257125e"}, + {file = "cffi-1.14.2-cp27-cp27m-win32.whl", hash = "sha256:76ada88d62eb24de7051c5157a1a78fd853cca9b91c0713c2e973e4196271d0c"}, + {file = "cffi-1.14.2-cp27-cp27m-win_amd64.whl", hash = "sha256:15a5f59a4808f82d8ec7364cbace851df591c2d43bc76bcbe5c4543a7ddd1bf1"}, + {file = "cffi-1.14.2-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:e4082d832e36e7f9b2278bc774886ca8207346b99f278e54c9de4834f17232f7"}, + {file = "cffi-1.14.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:57214fa5430399dffd54f4be37b56fe22cedb2b98862550d43cc085fb698dc2c"}, + {file = "cffi-1.14.2-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:6843db0343e12e3f52cc58430ad559d850a53684f5b352540ca3f1bc56df0731"}, + {file = "cffi-1.14.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:577791f948d34d569acb2d1add5831731c59d5a0c50a6d9f629ae1cefd9ca4a0"}, + {file = "cffi-1.14.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:8662aabfeab00cea149a3d1c2999b0731e70c6b5bac596d95d13f643e76d3d4e"}, + {file = "cffi-1.14.2-cp35-cp35m-win32.whl", hash = "sha256:837398c2ec00228679513802e3744d1e8e3cb1204aa6ad408b6aff081e99a487"}, + {file = "cffi-1.14.2-cp35-cp35m-win_amd64.whl", hash = "sha256:bf44a9a0141a082e89c90e8d785b212a872db793a0080c20f6ae6e2a0ebf82ad"}, + {file = "cffi-1.14.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:29c4688ace466a365b85a51dcc5e3c853c1d283f293dfcc12f7a77e498f160d2"}, + {file = "cffi-1.14.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:99cc66b33c418cd579c0f03b77b94263c305c389cb0c6972dac420f24b3bf123"}, + {file = "cffi-1.14.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:65867d63f0fd1b500fa343d7798fa64e9e681b594e0a07dc934c13e76ee28fb1"}, + {file = "cffi-1.14.2-cp36-cp36m-win32.whl", hash = "sha256:f5033952def24172e60493b68717792e3aebb387a8d186c43c020d9363ee7281"}, + {file = "cffi-1.14.2-cp36-cp36m-win_amd64.whl", hash = "sha256:7057613efefd36cacabbdbcef010e0a9c20a88fc07eb3e616019ea1692fa5df4"}, + {file = "cffi-1.14.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6539314d84c4d36f28d73adc1b45e9f4ee2a89cdc7e5d2b0a6dbacba31906798"}, + {file = "cffi-1.14.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:672b539db20fef6b03d6f7a14b5825d57c98e4026401fce838849f8de73fe4d4"}, + {file = "cffi-1.14.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:95e9094162fa712f18b4f60896e34b621df99147c2cee216cfa8f022294e8e9f"}, + {file = "cffi-1.14.2-cp37-cp37m-win32.whl", hash = "sha256:b9aa9d8818c2e917fa2c105ad538e222a5bce59777133840b93134022a7ce650"}, + {file = "cffi-1.14.2-cp37-cp37m-win_amd64.whl", hash = "sha256:e4b9b7af398c32e408c00eb4e0d33ced2f9121fd9fb978e6c1b57edd014a7d15"}, + {file = "cffi-1.14.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e613514a82539fc48291d01933951a13ae93b6b444a88782480be32245ed4afa"}, + {file = "cffi-1.14.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:9b219511d8b64d3fa14261963933be34028ea0e57455baf6781fe399c2c3206c"}, + {file = "cffi-1.14.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:c0b48b98d79cf795b0916c57bebbc6d16bb43b9fc9b8c9f57f4cf05881904c75"}, + {file = "cffi-1.14.2-cp38-cp38-win32.whl", hash = "sha256:15419020b0e812b40d96ec9d369b2bc8109cc3295eac6e013d3261343580cc7e"}, + {file = "cffi-1.14.2-cp38-cp38-win_amd64.whl", hash = "sha256:12a453e03124069b6896107ee133ae3ab04c624bb10683e1ed1c1663df17c13c"}, + {file = "cffi-1.14.2.tar.gz", hash = "sha256:ae8f34d50af2c2154035984b8b5fc5d9ed63f32fe615646ab435b05b132ca91b"}, ] cfgv = [ {file = "cfgv-3.2.0-py2.py3-none-any.whl", hash = "sha256:32e43d604bbe7896fe7c248a9c2276447dbef840feb28fe20494f62af110211d"}, @@ -1866,6 +1897,10 @@ cycler = [ {file = "cycler-0.10.0-py2.py3-none-any.whl", hash = "sha256:1d8a5ae1ff6c5cf9b93e8811e581232ad8920aeec647c37316ceac982b08cb2d"}, {file = "cycler-0.10.0.tar.gz", hash = "sha256:cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8"}, ] +dataclasses = [ + {file = "dataclasses-0.6-py3-none-any.whl", hash = "sha256:454a69d788c7fda44efd71e259be79577822f5e3f53f029a22d08004e951dc9f"}, + {file = "dataclasses-0.6.tar.gz", hash = "sha256:6988bd2b895eef432d562370bb707d540f32f7360ab13da45340101bc2307d84"}, +] decorator = [ {file = "decorator-4.4.2-py2.py3-none-any.whl", hash = "sha256:41fa54c2a0cc4ba648be4fd43cff00aedf5b9465c9bf18d64325bc225f08f760"}, {file = "decorator-4.4.2.tar.gz", hash = "sha256:e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7"}, @@ -1887,8 +1922,8 @@ entrypoints = [ {file = "entrypoints-0.3.tar.gz", hash = "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451"}, ] fastprogress = [ - {file = "fastprogress-0.2.4-py3-none-any.whl", hash = "sha256:92e12e24700f673020a7184c169e55b6a5d4636806887963c3572621a14d6a9a"}, - {file = "fastprogress-0.2.4.tar.gz", hash = "sha256:37e46151e3bb4f9e53e5a9cacccac26926fe4c62f04a4a81d040ec08f2c22e77"}, + {file = "fastprogress-0.2.6-py3-none-any.whl", hash = "sha256:f13593b2b1f33d93377b7e680a31a8f283862118cc6b95dcb6570b9431ea6bae"}, + {file = "fastprogress-0.2.6.tar.gz", hash = "sha256:163ec01c0b4262cfa2fe3a5d3b59bd6d5f784d4c99939e3720cd67ac411cf38d"}, ] filelock = [ {file = "filelock-3.0.12-py3-none-any.whl", hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836"}, @@ -1906,8 +1941,8 @@ gitpython = [ {file = "GitPython-3.1.7.tar.gz", hash = "sha256:2db287d71a284e22e5c2846042d0602465c7434d910406990d5b74df4afb0858"}, ] google-auth = [ - {file = "google-auth-1.20.0.tar.gz", hash = "sha256:c6e9735a2ee829a75b546702e460489db5cc35567a27fabd70b7c459f11efd58"}, - {file = "google_auth-1.20.0-py2.py3-none-any.whl", hash = "sha256:25c97cec5d4f6821f3ab67eb25b264fb00fda8fb9e2f05869bfa93dfcb8b50ee"}, + {file = "google-auth-1.20.1.tar.gz", hash = "sha256:2f34dd810090d0d4c9d5787c4ad7b4413d1fbfb941e13682c7a2298d3b6cdcc8"}, + {file = "google_auth-1.20.1-py2.py3-none-any.whl", hash = "sha256:ce1fb80b5c6d3dd038babcc43e221edeafefc72d983b3dc28b67b996f76f00b9"}, ] google-auth-oauthlib = [ {file = "google-auth-oauthlib-0.4.1.tar.gz", hash = "sha256:88d2cd115e3391eb85e1243ac6902e76e77c5fe438b7276b297fbe68015458dd"}, @@ -1961,8 +1996,8 @@ humanfriendly = [ {file = "humanfriendly-8.2.tar.gz", hash = "sha256:bf52ec91244819c780341a3438d5d7b09f431d3f113a475147ac9b7b167a3d12"}, ] identify = [ - {file = "identify-1.4.25-py2.py3-none-any.whl", hash = "sha256:ccd88716b890ecbe10920659450a635d2d25de499b9a638525a48b48261d989b"}, - {file = "identify-1.4.25.tar.gz", hash = "sha256:110ed090fec6bce1aabe3c72d9258a9de82207adeaa5a05cd75c635880312f9a"}, + {file = "identify-1.4.28-py2.py3-none-any.whl", hash = "sha256:69c4769f085badafd0e04b1763e847258cbbf6d898e8678ebffc91abdb86f6c6"}, + {file = "identify-1.4.28.tar.gz", hash = "sha256:d6ae6daee50ba1b493e9ca4d36a5edd55905d2cf43548fdc20b2a14edef102e7"}, ] idna = [ {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"}, @@ -1990,6 +2025,9 @@ importlib-resources = [ {file = "importlib_resources-3.0.0-py2.py3-none-any.whl", hash = "sha256:d028f66b66c0d5732dae86ba4276999855e162a749c92620a38c1d779ed138a7"}, {file = "importlib_resources-3.0.0.tar.gz", hash = "sha256:19f745a6eca188b490b1428c8d1d4a0d2368759f32370ea8fb89cad2ab1106c3"}, ] +intel-openmp = [ + {file = "intel_openmp-2020.0.133-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:cb9a12b0a1cb3f9c44a75959f687e548dc642a9470be3c63f73bccf291b8dcc8"}, +] ipykernel = [ {file = "ipykernel-5.3.4-py3-none-any.whl", hash = "sha256:d6fbba26dba3cebd411382bc484f7bc2caa98427ae0ddb4ab37fe8bfeb5c7dd3"}, {file = "ipykernel-5.3.4.tar.gz", hash = "sha256:9b2652af1607986a1b231c62302d070bc0534f564c393a5d9d130db9abbbe89d"}, @@ -2040,8 +2078,8 @@ jupyter-core = [ {file = "jupyter_core-4.6.3.tar.gz", hash = "sha256:394fd5dd787e7c8861741880bdf8a00ce39f95de5d18e579c74b882522219e7e"}, ] jupyterlab = [ - {file = "jupyterlab-2.2.2-py3-none-any.whl", hash = "sha256:d0d743ea75b8eee20a18b96ccef24f76ee009bafb2617f3f330698fe3a00026e"}, - {file = "jupyterlab-2.2.2.tar.gz", hash = "sha256:8aa9bc4b5020e7b9ec6e006d516d48bddf7d2528680af65840464ee722d59db3"}, + {file = "jupyterlab-2.2.5-py3-none-any.whl", hash = "sha256:0fdab89e647eecc33fd3057c3d8b4896da365b22223e2174356ab05288f5b0ec"}, + {file = "jupyterlab-2.2.5.tar.gz", hash = "sha256:f7d669b33192e89c499b884994a9194175981d586631ced2a0793950238eef81"}, ] jupyterlab-server = [ {file = "jupyterlab_server-1.2.0-py3-none-any.whl", hash = "sha256:55d256077bf13e5bc9e8fbd5aac51bef82f6315111cec6b712b9a5ededbba924"}, @@ -2111,32 +2149,34 @@ markupsafe = [ {file = "MarkupSafe-1.1.1.tar.gz", hash = "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"}, ] matplotlib = [ - {file = "matplotlib-3.3.0-1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0786ac32983191fcd9cc0230b4ec2f8b3c25dee9beca46ca506c5d6cc5c593d"}, - {file = "matplotlib-3.3.0-1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:f9753c6292d5a1fe46828feb38d1de1820e3ea109a5fea0b6ea1dca6e9d0b220"}, - {file = "matplotlib-3.3.0-1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6aa7ea00ad7d898704ffed46e83efd7ec985beba57f507c957979f080678b9ea"}, - {file = "matplotlib-3.3.0-1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:19cf4db0272da286863a50406f6430101af129f288c421b1a7f33ddfc8d0180f"}, - {file = "matplotlib-3.3.0-1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ebb6168c9330309b1f3360d36c481d8cd621a490cf2a69c9d6625b2a76777c12"}, - {file = "matplotlib-3.3.0-1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:695b4165520bdfe381d15a6db03778babb265fee7affdc43e169a881f3f329bc"}, - {file = "matplotlib-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9ccc651261b7044ffc3b1e2f9af17b1ef4c6a12fc080b5a7353ef0b53a50be28"}, - {file = "matplotlib-3.3.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:e3868686f3023644523df486fc224b0af4349f3cdb933b0a71f261a574d7b65f"}, - {file = "matplotlib-3.3.0-cp36-cp36m-win32.whl", hash = "sha256:7c9adba58a67d23cc131c4189da56cb1d0f18a237c43188d831a44e4fc5df15a"}, - {file = "matplotlib-3.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:855bb281f3cc8e23ef66064a2beb229674fdf785638091fc82a172e3e84c2780"}, - {file = "matplotlib-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7ce8f5364c74aac06abad84d8744d659bd86036e86c4ebf14c75ae4292597b46"}, - {file = "matplotlib-3.3.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:605e4d43b421524ad955a56535391e02866d07bce27c644e2c99e25fb59d63d1"}, - {file = "matplotlib-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:cef05e9a2302f96d6f0666ee70ac7715cbc12e3802d8b8eb80bacd6ab81a0a24"}, - {file = "matplotlib-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:bf8d527a2eb9a5db1c9e5e405d1b1c4e66be983620c9ce80af6aae430d9a0c9c"}, - {file = "matplotlib-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c06ea133b44805d42f2507cb3503f6647b0c7918f1900b5063f5a8a69c63f6d2"}, - {file = "matplotlib-3.3.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:09b4096748178bcc764b81587b00ab720eac24965d2bf44ecbe09dcf4e8ed253"}, - {file = "matplotlib-3.3.0-cp38-cp38-win32.whl", hash = "sha256:c1f850908600efa60f81ad14eedbaf7cb17185a2c6d26586ae826ae5ce21f6e0"}, - {file = "matplotlib-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:2a9d10930406748b50f60c5fa74c399a1c1080aa6ce6e3fe5f38473b02f6f06d"}, - {file = "matplotlib-3.3.0-cp39-cp39-win32.whl", hash = "sha256:244a9088140a4c540e0a2db9c8ada5ad12520efded592a46e5bc43ff8f0fd0aa"}, - {file = "matplotlib-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:f74c39621b03cec7bc08498f140192ac26ca940ef20beac6dfad3714d2298b2a"}, - {file = "matplotlib-3.3.0.tar.gz", hash = "sha256:24e8db94948019d531ce0bcd637ac24b1c8f6744ac86d2aa0eb6dbaeb1386f82"}, + {file = "matplotlib-3.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:282f8a077a1217f9f2ac178596f27c1ae94abbc6e7b785e1b8f25e83918e9199"}, + {file = "matplotlib-3.3.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:83ae7261f4d5ab387be2caee29c4f499b1566f31c8ac97a0b8ab61afd9e3da92"}, + {file = "matplotlib-3.3.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:1f9cf2b8500b833714a193cb24281153f5072d55b2e486009f1e81f0b7da3410"}, + {file = "matplotlib-3.3.1-cp36-cp36m-win32.whl", hash = "sha256:0dc15e1ad84ec06bf0c315e6c4c2cced13a21ce4c2b4955bb75097064a4b1e92"}, + {file = "matplotlib-3.3.1-cp36-cp36m-win_amd64.whl", hash = "sha256:ffbae66e2db70dc330cb3299525f97e1c0efdfc763e04e1a4e08f968c7ad21f0"}, + {file = "matplotlib-3.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88c6ab4a32a7447dad236b8371612aaba5c967d632ff11999e0478dd687f2c58"}, + {file = "matplotlib-3.3.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:cc2d6b47c8fee89da982a312b54949ec0cd6a7976a8cafb5b62dea6c9883a14d"}, + {file = "matplotlib-3.3.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:636c6330a7dcb18bac114dbeaff314fbbb0c11682f9a9601de69a50e331d18d7"}, + {file = "matplotlib-3.3.1-cp37-cp37m-win32.whl", hash = "sha256:73a493e340064e8fe03207d9333b68baca30d9f0da543ae4af6b6b4f13f0fe05"}, + {file = "matplotlib-3.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6739b6cd9278d5cb337df0bd4400ad37bbd04c6dc7aa2c65e1e83a02bc4cc6fd"}, + {file = "matplotlib-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79f0c4730ad422ecb6bda814c9a9b375df36d6bd5a49eaa14e92e5f5e3e95ac3"}, + {file = "matplotlib-3.3.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e4d6d3afc454b4afc0d9d0ed52a8fa40a1b0d8f33c8e143e49a5833a7e32266b"}, + {file = "matplotlib-3.3.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:96a5e667308dbf45670370d9dffb974e73b15bac0df0b5f3fb0b0ac7a572290e"}, + {file = "matplotlib-3.3.1-cp38-cp38-win32.whl", hash = "sha256:bd8fceaa3494b531d43b6206966ba15705638137fc2dc5da5ee560cf9476867b"}, + {file = "matplotlib-3.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:1507c2a8e4662f6fa1d3ecc760782b158df8a3244ecc21c1d8dbb1cd0b3f872e"}, + {file = "matplotlib-3.3.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c3619ec2a5ead430a4536ebf8c77ea55d8ce36418919f831d35bc657ed5f27e"}, + {file = "matplotlib-3.3.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl", hash = "sha256:9703bc00a94a94c4e94b2ea0fbfbc9d2bb21159733134639fd931b6606c5c47e"}, + {file = "matplotlib-3.3.1.tar.gz", hash = "sha256:87f53bcce90772f942c2db56736788b39332d552461a5cb13f05ff45c1680f0e"}, ] mistune = [ {file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"}, {file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"}, ] +mkl = [ + {file = "mkl-2019.0-py2.py3-none-macosx_10_12_intel.macosx_10_12_x86_64.whl", hash = "sha256:23c8e8ba2cac703d8bc357d2bf10519e91dc4371e7dd1decf461f70db20b9783"}, + {file = "mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344"}, + {file = "mkl-2019.0-py2.py3-none-win_amd64.whl", hash = "sha256:288098fb4762243a83752f8343a89558ea5f9c33eef79221614c6f9534a56445"}, +] more-itertools = [ {file = "more-itertools-8.4.0.tar.gz", hash = "sha256:68c70cc7167bdf5c7c9d8f6954a7837089c6a36bf565383919bb595efb8a17e5"}, {file = "more_itertools-8.4.0-py3-none-any.whl", hash = "sha256:b78134b2063dd214000685165d81c154522c3ee0a1c0d4d113c80361c234c5a2"}, @@ -2177,8 +2217,8 @@ nodeenv = [ {file = "nodeenv-1.4.0-py2.py3-none-any.whl", hash = "sha256:4b0b77afa3ba9b54f4b6396e60b0c83f59eaeb2d63dc3cc7a70f7f4af96c82bc"}, ] notebook = [ - {file = "notebook-6.1.1-py3-none-any.whl", hash = "sha256:4cc4e44a43a83a7c2f5e85bfdbbfe1c68bed91b857741df9e593d213a6fc2d27"}, - {file = "notebook-6.1.1.tar.gz", hash = "sha256:42391d8f3b88676e774316527599e49c11f3a7e51c41035e9e44c1b58e1398d5"}, + {file = "notebook-6.1.3-py3-none-any.whl", hash = "sha256:964cc40cff68e473f3778aef9266e867f7703cb4aebdfd250f334efe02f64c86"}, + {file = "notebook-6.1.3.tar.gz", hash = "sha256:9990d51b9931a31e681635899aeb198b4c4b41586a9e87fbfaaed1a71d0a05b6"}, ] numexpr = [ {file = "numexpr-2.7.1-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:c169e1424d495b7efefe69c046cbf89ae0dc7a071a89b6b844ae328ac48fccbc"}, @@ -2339,8 +2379,8 @@ prometheus-client = [ {file = "prometheus_client-0.8.0.tar.gz", hash = "sha256:c6e6b706833a6bd1fd51711299edee907857be10ece535126a158f911ee80915"}, ] prompt-toolkit = [ - {file = "prompt_toolkit-3.0.5-py3-none-any.whl", hash = "sha256:df7e9e63aea609b1da3a65641ceaf5bc7d05e0a04de5bd45d05dbeffbabf9e04"}, - {file = "prompt_toolkit-3.0.5.tar.gz", hash = "sha256:563d1a4140b63ff9dd587bda9557cffb2fe73650205ab6f4383092fb882e7dc8"}, + {file = "prompt_toolkit-3.0.6-py3-none-any.whl", hash = "sha256:683397077a64cd1f750b71c05afcfc6612a7300cb6932666531e5a54f38ea564"}, + {file = "prompt_toolkit-3.0.6.tar.gz", hash = "sha256:7630ab85a23302839a0f26b31cc24f518e6155dea1ed395ea61b42c45941b6a6"}, ] ptyprocess = [ {file = "ptyprocess-0.6.0-py2.py3-none-any.whl", hash = "sha256:d7cc528d76e76342423ca640335bd3633420dc1366f258cb31d05e865ef5ca1f"}, @@ -2389,8 +2429,8 @@ pygments = [ {file = "Pygments-2.6.1.tar.gz", hash = "sha256:647344a061c249a3b74e230c739f434d7ea4d8b1d5f3721bc0f3558049b38f44"}, ] pymc3 = [ - {file = "pymc3-3.9.2-py3-none-any.whl", hash = "sha256:ee5bd79f8185e6a05f2cfca0da92d0edfda286e63d5e28f8e7b22194d6e75107"}, - {file = "pymc3-3.9.2.tar.gz", hash = "sha256:918b0a8050643e2a9dd4d276dd163befded33608db4969828f2c32305135d3e0"}, + {file = "pymc3-3.9.3-py3-none-any.whl", hash = "sha256:80be9e3e4bd5e6b8f51b146ce5c06a6861208fdd983fab6150e8ca991dc949dd"}, + {file = "pymc3-3.9.3.tar.gz", hash = "sha256:abe046f5a5d0e5baee80b7c4bc0a4c218f61b517b62d77be4f89cf4784c27d78"}, ] pyparsing = [ {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, @@ -2498,8 +2538,8 @@ pyzmq = [ {file = "pyzmq-19.0.2.tar.gz", hash = "sha256:296540a065c8c21b26d63e3cea2d1d57902373b16e4256afe46422691903a438"}, ] qtconsole = [ - {file = "qtconsole-4.7.5-py2.py3-none-any.whl", hash = "sha256:4f43d0b049eacb7d723772847f0c465feccce0ccb398871a6e146001a22bad23"}, - {file = "qtconsole-4.7.5.tar.gz", hash = "sha256:f5cb275d30fc8085e2d1d18bc363e5ba0ce6e559bf37d7d6727b773134298754"}, + {file = "qtconsole-4.7.6-py2.py3-none-any.whl", hash = "sha256:570b9e1dd4f9b727699b0ed04c6943d9d32d5a2085aa69d82d814e039bbcf74b"}, + {file = "qtconsole-4.7.6.tar.gz", hash = "sha256:6c24397c19a49a5cf69582c931db4b0f6b00a78530a2bfd122936f2ebfae2fef"}, ] qtpy = [ {file = "QtPy-1.9.0-py2.py3-none-any.whl", hash = "sha256:fa0b8363b363e89b2a6f49eddc162a04c0699ae95e109a6be3bb145a913190ea"}, @@ -2679,8 +2719,8 @@ urllib3 = [ {file = "urllib3-1.22.tar.gz", hash = "sha256:cc44da8e1145637334317feebd728bd869a35285b93cbb4cca2577da7e62db4f"}, ] virtualenv = [ - {file = "virtualenv-20.0.30-py2.py3-none-any.whl", hash = "sha256:8cd7b2a4850b003a11be2fc213e206419efab41115cc14bca20e69654f2ac08e"}, - {file = "virtualenv-20.0.30.tar.gz", hash = "sha256:7b54fd606a1b85f83de49ad8d80dbec08e983a2d2f96685045b262ebc7481ee5"}, + {file = "virtualenv-20.0.31-py2.py3-none-any.whl", hash = "sha256:e0305af10299a7fb0d69393d8f04cb2965dda9351140d11ac8db4e5e3970451b"}, + {file = "virtualenv-20.0.31.tar.gz", hash = "sha256:43add625c53c596d38f971a465553f6318decc39d98512bc100fa1b1e839c8dc"}, ] wcwidth = [ {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, diff --git a/data-pipeline/pyproject.toml b/data-pipeline/pyproject.toml index 5211b683..54fb4b30 100644 --- a/data-pipeline/pyproject.toml +++ b/data-pipeline/pyproject.toml @@ -9,9 +9,12 @@ packages = [ [tool.poetry.dependencies] python = ">=3.6.8" +pip = ">=20.1.1" +setuptools = ">=49.2" numpy = "^1.18.2" pandas = "^1.1.0" scipy = "^1.4.1" +mkl = "^2019.0" tables = ">=3.2" unidecode = "^1.1.1" pyyaml = "^5.3" @@ -31,6 +34,7 @@ seaborn = { version = "^0.10.0", optional = true } graphviz = "^0.13.2" jupyterlab = "^2.1.1" nbdime = "^2.0.0" +theano = "^1.0.5" [tool.poetry.extras] pymc3 = ["pymc3", "jupyter", "seaborn"] diff --git a/data-pipeline/scripts/run_model.sh b/data-pipeline/scripts/run_model.sh new file mode 100644 index 00000000..e227dc1c --- /dev/null +++ b/data-pipeline/scripts/run_model.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +EXPORT_NAME="$@" + +echo -E ${GCP_KEY:1:-1} > key.json +echo "gcloud login" +gcloud auth activate-service-account --key-file key.json +gcloud config set project ${PROJECT_NAME} + +echo "r_estimates download" +latest_r_estimates_url=https://storage.googleapis.com/static-covid/static/v4/main/r_estimates.csv +mkdir data-dir/outputs +curl $latest_r_estimates_url > data-dir/outputs/r_estimates.csv + +export MKL_NUM_THREADS=1 +export OMP_NUM_THREADS=1 + +python run_luigi ExportNPIModelResults --export-name $EXPORT_NAME + +python run_luigi WebUpload --exported-data data-dir/outputs/web-exports/$EXPORT_NAME --overwrite --channel $EXPORT_NAME + +# delete the the instance after the results are uploaded +gcloud compute instances delete $INSTANCE_NAME --zone \ + $(curl -H Metadata-Flavor:Google http://metadata.google.internal/computeMetadata/v1/instance/zone -s | cut -d/ -f4) -q \ No newline at end of file