diff --git a/docs/sphinx/source/reference/iotools.rst b/docs/sphinx/source/reference/iotools.rst
index 9588a8daf7..aca7b6e74c 100644
--- a/docs/sphinx/source/reference/iotools.rst
+++ b/docs/sphinx/source/reference/iotools.rst
@@ -80,6 +80,8 @@ Satellite-derived irradiance and weather data for the Americas.
iotools.get_nsrdb_psm4_tmy
iotools.get_nsrdb_psm4_conus
iotools.get_nsrdb_psm4_full_disc
+ iotools.get_nsrdb_psm4_polar
+ iotools.get_nsrdb_psm4_polar_tmy
iotools.read_nsrdb_psm4
diff --git a/docs/sphinx/source/whatsnew/v0.15.3.rst b/docs/sphinx/source/whatsnew/v0.15.3.rst
index eb36b659ca..eaedfb9532 100644
--- a/docs/sphinx/source/whatsnew/v0.15.3.rst
+++ b/docs/sphinx/source/whatsnew/v0.15.3.rst
@@ -18,7 +18,11 @@ Bug fixes
Enhancements
~~~~~~~~~~~~
-
+* Add iotools functions to retrieve irradiance and weather data from NSRDB PSM4 Polar,
+ which provides satellite-derived irradiance data above 60 degree latitude.
+ :py:func:`~pvlib.iotools.get_nsrdb_psm4_polar` and
+ :py:func:`~pvlib.iotools.get_nsrdb_psm4_polar_tmy`.
+ (:issue:`2639`, :pull:`2807`)
Documentation
~~~~~~~~~~~~~
@@ -45,6 +49,8 @@ Maintenance
Contributors
~~~~~~~~~~~~
+* Adam R. Jensen (:ghuser:`AdamRJensen`)
+* Erin Tonita (:ghuser:`etoni044`)
* Eesh Saxena (:ghuser:`eeshsaxena`)
* Karl Hill (:ghuser:`karlhillx`)
* Yonry Zhu (:ghuser:`yonryzhu`)
diff --git a/pvlib/iotools/__init__.py b/pvlib/iotools/__init__.py
index e680e38c2d..5c4f2deb8d 100644
--- a/pvlib/iotools/__init__.py
+++ b/pvlib/iotools/__init__.py
@@ -12,6 +12,8 @@
from pvlib.iotools.psm4 import get_nsrdb_psm4_tmy # noqa: F401
from pvlib.iotools.psm4 import get_nsrdb_psm4_conus # noqa: F401
from pvlib.iotools.psm4 import get_nsrdb_psm4_full_disc # noqa: F401
+from pvlib.iotools.psm4 import get_nsrdb_psm4_polar # noqa: F401
+from pvlib.iotools.psm4 import get_nsrdb_psm4_polar_tmy # noqa: F401
from pvlib.iotools.psm4 import read_nsrdb_psm4 # noqa: F401
from pvlib.iotools.pvgis import get_pvgis_tmy, read_pvgis_tmy # noqa: F401
from pvlib.iotools.pvgis import read_pvgis_hourly # noqa: F401
diff --git a/pvlib/iotools/psm4.py b/pvlib/iotools/psm4.py
index fc8d098a09..de76af0323 100644
--- a/pvlib/iotools/psm4.py
+++ b/pvlib/iotools/psm4.py
@@ -4,6 +4,8 @@
https://developer.nlr.gov/docs/solar/nsrdb/nsrdb-GOES-tmy-v4-0-0-download/
https://developer.nlr.gov/docs/solar/nsrdb/nsrdb-GOES-conus-v4-0-0-download/
https://developer.nlr.gov/docs/solar/nsrdb/nsrdb-GOES-full-disc-v4-0-0-download/
+https://developer.nlr.gov/docs/solar/nsrdb/nsrdb-polar-v4-0-0-download/
+https://developer.nlr.gov/docs/solar/nsrdb/nsrdb-polar-tmy-v4-0-0-download/
"""
import csv
@@ -19,10 +21,14 @@
PSM4_TMY_ENDPOINT = "nsrdb-GOES-tmy-v4-0-0-download.csv"
PSM4_CON_ENDPOINT = "nsrdb-GOES-conus-v4-0-0-download.csv"
PSM4_FUL_ENDPOINT = "nsrdb-GOES-full-disc-v4-0-0-download.csv"
+PSM4_POLAR_ENDPOINT = "nsrdb-polar-v4-0-0-download.csv"
+PSM4_POLAR_TMY_ENDPOINT = "nsrdb-polar-tmy-v4-0-0-download.csv"
PSM4_AGG_URL = urljoin(NSRDB_API_BASE, PSM4_AGG_ENDPOINT)
PSM4_TMY_URL = urljoin(NSRDB_API_BASE, PSM4_TMY_ENDPOINT)
PSM4_CON_URL = urljoin(NSRDB_API_BASE, PSM4_CON_ENDPOINT)
PSM4_FUL_URL = urljoin(NSRDB_API_BASE, PSM4_FUL_ENDPOINT)
+PSM4_POLAR_URL = urljoin(NSRDB_API_BASE, PSM4_POLAR_ENDPOINT)
+PSM4_POLAR_TMY_URL = urljoin(NSRDB_API_BASE, PSM4_POLAR_TMY_ENDPOINT)
PARAMETERS = (
'air_temperature', 'dew_point', 'dhi', 'dni', 'ghi', 'surface_albedo',
@@ -158,7 +164,8 @@ def get_nsrdb_psm4_aggregated(latitude, longitude, api_key, email,
See Also
--------
pvlib.iotools.get_nsrdb_psm4_tmy, pvlib.iotools.get_nsrdb_psm4_conus,
- pvlib.iotools.get_nsrdb_psm4_full_disc, pvlib.iotools.read_nsrdb_psm4
+ pvlib.iotools.get_nsrdb_psm4_full_disc, pvlib.iotools.get_nsrdb_psm4_polar,
+ pvlib.iotools.get_nsrdb_psm4_polar_tmy, pvlib.iotools.read_nsrdb_psm4
References
----------
@@ -294,8 +301,10 @@ def get_nsrdb_psm4_tmy(latitude, longitude, api_key, email, year='tmy',
See Also
--------
+ pvlib.iotools.get_nsrdb_psm4_polar_tmy,
pvlib.iotools.get_nsrdb_psm4_aggregated,
pvlib.iotools.get_nsrdb_psm4_conus, pvlib.iotools.get_nsrdb_psm4_full_disc,
+ pvlib.iotools.get_nsrdb_psm4_polar,
pvlib.iotools.read_nsrdb_psm4
References
@@ -430,9 +439,9 @@ def get_nsrdb_psm4_conus(latitude, longitude, api_key, email, year,
See Also
--------
- pvlib.iotools.get_nsrdb_psm4_aggregated,
- pvlib.iotools.get_nsrdb_psm4_tmy, pvlib.iotools.get_nsrdb_psm4_full_disc,
- pvlib.iotools.read_nsrdb_psm4
+ pvlib.iotools.get_nsrdb_psm4_aggregated, pvlib.iotools.get_nsrdb_psm4_tmy,
+ pvlib.iotools.get_nsrdb_psm4_full_disc, pvlib.iotools.get_nsrdb_psm4_polar,
+ pvlib.iotools.get_nsrdb_psm4_polar_tmy, pvlib.iotools.read_nsrdb_psm4
References
----------
@@ -569,9 +578,9 @@ def get_nsrdb_psm4_full_disc(latitude, longitude, api_key, email,
See Also
--------
- pvlib.iotools.get_nsrdb_psm4_aggregated,
- pvlib.iotools.get_nsrdb_psm4_tmy, pvlib.iotools.get_nsrdb_psm4_conus,
- pvlib.iotools.read_nsrdb_psm4
+ pvlib.iotools.get_nsrdb_psm4_aggregated, pvlib.iotools.get_nsrdb_psm4_tmy,
+ pvlib.iotools.get_nsrdb_psm4_conus, pvlib.iotools.get_nsrdb_psm4_polar,
+ pvlib.iotools.get_nsrdb_psm4_polar_tmy, pvlib.iotools.read_nsrdb_psm4
References
----------
@@ -624,6 +633,300 @@ def get_nsrdb_psm4_full_disc(latitude, longitude, api_key, email,
return read_nsrdb_psm4(fbuf, map_variables)
+def get_nsrdb_psm4_polar(latitude, longitude, api_key, email,
+ year, *, time_step=60,
+ parameters=PARAMETERS, leap_day=True,
+ full_name=PVLIB_PYTHON,
+ affiliation=PVLIB_PYTHON, utc=False,
+ map_variables=True, url=None, timeout=30):
+ """
+ Retrieve timeseries weather data from the PSM4 NSRDB Polar API.
+
+ The NSRDB is described in [1]_ and the NSRDB PSM4 NSRDB Polar v4 dataset
+ is described in [2]_, [3]_. The polar dataset extends NSRDB coverage to
+ high latitude regions, that are outside the field of view of the
+ geostationary satellites.
+
+ The dataset provides data from 2013 onwards over the exclusive economic
+ zone above 60 degrees north. The data have a spatial resolution of 4 km
+ and a temporal resolution of 1 hour.
+
+ Parameters
+ ----------
+ latitude : float or int
+ in decimal degrees, between 60 and 90 degrees north
+ longitude : float or int
+ in decimal degrees, between -180 and 180, east is positive
+ api_key : str
+ NLR Developer Network API key
+ email : str
+ NLR API uses this to automatically communicate messages back
+ to the user only if necessary
+ year : int or str
+ PSM4 API parameter specifing year (e.g. ``2023``) to download. The
+ allowed values update periodically, so consult the NSRDB reference
+ below for the current set of options. Called ``names`` in NSRDB API.
+ time_step : int, default 60
+ time step in minutes. Called ``interval`` in NSRDB API.
+ Only 60 is supported for the Polar dataset.
+ parameters : list of str, optional
+ meteorological fields to fetch. If not specified, defaults to
+ ``pvlib.iotools.psm4.PARAMETERS``. See reference [2]_ for a list of
+ available fields. Alternatively, pvlib names may also be used (e.g.
+ 'ghi' rather than 'GHI'); see :const:`REQUEST_VARIABLE_MAP`. To
+ retrieve all available fields, set ``parameters=[]``.
+ leap_day : bool, default : True
+ include leap day in the results
+ full_name : str, default 'pvlib python'
+ optional
+ affiliation : str, default 'pvlib python'
+ optional
+ utc: bool, default : False
+ retrieve data with timestamps converted to UTC. False returns
+ timestamps in local standard time of the selected location
+ map_variables : bool, default True
+ When true, renames columns of the Dataframe to pvlib variable names
+ where applicable. See variable :const:`VARIABLE_MAP`.
+ url : str, optional
+ Full API endpoint URL. If not specified, the PSM4 Polar v4 URL is
+ used.
+ timeout : int, default 30
+ time in seconds to wait for server response before timeout
+
+ Returns
+ -------
+ data : pandas.DataFrame
+ timeseries data from NLR PSM4
+ metadata : dict
+ metadata from NLR PSM4 about the record, see
+ :func:`pvlib.iotools.read_nsrdb_psm4` for fields
+
+ Raises
+ ------
+ requests.HTTPError
+ if the request response status is not ok, then the ``'errors'`` field
+ from the JSON response or any error message in the content will be
+ raised as an exception, for example if the `api_key` was rejected or if
+ the coordinates were not found in the NSRDB
+
+ Notes
+ -----
+ The required NLR developer key, `api_key`, is available for free by
+ registering at the `NLR Developer Network `_.
+
+ .. warning:: The "DEMO_KEY" `api_key` is severely rate limited and may
+ result in rejected requests.
+
+ .. warning:: PSM4 is limited to data found in the NSRDB, please consult
+ the references below for locations with available data.
+
+ See Also
+ --------
+ pvlib.iotools.get_nsrdb_psm4_aggregated, pvlib.iotools.get_nsrdb_psm4_tmy,
+ pvlib.iotools.get_nsrdb_psm4_conus, pvlib.iotools.get_nsrdb_psm4_full_disc,
+ pvlib.iotools.get_nsrdb_psm4_polar, pvlib.iotools.get_nsrdb_psm4_polar_tmy,
+ pvlib.iotools.read_nsrdb_psm4
+
+ References
+ ----------
+ .. [1] `NLR National Solar Radiation Database (NSRDB)
+ `_
+ .. [2] `NLR NSRDB Polar Data
+ `_
+ .. [3] `NSRDB Polar V4.0.0
+ `_
+ """
+ # The well know text (WKT) representation of geometry notation is strict.
+ # A POINT object is a string with longitude first, then the latitude, with
+ # four decimals each, and exactly one space between them.
+ longitude = ('%9.4f' % longitude).strip()
+ latitude = ('%8.4f' % latitude).strip()
+ # TODO: make format_WKT(object_type, *args) in tools.py
+
+ # convert pvlib names in parameters to PSM4 convention
+ parameters = [REQUEST_VARIABLE_MAP.get(a, a) for a in parameters]
+
+ # required query-string parameters for request to PSM4 API
+ params = {
+ 'api_key': api_key,
+ 'full_name': full_name,
+ 'email': email,
+ 'affiliation': affiliation,
+ 'reason': PVLIB_PYTHON,
+ 'mailing_list': 'false',
+ 'wkt': 'POINT(%s %s)' % (longitude, latitude),
+ 'names': year,
+ 'attributes': ','.join(parameters),
+ 'leap_day': str(leap_day).lower(),
+ 'utc': str(utc).lower(),
+ 'interval': time_step
+ }
+ # request CSV download from NLR PSM4
+ if url is None:
+ url = PSM4_POLAR_URL
+
+ response = requests.get(url, params=params, timeout=timeout)
+ if not response.ok:
+ # if the API key is rejected, then the response status will be 403
+ # Forbidden, and then the error is in the content and there is no JSON
+ try:
+ errors = response.json()['errors']
+ except JSONDecodeError:
+ errors = response.content.decode('utf-8')
+ raise requests.HTTPError(errors, response=response)
+ # the CSV is in the response content as a UTF-8 bytestring
+ # to use pandas we need to create a file buffer from the response
+ fbuf = io.StringIO(response.content.decode('utf-8'))
+ return read_nsrdb_psm4(fbuf, map_variables)
+
+
+def get_nsrdb_psm4_polar_tmy(latitude, longitude, api_key, email, year='tmy',
+ time_step=60, parameters=PARAMETERS,
+ leap_day=False, full_name=PVLIB_PYTHON,
+ affiliation=PVLIB_PYTHON, utc=False,
+ map_variables=True, url=None, timeout=30):
+ """
+ Retrieve timeseries weather data from the PSM4 NSRDB Polar TMY v4 API.
+
+ The NSRDB is described in [1]_ and the NSRDB PSM4 Polar TMY v4 dataset is
+ described in [2]_, [3]_. The polar dataset extends NSRDB coverage to high
+ latitude polar regions, that are outside the field of view of the
+ geostationary satellites.
+
+ The dataset provides typical year data over the exclusive economic zone
+ above 60 degrees north. The data have a spatial resolution of 4 km and a
+ temporal resolution of 1 hour.
+
+ Parameters
+ ----------
+ latitude : float or int
+ in decimal degrees, between 60 and 90 degrees north
+ longitude : float or int
+ in decimal degrees, between -180 and 180, east is positive
+ api_key : str
+ NLR Developer Network API key
+ email : str
+ NLR API uses this to automatically communicate messages back
+ to the user only if necessary
+ year : str, default 'tmy'
+ PSM4 API parameter specifing TMY variant to download (e.g. ``'tmy'``
+ or ``'tgy-2023'``). The allowed values update periodically, so
+ consult the NSRDB references below for the current set of options.
+ Called ``names`` in NSRDB API.
+ time_step : int, {60}
+ time step in minutes. Must be 60 for typical year requests. Called
+ ``interval`` in NSRDB API.
+ parameters : list of str, optional
+ meteorological fields to fetch. If not specified, defaults to
+ ``pvlib.iotools.psm4.PARAMETERS``. See reference [2]_ for a list of
+ available fields. Alternatively, pvlib names may also be used (e.g.
+ 'ghi' rather than 'GHI'); see :const:`REQUEST_VARIABLE_MAP`. To
+ retrieve all available fields, set ``parameters=[]``.
+ leap_day : bool, default : False
+ Include leap day in the results. Ignored for tmy/tgy/tdy requests.
+ full_name : str, default 'pvlib python'
+ optional
+ affiliation : str, default 'pvlib python'
+ optional
+ utc: bool, default : False
+ retrieve data with timestamps converted to UTC. False returns
+ timestamps in local standard time of the selected location
+ map_variables : bool, default True
+ When true, renames columns of the Dataframe to pvlib variable names
+ where applicable. See variable :const:`VARIABLE_MAP`.
+ url : str, optional
+ Full API endpoint URL. If not specified, the PSM4 Polar TMY v4 URL
+ is used.
+ timeout : int, default 30
+ time in seconds to wait for server response before timeout
+
+ Returns
+ -------
+ data : pandas.DataFrame
+ timeseries data from NLR PSM4
+ metadata : dict
+ metadata from NLR PSM4 about the record, see
+ :func:`pvlib.iotools.read_nsrdb_psm4` for fields
+
+ Raises
+ ------
+ requests.HTTPError
+ if the request response status is not ok, then the ``'errors'`` field
+ from the JSON response or any error message in the content will be
+ raised as an exception, for example if the `api_key` was rejected or if
+ the coordinates were not found in the NSRDB
+
+ Notes
+ -----
+ The required NLR developer key, `api_key`, is available for free by
+ registering at the `NLR Developer Network `_.
+
+ .. warning:: The "DEMO_KEY" `api_key` is severely rate limited and may
+ result in rejected requests.
+
+ .. warning:: PSM4 is limited to data found in the NSRDB, please consult
+ the references below for locations with available data.
+
+ See Also
+ --------
+ pvlib.iotools.get_nsrdb_psm4_polar, pvlib.iotools.get_nsrdb_psm4_tmy,
+ pvlib.iotools.get_nsrdb_psm4_aggregated,
+ pvlib.iotools.get_nsrdb_psm4_conus,
+ pvlib.iotools.get_nsrdb_psm4_full_disc, pvlib.iotools.read_nsrdb_psm4
+
+ References
+ ----------
+ .. [1] `NLR National Solar Radiation Database (NSRDB)
+ `_
+ .. [2] `NLR NSRDB Polar Data
+ `_
+ .. [3] `NSRDB Polar Tmy V4.0.0
+ `_
+ """
+ # The well know text (WKT) representation of geometry notation is strict.
+ # A POINT object is a string with longitude first, then the latitude, with
+ # four decimals each, and exactly one space between them.
+ longitude = ('%9.4f' % longitude).strip()
+ latitude = ('%8.4f' % latitude).strip()
+ # TODO: make format_WKT(object_type, *args) in tools.py
+
+ # convert pvlib names in parameters to PSM4 convention
+ parameters = [REQUEST_VARIABLE_MAP.get(a, a) for a in parameters]
+
+ # required query-string parameters for request to PSM4 API
+ params = {
+ 'api_key': api_key,
+ 'full_name': full_name,
+ 'email': email,
+ 'affiliation': affiliation,
+ 'reason': PVLIB_PYTHON,
+ 'mailing_list': 'false',
+ 'wkt': 'POINT(%s %s)' % (longitude, latitude),
+ 'names': year,
+ 'attributes': ','.join(parameters),
+ 'leap_day': str(leap_day).lower(),
+ 'utc': str(utc).lower(),
+ 'interval': time_step
+ }
+ # request CSV download from NLR PSM4
+ if url is None:
+ url = PSM4_POLAR_TMY_URL
+
+ response = requests.get(url, params=params, timeout=timeout)
+ if not response.ok:
+ # if the API key is rejected, then the response status will be 403
+ # Forbidden, and then the error is in the content and there is no JSON
+ try:
+ errors = response.json()['errors']
+ except JSONDecodeError:
+ errors = response.content.decode('utf-8')
+ raise requests.HTTPError(errors, response=response)
+ # the CSV is in the response content as a UTF-8 bytestring
+ # to use pandas we need to create a file buffer from the response
+ fbuf = io.StringIO(response.content.decode('utf-8'))
+ return read_nsrdb_psm4(fbuf, map_variables)
+
+
def read_nsrdb_psm4(filename, map_variables=True):
"""
Read an NSRDB PSM4 weather file (formatted as SAM CSV).
@@ -715,6 +1018,8 @@ def read_nsrdb_psm4(filename, map_variables=True):
pvlib.iotools.get_nsrdb_psm4_tmy
pvlib.iotools.get_nsrdb_psm4_conus
pvlib.iotools.get_nsrdb_psm4_full_disc
+ pvlib.iotools.get_nsrdb_psm4_polar
+ pvlib.iotools.get_nsrdb_psm4_polar_tmy
References
----------
diff --git a/tests/data/test_psm4_polar_2023.csv b/tests/data/test_psm4_polar_2023.csv
new file mode 100644
index 0000000000..112fe8029c
--- /dev/null
+++ b/tests/data/test_psm4_polar_2023.csv
@@ -0,0 +1,8763 @@
+Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed Units,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version
+NSRDB,3049132,-,-,-,64.84091,-147.70454,0,132,-9,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,4.1.3.dev28+g75fa2f74.d20250603
+Year,Month,Day,Hour,Minute,GHI
+2023,1,1,0,0,0
+2023,1,1,1,0,0
+2023,1,1,2,0,0
+2023,1,1,3,0,0
+2023,1,1,4,0,0
+2023,1,1,5,0,0
+2023,1,1,6,0,0
+2023,1,1,7,0,0
+2023,1,1,8,0,0
+2023,1,1,9,0,0
+2023,1,1,10,0,0
+2023,1,1,11,0,0
+2023,1,1,12,0,0
+2023,1,1,13,0,0
+2023,1,1,14,0,0
+2023,1,1,15,0,0
+2023,1,1,16,0,0
+2023,1,1,17,0,0
+2023,1,1,18,0,0
+2023,1,1,19,0,0
+2023,1,1,20,0,0
+2023,1,1,21,0,13
+2023,1,1,22,0,15
+2023,1,1,23,0,9
+2023,1,2,0,0,0
+2023,1,2,1,0,0
+2023,1,2,2,0,0
+2023,1,2,3,0,0
+2023,1,2,4,0,0
+2023,1,2,5,0,0
+2023,1,2,6,0,0
+2023,1,2,7,0,0
+2023,1,2,8,0,0
+2023,1,2,9,0,0
+2023,1,2,10,0,0
+2023,1,2,11,0,0
+2023,1,2,12,0,0
+2023,1,2,13,0,0
+2023,1,2,14,0,0
+2023,1,2,15,0,0
+2023,1,2,16,0,0
+2023,1,2,17,0,0
+2023,1,2,18,0,0
+2023,1,2,19,0,0
+2023,1,2,20,0,0
+2023,1,2,21,0,24
+2023,1,2,22,0,31
+2023,1,2,23,0,22
+2023,1,3,0,0,0
+2023,1,3,1,0,0
+2023,1,3,2,0,0
+2023,1,3,3,0,0
+2023,1,3,4,0,0
+2023,1,3,5,0,0
+2023,1,3,6,0,0
+2023,1,3,7,0,0
+2023,1,3,8,0,0
+2023,1,3,9,0,0
+2023,1,3,10,0,0
+2023,1,3,11,0,0
+2023,1,3,12,0,0
+2023,1,3,13,0,0
+2023,1,3,14,0,0
+2023,1,3,15,0,0
+2023,1,3,16,0,0
+2023,1,3,17,0,0
+2023,1,3,18,0,0
+2023,1,3,19,0,0
+2023,1,3,20,0,0
+2023,1,3,21,0,26
+2023,1,3,22,0,34
+2023,1,3,23,0,16
+2023,1,4,0,0,0
+2023,1,4,1,0,0
+2023,1,4,2,0,0
+2023,1,4,3,0,0
+2023,1,4,4,0,0
+2023,1,4,5,0,0
+2023,1,4,6,0,0
+2023,1,4,7,0,0
+2023,1,4,8,0,0
+2023,1,4,9,0,0
+2023,1,4,10,0,0
+2023,1,4,11,0,0
+2023,1,4,12,0,0
+2023,1,4,13,0,0
+2023,1,4,14,0,0
+2023,1,4,15,0,0
+2023,1,4,16,0,0
+2023,1,4,17,0,0
+2023,1,4,18,0,0
+2023,1,4,19,0,0
+2023,1,4,20,0,0
+2023,1,4,21,0,21
+2023,1,4,22,0,29
+2023,1,4,23,0,19
+2023,1,5,0,0,0
+2023,1,5,1,0,0
+2023,1,5,2,0,0
+2023,1,5,3,0,0
+2023,1,5,4,0,0
+2023,1,5,5,0,0
+2023,1,5,6,0,0
+2023,1,5,7,0,0
+2023,1,5,8,0,0
+2023,1,5,9,0,0
+2023,1,5,10,0,0
+2023,1,5,11,0,0
+2023,1,5,12,0,0
+2023,1,5,13,0,0
+2023,1,5,14,0,0
+2023,1,5,15,0,0
+2023,1,5,16,0,0
+2023,1,5,17,0,0
+2023,1,5,18,0,0
+2023,1,5,19,0,0
+2023,1,5,20,0,0
+2023,1,5,21,0,29
+2023,1,5,22,0,37
+2023,1,5,23,0,27
+2023,1,6,0,0,0
+2023,1,6,1,0,0
+2023,1,6,2,0,0
+2023,1,6,3,0,0
+2023,1,6,4,0,0
+2023,1,6,5,0,0
+2023,1,6,6,0,0
+2023,1,6,7,0,0
+2023,1,6,8,0,0
+2023,1,6,9,0,0
+2023,1,6,10,0,0
+2023,1,6,11,0,0
+2023,1,6,12,0,0
+2023,1,6,13,0,0
+2023,1,6,14,0,0
+2023,1,6,15,0,0
+2023,1,6,16,0,0
+2023,1,6,17,0,0
+2023,1,6,18,0,0
+2023,1,6,19,0,0
+2023,1,6,20,0,0
+2023,1,6,21,0,13
+2023,1,6,22,0,19
+2023,1,6,23,0,14
+2023,1,7,0,0,0
+2023,1,7,1,0,0
+2023,1,7,2,0,0
+2023,1,7,3,0,0
+2023,1,7,4,0,0
+2023,1,7,5,0,0
+2023,1,7,6,0,0
+2023,1,7,7,0,0
+2023,1,7,8,0,0
+2023,1,7,9,0,0
+2023,1,7,10,0,0
+2023,1,7,11,0,0
+2023,1,7,12,0,0
+2023,1,7,13,0,0
+2023,1,7,14,0,0
+2023,1,7,15,0,0
+2023,1,7,16,0,0
+2023,1,7,17,0,0
+2023,1,7,18,0,0
+2023,1,7,19,0,0
+2023,1,7,20,0,0
+2023,1,7,21,0,32
+2023,1,7,22,0,16
+2023,1,7,23,0,12
+2023,1,8,0,0,0
+2023,1,8,1,0,0
+2023,1,8,2,0,0
+2023,1,8,3,0,0
+2023,1,8,4,0,0
+2023,1,8,5,0,0
+2023,1,8,6,0,0
+2023,1,8,7,0,0
+2023,1,8,8,0,0
+2023,1,8,9,0,0
+2023,1,8,10,0,0
+2023,1,8,11,0,0
+2023,1,8,12,0,0
+2023,1,8,13,0,0
+2023,1,8,14,0,0
+2023,1,8,15,0,0
+2023,1,8,16,0,0
+2023,1,8,17,0,0
+2023,1,8,18,0,0
+2023,1,8,19,0,0
+2023,1,8,20,0,0
+2023,1,8,21,0,16
+2023,1,8,22,0,21
+2023,1,8,23,0,18
+2023,1,9,0,0,0
+2023,1,9,1,0,0
+2023,1,9,2,0,0
+2023,1,9,3,0,0
+2023,1,9,4,0,0
+2023,1,9,5,0,0
+2023,1,9,6,0,0
+2023,1,9,7,0,0
+2023,1,9,8,0,0
+2023,1,9,9,0,0
+2023,1,9,10,0,0
+2023,1,9,11,0,0
+2023,1,9,12,0,0
+2023,1,9,13,0,0
+2023,1,9,14,0,0
+2023,1,9,15,0,0
+2023,1,9,16,0,0
+2023,1,9,17,0,0
+2023,1,9,18,0,0
+2023,1,9,19,0,0
+2023,1,9,20,0,0
+2023,1,9,21,0,35
+2023,1,9,22,0,21
+2023,1,9,23,0,16
+2023,1,10,0,0,0
+2023,1,10,1,0,0
+2023,1,10,2,0,0
+2023,1,10,3,0,0
+2023,1,10,4,0,0
+2023,1,10,5,0,0
+2023,1,10,6,0,0
+2023,1,10,7,0,0
+2023,1,10,8,0,0
+2023,1,10,9,0,0
+2023,1,10,10,0,0
+2023,1,10,11,0,0
+2023,1,10,12,0,0
+2023,1,10,13,0,0
+2023,1,10,14,0,0
+2023,1,10,15,0,0
+2023,1,10,16,0,0
+2023,1,10,17,0,0
+2023,1,10,18,0,0
+2023,1,10,19,0,0
+2023,1,10,20,0,0
+2023,1,10,21,0,23
+2023,1,10,22,0,33
+2023,1,10,23,0,25
+2023,1,11,0,0,0
+2023,1,11,1,0,0
+2023,1,11,2,0,0
+2023,1,11,3,0,0
+2023,1,11,4,0,0
+2023,1,11,5,0,0
+2023,1,11,6,0,0
+2023,1,11,7,0,0
+2023,1,11,8,0,0
+2023,1,11,9,0,0
+2023,1,11,10,0,0
+2023,1,11,11,0,0
+2023,1,11,12,0,0
+2023,1,11,13,0,0
+2023,1,11,14,0,0
+2023,1,11,15,0,0
+2023,1,11,16,0,0
+2023,1,11,17,0,0
+2023,1,11,18,0,0
+2023,1,11,19,0,0
+2023,1,11,20,0,0
+2023,1,11,21,0,27
+2023,1,11,22,0,26
+2023,1,11,23,0,20
+2023,1,12,0,0,0
+2023,1,12,1,0,0
+2023,1,12,2,0,0
+2023,1,12,3,0,0
+2023,1,12,4,0,0
+2023,1,12,5,0,0
+2023,1,12,6,0,0
+2023,1,12,7,0,0
+2023,1,12,8,0,0
+2023,1,12,9,0,0
+2023,1,12,10,0,0
+2023,1,12,11,0,0
+2023,1,12,12,0,0
+2023,1,12,13,0,0
+2023,1,12,14,0,0
+2023,1,12,15,0,0
+2023,1,12,16,0,0
+2023,1,12,17,0,0
+2023,1,12,18,0,0
+2023,1,12,19,0,0
+2023,1,12,20,0,0
+2023,1,12,21,0,21
+2023,1,12,22,0,22
+2023,1,12,23,0,17
+2023,1,13,0,0,0
+2023,1,13,1,0,0
+2023,1,13,2,0,0
+2023,1,13,3,0,0
+2023,1,13,4,0,0
+2023,1,13,5,0,0
+2023,1,13,6,0,0
+2023,1,13,7,0,0
+2023,1,13,8,0,0
+2023,1,13,9,0,0
+2023,1,13,10,0,0
+2023,1,13,11,0,0
+2023,1,13,12,0,0
+2023,1,13,13,0,0
+2023,1,13,14,0,0
+2023,1,13,15,0,0
+2023,1,13,16,0,0
+2023,1,13,17,0,0
+2023,1,13,18,0,0
+2023,1,13,19,0,0
+2023,1,13,20,0,6
+2023,1,13,21,0,19
+2023,1,13,22,0,24
+2023,1,13,23,0,42
+2023,1,14,0,0,4
+2023,1,14,1,0,0
+2023,1,14,2,0,0
+2023,1,14,3,0,0
+2023,1,14,4,0,0
+2023,1,14,5,0,0
+2023,1,14,6,0,0
+2023,1,14,7,0,0
+2023,1,14,8,0,0
+2023,1,14,9,0,0
+2023,1,14,10,0,0
+2023,1,14,11,0,0
+2023,1,14,12,0,0
+2023,1,14,13,0,0
+2023,1,14,14,0,0
+2023,1,14,15,0,0
+2023,1,14,16,0,0
+2023,1,14,17,0,0
+2023,1,14,18,0,0
+2023,1,14,19,0,0
+2023,1,14,20,0,5
+2023,1,14,21,0,21
+2023,1,14,22,0,25
+2023,1,14,23,0,26
+2023,1,15,0,0,8
+2023,1,15,1,0,0
+2023,1,15,2,0,0
+2023,1,15,3,0,0
+2023,1,15,4,0,0
+2023,1,15,5,0,0
+2023,1,15,6,0,0
+2023,1,15,7,0,0
+2023,1,15,8,0,0
+2023,1,15,9,0,0
+2023,1,15,10,0,0
+2023,1,15,11,0,0
+2023,1,15,12,0,0
+2023,1,15,13,0,0
+2023,1,15,14,0,0
+2023,1,15,15,0,0
+2023,1,15,16,0,0
+2023,1,15,17,0,0
+2023,1,15,18,0,0
+2023,1,15,19,0,0
+2023,1,15,20,0,6
+2023,1,15,21,0,17
+2023,1,15,22,0,23
+2023,1,15,23,0,19
+2023,1,16,0,0,7
+2023,1,16,1,0,0
+2023,1,16,2,0,0
+2023,1,16,3,0,0
+2023,1,16,4,0,0
+2023,1,16,5,0,0
+2023,1,16,6,0,0
+2023,1,16,7,0,0
+2023,1,16,8,0,0
+2023,1,16,9,0,0
+2023,1,16,10,0,0
+2023,1,16,11,0,0
+2023,1,16,12,0,0
+2023,1,16,13,0,0
+2023,1,16,14,0,0
+2023,1,16,15,0,0
+2023,1,16,16,0,0
+2023,1,16,17,0,0
+2023,1,16,18,0,0
+2023,1,16,19,0,0
+2023,1,16,20,0,8
+2023,1,16,21,0,20
+2023,1,16,22,0,24
+2023,1,16,23,0,32
+2023,1,17,0,0,12
+2023,1,17,1,0,0
+2023,1,17,2,0,0
+2023,1,17,3,0,0
+2023,1,17,4,0,0
+2023,1,17,5,0,0
+2023,1,17,6,0,0
+2023,1,17,7,0,0
+2023,1,17,8,0,0
+2023,1,17,9,0,0
+2023,1,17,10,0,0
+2023,1,17,11,0,0
+2023,1,17,12,0,0
+2023,1,17,13,0,0
+2023,1,17,14,0,0
+2023,1,17,15,0,0
+2023,1,17,16,0,0
+2023,1,17,17,0,0
+2023,1,17,18,0,0
+2023,1,17,19,0,0
+2023,1,17,20,0,22
+2023,1,17,21,0,51
+2023,1,17,22,0,63
+2023,1,17,23,0,52
+2023,1,18,0,0,24
+2023,1,18,1,0,0
+2023,1,18,2,0,0
+2023,1,18,3,0,0
+2023,1,18,4,0,0
+2023,1,18,5,0,0
+2023,1,18,6,0,0
+2023,1,18,7,0,0
+2023,1,18,8,0,0
+2023,1,18,9,0,0
+2023,1,18,10,0,0
+2023,1,18,11,0,0
+2023,1,18,12,0,0
+2023,1,18,13,0,0
+2023,1,18,14,0,0
+2023,1,18,15,0,0
+2023,1,18,16,0,0
+2023,1,18,17,0,0
+2023,1,18,18,0,0
+2023,1,18,19,0,0
+2023,1,18,20,0,25
+2023,1,18,21,0,55
+2023,1,18,22,0,68
+2023,1,18,23,0,57
+2023,1,19,0,0,27
+2023,1,19,1,0,0
+2023,1,19,2,0,0
+2023,1,19,3,0,0
+2023,1,19,4,0,0
+2023,1,19,5,0,0
+2023,1,19,6,0,0
+2023,1,19,7,0,0
+2023,1,19,8,0,0
+2023,1,19,9,0,0
+2023,1,19,10,0,0
+2023,1,19,11,0,0
+2023,1,19,12,0,0
+2023,1,19,13,0,0
+2023,1,19,14,0,0
+2023,1,19,15,0,0
+2023,1,19,16,0,0
+2023,1,19,17,0,0
+2023,1,19,18,0,0
+2023,1,19,19,0,0
+2023,1,19,20,0,13
+2023,1,19,21,0,27
+2023,1,19,22,0,33
+2023,1,19,23,0,59
+2023,1,20,0,0,14
+2023,1,20,1,0,0
+2023,1,20,2,0,0
+2023,1,20,3,0,0
+2023,1,20,4,0,0
+2023,1,20,5,0,0
+2023,1,20,6,0,0
+2023,1,20,7,0,0
+2023,1,20,8,0,0
+2023,1,20,9,0,0
+2023,1,20,10,0,0
+2023,1,20,11,0,0
+2023,1,20,12,0,0
+2023,1,20,13,0,0
+2023,1,20,14,0,0
+2023,1,20,15,0,0
+2023,1,20,16,0,0
+2023,1,20,17,0,0
+2023,1,20,18,0,0
+2023,1,20,19,0,0
+2023,1,20,20,0,11
+2023,1,20,21,0,24
+2023,1,20,22,0,66
+2023,1,20,23,0,56
+2023,1,21,0,0,31
+2023,1,21,1,0,0
+2023,1,21,2,0,0
+2023,1,21,3,0,0
+2023,1,21,4,0,0
+2023,1,21,5,0,0
+2023,1,21,6,0,0
+2023,1,21,7,0,0
+2023,1,21,8,0,0
+2023,1,21,9,0,0
+2023,1,21,10,0,0
+2023,1,21,11,0,0
+2023,1,21,12,0,0
+2023,1,21,13,0,0
+2023,1,21,14,0,0
+2023,1,21,15,0,0
+2023,1,21,16,0,0
+2023,1,21,17,0,0
+2023,1,21,18,0,0
+2023,1,21,19,0,0
+2023,1,21,20,0,23
+2023,1,21,21,0,62
+2023,1,21,22,0,76
+2023,1,21,23,0,66
+2023,1,22,0,0,14
+2023,1,22,1,0,0
+2023,1,22,2,0,0
+2023,1,22,3,0,0
+2023,1,22,4,0,0
+2023,1,22,5,0,0
+2023,1,22,6,0,0
+2023,1,22,7,0,0
+2023,1,22,8,0,0
+2023,1,22,9,0,0
+2023,1,22,10,0,0
+2023,1,22,11,0,0
+2023,1,22,12,0,0
+2023,1,22,13,0,0
+2023,1,22,14,0,0
+2023,1,22,15,0,0
+2023,1,22,16,0,0
+2023,1,22,17,0,0
+2023,1,22,18,0,0
+2023,1,22,19,0,0
+2023,1,22,20,0,38
+2023,1,22,21,0,74
+2023,1,22,22,0,89
+2023,1,22,23,0,76
+2023,1,23,0,0,42
+2023,1,23,1,0,0
+2023,1,23,2,0,0
+2023,1,23,3,0,0
+2023,1,23,4,0,0
+2023,1,23,5,0,0
+2023,1,23,6,0,0
+2023,1,23,7,0,0
+2023,1,23,8,0,0
+2023,1,23,9,0,0
+2023,1,23,10,0,0
+2023,1,23,11,0,0
+2023,1,23,12,0,0
+2023,1,23,13,0,0
+2023,1,23,14,0,0
+2023,1,23,15,0,0
+2023,1,23,16,0,0
+2023,1,23,17,0,0
+2023,1,23,18,0,0
+2023,1,23,19,0,0
+2023,1,23,20,0,19
+2023,1,23,21,0,37
+2023,1,23,22,0,30
+2023,1,23,23,0,46
+2023,1,24,0,0,25
+2023,1,24,1,0,0
+2023,1,24,2,0,0
+2023,1,24,3,0,0
+2023,1,24,4,0,0
+2023,1,24,5,0,0
+2023,1,24,6,0,0
+2023,1,24,7,0,0
+2023,1,24,8,0,0
+2023,1,24,9,0,0
+2023,1,24,10,0,0
+2023,1,24,11,0,0
+2023,1,24,12,0,0
+2023,1,24,13,0,0
+2023,1,24,14,0,0
+2023,1,24,15,0,0
+2023,1,24,16,0,0
+2023,1,24,17,0,0
+2023,1,24,18,0,0
+2023,1,24,19,0,0
+2023,1,24,20,0,15
+2023,1,24,21,0,25
+2023,1,24,22,0,45
+2023,1,24,23,0,39
+2023,1,25,0,0,23
+2023,1,25,1,0,0
+2023,1,25,2,0,0
+2023,1,25,3,0,0
+2023,1,25,4,0,0
+2023,1,25,5,0,0
+2023,1,25,6,0,0
+2023,1,25,7,0,0
+2023,1,25,8,0,0
+2023,1,25,9,0,0
+2023,1,25,10,0,0
+2023,1,25,11,0,0
+2023,1,25,12,0,0
+2023,1,25,13,0,0
+2023,1,25,14,0,0
+2023,1,25,15,0,0
+2023,1,25,16,0,0
+2023,1,25,17,0,0
+2023,1,25,18,0,0
+2023,1,25,19,0,0
+2023,1,25,20,0,19
+2023,1,25,21,0,32
+2023,1,25,22,0,54
+2023,1,25,23,0,48
+2023,1,26,0,0,28
+2023,1,26,1,0,0
+2023,1,26,2,0,0
+2023,1,26,3,0,0
+2023,1,26,4,0,0
+2023,1,26,5,0,0
+2023,1,26,6,0,0
+2023,1,26,7,0,0
+2023,1,26,8,0,0
+2023,1,26,9,0,0
+2023,1,26,10,0,0
+2023,1,26,11,0,0
+2023,1,26,12,0,0
+2023,1,26,13,0,0
+2023,1,26,14,0,0
+2023,1,26,15,0,0
+2023,1,26,16,0,0
+2023,1,26,17,0,0
+2023,1,26,18,0,0
+2023,1,26,19,0,0
+2023,1,26,20,0,24
+2023,1,26,21,0,42
+2023,1,26,22,0,39
+2023,1,26,23,0,35
+2023,1,27,0,0,20
+2023,1,27,1,0,0
+2023,1,27,2,0,0
+2023,1,27,3,0,0
+2023,1,27,4,0,0
+2023,1,27,5,0,0
+2023,1,27,6,0,0
+2023,1,27,7,0,0
+2023,1,27,8,0,0
+2023,1,27,9,0,0
+2023,1,27,10,0,0
+2023,1,27,11,0,0
+2023,1,27,12,0,0
+2023,1,27,13,0,0
+2023,1,27,14,0,0
+2023,1,27,15,0,0
+2023,1,27,16,0,0
+2023,1,27,17,0,0
+2023,1,27,18,0,0
+2023,1,27,19,0,0
+2023,1,27,20,0,48
+2023,1,27,21,0,32
+2023,1,27,22,0,40
+2023,1,27,23,0,36
+2023,1,28,0,0,23
+2023,1,28,1,0,0
+2023,1,28,2,0,0
+2023,1,28,3,0,0
+2023,1,28,4,0,0
+2023,1,28,5,0,0
+2023,1,28,6,0,0
+2023,1,28,7,0,0
+2023,1,28,8,0,0
+2023,1,28,9,0,0
+2023,1,28,10,0,0
+2023,1,28,11,0,0
+2023,1,28,12,0,0
+2023,1,28,13,0,0
+2023,1,28,14,0,0
+2023,1,28,15,0,0
+2023,1,28,16,0,0
+2023,1,28,17,0,0
+2023,1,28,18,0,0
+2023,1,28,19,0,0
+2023,1,28,20,0,19
+2023,1,28,21,0,87
+2023,1,28,22,0,103
+2023,1,28,23,0,93
+2023,1,29,0,0,57
+2023,1,29,1,0,0
+2023,1,29,2,0,0
+2023,1,29,3,0,0
+2023,1,29,4,0,0
+2023,1,29,5,0,0
+2023,1,29,6,0,0
+2023,1,29,7,0,0
+2023,1,29,8,0,0
+2023,1,29,9,0,0
+2023,1,29,10,0,0
+2023,1,29,11,0,0
+2023,1,29,12,0,0
+2023,1,29,13,0,0
+2023,1,29,14,0,0
+2023,1,29,15,0,0
+2023,1,29,16,0,0
+2023,1,29,17,0,0
+2023,1,29,18,0,0
+2023,1,29,19,0,0
+2023,1,29,20,0,22
+2023,1,29,21,0,34
+2023,1,29,22,0,43
+2023,1,29,23,0,39
+2023,1,30,0,0,26
+2023,1,30,1,0,5
+2023,1,30,2,0,0
+2023,1,30,3,0,0
+2023,1,30,4,0,0
+2023,1,30,5,0,0
+2023,1,30,6,0,0
+2023,1,30,7,0,0
+2023,1,30,8,0,0
+2023,1,30,9,0,0
+2023,1,30,10,0,0
+2023,1,30,11,0,0
+2023,1,30,12,0,0
+2023,1,30,13,0,0
+2023,1,30,14,0,0
+2023,1,30,15,0,0
+2023,1,30,16,0,0
+2023,1,30,17,0,0
+2023,1,30,18,0,0
+2023,1,30,19,0,0
+2023,1,30,20,0,37
+2023,1,30,21,0,61
+2023,1,30,22,0,72
+2023,1,30,23,0,33
+2023,1,31,0,0,23
+2023,1,31,1,0,7
+2023,1,31,2,0,0
+2023,1,31,3,0,0
+2023,1,31,4,0,0
+2023,1,31,5,0,0
+2023,1,31,6,0,0
+2023,1,31,7,0,0
+2023,1,31,8,0,0
+2023,1,31,9,0,0
+2023,1,31,10,0,0
+2023,1,31,11,0,0
+2023,1,31,12,0,0
+2023,1,31,13,0,0
+2023,1,31,14,0,0
+2023,1,31,15,0,0
+2023,1,31,16,0,0
+2023,1,31,17,0,0
+2023,1,31,18,0,0
+2023,1,31,19,0,15
+2023,1,31,20,0,61
+2023,1,31,21,0,100
+2023,1,31,22,0,104
+2023,1,31,23,0,94
+2023,2,1,0,0,61
+2023,2,1,1,0,17
+2023,2,1,2,0,0
+2023,2,1,3,0,0
+2023,2,1,4,0,0
+2023,2,1,5,0,0
+2023,2,1,6,0,0
+2023,2,1,7,0,0
+2023,2,1,8,0,0
+2023,2,1,9,0,0
+2023,2,1,10,0,0
+2023,2,1,11,0,0
+2023,2,1,12,0,0
+2023,2,1,13,0,0
+2023,2,1,14,0,0
+2023,2,1,15,0,0
+2023,2,1,16,0,0
+2023,2,1,17,0,0
+2023,2,1,18,0,0
+2023,2,1,19,0,3
+2023,2,1,20,0,11
+2023,2,1,21,0,17
+2023,2,1,22,0,20
+2023,2,1,23,0,52
+2023,2,2,0,0,36
+2023,2,2,1,0,12
+2023,2,2,2,0,0
+2023,2,2,3,0,0
+2023,2,2,4,0,0
+2023,2,2,5,0,0
+2023,2,2,6,0,0
+2023,2,2,7,0,0
+2023,2,2,8,0,0
+2023,2,2,9,0,0
+2023,2,2,10,0,0
+2023,2,2,11,0,0
+2023,2,2,12,0,0
+2023,2,2,13,0,0
+2023,2,2,14,0,0
+2023,2,2,15,0,0
+2023,2,2,16,0,0
+2023,2,2,17,0,0
+2023,2,2,18,0,0
+2023,2,2,19,0,10
+2023,2,2,20,0,44
+2023,2,2,21,0,56
+2023,2,2,22,0,41
+2023,2,2,23,0,37
+2023,2,3,0,0,25
+2023,2,3,1,0,9
+2023,2,3,2,0,0
+2023,2,3,3,0,0
+2023,2,3,4,0,0
+2023,2,3,5,0,0
+2023,2,3,6,0,0
+2023,2,3,7,0,0
+2023,2,3,8,0,0
+2023,2,3,9,0,0
+2023,2,3,10,0,0
+2023,2,3,11,0,0
+2023,2,3,12,0,0
+2023,2,3,13,0,0
+2023,2,3,14,0,0
+2023,2,3,15,0,0
+2023,2,3,16,0,0
+2023,2,3,17,0,0
+2023,2,3,18,0,0
+2023,2,3,19,0,24
+2023,2,3,20,0,77
+2023,2,3,21,0,118
+2023,2,3,22,0,135
+2023,2,3,23,0,123
+2023,2,4,0,0,84
+2023,2,4,1,0,32
+2023,2,4,2,0,0
+2023,2,4,3,0,0
+2023,2,4,4,0,0
+2023,2,4,5,0,0
+2023,2,4,6,0,0
+2023,2,4,7,0,0
+2023,2,4,8,0,0
+2023,2,4,9,0,0
+2023,2,4,10,0,0
+2023,2,4,11,0,0
+2023,2,4,12,0,0
+2023,2,4,13,0,0
+2023,2,4,14,0,0
+2023,2,4,15,0,0
+2023,2,4,16,0,0
+2023,2,4,17,0,0
+2023,2,4,18,0,0
+2023,2,4,19,0,10
+2023,2,4,20,0,35
+2023,2,4,21,0,43
+2023,2,4,22,0,49
+2023,2,4,23,0,131
+2023,2,5,0,0,91
+2023,2,5,1,0,36
+2023,2,5,2,0,0
+2023,2,5,3,0,0
+2023,2,5,4,0,0
+2023,2,5,5,0,0
+2023,2,5,6,0,0
+2023,2,5,7,0,0
+2023,2,5,8,0,0
+2023,2,5,9,0,0
+2023,2,5,10,0,0
+2023,2,5,11,0,0
+2023,2,5,12,0,0
+2023,2,5,13,0,0
+2023,2,5,14,0,0
+2023,2,5,15,0,0
+2023,2,5,16,0,0
+2023,2,5,17,0,0
+2023,2,5,18,0,0
+2023,2,5,19,0,31
+2023,2,5,20,0,88
+2023,2,5,21,0,131
+2023,2,5,22,0,149
+2023,2,5,23,0,136
+2023,2,6,0,0,99
+2023,2,6,1,0,41
+2023,2,6,2,0,0
+2023,2,6,3,0,0
+2023,2,6,4,0,0
+2023,2,6,5,0,0
+2023,2,6,6,0,0
+2023,2,6,7,0,0
+2023,2,6,8,0,0
+2023,2,6,9,0,0
+2023,2,6,10,0,0
+2023,2,6,11,0,0
+2023,2,6,12,0,0
+2023,2,6,13,0,0
+2023,2,6,14,0,0
+2023,2,6,15,0,0
+2023,2,6,16,0,0
+2023,2,6,17,0,0
+2023,2,6,18,0,0
+2023,2,6,19,0,33
+2023,2,6,20,0,90
+2023,2,6,21,0,134
+2023,2,6,22,0,152
+2023,2,6,23,0,140
+2023,2,7,0,0,13
+2023,2,7,1,0,7
+2023,2,7,2,0,0
+2023,2,7,3,0,0
+2023,2,7,4,0,0
+2023,2,7,5,0,0
+2023,2,7,6,0,0
+2023,2,7,7,0,0
+2023,2,7,8,0,0
+2023,2,7,9,0,0
+2023,2,7,10,0,0
+2023,2,7,11,0,0
+2023,2,7,12,0,0
+2023,2,7,13,0,0
+2023,2,7,14,0,0
+2023,2,7,15,0,0
+2023,2,7,16,0,0
+2023,2,7,17,0,0
+2023,2,7,18,0,0
+2023,2,7,19,0,11
+2023,2,7,20,0,28
+2023,2,7,21,0,42
+2023,2,7,22,0,160
+2023,2,7,23,0,148
+2023,2,8,0,0,107
+2023,2,8,1,0,49
+2023,2,8,2,0,0
+2023,2,8,3,0,0
+2023,2,8,4,0,0
+2023,2,8,5,0,0
+2023,2,8,6,0,0
+2023,2,8,7,0,0
+2023,2,8,8,0,0
+2023,2,8,9,0,0
+2023,2,8,10,0,0
+2023,2,8,11,0,0
+2023,2,8,12,0,0
+2023,2,8,13,0,0
+2023,2,8,14,0,0
+2023,2,8,15,0,0
+2023,2,8,16,0,0
+2023,2,8,17,0,0
+2023,2,8,18,0,0
+2023,2,8,19,0,21
+2023,2,8,20,0,61
+2023,2,8,21,0,89
+2023,2,8,22,0,49
+2023,2,8,23,0,129
+2023,2,9,0,0,94
+2023,2,9,1,0,43
+2023,2,9,2,0,0
+2023,2,9,3,0,0
+2023,2,9,4,0,0
+2023,2,9,5,0,0
+2023,2,9,6,0,0
+2023,2,9,7,0,0
+2023,2,9,8,0,0
+2023,2,9,9,0,0
+2023,2,9,10,0,0
+2023,2,9,11,0,0
+2023,2,9,12,0,0
+2023,2,9,13,0,0
+2023,2,9,14,0,0
+2023,2,9,15,0,0
+2023,2,9,16,0,0
+2023,2,9,17,0,0
+2023,2,9,18,0,0
+2023,2,9,19,0,46
+2023,2,9,20,0,108
+2023,2,9,21,0,155
+2023,2,9,22,0,173
+2023,2,9,23,0,160
+2023,2,10,0,0,118
+2023,2,10,1,0,57
+2023,2,10,2,0,0
+2023,2,10,3,0,0
+2023,2,10,4,0,0
+2023,2,10,5,0,0
+2023,2,10,6,0,0
+2023,2,10,7,0,0
+2023,2,10,8,0,0
+2023,2,10,9,0,0
+2023,2,10,10,0,0
+2023,2,10,11,0,0
+2023,2,10,12,0,0
+2023,2,10,13,0,0
+2023,2,10,14,0,0
+2023,2,10,15,0,0
+2023,2,10,16,0,0
+2023,2,10,17,0,0
+2023,2,10,18,0,0
+2023,2,10,19,0,52
+2023,2,10,20,0,116
+2023,2,10,21,0,164
+2023,2,10,22,0,183
+2023,2,10,23,0,169
+2023,2,11,0,0,127
+2023,2,11,1,0,63
+2023,2,11,2,0,0
+2023,2,11,3,0,0
+2023,2,11,4,0,0
+2023,2,11,5,0,0
+2023,2,11,6,0,0
+2023,2,11,7,0,0
+2023,2,11,8,0,0
+2023,2,11,9,0,0
+2023,2,11,10,0,0
+2023,2,11,11,0,0
+2023,2,11,12,0,0
+2023,2,11,13,0,0
+2023,2,11,14,0,0
+2023,2,11,15,0,0
+2023,2,11,16,0,0
+2023,2,11,17,0,0
+2023,2,11,18,0,0
+2023,2,11,19,0,6
+2023,2,11,20,0,10
+2023,2,11,21,0,86
+2023,2,11,22,0,98
+2023,2,11,23,0,78
+2023,2,12,0,0,58
+2023,2,12,1,0,31
+2023,2,12,2,0,0
+2023,2,12,3,0,0
+2023,2,12,4,0,0
+2023,2,12,5,0,0
+2023,2,12,6,0,0
+2023,2,12,7,0,0
+2023,2,12,8,0,0
+2023,2,12,9,0,0
+2023,2,12,10,0,0
+2023,2,12,11,0,0
+2023,2,12,12,0,0
+2023,2,12,13,0,0
+2023,2,12,14,0,0
+2023,2,12,15,0,0
+2023,2,12,16,0,0
+2023,2,12,17,0,0
+2023,2,12,18,0,0
+2023,2,12,19,0,23
+2023,2,12,20,0,52
+2023,2,12,21,0,75
+2023,2,12,22,0,53
+2023,2,12,23,0,19
+2023,2,13,0,0,15
+2023,2,13,1,0,9
+2023,2,13,2,0,0
+2023,2,13,3,0,0
+2023,2,13,4,0,0
+2023,2,13,5,0,0
+2023,2,13,6,0,0
+2023,2,13,7,0,0
+2023,2,13,8,0,0
+2023,2,13,9,0,0
+2023,2,13,10,0,0
+2023,2,13,11,0,0
+2023,2,13,12,0,0
+2023,2,13,13,0,0
+2023,2,13,14,0,0
+2023,2,13,15,0,0
+2023,2,13,16,0,0
+2023,2,13,17,0,0
+2023,2,13,18,0,0
+2023,2,13,19,0,28
+2023,2,13,20,0,96
+2023,2,13,21,0,135
+2023,2,13,22,0,130
+2023,2,13,23,0,169
+2023,2,14,0,0,128
+2023,2,14,1,0,69
+2023,2,14,2,0,0
+2023,2,14,3,0,0
+2023,2,14,4,0,0
+2023,2,14,5,0,0
+2023,2,14,6,0,0
+2023,2,14,7,0,0
+2023,2,14,8,0,0
+2023,2,14,9,0,0
+2023,2,14,10,0,0
+2023,2,14,11,0,0
+2023,2,14,12,0,0
+2023,2,14,13,0,0
+2023,2,14,14,0,0
+2023,2,14,15,0,0
+2023,2,14,16,0,0
+2023,2,14,17,0,0
+2023,2,14,18,0,0
+2023,2,14,19,0,57
+2023,2,14,20,0,114
+2023,2,14,21,0,155
+2023,2,14,22,0,138
+2023,2,14,23,0,129
+2023,2,15,0,0,44
+2023,2,15,1,0,6
+2023,2,15,2,0,2
+2023,2,15,3,0,0
+2023,2,15,4,0,0
+2023,2,15,5,0,0
+2023,2,15,6,0,0
+2023,2,15,7,0,0
+2023,2,15,8,0,0
+2023,2,15,9,0,0
+2023,2,15,10,0,0
+2023,2,15,11,0,0
+2023,2,15,12,0,0
+2023,2,15,13,0,0
+2023,2,15,14,0,0
+2023,2,15,15,0,0
+2023,2,15,16,0,0
+2023,2,15,17,0,0
+2023,2,15,18,0,0
+2023,2,15,19,0,36
+2023,2,15,20,0,68
+2023,2,15,21,0,92
+2023,2,15,22,0,14
+2023,2,15,23,0,13
+2023,2,16,0,0,10
+2023,2,16,1,0,7
+2023,2,16,2,0,2
+2023,2,16,3,0,0
+2023,2,16,4,0,0
+2023,2,16,5,0,0
+2023,2,16,6,0,0
+2023,2,16,7,0,0
+2023,2,16,8,0,0
+2023,2,16,9,0,0
+2023,2,16,10,0,0
+2023,2,16,11,0,0
+2023,2,16,12,0,0
+2023,2,16,13,0,0
+2023,2,16,14,0,0
+2023,2,16,15,0,0
+2023,2,16,16,0,0
+2023,2,16,17,0,0
+2023,2,16,18,0,0
+2023,2,16,19,0,77
+2023,2,16,20,0,145
+2023,2,16,21,0,127
+2023,2,16,22,0,87
+2023,2,16,23,0,81
+2023,2,17,0,0,142
+2023,2,17,1,0,82
+2023,2,17,2,0,17
+2023,2,17,3,0,0
+2023,2,17,4,0,0
+2023,2,17,5,0,0
+2023,2,17,6,0,0
+2023,2,17,7,0,0
+2023,2,17,8,0,0
+2023,2,17,9,0,0
+2023,2,17,10,0,0
+2023,2,17,11,0,0
+2023,2,17,12,0,0
+2023,2,17,13,0,0
+2023,2,17,14,0,0
+2023,2,17,15,0,0
+2023,2,17,16,0,0
+2023,2,17,17,0,0
+2023,2,17,18,0,5
+2023,2,17,19,0,37
+2023,2,17,20,0,73
+2023,2,17,21,0,100
+2023,2,17,22,0,140
+2023,2,17,23,0,131
+2023,2,18,0,0,100
+2023,2,18,1,0,58
+2023,2,18,2,0,15
+2023,2,18,3,0,0
+2023,2,18,4,0,0
+2023,2,18,5,0,0
+2023,2,18,6,0,0
+2023,2,18,7,0,0
+2023,2,18,8,0,0
+2023,2,18,9,0,0
+2023,2,18,10,0,0
+2023,2,18,11,0,0
+2023,2,18,12,0,0
+2023,2,18,13,0,0
+2023,2,18,14,0,0
+2023,2,18,15,0,0
+2023,2,18,16,0,0
+2023,2,18,17,0,0
+2023,2,18,18,0,3
+2023,2,18,19,0,9
+2023,2,18,20,0,15
+2023,2,18,21,0,165
+2023,2,18,22,0,81
+2023,2,18,23,0,195
+2023,2,19,0,0,154
+2023,2,19,1,0,92
+2023,2,19,2,0,25
+2023,2,19,3,0,0
+2023,2,19,4,0,0
+2023,2,19,5,0,0
+2023,2,19,6,0,0
+2023,2,19,7,0,0
+2023,2,19,8,0,0
+2023,2,19,9,0,0
+2023,2,19,10,0,0
+2023,2,19,11,0,0
+2023,2,19,12,0,0
+2023,2,19,13,0,0
+2023,2,19,14,0,0
+2023,2,19,15,0,0
+2023,2,19,16,0,0
+2023,2,19,17,0,0
+2023,2,19,18,0,8
+2023,2,19,19,0,37
+2023,2,19,20,0,69
+2023,2,19,21,0,94
+2023,2,19,22,0,126
+2023,2,19,23,0,121
+2023,2,20,0,0,77
+2023,2,20,1,0,44
+2023,2,20,2,0,15
+2023,2,20,3,0,0
+2023,2,20,4,0,0
+2023,2,20,5,0,0
+2023,2,20,6,0,0
+2023,2,20,7,0,0
+2023,2,20,8,0,0
+2023,2,20,9,0,0
+2023,2,20,10,0,0
+2023,2,20,11,0,0
+2023,2,20,12,0,0
+2023,2,20,13,0,0
+2023,2,20,14,0,0
+2023,2,20,15,0,0
+2023,2,20,16,0,0
+2023,2,20,17,0,0
+2023,2,20,18,0,7
+2023,2,20,19,0,22
+2023,2,20,20,0,39
+2023,2,20,21,0,83
+2023,2,20,22,0,92
+2023,2,20,23,0,59
+2023,2,21,0,0,46
+2023,2,21,1,0,27
+2023,2,21,2,0,10
+2023,2,21,3,0,0
+2023,2,21,4,0,0
+2023,2,21,5,0,0
+2023,2,21,6,0,0
+2023,2,21,7,0,0
+2023,2,21,8,0,0
+2023,2,21,9,0,0
+2023,2,21,10,0,0
+2023,2,21,11,0,0
+2023,2,21,12,0,0
+2023,2,21,13,0,0
+2023,2,21,14,0,0
+2023,2,21,15,0,0
+2023,2,21,16,0,0
+2023,2,21,17,0,0
+2023,2,21,18,0,11
+2023,2,21,19,0,38
+2023,2,21,20,0,69
+2023,2,21,21,0,92
+2023,2,21,22,0,111
+2023,2,21,23,0,104
+2023,2,22,0,0,80
+2023,2,22,1,0,59
+2023,2,22,2,0,19
+2023,2,22,3,0,0
+2023,2,22,4,0,0
+2023,2,22,5,0,0
+2023,2,22,6,0,0
+2023,2,22,7,0,0
+2023,2,22,8,0,0
+2023,2,22,9,0,0
+2023,2,22,10,0,0
+2023,2,22,11,0,0
+2023,2,22,12,0,0
+2023,2,22,13,0,0
+2023,2,22,14,0,0
+2023,2,22,15,0,0
+2023,2,22,16,0,0
+2023,2,22,17,0,0
+2023,2,22,18,0,11
+2023,2,22,19,0,25
+2023,2,22,20,0,42
+2023,2,22,21,0,55
+2023,2,22,22,0,75
+2023,2,22,23,0,176
+2023,2,23,0,0,138
+2023,2,23,1,0,83
+2023,2,23,2,0,27
+2023,2,23,3,0,0
+2023,2,23,4,0,0
+2023,2,23,5,0,0
+2023,2,23,6,0,0
+2023,2,23,7,0,0
+2023,2,23,8,0,0
+2023,2,23,9,0,0
+2023,2,23,10,0,0
+2023,2,23,11,0,0
+2023,2,23,12,0,0
+2023,2,23,13,0,0
+2023,2,23,14,0,0
+2023,2,23,15,0,0
+2023,2,23,16,0,0
+2023,2,23,17,0,0
+2023,2,23,18,0,13
+2023,2,23,19,0,31
+2023,2,23,20,0,49
+2023,2,23,21,0,81
+2023,2,23,22,0,89
+2023,2,23,23,0,34
+2023,2,24,0,0,169
+2023,2,24,1,0,109
+2023,2,24,2,0,41
+2023,2,24,3,0,0
+2023,2,24,4,0,0
+2023,2,24,5,0,0
+2023,2,24,6,0,0
+2023,2,24,7,0,0
+2023,2,24,8,0,0
+2023,2,24,9,0,0
+2023,2,24,10,0,0
+2023,2,24,11,0,0
+2023,2,24,12,0,0
+2023,2,24,13,0,0
+2023,2,24,14,0,0
+2023,2,24,15,0,0
+2023,2,24,16,0,0
+2023,2,24,17,0,0
+2023,2,24,18,0,5
+2023,2,24,19,0,10
+2023,2,24,20,0,15
+2023,2,24,21,0,19
+2023,2,24,22,0,70
+2023,2,24,23,0,66
+2023,2,25,0,0,52
+2023,2,25,1,0,32
+2023,2,25,2,0,14
+2023,2,25,3,0,0
+2023,2,25,4,0,0
+2023,2,25,5,0,0
+2023,2,25,6,0,0
+2023,2,25,7,0,0
+2023,2,25,8,0,0
+2023,2,25,9,0,0
+2023,2,25,10,0,0
+2023,2,25,11,0,0
+2023,2,25,12,0,0
+2023,2,25,13,0,0
+2023,2,25,14,0,0
+2023,2,25,15,0,0
+2023,2,25,16,0,0
+2023,2,25,17,0,0
+2023,2,25,18,0,39
+2023,2,25,19,0,112
+2023,2,25,20,0,177
+2023,2,25,21,0,75
+2023,2,25,22,0,84
+2023,2,25,23,0,157
+2023,2,26,0,0,124
+2023,2,26,1,0,75
+2023,2,26,2,0,29
+2023,2,26,3,0,0
+2023,2,26,4,0,0
+2023,2,26,5,0,0
+2023,2,26,6,0,0
+2023,2,26,7,0,0
+2023,2,26,8,0,0
+2023,2,26,9,0,0
+2023,2,26,10,0,0
+2023,2,26,11,0,0
+2023,2,26,12,0,0
+2023,2,26,13,0,0
+2023,2,26,14,0,0
+2023,2,26,15,0,0
+2023,2,26,16,0,0
+2023,2,26,17,0,0
+2023,2,26,18,0,57
+2023,2,26,19,0,145
+2023,2,26,20,0,222
+2023,2,26,21,0,274
+2023,2,26,22,0,89
+2023,2,26,23,0,107
+2023,2,27,0,0,85
+2023,2,27,1,0,53
+2023,2,27,2,0,22
+2023,2,27,3,0,0
+2023,2,27,4,0,0
+2023,2,27,5,0,0
+2023,2,27,6,0,0
+2023,2,27,7,0,0
+2023,2,27,8,0,0
+2023,2,27,9,0,0
+2023,2,27,10,0,0
+2023,2,27,11,0,0
+2023,2,27,12,0,0
+2023,2,27,13,0,0
+2023,2,27,14,0,0
+2023,2,27,15,0,0
+2023,2,27,16,0,0
+2023,2,27,17,0,0
+2023,2,27,18,0,65
+2023,2,27,19,0,157
+2023,2,27,20,0,236
+2023,2,27,21,0,289
+2023,2,27,22,0,309
+2023,2,27,23,0,294
+2023,2,28,0,0,245
+2023,2,28,1,0,168
+2023,2,28,2,0,77
+2023,2,28,3,0,0
+2023,2,28,4,0,0
+2023,2,28,5,0,0
+2023,2,28,6,0,0
+2023,2,28,7,0,0
+2023,2,28,8,0,0
+2023,2,28,9,0,0
+2023,2,28,10,0,0
+2023,2,28,11,0,0
+2023,2,28,12,0,0
+2023,2,28,13,0,0
+2023,2,28,14,0,0
+2023,2,28,15,0,0
+2023,2,28,16,0,0
+2023,2,28,17,0,0
+2023,2,28,18,0,16
+2023,2,28,19,0,27
+2023,2,28,20,0,39
+2023,2,28,21,0,48
+2023,2,28,22,0,206
+2023,2,28,23,0,152
+2023,3,1,0,0,121
+2023,3,1,1,0,72
+2023,3,1,2,0,38
+2023,3,1,3,0,0
+2023,3,1,4,0,0
+2023,3,1,5,0,0
+2023,3,1,6,0,0
+2023,3,1,7,0,0
+2023,3,1,8,0,0
+2023,3,1,9,0,0
+2023,3,1,10,0,0
+2023,3,1,11,0,0
+2023,3,1,12,0,0
+2023,3,1,13,0,0
+2023,3,1,14,0,0
+2023,3,1,15,0,0
+2023,3,1,16,0,0
+2023,3,1,17,0,0
+2023,3,1,18,0,71
+2023,3,1,19,0,160
+2023,3,1,20,0,238
+2023,3,1,21,0,290
+2023,3,1,22,0,310
+2023,3,1,23,0,294
+2023,3,2,0,0,246
+2023,3,2,1,0,171
+2023,3,2,2,0,82
+2023,3,2,3,0,0
+2023,3,2,4,0,0
+2023,3,2,5,0,0
+2023,3,2,6,0,0
+2023,3,2,7,0,0
+2023,3,2,8,0,0
+2023,3,2,9,0,0
+2023,3,2,10,0,0
+2023,3,2,11,0,0
+2023,3,2,12,0,0
+2023,3,2,13,0,0
+2023,3,2,14,0,0
+2023,3,2,15,0,0
+2023,3,2,16,0,0
+2023,3,2,17,0,0
+2023,3,2,18,0,73
+2023,3,2,19,0,164
+2023,3,2,20,0,246
+2023,3,2,21,0,91
+2023,3,2,22,0,99
+2023,3,2,23,0,168
+2023,3,3,0,0,28
+2023,3,3,1,0,19
+2023,3,3,2,0,10
+2023,3,3,3,0,0
+2023,3,3,4,0,0
+2023,3,3,5,0,0
+2023,3,3,6,0,0
+2023,3,3,7,0,0
+2023,3,3,8,0,0
+2023,3,3,9,0,0
+2023,3,3,10,0,0
+2023,3,3,11,0,0
+2023,3,3,12,0,0
+2023,3,3,13,0,0
+2023,3,3,14,0,0
+2023,3,3,15,0,0
+2023,3,3,16,0,0
+2023,3,3,17,0,0
+2023,3,3,18,0,85
+2023,3,3,19,0,179
+2023,3,3,20,0,259
+2023,3,3,21,0,311
+2023,3,3,22,0,331
+2023,3,3,23,0,315
+2023,3,4,0,0,265
+2023,3,4,1,0,188
+2023,3,4,2,0,95
+2023,3,4,3,0,15
+2023,3,4,4,0,0
+2023,3,4,5,0,0
+2023,3,4,6,0,0
+2023,3,4,7,0,0
+2023,3,4,8,0,0
+2023,3,4,9,0,0
+2023,3,4,10,0,0
+2023,3,4,11,0,0
+2023,3,4,12,0,0
+2023,3,4,13,0,0
+2023,3,4,14,0,0
+2023,3,4,15,0,0
+2023,3,4,16,0,0
+2023,3,4,17,0,0
+2023,3,4,18,0,95
+2023,3,4,19,0,188
+2023,3,4,20,0,268
+2023,3,4,21,0,321
+2023,3,4,22,0,340
+2023,3,4,23,0,319
+2023,3,5,0,0,206
+2023,3,5,1,0,143
+2023,3,5,2,0,71
+2023,3,5,3,0,17
+2023,3,5,4,0,0
+2023,3,5,5,0,0
+2023,3,5,6,0,0
+2023,3,5,7,0,0
+2023,3,5,8,0,0
+2023,3,5,9,0,0
+2023,3,5,10,0,0
+2023,3,5,11,0,0
+2023,3,5,12,0,0
+2023,3,5,13,0,0
+2023,3,5,14,0,0
+2023,3,5,15,0,0
+2023,3,5,16,0,0
+2023,3,5,17,0,4
+2023,3,5,18,0,46
+2023,3,5,19,0,101
+2023,3,5,20,0,154
+2023,3,5,21,0,192
+2023,3,5,22,0,280
+2023,3,5,23,0,266
+2023,3,6,0,0,209
+2023,3,6,1,0,145
+2023,3,6,2,0,81
+2023,3,6,3,0,15
+2023,3,6,4,0,0
+2023,3,6,5,0,0
+2023,3,6,6,0,0
+2023,3,6,7,0,0
+2023,3,6,8,0,0
+2023,3,6,9,0,0
+2023,3,6,10,0,0
+2023,3,6,11,0,0
+2023,3,6,12,0,0
+2023,3,6,13,0,0
+2023,3,6,14,0,0
+2023,3,6,15,0,0
+2023,3,6,16,0,0
+2023,3,6,17,0,12
+2023,3,6,18,0,40
+2023,3,6,19,0,85
+2023,3,6,20,0,155
+2023,3,6,21,0,192
+2023,3,6,22,0,206
+2023,3,6,23,0,134
+2023,3,7,0,0,109
+2023,3,7,1,0,74
+2023,3,7,2,0,37
+2023,3,7,3,0,23
+2023,3,7,4,0,0
+2023,3,7,5,0,0
+2023,3,7,6,0,0
+2023,3,7,7,0,0
+2023,3,7,8,0,0
+2023,3,7,9,0,0
+2023,3,7,10,0,0
+2023,3,7,11,0,0
+2023,3,7,12,0,0
+2023,3,7,13,0,0
+2023,3,7,14,0,0
+2023,3,7,15,0,0
+2023,3,7,16,0,0
+2023,3,7,17,0,8
+2023,3,7,18,0,49
+2023,3,7,19,0,102
+2023,3,7,20,0,152
+2023,3,7,21,0,248
+2023,3,7,22,0,340
+2023,3,7,23,0,325
+2023,3,8,0,0,184
+2023,3,8,1,0,145
+2023,3,8,2,0,74
+2023,3,8,3,0,25
+2023,3,8,4,0,0
+2023,3,8,5,0,0
+2023,3,8,6,0,0
+2023,3,8,7,0,0
+2023,3,8,8,0,0
+2023,3,8,9,0,0
+2023,3,8,10,0,0
+2023,3,8,11,0,0
+2023,3,8,12,0,0
+2023,3,8,13,0,0
+2023,3,8,14,0,0
+2023,3,8,15,0,0
+2023,3,8,16,0,0
+2023,3,8,17,0,17
+2023,3,8,18,0,23
+2023,3,8,19,0,44
+2023,3,8,20,0,64
+2023,3,8,21,0,79
+2023,3,8,22,0,103
+2023,3,8,23,0,100
+2023,3,9,0,0,82
+2023,3,9,1,0,56
+2023,3,9,2,0,30
+2023,3,9,3,0,17
+2023,3,9,4,0,0
+2023,3,9,5,0,0
+2023,3,9,6,0,0
+2023,3,9,7,0,0
+2023,3,9,8,0,0
+2023,3,9,9,0,0
+2023,3,9,10,0,0
+2023,3,9,11,0,0
+2023,3,9,12,0,0
+2023,3,9,13,0,0
+2023,3,9,14,0,0
+2023,3,9,15,0,0
+2023,3,9,16,0,0
+2023,3,9,17,0,9
+2023,3,9,18,0,39
+2023,3,9,19,0,76
+2023,3,9,20,0,111
+2023,3,9,21,0,136
+2023,3,9,22,0,186
+2023,3,9,23,0,175
+2023,3,10,0,0,104
+2023,3,10,1,0,73
+2023,3,10,2,0,38
+2023,3,10,3,0,28
+2023,3,10,4,0,0
+2023,3,10,5,0,0
+2023,3,10,6,0,0
+2023,3,10,7,0,0
+2023,3,10,8,0,0
+2023,3,10,9,0,0
+2023,3,10,10,0,0
+2023,3,10,11,0,0
+2023,3,10,12,0,0
+2023,3,10,13,0,0
+2023,3,10,14,0,0
+2023,3,10,15,0,0
+2023,3,10,16,0,0
+2023,3,10,17,0,35
+2023,3,10,18,0,131
+2023,3,10,19,0,231
+2023,3,10,20,0,312
+2023,3,10,21,0,364
+2023,3,10,22,0,382
+2023,3,10,23,0,363
+2023,3,11,0,0,311
+2023,3,11,1,0,230
+2023,3,11,2,0,132
+2023,3,11,3,0,37
+2023,3,11,4,0,0
+2023,3,11,5,0,0
+2023,3,11,6,0,0
+2023,3,11,7,0,0
+2023,3,11,8,0,0
+2023,3,11,9,0,0
+2023,3,11,10,0,0
+2023,3,11,11,0,0
+2023,3,11,12,0,0
+2023,3,11,13,0,0
+2023,3,11,14,0,0
+2023,3,11,15,0,0
+2023,3,11,16,0,0
+2023,3,11,17,0,35
+2023,3,11,18,0,126
+2023,3,11,19,0,224
+2023,3,11,20,0,305
+2023,3,11,21,0,359
+2023,3,11,22,0,378
+2023,3,11,23,0,361
+2023,3,12,0,0,310
+2023,3,12,1,0,230
+2023,3,12,2,0,133
+2023,3,12,3,0,39
+2023,3,12,4,0,0
+2023,3,12,5,0,0
+2023,3,12,6,0,0
+2023,3,12,7,0,0
+2023,3,12,8,0,0
+2023,3,12,9,0,0
+2023,3,12,10,0,0
+2023,3,12,11,0,0
+2023,3,12,12,0,0
+2023,3,12,13,0,0
+2023,3,12,14,0,0
+2023,3,12,15,0,0
+2023,3,12,16,0,0
+2023,3,12,17,0,34
+2023,3,12,18,0,111
+2023,3,12,19,0,195
+2023,3,12,20,0,267
+2023,3,12,21,0,315
+2023,3,12,22,0,319
+2023,3,12,23,0,303
+2023,3,13,0,0,256
+2023,3,13,1,0,171
+2023,3,13,2,0,123
+2023,3,13,3,0,29
+2023,3,13,4,0,0
+2023,3,13,5,0,0
+2023,3,13,6,0,0
+2023,3,13,7,0,0
+2023,3,13,8,0,0
+2023,3,13,9,0,0
+2023,3,13,10,0,0
+2023,3,13,11,0,0
+2023,3,13,12,0,0
+2023,3,13,13,0,0
+2023,3,13,14,0,0
+2023,3,13,15,0,0
+2023,3,13,16,0,0
+2023,3,13,17,0,28
+2023,3,13,18,0,153
+2023,3,13,19,0,254
+2023,3,13,20,0,336
+2023,3,13,21,0,389
+2023,3,13,22,0,408
+2023,3,13,23,0,390
+2023,3,14,0,0,338
+2023,3,14,1,0,256
+2023,3,14,2,0,155
+2023,3,14,3,0,53
+2023,3,14,4,0,0
+2023,3,14,5,0,0
+2023,3,14,6,0,0
+2023,3,14,7,0,0
+2023,3,14,8,0,0
+2023,3,14,9,0,0
+2023,3,14,10,0,0
+2023,3,14,11,0,0
+2023,3,14,12,0,0
+2023,3,14,13,0,0
+2023,3,14,14,0,0
+2023,3,14,15,0,0
+2023,3,14,16,0,0
+2023,3,14,17,0,53
+2023,3,14,18,0,154
+2023,3,14,19,0,256
+2023,3,14,20,0,338
+2023,3,14,21,0,235
+2023,3,14,22,0,256
+2023,3,14,23,0,218
+2023,3,15,0,0,183
+2023,3,15,1,0,207
+2023,3,15,2,0,122
+2023,3,15,3,0,53
+2023,3,15,4,0,0
+2023,3,15,5,0,0
+2023,3,15,6,0,0
+2023,3,15,7,0,0
+2023,3,15,8,0,0
+2023,3,15,9,0,0
+2023,3,15,10,0,0
+2023,3,15,11,0,0
+2023,3,15,12,0,0
+2023,3,15,13,0,0
+2023,3,15,14,0,0
+2023,3,15,15,0,0
+2023,3,15,16,0,0
+2023,3,15,17,0,57
+2023,3,15,18,0,104
+2023,3,15,19,0,178
+2023,3,15,20,0,240
+2023,3,15,21,0,285
+2023,3,15,22,0,256
+2023,3,15,23,0,304
+2023,3,16,0,0,258
+2023,3,16,1,0,189
+2023,3,16,2,0,111
+2023,3,16,3,0,52
+2023,3,16,4,0,0
+2023,3,16,5,0,0
+2023,3,16,6,0,0
+2023,3,16,7,0,0
+2023,3,16,8,0,0
+2023,3,16,9,0,0
+2023,3,16,10,0,0
+2023,3,16,11,0,0
+2023,3,16,12,0,0
+2023,3,16,13,0,0
+2023,3,16,14,0,0
+2023,3,16,15,0,0
+2023,3,16,16,0,0
+2023,3,16,17,0,67
+2023,3,16,18,0,172
+2023,3,16,19,0,273
+2023,3,16,20,0,354
+2023,3,16,21,0,407
+2023,3,16,22,0,425
+2023,3,16,23,0,408
+2023,3,17,0,0,356
+2023,3,17,1,0,274
+2023,3,17,2,0,174
+2023,3,17,3,0,69
+2023,3,17,4,0,0
+2023,3,17,5,0,0
+2023,3,17,6,0,0
+2023,3,17,7,0,0
+2023,3,17,8,0,0
+2023,3,17,9,0,0
+2023,3,17,10,0,0
+2023,3,17,11,0,0
+2023,3,17,12,0,0
+2023,3,17,13,0,0
+2023,3,17,14,0,0
+2023,3,17,15,0,0
+2023,3,17,16,0,0
+2023,3,17,17,0,71
+2023,3,17,18,0,172
+2023,3,17,19,0,272
+2023,3,17,20,0,349
+2023,3,17,21,0,402
+2023,3,17,22,0,417
+2023,3,17,23,0,401
+2023,3,18,0,0,349
+2023,3,18,1,0,269
+2023,3,18,2,0,170
+2023,3,18,3,0,43
+2023,3,18,4,0,0
+2023,3,18,5,0,0
+2023,3,18,6,0,0
+2023,3,18,7,0,0
+2023,3,18,8,0,0
+2023,3,18,9,0,0
+2023,3,18,10,0,0
+2023,3,18,11,0,0
+2023,3,18,12,0,0
+2023,3,18,13,0,0
+2023,3,18,14,0,0
+2023,3,18,15,0,0
+2023,3,18,16,0,0
+2023,3,18,17,0,82
+2023,3,18,18,0,139
+2023,3,18,19,0,225
+2023,3,18,20,0,294
+2023,3,18,21,0,341
+2023,3,18,22,0,330
+2023,3,18,23,0,314
+2023,3,19,0,0,301
+2023,3,19,1,0,229
+2023,3,19,2,0,144
+2023,3,19,3,0,63
+2023,3,19,4,0,0
+2023,3,19,5,0,0
+2023,3,19,6,0,0
+2023,3,19,7,0,0
+2023,3,19,8,0,0
+2023,3,19,9,0,0
+2023,3,19,10,0,0
+2023,3,19,11,0,0
+2023,3,19,12,0,0
+2023,3,19,13,0,0
+2023,3,19,14,0,0
+2023,3,19,15,0,0
+2023,3,19,16,0,0
+2023,3,19,17,0,51
+2023,3,19,18,0,120
+2023,3,19,19,0,197
+2023,3,19,20,0,263
+2023,3,19,21,0,432
+2023,3,19,22,0,457
+2023,3,19,23,0,438
+2023,3,20,0,0,378
+2023,3,20,1,0,296
+2023,3,20,2,0,194
+2023,3,20,3,0,85
+2023,3,20,4,0,0
+2023,3,20,5,0,0
+2023,3,20,6,0,0
+2023,3,20,7,0,0
+2023,3,20,8,0,0
+2023,3,20,9,0,0
+2023,3,20,10,0,0
+2023,3,20,11,0,0
+2023,3,20,12,0,0
+2023,3,20,13,0,0
+2023,3,20,14,0,0
+2023,3,20,15,0,0
+2023,3,20,16,0,0
+2023,3,20,17,0,94
+2023,3,20,18,0,204
+2023,3,20,19,0,306
+2023,3,20,20,0,388
+2023,3,20,21,0,440
+2023,3,20,22,0,458
+2023,3,20,23,0,439
+2023,3,21,0,0,386
+2023,3,21,1,0,304
+2023,3,21,2,0,200
+2023,3,21,3,0,91
+2023,3,21,4,0,0
+2023,3,21,5,0,0
+2023,3,21,6,0,0
+2023,3,21,7,0,0
+2023,3,21,8,0,0
+2023,3,21,9,0,0
+2023,3,21,10,0,0
+2023,3,21,11,0,0
+2023,3,21,12,0,0
+2023,3,21,13,0,0
+2023,3,21,14,0,0
+2023,3,21,15,0,0
+2023,3,21,16,0,0
+2023,3,21,17,0,60
+2023,3,21,18,0,170
+2023,3,21,19,0,260
+2023,3,21,20,0,335
+2023,3,21,21,0,313
+2023,3,21,22,0,328
+2023,3,21,23,0,193
+2023,3,22,0,0,163
+2023,3,22,1,0,231
+2023,3,22,2,0,146
+2023,3,22,3,0,70
+2023,3,22,4,0,0
+2023,3,22,5,0,0
+2023,3,22,6,0,0
+2023,3,22,7,0,0
+2023,3,22,8,0,0
+2023,3,22,9,0,0
+2023,3,22,10,0,0
+2023,3,22,11,0,0
+2023,3,22,12,0,0
+2023,3,22,13,0,0
+2023,3,22,14,0,0
+2023,3,22,15,0,0
+2023,3,22,16,0,17
+2023,3,22,17,0,17
+2023,3,22,18,0,28
+2023,3,22,19,0,41
+2023,3,22,20,0,52
+2023,3,22,21,0,61
+2023,3,22,22,0,297
+2023,3,22,23,0,331
+2023,3,23,0,0,279
+2023,3,23,1,0,212
+2023,3,23,2,0,134
+2023,3,23,3,0,79
+2023,3,23,4,0,0
+2023,3,23,5,0,0
+2023,3,23,6,0,0
+2023,3,23,7,0,0
+2023,3,23,8,0,0
+2023,3,23,9,0,0
+2023,3,23,10,0,0
+2023,3,23,11,0,0
+2023,3,23,12,0,0
+2023,3,23,13,0,0
+2023,3,23,14,0,0
+2023,3,23,15,0,0
+2023,3,23,16,0,16
+2023,3,23,17,0,108
+2023,3,23,18,0,173
+2023,3,23,19,0,263
+2023,3,23,20,0,339
+2023,3,23,21,0,298
+2023,3,23,22,0,133
+2023,3,23,23,0,126
+2023,3,24,0,0,84
+2023,3,24,1,0,62
+2023,3,24,2,0,39
+2023,3,24,3,0,103
+2023,3,24,4,0,16
+2023,3,24,5,0,0
+2023,3,24,6,0,0
+2023,3,24,7,0,0
+2023,3,24,8,0,0
+2023,3,24,9,0,0
+2023,3,24,10,0,0
+2023,3,24,11,0,0
+2023,3,24,12,0,0
+2023,3,24,13,0,0
+2023,3,24,14,0,0
+2023,3,24,15,0,0
+2023,3,24,16,0,19
+2023,3,24,17,0,87
+2023,3,24,18,0,179
+2023,3,24,19,0,269
+2023,3,24,20,0,343
+2023,3,24,21,0,396
+2023,3,24,22,0,393
+2023,3,24,23,0,372
+2023,3,25,0,0,320
+2023,3,25,1,0,245
+2023,3,25,2,0,158
+2023,3,25,3,0,101
+2023,3,25,4,0,15
+2023,3,25,5,0,0
+2023,3,25,6,0,0
+2023,3,25,7,0,0
+2023,3,25,8,0,0
+2023,3,25,9,0,0
+2023,3,25,10,0,0
+2023,3,25,11,0,0
+2023,3,25,12,0,0
+2023,3,25,13,0,0
+2023,3,25,14,0,0
+2023,3,25,15,0,0
+2023,3,25,16,0,29
+2023,3,25,17,0,128
+2023,3,25,18,0,244
+2023,3,25,19,0,349
+2023,3,25,20,0,432
+2023,3,25,21,0,477
+2023,3,25,22,0,392
+2023,3,25,23,0,374
+2023,3,26,0,0,418
+2023,3,26,1,0,333
+2023,3,26,2,0,228
+2023,3,26,3,0,115
+2023,3,26,4,0,20
+2023,3,26,5,0,0
+2023,3,26,6,0,0
+2023,3,26,7,0,0
+2023,3,26,8,0,0
+2023,3,26,9,0,0
+2023,3,26,10,0,0
+2023,3,26,11,0,0
+2023,3,26,12,0,0
+2023,3,26,13,0,0
+2023,3,26,14,0,0
+2023,3,26,15,0,0
+2023,3,26,16,0,27
+2023,3,26,17,0,106
+2023,3,26,18,0,202
+2023,3,26,19,0,294
+2023,3,26,20,0,366
+2023,3,26,21,0,306
+2023,3,26,22,0,317
+2023,3,26,23,0,365
+2023,3,27,0,0,311
+2023,3,27,1,0,256
+2023,3,27,2,0,171
+2023,3,27,3,0,98
+2023,3,27,4,0,19
+2023,3,27,5,0,0
+2023,3,27,6,0,0
+2023,3,27,7,0,0
+2023,3,27,8,0,0
+2023,3,27,9,0,0
+2023,3,27,10,0,0
+2023,3,27,11,0,0
+2023,3,27,12,0,0
+2023,3,27,13,0,0
+2023,3,27,14,0,0
+2023,3,27,15,0,0
+2023,3,27,16,0,12
+2023,3,27,17,0,46
+2023,3,27,18,0,99
+2023,3,27,19,0,153
+2023,3,27,20,0,201
+2023,3,27,21,0,233
+2023,3,27,22,0,113
+2023,3,27,23,0,253
+2023,3,28,0,0,220
+2023,3,28,1,0,166
+2023,3,28,2,0,106
+2023,3,28,3,0,70
+2023,3,28,4,0,16
+2023,3,28,5,0,0
+2023,3,28,6,0,0
+2023,3,28,7,0,0
+2023,3,28,8,0,0
+2023,3,28,9,0,0
+2023,3,28,10,0,0
+2023,3,28,11,0,0
+2023,3,28,12,0,0
+2023,3,28,13,0,0
+2023,3,28,14,0,0
+2023,3,28,15,0,0
+2023,3,28,16,0,39
+2023,3,28,17,0,134
+2023,3,28,18,0,176
+2023,3,28,19,0,263
+2023,3,28,20,0,336
+2023,3,28,21,0,215
+2023,3,28,22,0,292
+2023,3,28,23,0,276
+2023,3,29,0,0,241
+2023,3,29,1,0,187
+2023,3,29,2,0,120
+2023,3,29,3,0,127
+2023,3,29,4,0,31
+2023,3,29,5,0,0
+2023,3,29,6,0,0
+2023,3,29,7,0,0
+2023,3,29,8,0,0
+2023,3,29,9,0,0
+2023,3,29,10,0,0
+2023,3,29,11,0,0
+2023,3,29,12,0,0
+2023,3,29,13,0,0
+2023,3,29,14,0,0
+2023,3,29,15,0,0
+2023,3,29,16,0,37
+2023,3,29,17,0,122
+2023,3,29,18,0,218
+2023,3,29,19,0,312
+2023,3,29,20,0,387
+2023,3,29,21,0,430
+2023,3,29,22,0,417
+2023,3,29,23,0,330
+2023,3,30,0,0,284
+2023,3,30,1,0,217
+2023,3,30,2,0,143
+2023,3,30,3,0,133
+2023,3,30,4,0,35
+2023,3,30,5,0,0
+2023,3,30,6,0,0
+2023,3,30,7,0,0
+2023,3,30,8,0,0
+2023,3,30,9,0,0
+2023,3,30,10,0,0
+2023,3,30,11,0,0
+2023,3,30,12,0,0
+2023,3,30,13,0,0
+2023,3,30,14,0,0
+2023,3,30,15,0,0
+2023,3,30,16,0,46
+2023,3,30,17,0,147
+2023,3,30,18,0,233
+2023,3,30,19,0,328
+2023,3,30,20,0,388
+2023,3,30,21,0,435
+2023,3,30,22,0,449
+2023,3,30,23,0,385
+2023,3,31,0,0,350
+2023,3,31,1,0,273
+2023,3,31,2,0,182
+2023,3,31,3,0,134
+2023,3,31,4,0,37
+2023,3,31,5,0,0
+2023,3,31,6,0,0
+2023,3,31,7,0,0
+2023,3,31,8,0,0
+2023,3,31,9,0,0
+2023,3,31,10,0,0
+2023,3,31,11,0,0
+2023,3,31,12,0,0
+2023,3,31,13,0,0
+2023,3,31,14,0,0
+2023,3,31,15,0,0
+2023,3,31,16,0,53
+2023,3,31,17,0,141
+2023,3,31,18,0,245
+2023,3,31,19,0,346
+2023,3,31,20,0,428
+2023,3,31,21,0,437
+2023,3,31,22,0,429
+2023,3,31,23,0,436
+2023,4,1,0,0,383
+2023,4,1,1,0,304
+2023,4,1,2,0,211
+2023,4,1,3,0,113
+2023,4,1,4,0,30
+2023,4,1,5,0,0
+2023,4,1,6,0,0
+2023,4,1,7,0,0
+2023,4,1,8,0,0
+2023,4,1,9,0,0
+2023,4,1,10,0,0
+2023,4,1,11,0,0
+2023,4,1,12,0,0
+2023,4,1,13,0,0
+2023,4,1,14,0,0
+2023,4,1,15,0,0
+2023,4,1,16,0,63
+2023,4,1,17,0,175
+2023,4,1,18,0,293
+2023,4,1,19,0,399
+2023,4,1,20,0,480
+2023,4,1,21,0,531
+2023,4,1,22,0,547
+2023,4,1,23,0,520
+2023,4,2,0,0,394
+2023,4,2,1,0,311
+2023,4,2,2,0,215
+2023,4,2,3,0,157
+2023,4,2,4,0,50
+2023,4,2,5,0,0
+2023,4,2,6,0,0
+2023,4,2,7,0,0
+2023,4,2,8,0,0
+2023,4,2,9,0,0
+2023,4,2,10,0,0
+2023,4,2,11,0,0
+2023,4,2,12,0,0
+2023,4,2,13,0,0
+2023,4,2,14,0,0
+2023,4,2,15,0,0
+2023,4,2,16,0,47
+2023,4,2,17,0,73
+2023,4,2,18,0,126
+2023,4,2,19,0,184
+2023,4,2,20,0,235
+2023,4,2,21,0,209
+2023,4,2,22,0,438
+2023,4,2,23,0,418
+2023,4,3,0,0,366
+2023,4,3,1,0,292
+2023,4,3,2,0,127
+2023,4,3,3,0,66
+2023,4,3,4,0,53
+2023,4,3,5,0,0
+2023,4,3,6,0,0
+2023,4,3,7,0,0
+2023,4,3,8,0,0
+2023,4,3,9,0,0
+2023,4,3,10,0,0
+2023,4,3,11,0,0
+2023,4,3,12,0,0
+2023,4,3,13,0,0
+2023,4,3,14,0,0
+2023,4,3,15,0,0
+2023,4,3,16,0,70
+2023,4,3,17,0,178
+2023,4,3,18,0,293
+2023,4,3,19,0,397
+2023,4,3,20,0,479
+2023,4,3,21,0,526
+2023,4,3,22,0,420
+2023,4,3,23,0,419
+2023,4,4,0,0,365
+2023,4,4,1,0,288
+2023,4,4,2,0,198
+2023,4,4,3,0,133
+2023,4,4,4,0,45
+2023,4,4,5,0,0
+2023,4,4,6,0,0
+2023,4,4,7,0,0
+2023,4,4,8,0,0
+2023,4,4,9,0,0
+2023,4,4,10,0,0
+2023,4,4,11,0,0
+2023,4,4,12,0,0
+2023,4,4,13,0,0
+2023,4,4,14,0,0
+2023,4,4,15,0,0
+2023,4,4,16,0,33
+2023,4,4,17,0,138
+2023,4,4,18,0,233
+2023,4,4,19,0,323
+2023,4,4,20,0,395
+2023,4,4,21,0,247
+2023,4,4,22,0,282
+2023,4,4,23,0,343
+2023,4,5,0,0,298
+2023,4,5,1,0,327
+2023,4,5,2,0,232
+2023,4,5,3,0,128
+2023,4,5,4,0,43
+2023,4,5,5,0,0
+2023,4,5,6,0,0
+2023,4,5,7,0,0
+2023,4,5,8,0,0
+2023,4,5,9,0,0
+2023,4,5,10,0,0
+2023,4,5,11,0,0
+2023,4,5,12,0,0
+2023,4,5,13,0,0
+2023,4,5,14,0,0
+2023,4,5,15,0,0
+2023,4,5,16,0,57
+2023,4,5,17,0,68
+2023,4,5,18,0,117
+2023,4,5,19,0,167
+2023,4,5,20,0,212
+2023,4,5,21,0,242
+2023,4,5,22,0,247
+2023,4,5,23,0,432
+2023,4,6,0,0,384
+2023,4,6,1,0,305
+2023,4,6,2,0,213
+2023,4,6,3,0,121
+2023,4,6,4,0,54
+2023,4,6,5,0,0
+2023,4,6,6,0,0
+2023,4,6,7,0,0
+2023,4,6,8,0,0
+2023,4,6,9,0,0
+2023,4,6,10,0,0
+2023,4,6,11,0,0
+2023,4,6,12,0,0
+2023,4,6,13,0,0
+2023,4,6,14,0,0
+2023,4,6,15,0,0
+2023,4,6,16,0,91
+2023,4,6,17,0,180
+2023,4,6,18,0,288
+2023,4,6,19,0,425
+2023,4,6,20,0,506
+2023,4,6,21,0,556
+2023,4,6,22,0,464
+2023,4,6,23,0,340
+2023,4,7,0,0,493
+2023,4,7,1,0,406
+2023,4,7,2,0,303
+2023,4,7,3,0,183
+2023,4,7,4,0,72
+2023,4,7,5,0,0
+2023,4,7,6,0,0
+2023,4,7,7,0,0
+2023,4,7,8,0,0
+2023,4,7,9,0,0
+2023,4,7,10,0,0
+2023,4,7,11,0,0
+2023,4,7,12,0,0
+2023,4,7,13,0,0
+2023,4,7,14,0,0
+2023,4,7,15,0,15
+2023,4,7,16,0,102
+2023,4,7,17,0,167
+2023,4,7,18,0,273
+2023,4,7,19,0,373
+2023,4,7,20,0,454
+2023,4,7,21,0,491
+2023,4,7,22,0,512
+2023,4,7,23,0,480
+2023,4,8,0,0,423
+2023,4,8,1,0,340
+2023,4,8,2,0,240
+2023,4,8,3,0,138
+2023,4,8,4,0,76
+2023,4,8,5,0,0
+2023,4,8,6,0,0
+2023,4,8,7,0,0
+2023,4,8,8,0,0
+2023,4,8,9,0,0
+2023,4,8,10,0,0
+2023,4,8,11,0,0
+2023,4,8,12,0,0
+2023,4,8,13,0,0
+2023,4,8,14,0,0
+2023,4,8,15,0,16
+2023,4,8,16,0,98
+2023,4,8,17,0,187
+2023,4,8,18,0,294
+2023,4,8,19,0,393
+2023,4,8,20,0,468
+2023,4,8,21,0,519
+2023,4,8,22,0,309
+2023,4,8,23,0,293
+2023,4,9,0,0,447
+2023,4,9,1,0,364
+2023,4,9,2,0,263
+2023,4,9,3,0,180
+2023,4,9,4,0,74
+2023,4,9,5,0,0
+2023,4,9,6,0,0
+2023,4,9,7,0,0
+2023,4,9,8,0,0
+2023,4,9,9,0,0
+2023,4,9,10,0,0
+2023,4,9,11,0,0
+2023,4,9,12,0,0
+2023,4,9,13,0,0
+2023,4,9,14,0,0
+2023,4,9,15,0,17
+2023,4,9,16,0,100
+2023,4,9,17,0,206
+2023,4,9,18,0,319
+2023,4,9,19,0,422
+2023,4,9,20,0,503
+2023,4,9,21,0,394
+2023,4,9,22,0,565
+2023,4,9,23,0,542
+2023,4,10,0,0,484
+2023,4,10,1,0,302
+2023,4,10,2,0,212
+2023,4,10,3,0,124
+2023,4,10,4,0,87
+2023,4,10,5,0,0
+2023,4,10,6,0,0
+2023,4,10,7,0,0
+2023,4,10,8,0,0
+2023,4,10,9,0,0
+2023,4,10,10,0,0
+2023,4,10,11,0,0
+2023,4,10,12,0,0
+2023,4,10,13,0,0
+2023,4,10,14,0,0
+2023,4,10,15,0,24
+2023,4,10,16,0,115
+2023,4,10,17,0,127
+2023,4,10,18,0,209
+2023,4,10,19,0,291
+2023,4,10,20,0,358
+2023,4,10,21,0,400
+2023,4,10,22,0,597
+2023,4,10,23,0,430
+2023,4,11,0,0,376
+2023,4,11,1,0,298
+2023,4,11,2,0,208
+2023,4,11,3,0,119
+2023,4,11,4,0,92
+2023,4,11,5,0,0
+2023,4,11,6,0,0
+2023,4,11,7,0,0
+2023,4,11,8,0,0
+2023,4,11,9,0,0
+2023,4,11,10,0,0
+2023,4,11,11,0,0
+2023,4,11,12,0,0
+2023,4,11,13,0,0
+2023,4,11,14,0,0
+2023,4,11,15,0,16
+2023,4,11,16,0,63
+2023,4,11,17,0,216
+2023,4,11,18,0,335
+2023,4,11,19,0,446
+2023,4,11,20,0,431
+2023,4,11,21,0,479
+2023,4,11,22,0,280
+2023,4,11,23,0,261
+2023,4,12,0,0,106
+2023,4,12,1,0,165
+2023,4,12,2,0,115
+2023,4,12,3,0,203
+2023,4,12,4,0,91
+2023,4,12,5,0,14
+2023,4,12,6,0,0
+2023,4,12,7,0,0
+2023,4,12,8,0,0
+2023,4,12,9,0,0
+2023,4,12,10,0,0
+2023,4,12,11,0,0
+2023,4,12,12,0,0
+2023,4,12,13,0,0
+2023,4,12,14,0,0
+2023,4,12,15,0,30
+2023,4,12,16,0,122
+2023,4,12,17,0,238
+2023,4,12,18,0,355
+2023,4,12,19,0,458
+2023,4,12,20,0,538
+2023,4,12,21,0,427
+2023,4,12,22,0,439
+2023,4,12,23,0,521
+2023,4,13,0,0,465
+2023,4,13,1,0,382
+2023,4,13,2,0,284
+2023,4,13,3,0,178
+2023,4,13,4,0,85
+2023,4,13,5,0,11
+2023,4,13,6,0,0
+2023,4,13,7,0,0
+2023,4,13,8,0,0
+2023,4,13,9,0,0
+2023,4,13,10,0,0
+2023,4,13,11,0,0
+2023,4,13,12,0,0
+2023,4,13,13,0,0
+2023,4,13,14,0,0
+2023,4,13,15,0,39
+2023,4,13,16,0,143
+2023,4,13,17,0,146
+2023,4,13,18,0,235
+2023,4,13,19,0,314
+2023,4,13,20,0,384
+2023,4,13,21,0,428
+2023,4,13,22,0,625
+2023,4,13,23,0,595
+2023,4,14,0,0,429
+2023,4,14,1,0,346
+2023,4,14,2,0,245
+2023,4,14,3,0,147
+2023,4,14,4,0,104
+2023,4,14,5,0,19
+2023,4,14,6,0,0
+2023,4,14,7,0,0
+2023,4,14,8,0,0
+2023,4,14,9,0,0
+2023,4,14,10,0,0
+2023,4,14,11,0,0
+2023,4,14,12,0,0
+2023,4,14,13,0,0
+2023,4,14,14,0,0
+2023,4,14,15,0,37
+2023,4,14,16,0,127
+2023,4,14,17,0,265
+2023,4,14,18,0,384
+2023,4,14,19,0,483
+2023,4,14,20,0,562
+2023,4,14,21,0,609
+2023,4,14,22,0,622
+2023,4,14,23,0,598
+2023,4,15,0,0,539
+2023,4,15,1,0,451
+2023,4,15,2,0,339
+2023,4,15,3,0,219
+2023,4,15,4,0,95
+2023,4,15,5,0,17
+2023,4,15,6,0,0
+2023,4,15,7,0,0
+2023,4,15,8,0,0
+2023,4,15,9,0,0
+2023,4,15,10,0,0
+2023,4,15,11,0,0
+2023,4,15,12,0,0
+2023,4,15,13,0,0
+2023,4,15,14,0,0
+2023,4,15,15,0,42
+2023,4,15,16,0,140
+2023,4,15,17,0,256
+2023,4,15,18,0,372
+2023,4,15,19,0,474
+2023,4,15,20,0,553
+2023,4,15,21,0,601
+2023,4,15,22,0,615
+2023,4,15,23,0,588
+2023,4,16,0,0,531
+2023,4,16,1,0,444
+2023,4,16,2,0,336
+2023,4,16,3,0,216
+2023,4,16,4,0,103
+2023,4,16,5,0,20
+2023,4,16,6,0,0
+2023,4,16,7,0,0
+2023,4,16,8,0,0
+2023,4,16,9,0,0
+2023,4,16,10,0,0
+2023,4,16,11,0,0
+2023,4,16,12,0,0
+2023,4,16,13,0,0
+2023,4,16,14,0,0
+2023,4,16,15,0,42
+2023,4,16,16,0,138
+2023,4,16,17,0,214
+2023,4,16,18,0,321
+2023,4,16,19,0,419
+2023,4,16,20,0,501
+2023,4,16,21,0,433
+2023,4,16,22,0,448
+2023,4,16,23,0,410
+2023,4,17,0,0,361
+2023,4,17,1,0,290
+2023,4,17,2,0,298
+2023,4,17,3,0,192
+2023,4,17,4,0,110
+2023,4,17,5,0,25
+2023,4,17,6,0,0
+2023,4,17,7,0,0
+2023,4,17,8,0,0
+2023,4,17,9,0,0
+2023,4,17,10,0,0
+2023,4,17,11,0,0
+2023,4,17,12,0,0
+2023,4,17,13,0,0
+2023,4,17,14,0,0
+2023,4,17,15,0,51
+2023,4,17,16,0,153
+2023,4,17,17,0,178
+2023,4,17,18,0,273
+2023,4,17,19,0,363
+2023,4,17,20,0,436
+2023,4,17,21,0,482
+2023,4,17,22,0,352
+2023,4,17,23,0,302
+2023,4,18,0,0,266
+2023,4,18,1,0,212
+2023,4,18,2,0,151
+2023,4,18,3,0,91
+2023,4,18,4,0,95
+2023,4,18,5,0,21
+2023,4,18,6,0,0
+2023,4,18,7,0,0
+2023,4,18,8,0,0
+2023,4,18,9,0,0
+2023,4,18,10,0,0
+2023,4,18,11,0,0
+2023,4,18,12,0,0
+2023,4,18,13,0,0
+2023,4,18,14,0,0
+2023,4,18,15,0,28
+2023,4,18,16,0,84
+2023,4,18,17,0,239
+2023,4,18,18,0,345
+2023,4,18,19,0,440
+2023,4,18,20,0,515
+2023,4,18,21,0,557
+2023,4,18,22,0,571
+2023,4,18,23,0,398
+2023,4,19,0,0,348
+2023,4,19,1,0,454
+2023,4,19,2,0,347
+2023,4,19,3,0,230
+2023,4,19,4,0,121
+2023,4,19,5,0,31
+2023,4,19,6,0,0
+2023,4,19,7,0,0
+2023,4,19,8,0,0
+2023,4,19,9,0,0
+2023,4,19,10,0,0
+2023,4,19,11,0,0
+2023,4,19,12,0,0
+2023,4,19,13,0,0
+2023,4,19,14,0,0
+2023,4,19,15,0,59
+2023,4,19,16,0,91
+2023,4,19,17,0,247
+2023,4,19,18,0,365
+2023,4,19,19,0,473
+2023,4,19,20,0,558
+2023,4,19,21,0,585
+2023,4,19,22,0,598
+2023,4,19,23,0,610
+2023,4,20,0,0,551
+2023,4,20,1,0,467
+2023,4,20,2,0,361
+2023,4,20,3,0,244
+2023,4,20,4,0,129
+2023,4,20,5,0,36
+2023,4,20,6,0,0
+2023,4,20,7,0,0
+2023,4,20,8,0,0
+2023,4,20,9,0,0
+2023,4,20,10,0,0
+2023,4,20,11,0,0
+2023,4,20,12,0,0
+2023,4,20,13,0,0
+2023,4,20,14,0,0
+2023,4,20,15,0,69
+2023,4,20,16,0,176
+2023,4,20,17,0,258
+2023,4,20,18,0,380
+2023,4,20,19,0,492
+2023,4,20,20,0,578
+2023,4,20,21,0,630
+2023,4,20,22,0,651
+2023,4,20,23,0,627
+2023,4,21,0,0,568
+2023,4,21,1,0,476
+2023,4,21,2,0,357
+2023,4,21,3,0,230
+2023,4,21,4,0,136
+2023,4,21,5,0,40
+2023,4,21,6,0,0
+2023,4,21,7,0,0
+2023,4,21,8,0,0
+2023,4,21,9,0,0
+2023,4,21,10,0,0
+2023,4,21,11,0,0
+2023,4,21,12,0,0
+2023,4,21,13,0,0
+2023,4,21,14,0,0
+2023,4,21,15,0,31
+2023,4,21,16,0,84
+2023,4,21,17,0,227
+2023,4,21,18,0,327
+2023,4,21,19,0,415
+2023,4,21,20,0,485
+2023,4,21,21,0,464
+2023,4,21,22,0,517
+2023,4,21,23,0,488
+2023,4,22,0,0,451
+2023,4,22,1,0,373
+2023,4,22,2,0,279
+2023,4,22,3,0,182
+2023,4,22,4,0,69
+2023,4,22,5,0,20
+2023,4,22,6,0,0
+2023,4,22,7,0,0
+2023,4,22,8,0,0
+2023,4,22,9,0,0
+2023,4,22,10,0,0
+2023,4,22,11,0,0
+2023,4,22,12,0,0
+2023,4,22,13,0,0
+2023,4,22,14,0,0
+2023,4,22,15,0,35
+2023,4,22,16,0,93
+2023,4,22,17,0,224
+2023,4,22,18,0,327
+2023,4,22,19,0,425
+2023,4,22,20,0,500
+2023,4,22,21,0,546
+2023,4,22,22,0,672
+2023,4,22,23,0,647
+2023,4,23,0,0,589
+2023,4,23,1,0,502
+2023,4,23,2,0,393
+2023,4,23,3,0,272
+2023,4,23,4,0,72
+2023,4,23,5,0,51
+2023,4,23,6,0,0
+2023,4,23,7,0,0
+2023,4,23,8,0,0
+2023,4,23,9,0,0
+2023,4,23,10,0,0
+2023,4,23,11,0,0
+2023,4,23,12,0,0
+2023,4,23,13,0,0
+2023,4,23,14,0,0
+2023,4,23,15,0,47
+2023,4,23,16,0,110
+2023,4,23,17,0,320
+2023,4,23,18,0,437
+2023,4,23,19,0,539
+2023,4,23,20,0,562
+2023,4,23,21,0,608
+2023,4,23,22,0,628
+2023,4,23,23,0,604
+2023,4,24,0,0,546
+2023,4,24,1,0,460
+2023,4,24,2,0,353
+2023,4,24,3,0,240
+2023,4,24,4,0,143
+2023,4,24,5,0,50
+2023,4,24,6,0,0
+2023,4,24,7,0,0
+2023,4,24,8,0,0
+2023,4,24,9,0,0
+2023,4,24,10,0,0
+2023,4,24,11,0,0
+2023,4,24,12,0,0
+2023,4,24,13,0,0
+2023,4,24,14,0,14
+2023,4,24,15,0,88
+2023,4,24,16,0,198
+2023,4,24,17,0,320
+2023,4,24,18,0,438
+2023,4,24,19,0,539
+2023,4,24,20,0,616
+2023,4,24,21,0,662
+2023,4,24,22,0,674
+2023,4,24,23,0,614
+2023,4,25,0,0,547
+2023,4,25,1,0,454
+2023,4,25,2,0,343
+2023,4,25,3,0,228
+2023,4,25,4,0,159
+2023,4,25,5,0,58
+2023,4,25,6,0,0
+2023,4,25,7,0,0
+2023,4,25,8,0,0
+2023,4,25,9,0,0
+2023,4,25,10,0,0
+2023,4,25,11,0,0
+2023,4,25,12,0,0
+2023,4,25,13,0,0
+2023,4,25,14,0,17
+2023,4,25,15,0,46
+2023,4,25,16,0,101
+2023,4,25,17,0,324
+2023,4,25,18,0,440
+2023,4,25,19,0,540
+2023,4,25,20,0,616
+2023,4,25,21,0,662
+2023,4,25,22,0,673
+2023,4,25,23,0,649
+2023,4,26,0,0,582
+2023,4,26,1,0,487
+2023,4,26,2,0,373
+2023,4,26,3,0,248
+2023,4,26,4,0,161
+2023,4,26,5,0,60
+2023,4,26,6,0,0
+2023,4,26,7,0,0
+2023,4,26,8,0,0
+2023,4,26,9,0,0
+2023,4,26,10,0,0
+2023,4,26,11,0,0
+2023,4,26,12,0,0
+2023,4,26,13,0,0
+2023,4,26,14,0,19
+2023,4,26,15,0,92
+2023,4,26,16,0,197
+2023,4,26,17,0,306
+2023,4,26,18,0,433
+2023,4,26,19,0,544
+2023,4,26,20,0,620
+2023,4,26,21,0,631
+2023,4,26,22,0,635
+2023,4,26,23,0,611
+2023,4,27,0,0,548
+2023,4,27,1,0,465
+2023,4,27,2,0,362
+2023,4,27,3,0,251
+2023,4,27,4,0,145
+2023,4,27,5,0,57
+2023,4,27,6,0,0
+2023,4,27,7,0,0
+2023,4,27,8,0,0
+2023,4,27,9,0,0
+2023,4,27,10,0,0
+2023,4,27,11,0,0
+2023,4,27,12,0,0
+2023,4,27,13,0,0
+2023,4,27,14,0,13
+2023,4,27,15,0,59
+2023,4,27,16,0,138
+2023,4,27,17,0,331
+2023,4,27,18,0,447
+2023,4,27,19,0,547
+2023,4,27,20,0,623
+2023,4,27,21,0,669
+2023,4,27,22,0,658
+2023,4,27,23,0,646
+2023,4,28,0,0,598
+2023,4,28,1,0,510
+2023,4,28,2,0,391
+2023,4,28,3,0,264
+2023,4,28,4,0,147
+2023,4,28,5,0,59
+2023,4,28,6,0,0
+2023,4,28,7,0,0
+2023,4,28,8,0,0
+2023,4,28,9,0,0
+2023,4,28,10,0,0
+2023,4,28,11,0,0
+2023,4,28,12,0,0
+2023,4,28,13,0,0
+2023,4,28,14,0,24
+2023,4,28,15,0,48
+2023,4,28,16,0,181
+2023,4,28,17,0,286
+2023,4,28,18,0,389
+2023,4,28,19,0,481
+2023,4,28,20,0,549
+2023,4,28,21,0,578
+2023,4,28,22,0,547
+2023,4,28,23,0,524
+2023,4,29,0,0,471
+2023,4,29,1,0,397
+2023,4,29,2,0,303
+2023,4,29,3,0,204
+2023,4,29,4,0,95
+2023,4,29,5,0,35
+2023,4,29,6,0,0
+2023,4,29,7,0,0
+2023,4,29,8,0,0
+2023,4,29,9,0,0
+2023,4,29,10,0,0
+2023,4,29,11,0,0
+2023,4,29,12,0,0
+2023,4,29,13,0,0
+2023,4,29,14,0,28
+2023,4,29,15,0,113
+2023,4,29,16,0,226
+2023,4,29,17,0,319
+2023,4,29,18,0,445
+2023,4,29,19,0,556
+2023,4,29,20,0,638
+2023,4,29,21,0,683
+2023,4,29,22,0,662
+2023,4,29,23,0,636
+2023,4,30,0,0,599
+2023,4,30,1,0,502
+2023,4,30,2,0,387
+2023,4,30,3,0,261
+2023,4,30,4,0,148
+2023,4,30,5,0,55
+2023,4,30,6,0,0
+2023,4,30,7,0,0
+2023,4,30,8,0,0
+2023,4,30,9,0,0
+2023,4,30,10,0,0
+2023,4,30,11,0,0
+2023,4,30,12,0,0
+2023,4,30,13,0,0
+2023,4,30,14,0,19
+2023,4,30,15,0,71
+2023,4,30,16,0,147
+2023,4,30,17,0,238
+2023,4,30,18,0,266
+2023,4,30,19,0,510
+2023,4,30,20,0,592
+2023,4,30,21,0,640
+2023,4,30,22,0,664
+2023,4,30,23,0,641
+2023,5,1,0,0,579
+2023,5,1,1,0,490
+2023,5,1,2,0,335
+2023,5,1,3,0,230
+2023,5,1,4,0,132
+2023,5,1,5,0,81
+2023,5,1,6,0,13
+2023,5,1,7,0,0
+2023,5,1,8,0,0
+2023,5,1,9,0,0
+2023,5,1,10,0,0
+2023,5,1,11,0,0
+2023,5,1,12,0,0
+2023,5,1,13,0,0
+2023,5,1,14,0,35
+2023,5,1,15,0,121
+2023,5,1,16,0,172
+2023,5,1,17,0,276
+2023,5,1,18,0,381
+2023,5,1,19,0,476
+2023,5,1,20,0,547
+2023,5,1,21,0,564
+2023,5,1,22,0,507
+2023,5,1,23,0,566
+2023,5,2,0,0,510
+2023,5,2,1,0,429
+2023,5,2,2,0,332
+2023,5,2,3,0,229
+2023,5,2,4,0,73
+2023,5,2,5,0,26
+2023,5,2,6,0,4
+2023,5,2,7,0,0
+2023,5,2,8,0,0
+2023,5,2,9,0,0
+2023,5,2,10,0,0
+2023,5,2,11,0,0
+2023,5,2,12,0,0
+2023,5,2,13,0,0
+2023,5,2,14,0,9
+2023,5,2,15,0,27
+2023,5,2,16,0,56
+2023,5,2,17,0,93
+2023,5,2,18,0,371
+2023,5,2,19,0,464
+2023,5,2,20,0,532
+2023,5,2,21,0,576
+2023,5,2,22,0,586
+2023,5,2,23,0,562
+2023,5,3,0,0,547
+2023,5,3,1,0,460
+2023,5,3,2,0,356
+2023,5,3,3,0,248
+2023,5,3,4,0,113
+2023,5,3,5,0,47
+2023,5,3,6,0,7
+2023,5,3,7,0,0
+2023,5,3,8,0,0
+2023,5,3,9,0,0
+2023,5,3,10,0,0
+2023,5,3,11,0,0
+2023,5,3,12,0,0
+2023,5,3,13,0,0
+2023,5,3,14,0,34
+2023,5,3,15,0,110
+2023,5,3,16,0,208
+2023,5,3,17,0,319
+2023,5,3,18,0,438
+2023,5,3,19,0,548
+2023,5,3,20,0,629
+2023,5,3,21,0,637
+2023,5,3,22,0,645
+2023,5,3,23,0,634
+2023,5,4,0,0,570
+2023,5,4,1,0,481
+2023,5,4,2,0,373
+2023,5,4,3,0,261
+2023,5,4,4,0,131
+2023,5,4,5,0,62
+2023,5,4,6,0,13
+2023,5,4,7,0,0
+2023,5,4,8,0,0
+2023,5,4,9,0,0
+2023,5,4,10,0,0
+2023,5,4,11,0,0
+2023,5,4,12,0,0
+2023,5,4,13,0,0
+2023,5,4,14,0,36
+2023,5,4,15,0,117
+2023,5,4,16,0,231
+2023,5,4,17,0,304
+2023,5,4,18,0,415
+2023,5,4,19,0,516
+2023,5,4,20,0,594
+2023,5,4,21,0,638
+2023,5,4,22,0,653
+2023,5,4,23,0,627
+2023,5,5,0,0,581
+2023,5,5,1,0,491
+2023,5,5,2,0,381
+2023,5,5,3,0,267
+2023,5,5,4,0,66
+2023,5,5,5,0,29
+2023,5,5,6,0,6
+2023,5,5,7,0,0
+2023,5,5,8,0,0
+2023,5,5,9,0,0
+2023,5,5,10,0,0
+2023,5,5,11,0,0
+2023,5,5,12,0,0
+2023,5,5,13,0,0
+2023,5,5,14,0,48
+2023,5,5,15,0,138
+2023,5,5,16,0,252
+2023,5,5,17,0,369
+2023,5,5,18,0,436
+2023,5,5,19,0,540
+2023,5,5,20,0,581
+2023,5,5,21,0,627
+2023,5,5,22,0,658
+2023,5,5,23,0,632
+2023,5,6,0,0,569
+2023,5,6,1,0,481
+2023,5,6,2,0,375
+2023,5,6,3,0,264
+2023,5,6,4,0,142
+2023,5,6,5,0,67
+2023,5,6,6,0,16
+2023,5,6,7,0,0
+2023,5,6,8,0,0
+2023,5,6,9,0,0
+2023,5,6,10,0,0
+2023,5,6,11,0,0
+2023,5,6,12,0,0
+2023,5,6,13,0,0
+2023,5,6,14,0,4
+2023,5,6,15,0,8
+2023,5,6,16,0,15
+2023,5,6,17,0,308
+2023,5,6,18,0,418
+2023,5,6,19,0,517
+2023,5,6,20,0,594
+2023,5,6,21,0,525
+2023,5,6,22,0,534
+2023,5,6,23,0,611
+2023,5,7,0,0,444
+2023,5,7,1,0,370
+2023,5,7,2,0,283
+2023,5,7,3,0,193
+2023,5,7,4,0,112
+2023,5,7,5,0,102
+2023,5,7,6,0,26
+2023,5,7,7,0,0
+2023,5,7,8,0,0
+2023,5,7,9,0,0
+2023,5,7,10,0,0
+2023,5,7,11,0,0
+2023,5,7,12,0,0
+2023,5,7,13,0,0
+2023,5,7,14,0,44
+2023,5,7,15,0,123
+2023,5,7,16,0,231
+2023,5,7,17,0,301
+2023,5,7,18,0,407
+2023,5,7,19,0,502
+2023,5,7,20,0,577
+2023,5,7,21,0,623
+2023,5,7,22,0,462
+2023,5,7,23,0,439
+2023,5,8,0,0,393
+2023,5,8,1,0,327
+2023,5,8,2,0,249
+2023,5,8,3,0,170
+2023,5,8,4,0,177
+2023,5,8,5,0,87
+2023,5,8,6,0,23
+2023,5,8,7,0,0
+2023,5,8,8,0,0
+2023,5,8,9,0,0
+2023,5,8,10,0,0
+2023,5,8,11,0,0
+2023,5,8,12,0,0
+2023,5,8,13,0,0
+2023,5,8,14,0,53
+2023,5,8,15,0,108
+2023,5,8,16,0,199
+2023,5,8,17,0,301
+2023,5,8,18,0,417
+2023,5,8,19,0,514
+2023,5,8,20,0,589
+2023,5,8,21,0,694
+2023,5,8,22,0,706
+2023,5,8,23,0,684
+2023,5,9,0,0,630
+2023,5,9,1,0,548
+2023,5,9,2,0,445
+2023,5,9,3,0,332
+2023,5,9,4,0,172
+2023,5,9,5,0,84
+2023,5,9,6,0,21
+2023,5,9,7,0,0
+2023,5,9,8,0,0
+2023,5,9,9,0,0
+2023,5,9,10,0,0
+2023,5,9,11,0,0
+2023,5,9,12,0,0
+2023,5,9,13,0,0
+2023,5,9,14,0,45
+2023,5,9,15,0,115
+2023,5,9,16,0,206
+2023,5,9,17,0,180
+2023,5,9,18,0,253
+2023,5,9,19,0,320
+2023,5,9,20,0,377
+2023,5,9,21,0,412
+2023,5,9,22,0,431
+2023,5,9,23,0,510
+2023,5,10,0,0,385
+2023,5,10,1,0,350
+2023,5,10,2,0,272
+2023,5,10,3,0,192
+2023,5,10,4,0,117
+2023,5,10,5,0,111
+2023,5,10,6,0,33
+2023,5,10,7,0,0
+2023,5,10,8,0,0
+2023,5,10,9,0,0
+2023,5,10,10,0,0
+2023,5,10,11,0,0
+2023,5,10,12,0,0
+2023,5,10,13,0,0
+2023,5,10,14,0,48
+2023,5,10,15,0,121
+2023,5,10,16,0,218
+2023,5,10,17,0,258
+2023,5,10,18,0,346
+2023,5,10,19,0,421
+2023,5,10,20,0,480
+2023,5,10,21,0,443
+2023,5,10,22,0,539
+2023,5,10,23,0,561
+2023,5,11,0,0,510
+2023,5,11,1,0,434
+2023,5,11,2,0,342
+2023,5,11,3,0,246
+2023,5,11,4,0,219
+2023,5,11,5,0,115
+2023,5,11,6,0,37
+2023,5,11,7,0,0
+2023,5,11,8,0,0
+2023,5,11,9,0,0
+2023,5,11,10,0,0
+2023,5,11,11,0,0
+2023,5,11,12,0,0
+2023,5,11,13,0,0
+2023,5,11,14,0,40
+2023,5,11,15,0,98
+2023,5,11,16,0,175
+2023,5,11,17,0,182
+2023,5,11,18,0,250
+2023,5,11,19,0,313
+2023,5,11,20,0,362
+2023,5,11,21,0,392
+2023,5,11,22,0,351
+2023,5,11,23,0,277
+2023,5,12,0,0,359
+2023,5,12,1,0,301
+2023,5,12,2,0,233
+2023,5,12,3,0,162
+2023,5,12,4,0,98
+2023,5,12,5,0,42
+2023,5,12,6,0,13
+2023,5,12,7,0,0
+2023,5,12,8,0,0
+2023,5,12,9,0,0
+2023,5,12,10,0,0
+2023,5,12,11,0,0
+2023,5,12,12,0,0
+2023,5,12,13,0,12
+2023,5,12,14,0,67
+2023,5,12,15,0,159
+2023,5,12,16,0,268
+2023,5,12,17,0,383
+2023,5,12,18,0,492
+2023,5,12,19,0,586
+2023,5,12,20,0,656
+2023,5,12,21,0,700
+2023,5,12,22,0,710
+2023,5,12,23,0,687
+2023,5,13,0,0,634
+2023,5,13,1,0,553
+2023,5,13,2,0,452
+2023,5,13,3,0,340
+2023,5,13,4,0,118
+2023,5,13,5,0,58
+2023,5,13,6,0,18
+2023,5,13,7,0,0
+2023,5,13,8,0,0
+2023,5,13,9,0,0
+2023,5,13,10,0,0
+2023,5,13,11,0,0
+2023,5,13,12,0,0
+2023,5,13,13,0,7
+2023,5,13,14,0,50
+2023,5,13,15,0,120
+2023,5,13,16,0,272
+2023,5,13,17,0,386
+2023,5,13,18,0,396
+2023,5,13,19,0,484
+2023,5,13,20,0,554
+2023,5,13,21,0,700
+2023,5,13,22,0,710
+2023,5,13,23,0,686
+2023,5,14,0,0,633
+2023,5,14,1,0,552
+2023,5,14,2,0,452
+2023,5,14,3,0,340
+2023,5,14,4,0,227
+2023,5,14,5,0,124
+2023,5,14,6,0,43
+2023,5,14,7,0,0
+2023,5,14,8,0,0
+2023,5,14,9,0,0
+2023,5,14,10,0,0
+2023,5,14,11,0,0
+2023,5,14,12,0,0
+2023,5,14,13,0,5
+2023,5,14,14,0,27
+2023,5,14,15,0,65
+2023,5,14,16,0,119
+2023,5,14,17,0,402
+2023,5,14,18,0,513
+2023,5,14,19,0,607
+2023,5,14,20,0,675
+2023,5,14,21,0,717
+2023,5,14,22,0,724
+2023,5,14,23,0,699
+2023,5,15,0,0,646
+2023,5,15,1,0,421
+2023,5,15,2,0,336
+2023,5,15,3,0,352
+2023,5,15,4,0,235
+2023,5,15,5,0,129
+2023,5,15,6,0,47
+2023,5,15,7,0,0
+2023,5,15,8,0,0
+2023,5,15,9,0,0
+2023,5,15,10,0,0
+2023,5,15,11,0,0
+2023,5,15,12,0,0
+2023,5,15,13,0,18
+2023,5,15,14,0,81
+2023,5,15,15,0,176
+2023,5,15,16,0,287
+2023,5,15,17,0,401
+2023,5,15,18,0,510
+2023,5,15,19,0,599
+2023,5,15,20,0,661
+2023,5,15,21,0,698
+2023,5,15,22,0,467
+2023,5,15,23,0,475
+2023,5,16,0,0,431
+2023,5,16,1,0,366
+2023,5,16,2,0,287
+2023,5,16,3,0,205
+2023,5,16,4,0,68
+2023,5,16,5,0,35
+2023,5,16,6,0,13
+2023,5,16,7,0,0
+2023,5,16,8,0,0
+2023,5,16,9,0,0
+2023,5,16,10,0,0
+2023,5,16,11,0,0
+2023,5,16,12,0,0
+2023,5,16,13,0,16
+2023,5,16,14,0,66
+2023,5,16,15,0,147
+2023,5,16,16,0,286
+2023,5,16,17,0,275
+2023,5,16,18,0,361
+2023,5,16,19,0,437
+2023,5,16,20,0,493
+2023,5,16,21,0,526
+2023,5,16,22,0,543
+2023,5,16,23,0,550
+2023,5,17,0,0,504
+2023,5,17,1,0,348
+2023,5,17,2,0,274
+2023,5,17,3,0,345
+2023,5,17,4,0,234
+2023,5,17,5,0,131
+2023,5,17,6,0,52
+2023,5,17,7,0,0
+2023,5,17,8,0,0
+2023,5,17,9,0,0
+2023,5,17,10,0,0
+2023,5,17,11,0,0
+2023,5,17,12,0,0
+2023,5,17,13,0,10
+2023,5,17,14,0,43
+2023,5,17,15,0,59
+2023,5,17,16,0,124
+2023,5,17,17,0,188
+2023,5,17,18,0,511
+2023,5,17,19,0,604
+2023,5,17,20,0,675
+2023,5,17,21,0,720
+2023,5,17,22,0,727
+2023,5,17,23,0,485
+2023,5,18,0,0,438
+2023,5,18,1,0,373
+2023,5,18,2,0,294
+2023,5,18,3,0,211
+2023,5,18,4,0,115
+2023,5,18,5,0,59
+2023,5,18,6,0,22
+2023,5,18,7,0,0
+2023,5,18,8,0,0
+2023,5,18,9,0,0
+2023,5,18,10,0,0
+2023,5,18,11,0,0
+2023,5,18,12,0,0
+2023,5,18,13,0,23
+2023,5,18,14,0,70
+2023,5,18,15,0,150
+2023,5,18,16,0,281
+2023,5,18,17,0,406
+2023,5,18,18,0,522
+2023,5,18,19,0,613
+2023,5,18,20,0,684
+2023,5,18,21,0,726
+2023,5,18,22,0,736
+2023,5,18,23,0,713
+2023,5,19,0,0,641
+2023,5,19,1,0,558
+2023,5,19,2,0,452
+2023,5,19,3,0,333
+2023,5,19,4,0,249
+2023,5,19,5,0,143
+2023,5,19,6,0,58
+2023,5,19,7,0,0
+2023,5,19,8,0,0
+2023,5,19,9,0,0
+2023,5,19,10,0,0
+2023,5,19,11,0,0
+2023,5,19,12,0,0
+2023,5,19,13,0,20
+2023,5,19,14,0,79
+2023,5,19,15,0,184
+2023,5,19,16,0,293
+2023,5,19,17,0,404
+2023,5,19,18,0,454
+2023,5,19,19,0,546
+2023,5,19,20,0,615
+2023,5,19,21,0,657
+2023,5,19,22,0,719
+2023,5,19,23,0,696
+2023,5,20,0,0,643
+2023,5,20,1,0,565
+2023,5,20,2,0,467
+2023,5,20,3,0,325
+2023,5,20,4,0,212
+2023,5,20,5,0,116
+2023,5,20,6,0,47
+2023,5,20,7,0,0
+2023,5,20,8,0,0
+2023,5,20,9,0,0
+2023,5,20,10,0,0
+2023,5,20,11,0,0
+2023,5,20,12,0,0
+2023,5,20,13,0,6
+2023,5,20,14,0,21
+2023,5,20,15,0,83
+2023,5,20,16,0,145
+2023,5,20,17,0,265
+2023,5,20,18,0,349
+2023,5,20,19,0,424
+2023,5,20,20,0,482
+2023,5,20,21,0,709
+2023,5,20,22,0,559
+2023,5,20,23,0,536
+2023,5,21,0,0,638
+2023,5,21,1,0,559
+2023,5,21,2,0,456
+2023,5,21,3,0,340
+2023,5,21,4,0,246
+2023,5,21,5,0,144
+2023,5,21,6,0,62
+2023,5,21,7,0,13
+2023,5,21,8,0,0
+2023,5,21,9,0,0
+2023,5,21,10,0,0
+2023,5,21,11,0,0
+2023,5,21,12,0,0
+2023,5,21,13,0,29
+2023,5,21,14,0,94
+2023,5,21,15,0,188
+2023,5,21,16,0,297
+2023,5,21,17,0,409
+2023,5,21,18,0,511
+2023,5,21,19,0,602
+2023,5,21,20,0,668
+2023,5,21,21,0,716
+2023,5,21,22,0,725
+2023,5,21,23,0,490
+2023,5,22,0,0,446
+2023,5,22,1,0,556
+2023,5,22,2,0,369
+2023,5,22,3,0,29
+2023,5,22,4,0,18
+2023,5,22,5,0,10
+2023,5,22,6,0,5
+2023,5,22,7,0,1
+2023,5,22,8,0,0
+2023,5,22,9,0,0
+2023,5,22,10,0,0
+2023,5,22,11,0,0
+2023,5,22,12,0,0
+2023,5,22,13,0,2
+2023,5,22,14,0,5
+2023,5,22,15,0,9
+2023,5,22,16,0,11
+2023,5,22,17,0,17
+2023,5,22,18,0,181
+2023,5,22,19,0,229
+2023,5,22,20,0,267
+2023,5,22,21,0,470
+2023,5,22,22,0,478
+2023,5,22,23,0,638
+2023,5,23,0,0,585
+2023,5,23,1,0,507
+2023,5,23,2,0,408
+2023,5,23,3,0,302
+2023,5,23,4,0,105
+2023,5,23,5,0,57
+2023,5,23,6,0,24
+2023,5,23,7,0,5
+2023,5,23,8,0,0
+2023,5,23,9,0,0
+2023,5,23,10,0,0
+2023,5,23,11,0,0
+2023,5,23,12,0,0
+2023,5,23,13,0,34
+2023,5,23,14,0,103
+2023,5,23,15,0,199
+2023,5,23,16,0,313
+2023,5,23,17,0,404
+2023,5,23,18,0,520
+2023,5,23,19,0,618
+2023,5,23,20,0,686
+2023,5,23,21,0,727
+2023,5,23,22,0,750
+2023,5,23,23,0,724
+2023,5,24,0,0,669
+2023,5,24,1,0,589
+2023,5,24,2,0,488
+2023,5,24,3,0,377
+2023,5,24,4,0,262
+2023,5,24,5,0,157
+2023,5,24,6,0,71
+2023,5,24,7,0,18
+2023,5,24,8,0,0
+2023,5,24,9,0,0
+2023,5,24,10,0,0
+2023,5,24,11,0,0
+2023,5,24,12,0,0
+2023,5,24,13,0,11
+2023,5,24,14,0,52
+2023,5,24,15,0,137
+2023,5,24,16,0,139
+2023,5,24,17,0,207
+2023,5,24,18,0,486
+2023,5,24,19,0,564
+2023,5,24,20,0,634
+2023,5,24,21,0,675
+2023,5,24,22,0,572
+2023,5,24,23,0,472
+2023,5,25,0,0,429
+2023,5,25,1,0,367
+2023,5,25,2,0,292
+2023,5,25,3,0,277
+2023,5,25,4,0,186
+2023,5,25,5,0,107
+2023,5,25,6,0,46
+2023,5,25,7,0,10
+2023,5,25,8,0,0
+2023,5,25,9,0,0
+2023,5,25,10,0,0
+2023,5,25,11,0,0
+2023,5,25,12,0,0
+2023,5,25,13,0,36
+2023,5,25,14,0,104
+2023,5,25,15,0,199
+2023,5,25,16,0,310
+2023,5,25,17,0,423
+2023,5,25,18,0,531
+2023,5,25,19,0,624
+2023,5,25,20,0,693
+2023,5,25,21,0,466
+2023,5,25,22,0,596
+2023,5,25,23,0,575
+2023,5,26,0,0,551
+2023,5,26,1,0,481
+2023,5,26,2,0,396
+2023,5,26,3,0,303
+2023,5,26,4,0,63
+2023,5,26,5,0,37
+2023,5,26,6,0,19
+2023,5,26,7,0,6
+2023,5,26,8,0,0
+2023,5,26,9,0,0
+2023,5,26,10,0,0
+2023,5,26,11,0,0
+2023,5,26,12,0,0
+2023,5,26,13,0,18
+2023,5,26,14,0,12
+2023,5,26,15,0,19
+2023,5,26,16,0,6
+2023,5,26,17,0,85
+2023,5,26,18,0,117
+2023,5,26,19,0,148
+2023,5,26,20,0,174
+2023,5,26,21,0,191
+2023,5,26,22,0,377
+2023,5,26,23,0,479
+2023,5,27,0,0,435
+2023,5,27,1,0,372
+2023,5,27,2,0,296
+2023,5,27,3,0,368
+2023,5,27,4,0,248
+2023,5,27,5,0,142
+2023,5,27,6,0,65
+2023,5,27,7,0,16
+2023,5,27,8,0,0
+2023,5,27,9,0,0
+2023,5,27,10,0,0
+2023,5,27,11,0,0
+2023,5,27,12,0,0
+2023,5,27,13,0,43
+2023,5,27,14,0,115
+2023,5,27,15,0,212
+2023,5,27,16,0,325
+2023,5,27,17,0,441
+2023,5,27,18,0,549
+2023,5,27,19,0,641
+2023,5,27,20,0,711
+2023,5,27,21,0,562
+2023,5,27,22,0,571
+2023,5,27,23,0,739
+2023,5,28,0,0,686
+2023,5,28,1,0,605
+2023,5,28,2,0,505
+2023,5,28,3,0,392
+2023,5,28,4,0,199
+2023,5,28,5,0,117
+2023,5,28,6,0,53
+2023,5,28,7,0,13
+2023,5,28,8,0,0
+2023,5,28,9,0,0
+2023,5,28,10,0,0
+2023,5,28,11,0,0
+2023,5,28,12,0,0
+2023,5,28,13,0,11
+2023,5,28,14,0,88
+2023,5,28,15,0,165
+2023,5,28,16,0,61
+2023,5,28,17,0,248
+2023,5,28,18,0,327
+2023,5,28,19,0,396
+2023,5,28,20,0,451
+2023,5,28,21,0,483
+2023,5,28,22,0,369
+2023,5,28,23,0,353
+2023,5,29,0,0,318
+2023,5,29,1,0,267
+2023,5,29,2,0,168
+2023,5,29,3,0,222
+2023,5,29,4,0,147
+2023,5,29,5,0,86
+2023,5,29,6,0,34
+2023,5,29,7,0,11
+2023,5,29,8,0,0
+2023,5,29,9,0,0
+2023,5,29,10,0,0
+2023,5,29,11,0,0
+2023,5,29,12,0,0
+2023,5,29,13,0,15
+2023,5,29,14,0,28
+2023,5,29,15,0,43
+2023,5,29,16,0,53
+2023,5,29,17,0,78
+2023,5,29,18,0,91
+2023,5,29,19,0,116
+2023,5,29,20,0,125
+2023,5,29,21,0,137
+2023,5,29,22,0,140
+2023,5,29,23,0,127
+2023,5,30,0,0,113
+2023,5,30,1,0,93
+2023,5,30,2,0,71
+2023,5,30,3,0,248
+2023,5,30,4,0,167
+2023,5,30,5,0,98
+2023,5,30,6,0,47
+2023,5,30,7,0,15
+2023,5,30,8,0,0
+2023,5,30,9,0,0
+2023,5,30,10,0,0
+2023,5,30,11,0,0
+2023,5,30,12,0,0
+2023,5,30,13,0,46
+2023,5,30,14,0,116
+2023,5,30,15,0,212
+2023,5,30,16,0,322
+2023,5,30,17,0,92
+2023,5,30,18,0,122
+2023,5,30,19,0,150
+2023,5,30,20,0,171
+2023,5,30,21,0,183
+2023,5,30,22,0,142
+2023,5,30,23,0,132
+2023,5,31,0,0,120
+2023,5,31,1,0,149
+2023,5,31,2,0,114
+2023,5,31,3,0,81
+2023,5,31,4,0,164
+2023,5,31,5,0,96
+2023,5,31,6,0,47
+2023,5,31,7,0,16
+2023,5,31,8,0,0
+2023,5,31,9,0,0
+2023,5,31,10,0,0
+2023,5,31,11,0,0
+2023,5,31,12,0,0
+2023,5,31,13,0,8
+2023,5,31,14,0,19
+2023,5,31,15,0,97
+2023,5,31,16,0,160
+2023,5,31,17,0,64
+2023,5,31,18,0,549
+2023,5,31,19,0,642
+2023,5,31,20,0,714
+2023,5,31,21,0,755
+2023,5,31,22,0,592
+2023,5,31,23,0,629
+2023,6,1,0,0,577
+2023,6,1,1,0,501
+2023,6,1,2,0,518
+2023,6,1,3,0,406
+2023,6,1,4,0,293
+2023,6,1,5,0,185
+2023,6,1,6,0,95
+2023,6,1,7,0,32
+2023,6,1,8,0,0
+2023,6,1,9,0,0
+2023,6,1,10,0,0
+2023,6,1,11,0,0
+2023,6,1,12,0,0
+2023,6,1,13,0,31
+2023,6,1,14,0,74
+2023,6,1,15,0,198
+2023,6,1,16,0,283
+2023,6,1,17,0,383
+2023,6,1,18,0,400
+2023,6,1,19,0,481
+2023,6,1,20,0,540
+2023,6,1,21,0,451
+2023,6,1,22,0,459
+2023,6,1,23,0,254
+2023,6,2,0,0,290
+2023,6,2,1,0,243
+2023,6,2,2,0,190
+2023,6,2,3,0,279
+2023,6,2,4,0,190
+2023,6,2,5,0,114
+2023,6,2,6,0,57
+2023,6,2,7,0,20
+2023,6,2,8,0,0
+2023,6,2,9,0,0
+2023,6,2,10,0,0
+2023,6,2,11,0,0
+2023,6,2,12,0,3
+2023,6,2,13,0,3
+2023,6,2,14,0,6
+2023,6,2,15,0,82
+2023,6,2,16,0,133
+2023,6,2,17,0,153
+2023,6,2,18,0,204
+2023,6,2,19,0,249
+2023,6,2,20,0,285
+2023,6,2,21,0,305
+2023,6,2,22,0,408
+2023,6,2,23,0,392
+2023,6,3,0,0,354
+2023,6,3,1,0,300
+2023,6,3,2,0,236
+2023,6,3,3,0,277
+2023,6,3,4,0,189
+2023,6,3,5,0,114
+2023,6,3,6,0,57
+2023,6,3,7,0,25
+2023,6,3,8,0,0
+2023,6,3,9,0,0
+2023,6,3,10,0,0
+2023,6,3,11,0,0
+2023,6,3,12,0,5
+2023,6,3,13,0,29
+2023,6,3,14,0,5
+2023,6,3,15,0,79
+2023,6,3,16,0,187
+2023,6,3,17,0,267
+2023,6,3,18,0,324
+2023,6,3,19,0,394
+2023,6,3,20,0,449
+2023,6,3,21,0,428
+2023,6,3,22,0,626
+2023,6,3,23,0,605
+2023,6,4,0,0,467
+2023,6,4,1,0,403
+2023,6,4,2,0,325
+2023,6,4,3,0,306
+2023,6,4,4,0,215
+2023,6,4,5,0,132
+2023,6,4,6,0,67
+2023,6,4,7,0,24
+2023,6,4,8,0,0
+2023,6,4,9,0,0
+2023,6,4,10,0,0
+2023,6,4,11,0,0
+2023,6,4,12,0,8
+2023,6,4,13,0,46
+2023,6,4,14,0,103
+2023,6,4,15,0,182
+2023,6,4,16,0,277
+2023,6,4,17,0,308
+2023,6,4,18,0,396
+2023,6,4,19,0,474
+2023,6,4,20,0,535
+2023,6,4,21,0,572
+2023,6,4,22,0,522
+2023,6,4,23,0,504
+2023,6,5,0,0,459
+2023,6,5,1,0,391
+2023,6,5,2,0,506
+2023,6,5,3,0,397
+2023,6,5,4,0,285
+2023,6,5,5,0,180
+2023,6,5,6,0,93
+2023,6,5,7,0,34
+2023,6,5,8,0,0
+2023,6,5,9,0,0
+2023,6,5,10,0,0
+2023,6,5,11,0,0
+2023,6,5,12,0,4
+2023,6,5,13,0,20
+2023,6,5,14,0,124
+2023,6,5,15,0,219
+2023,6,5,16,0,328
+2023,6,5,17,0,441
+2023,6,5,18,0,545
+2023,6,5,19,0,571
+2023,6,5,20,0,641
+2023,6,5,21,0,680
+2023,6,5,22,0,756
+2023,6,5,23,0,733
+2023,6,6,0,0,683
+2023,6,6,1,0,605
+2023,6,6,2,0,509
+2023,6,6,3,0,401
+2023,6,6,4,0,290
+2023,6,6,5,0,186
+2023,6,6,6,0,99
+2023,6,6,7,0,37
+2023,6,6,8,0,0
+2023,6,6,9,0,0
+2023,6,6,10,0,0
+2023,6,6,11,0,0
+2023,6,6,12,0,15
+2023,6,6,13,0,56
+2023,6,6,14,0,128
+2023,6,6,15,0,223
+2023,6,6,16,0,331
+2023,6,6,17,0,443
+2023,6,6,18,0,546
+2023,6,6,19,0,636
+2023,6,6,20,0,703
+2023,6,6,21,0,743
+2023,6,6,22,0,754
+2023,6,6,23,0,731
+2023,6,7,0,0,679
+2023,6,7,1,0,603
+2023,6,7,2,0,507
+2023,6,7,3,0,400
+2023,6,7,4,0,290
+2023,6,7,5,0,186
+2023,6,7,6,0,98
+2023,6,7,7,0,37
+2023,6,7,8,0,0
+2023,6,7,9,0,0
+2023,6,7,10,0,0
+2023,6,7,11,0,0
+2023,6,7,12,0,15
+2023,6,7,13,0,55
+2023,6,7,14,0,112
+2023,6,7,15,0,208
+2023,6,7,16,0,328
+2023,6,7,17,0,438
+2023,6,7,18,0,541
+2023,6,7,19,0,630
+2023,6,7,20,0,698
+2023,6,7,21,0,741
+2023,6,7,22,0,753
+2023,6,7,23,0,734
+2023,6,8,0,0,683
+2023,6,8,1,0,609
+2023,6,8,2,0,513
+2023,6,8,3,0,286
+2023,6,8,4,0,198
+2023,6,8,5,0,122
+2023,6,8,6,0,63
+2023,6,8,7,0,39
+2023,6,8,8,0,0
+2023,6,8,9,0,0
+2023,6,8,10,0,0
+2023,6,8,11,0,0
+2023,6,8,12,0,12
+2023,6,8,13,0,53
+2023,6,8,14,0,118
+2023,6,8,15,0,209
+2023,6,8,16,0,281
+2023,6,8,17,0,259
+2023,6,8,18,0,336
+2023,6,8,19,0,404
+2023,6,8,20,0,457
+2023,6,8,21,0,214
+2023,6,8,22,0,299
+2023,6,8,23,0,288
+2023,6,9,0,0,289
+2023,6,9,1,0,245
+2023,6,9,2,0,193
+2023,6,9,3,0,199
+2023,6,9,4,0,134
+2023,6,9,5,0,81
+2023,6,9,6,0,43
+2023,6,9,7,0,18
+2023,6,9,8,0,0
+2023,6,9,9,0,0
+2023,6,9,10,0,0
+2023,6,9,11,0,0
+2023,6,9,12,0,5
+2023,6,9,13,0,7
+2023,6,9,14,0,14
+2023,6,9,15,0,25
+2023,6,9,16,0,40
+2023,6,9,17,0,286
+2023,6,9,18,0,369
+2023,6,9,19,0,444
+2023,6,9,20,0,502
+2023,6,9,21,0,538
+2023,6,9,22,0,660
+2023,6,9,23,0,590
+2023,6,10,0,0,542
+2023,6,10,1,0,474
+2023,6,10,2,0,389
+2023,6,10,3,0,260
+2023,6,10,4,0,178
+2023,6,10,5,0,108
+2023,6,10,6,0,106
+2023,6,10,7,0,43
+2023,6,10,8,0,0
+2023,6,10,9,0,0
+2023,6,10,10,0,0
+2023,6,10,11,0,0
+2023,6,10,12,0,5
+2023,6,10,13,0,20
+2023,6,10,14,0,47
+2023,6,10,15,0,229
+2023,6,10,16,0,337
+2023,6,10,17,0,447
+2023,6,10,18,0,552
+2023,6,10,19,0,642
+2023,6,10,20,0,563
+2023,6,10,21,0,602
+2023,6,10,22,0,596
+2023,6,10,23,0,577
+2023,6,11,0,0,509
+2023,6,11,1,0,445
+2023,6,11,2,0,366
+2023,6,11,3,0,166
+2023,6,11,4,0,111
+2023,6,11,5,0,68
+2023,6,11,6,0,37
+2023,6,11,7,0,16
+2023,6,11,8,0,0
+2023,6,11,9,0,0
+2023,6,11,10,0,0
+2023,6,11,11,0,0
+2023,6,11,12,0,19
+2023,6,11,13,0,62
+2023,6,11,14,0,137
+2023,6,11,15,0,235
+2023,6,11,16,0,347
+2023,6,11,17,0,166
+2023,6,11,18,0,222
+2023,6,11,19,0,276
+2023,6,11,20,0,317
+2023,6,11,21,0,343
+2023,6,11,22,0,561
+2023,6,11,23,0,448
+2023,6,12,0,0,407
+2023,6,12,1,0,37
+2023,6,12,2,0,28
+2023,6,12,3,0,367
+2023,6,12,4,0,257
+2023,6,12,5,0,159
+2023,6,12,6,0,84
+2023,6,12,7,0,33
+2023,6,12,8,0,0
+2023,6,12,9,0,0
+2023,6,12,10,0,0
+2023,6,12,11,0,0
+2023,6,12,12,0,18
+2023,6,12,13,0,62
+2023,6,12,14,0,102
+2023,6,12,15,0,183
+2023,6,12,16,0,282
+2023,6,12,17,0,392
+2023,6,12,18,0,380
+2023,6,12,19,0,458
+2023,6,12,20,0,517
+2023,6,12,21,0,554
+2023,6,12,22,0,676
+2023,6,12,23,0,479
+2023,6,13,0,0,439
+2023,6,13,1,0,379
+2023,6,13,2,0,308
+2023,6,13,3,0,425
+2023,6,13,4,0,312
+2023,6,13,5,0,204
+2023,6,13,6,0,112
+2023,6,13,7,0,47
+2023,6,13,8,0,0
+2023,6,13,9,0,0
+2023,6,13,10,0,0
+2023,6,13,11,0,0
+2023,6,13,12,0,12
+2023,6,13,13,0,43
+2023,6,13,14,0,76
+2023,6,13,15,0,136
+2023,6,13,16,0,242
+2023,6,13,17,0,335
+2023,6,13,18,0,564
+2023,6,13,19,0,655
+2023,6,13,20,0,725
+2023,6,13,21,0,769
+2023,6,13,22,0,781
+2023,6,13,23,0,760
+2023,6,14,0,0,707
+2023,6,14,1,0,631
+2023,6,14,2,0,533
+2023,6,14,3,0,107
+2023,6,14,4,0,71
+2023,6,14,5,0,42
+2023,6,14,6,0,22
+2023,6,14,7,0,9
+2023,6,14,8,0,2
+2023,6,14,9,0,0
+2023,6,14,10,0,0
+2023,6,14,11,0,0
+2023,6,14,12,0,13
+2023,6,14,13,0,48
+2023,6,14,14,0,32
+2023,6,14,15,0,111
+2023,6,14,16,0,176
+2023,6,14,17,0,192
+2023,6,14,18,0,252
+2023,6,14,19,0,307
+2023,6,14,20,0,351
+2023,6,14,21,0,378
+2023,6,14,22,0,776
+2023,6,14,23,0,756
+2023,6,15,0,0,702
+2023,6,15,1,0,626
+2023,6,15,2,0,529
+2023,6,15,3,0,420
+2023,6,15,4,0,308
+2023,6,15,5,0,202
+2023,6,15,6,0,85
+2023,6,15,7,0,34
+2023,6,15,8,0,6
+2023,6,15,9,0,0
+2023,6,15,10,0,0
+2023,6,15,11,0,0
+2023,6,15,12,0,20
+2023,6,15,13,0,64
+2023,6,15,14,0,138
+2023,6,15,15,0,235
+2023,6,15,16,0,344
+2023,6,15,17,0,457
+2023,6,15,18,0,563
+2023,6,15,19,0,654
+2023,6,15,20,0,723
+2023,6,15,21,0,742
+2023,6,15,22,0,751
+2023,6,15,23,0,750
+2023,6,16,0,0,699
+2023,6,16,1,0,621
+2023,6,16,2,0,526
+2023,6,16,3,0,44
+2023,6,16,4,0,30
+2023,6,16,5,0,18
+2023,6,16,6,0,10
+2023,6,16,7,0,5
+2023,6,16,8,0,1
+2023,6,16,9,0,0
+2023,6,16,10,0,0
+2023,6,16,11,0,0
+2023,6,16,12,0,9
+2023,6,16,13,0,51
+2023,6,16,14,0,114
+2023,6,16,15,0,232
+2023,6,16,16,0,341
+2023,6,16,17,0,387
+2023,6,16,18,0,494
+2023,6,16,19,0,587
+2023,6,16,20,0,655
+2023,6,16,21,0,697
+2023,6,16,22,0,538
+2023,6,16,23,0,482
+2023,6,17,0,0,443
+2023,6,17,1,0,383
+2023,6,17,2,0,311
+2023,6,17,3,0,211
+2023,6,17,4,0,143
+2023,6,17,5,0,86
+2023,6,17,6,0,44
+2023,6,17,7,0,17
+2023,6,17,8,0,3
+2023,6,17,9,0,0
+2023,6,17,10,0,0
+2023,6,17,11,0,0
+2023,6,17,12,0,8
+2023,6,17,13,0,30
+2023,6,17,14,0,71
+2023,6,17,15,0,59
+2023,6,17,16,0,139
+2023,6,17,17,0,200
+2023,6,17,18,0,533
+2023,6,17,19,0,642
+2023,6,17,20,0,708
+2023,6,17,21,0,747
+2023,6,17,22,0,748
+2023,6,17,23,0,134
+2023,6,18,0,0,87
+2023,6,18,1,0,72
+2023,6,18,2,0,55
+2023,6,18,3,0,65
+2023,6,18,4,0,44
+2023,6,18,5,0,28
+2023,6,18,6,0,17
+2023,6,18,7,0,19
+2023,6,18,8,0,4
+2023,6,18,9,0,0
+2023,6,18,10,0,0
+2023,6,18,11,0,0
+2023,6,18,12,0,7
+2023,6,18,13,0,27
+2023,6,18,14,0,44
+2023,6,18,15,0,81
+2023,6,18,16,0,131
+2023,6,18,17,0,311
+2023,6,18,18,0,398
+2023,6,18,19,0,476
+2023,6,18,20,0,536
+2023,6,18,21,0,237
+2023,6,18,22,0,310
+2023,6,18,23,0,300
+2023,6,19,0,0,348
+2023,6,19,1,0,364
+2023,6,19,2,0,295
+2023,6,19,3,0,333
+2023,6,19,4,0,236
+2023,6,19,5,0,150
+2023,6,19,6,0,80
+2023,6,19,7,0,32
+2023,6,19,8,0,6
+2023,6,19,9,0,0
+2023,6,19,10,0,0
+2023,6,19,11,0,0
+2023,6,19,12,0,18
+2023,6,19,13,0,58
+2023,6,19,14,0,128
+2023,6,19,15,0,174
+2023,6,19,16,0,229
+2023,6,19,17,0,317
+2023,6,19,18,0,342
+2023,6,19,19,0,413
+2023,6,19,20,0,469
+2023,6,19,21,0,501
+2023,6,19,22,0,418
+2023,6,19,23,0,239
+2023,6,20,0,0,215
+2023,6,20,1,0,181
+2023,6,20,2,0,142
+2023,6,20,3,0,169
+2023,6,20,4,0,114
+2023,6,20,5,0,70
+2023,6,20,6,0,27
+2023,6,20,7,0,14
+2023,6,20,8,0,3
+2023,6,20,9,0,0
+2023,6,20,10,0,0
+2023,6,20,11,0,0
+2023,6,20,12,0,4
+2023,6,20,13,0,14
+2023,6,20,14,0,72
+2023,6,20,15,0,129
+2023,6,20,16,0,159
+2023,6,20,17,0,228
+2023,6,20,18,0,342
+2023,6,20,19,0,413
+2023,6,20,20,0,470
+2023,6,20,21,0,498
+2023,6,20,22,0,507
+2023,6,20,23,0,511
+2023,6,21,0,0,470
+2023,6,21,1,0,310
+2023,6,21,2,0,250
+2023,6,21,3,0,306
+2023,6,21,4,0,217
+2023,6,21,5,0,138
+2023,6,21,6,0,74
+2023,6,21,7,0,32
+2023,6,21,8,0,7
+2023,6,21,9,0,0
+2023,6,21,10,0,0
+2023,6,21,11,0,0
+2023,6,21,12,0,19
+2023,6,21,13,0,18
+2023,6,21,14,0,23
+2023,6,21,15,0,42
+2023,6,21,16,0,161
+2023,6,21,17,0,445
+2023,6,21,18,0,549
+2023,6,21,19,0,638
+2023,6,21,20,0,707
+2023,6,21,21,0,750
+2023,6,21,22,0,760
+2023,6,21,23,0,739
+2023,6,22,0,0,691
+2023,6,22,1,0,614
+2023,6,22,2,0,518
+2023,6,22,3,0,119
+2023,6,22,4,0,80
+2023,6,22,5,0,49
+2023,6,22,6,0,102
+2023,6,22,7,0,45
+2023,6,22,8,0,10
+2023,6,22,9,0,0
+2023,6,22,10,0,0
+2023,6,22,11,0,0
+2023,6,22,12,0,1
+2023,6,22,13,0,3
+2023,6,22,14,0,5
+2023,6,22,15,0,32
+2023,6,22,16,0,175
+2023,6,22,17,0,249
+2023,6,22,18,0,444
+2023,6,22,19,0,531
+2023,6,22,20,0,256
+2023,6,22,21,0,279
+2023,6,22,22,0,140
+2023,6,22,23,0,534
+2023,6,23,0,0,569
+2023,6,23,1,0,503
+2023,6,23,2,0,422
+2023,6,23,3,0,84
+2023,6,23,4,0,56
+2023,6,23,5,0,34
+2023,6,23,6,0,18
+2023,6,23,7,0,8
+2023,6,23,8,0,2
+2023,6,23,9,0,0
+2023,6,23,10,0,0
+2023,6,23,11,0,0
+2023,6,23,12,0,4
+2023,6,23,13,0,14
+2023,6,23,14,0,101
+2023,6,23,15,0,176
+2023,6,23,16,0,265
+2023,6,23,17,0,355
+2023,6,23,18,0,453
+2023,6,23,19,0,540
+2023,6,23,20,0,608
+2023,6,23,21,0,742
+2023,6,23,22,0,513
+2023,6,23,23,0,497
+2023,6,24,0,0,456
+2023,6,24,1,0,396
+2023,6,24,2,0,323
+2023,6,24,3,0,194
+2023,6,24,4,0,132
+2023,6,24,5,0,79
+2023,6,24,6,0,41
+2023,6,24,7,0,16
+2023,6,24,8,0,4
+2023,6,24,9,0,0
+2023,6,24,10,0,0
+2023,6,24,11,0,0
+2023,6,24,12,0,9
+2023,6,24,13,0,33
+2023,6,24,14,0,129
+2023,6,24,15,0,221
+2023,6,24,16,0,326
+2023,6,24,17,0,435
+2023,6,24,18,0,537
+2023,6,24,19,0,627
+2023,6,24,20,0,694
+2023,6,24,21,0,735
+2023,6,24,22,0,553
+2023,6,24,23,0,537
+2023,6,25,0,0,671
+2023,6,25,1,0,604
+2023,6,25,2,0,511
+2023,6,25,3,0,405
+2023,6,25,4,0,295
+2023,6,25,5,0,192
+2023,6,25,6,0,106
+2023,6,25,7,0,16
+2023,6,25,8,0,3
+2023,6,25,9,0,0
+2023,6,25,10,0,0
+2023,6,25,11,0,0
+2023,6,25,12,0,19
+2023,6,25,13,0,60
+2023,6,25,14,0,132
+2023,6,25,15,0,227
+2023,6,25,16,0,335
+2023,6,25,17,0,413
+2023,6,25,18,0,332
+2023,6,25,19,0,403
+2023,6,25,20,0,457
+2023,6,25,21,0,444
+2023,6,25,22,0,455
+2023,6,25,23,0,330
+2023,6,26,0,0,635
+2023,6,26,1,0,237
+2023,6,26,2,0,191
+2023,6,26,3,0,345
+2023,6,26,4,0,244
+2023,6,26,5,0,154
+2023,6,26,6,0,83
+2023,6,26,7,0,34
+2023,6,26,8,0,6
+2023,6,26,9,0,0
+2023,6,26,10,0,0
+2023,6,26,11,0,0
+2023,6,26,12,0,5
+2023,6,26,13,0,16
+2023,6,26,14,0,132
+2023,6,26,15,0,226
+2023,6,26,16,0,332
+2023,6,26,17,0,295
+2023,6,26,18,0,379
+2023,6,26,19,0,455
+2023,6,26,20,0,514
+2023,6,26,21,0,552
+2023,6,26,22,0,755
+2023,6,26,23,0,496
+2023,6,27,0,0,456
+2023,6,27,1,0,396
+2023,6,27,2,0,323
+2023,6,27,3,0,361
+2023,6,27,4,0,259
+2023,6,27,5,0,167
+2023,6,27,6,0,100
+2023,6,27,7,0,43
+2023,6,27,8,0,9
+2023,6,27,9,0,0
+2023,6,27,10,0,0
+2023,6,27,11,0,0
+2023,6,27,12,0,8
+2023,6,27,13,0,3
+2023,6,27,14,0,4
+2023,6,27,15,0,5
+2023,6,27,16,0,177
+2023,6,27,17,0,441
+2023,6,27,18,0,546
+2023,6,27,19,0,639
+2023,6,27,20,0,708
+2023,6,27,21,0,753
+2023,6,27,22,0,766
+2023,6,27,23,0,750
+2023,6,28,0,0,533
+2023,6,28,1,0,466
+2023,6,28,2,0,383
+2023,6,28,3,0,55
+2023,6,28,4,0,37
+2023,6,28,5,0,22
+2023,6,28,6,0,12
+2023,6,28,7,0,6
+2023,6,28,8,0,1
+2023,6,28,9,0,0
+2023,6,28,10,0,0
+2023,6,28,11,0,0
+2023,6,28,12,0,14
+2023,6,28,13,0,54
+2023,6,28,14,0,27
+2023,6,28,15,0,45
+2023,6,28,16,0,174
+2023,6,28,17,0,87
+2023,6,28,18,0,118
+2023,6,28,19,0,148
+2023,6,28,20,0,174
+2023,6,28,21,0,191
+2023,6,28,22,0,240
+2023,6,28,23,0,370
+2023,6,29,0,0,337
+2023,6,29,1,0,288
+2023,6,29,2,0,229
+2023,6,29,3,0,311
+2023,6,29,4,0,221
+2023,6,29,5,0,141
+2023,6,29,6,0,76
+2023,6,29,7,0,32
+2023,6,29,8,0,6
+2023,6,29,9,0,0
+2023,6,29,10,0,0
+2023,6,29,11,0,0
+2023,6,29,12,0,1
+2023,6,29,13,0,3
+2023,6,29,14,0,5
+2023,6,29,15,0,8
+2023,6,29,16,0,90
+2023,6,29,17,0,132
+2023,6,29,18,0,197
+2023,6,29,19,0,434
+2023,6,29,20,0,493
+2023,6,29,21,0,530
+2023,6,29,22,0,419
+2023,6,29,23,0,406
+2023,6,30,0,0,205
+2023,6,30,1,0,177
+2023,6,30,2,0,142
+2023,6,30,3,0,343
+2023,6,30,4,0,242
+2023,6,30,5,0,153
+2023,6,30,6,0,82
+2023,6,30,7,0,49
+2023,6,30,8,0,13
+2023,6,30,9,0,0
+2023,6,30,10,0,0
+2023,6,30,11,0,0
+2023,6,30,12,0,17
+2023,6,30,13,0,59
+2023,6,30,14,0,131
+2023,6,30,15,0,225
+2023,6,30,16,0,330
+2023,6,30,17,0,141
+2023,6,30,18,0,186
+2023,6,30,19,0,228
+2023,6,30,20,0,261
+2023,6,30,21,0,554
+2023,6,30,22,0,565
+2023,6,30,23,0,589
+2023,7,1,0,0,544
+2023,7,1,1,0,475
+2023,7,1,2,0,332
+2023,7,1,3,0,291
+2023,7,1,4,0,205
+2023,7,1,5,0,128
+2023,7,1,6,0,69
+2023,7,1,7,0,29
+2023,7,1,8,0,5
+2023,7,1,9,0,0
+2023,7,1,10,0,0
+2023,7,1,11,0,0
+2023,7,1,12,0,15
+2023,7,1,13,0,54
+2023,7,1,14,0,122
+2023,7,1,15,0,213
+2023,7,1,16,0,322
+2023,7,1,17,0,434
+2023,7,1,18,0,543
+2023,7,1,19,0,634
+2023,7,1,20,0,705
+2023,7,1,21,0,746
+2023,7,1,22,0,760
+2023,7,1,23,0,742
+2023,7,2,0,0,650
+2023,7,2,1,0,579
+2023,7,2,2,0,486
+2023,7,2,3,0,417
+2023,7,2,4,0,305
+2023,7,2,5,0,200
+2023,7,2,6,0,39
+2023,7,2,7,0,15
+2023,7,2,8,0,3
+2023,7,2,9,0,0
+2023,7,2,10,0,0
+2023,7,2,11,0,0
+2023,7,2,12,0,4
+2023,7,2,13,0,15
+2023,7,2,14,0,49
+2023,7,2,15,0,93
+2023,7,2,16,0,152
+2023,7,2,17,0,432
+2023,7,2,18,0,537
+2023,7,2,19,0,628
+2023,7,2,20,0,697
+2023,7,2,21,0,741
+2023,7,2,22,0,753
+2023,7,2,23,0,736
+2023,7,3,0,0,688
+2023,7,3,1,0,616
+2023,7,3,2,0,523
+2023,7,3,3,0,393
+2023,7,3,4,0,287
+2023,7,3,5,0,186
+2023,7,3,6,0,102
+2023,7,3,7,0,43
+2023,7,3,8,0,0
+2023,7,3,9,0,0
+2023,7,3,10,0,0
+2023,7,3,11,0,0
+2023,7,3,12,0,10
+2023,7,3,13,0,47
+2023,7,3,14,0,83
+2023,7,3,15,0,103
+2023,7,3,16,0,246
+2023,7,3,17,0,300
+2023,7,3,18,0,384
+2023,7,3,19,0,458
+2023,7,3,20,0,517
+2023,7,3,21,0,553
+2023,7,3,22,0,585
+2023,7,3,23,0,293
+2023,7,4,0,0,265
+2023,7,4,1,0,226
+2023,7,4,2,0,178
+2023,7,4,3,0,180
+2023,7,4,4,0,122
+2023,7,4,5,0,74
+2023,7,4,6,0,44
+2023,7,4,7,0,19
+2023,7,4,8,0,0
+2023,7,4,9,0,0
+2023,7,4,10,0,0
+2023,7,4,11,0,0
+2023,7,4,12,0,6
+2023,7,4,13,0,30
+2023,7,4,14,0,75
+2023,7,4,15,0,131
+2023,7,4,16,0,200
+2023,7,4,17,0,285
+2023,7,4,18,0,378
+2023,7,4,19,0,456
+2023,7,4,20,0,710
+2023,7,4,21,0,751
+2023,7,4,22,0,764
+2023,7,4,23,0,746
+2023,7,5,0,0,695
+2023,7,5,1,0,620
+2023,7,5,2,0,526
+2023,7,5,3,0,418
+2023,7,5,4,0,307
+2023,7,5,5,0,90
+2023,7,5,6,0,45
+2023,7,5,7,0,17
+2023,7,5,8,0,0
+2023,7,5,9,0,0
+2023,7,5,10,0,0
+2023,7,5,11,0,0
+2023,7,5,12,0,10
+2023,7,5,13,0,38
+2023,7,5,14,0,93
+2023,7,5,15,0,200
+2023,7,5,16,0,315
+2023,7,5,17,0,427
+2023,7,5,18,0,533
+2023,7,5,19,0,624
+2023,7,5,20,0,692
+2023,7,5,21,0,733
+2023,7,5,22,0,746
+2023,7,5,23,0,679
+2023,7,6,0,0,635
+2023,7,6,1,0,571
+2023,7,6,2,0,486
+2023,7,6,3,0,188
+2023,7,6,4,0,127
+2023,7,6,5,0,75
+2023,7,6,6,0,37
+2023,7,6,7,0,14
+2023,7,6,8,0,0
+2023,7,6,9,0,0
+2023,7,6,10,0,0
+2023,7,6,11,0,0
+2023,7,6,12,0,6
+2023,7,6,13,0,36
+2023,7,6,14,0,87
+2023,7,6,15,0,188
+2023,7,6,16,0,171
+2023,7,6,17,0,246
+2023,7,6,18,0,166
+2023,7,6,19,0,205
+2023,7,6,20,0,235
+2023,7,6,21,0,254
+2023,7,6,22,0,175
+2023,7,6,23,0,207
+2023,7,7,0,0,222
+2023,7,7,1,0,187
+2023,7,7,2,0,146
+2023,7,7,3,0,99
+2023,7,7,4,0,66
+2023,7,7,5,0,41
+2023,7,7,6,0,23
+2023,7,7,7,0,19
+2023,7,7,8,0,0
+2023,7,7,9,0,0
+2023,7,7,10,0,0
+2023,7,7,11,0,0
+2023,7,7,12,0,5
+2023,7,7,13,0,29
+2023,7,7,14,0,70
+2023,7,7,15,0,95
+2023,7,7,16,0,154
+2023,7,7,17,0,224
+2023,7,7,18,0,170
+2023,7,7,19,0,209
+2023,7,7,20,0,240
+2023,7,7,21,0,411
+2023,7,7,22,0,396
+2023,7,7,23,0,383
+2023,7,8,0,0,349
+2023,7,8,1,0,299
+2023,7,8,2,0,239
+2023,7,8,3,0,37
+2023,7,8,4,0,25
+2023,7,8,5,0,15
+2023,7,8,6,0,8
+2023,7,8,7,0,4
+2023,7,8,8,0,0
+2023,7,8,9,0,0
+2023,7,8,10,0,0
+2023,7,8,11,0,0
+2023,7,8,12,0,0
+2023,7,8,13,0,14
+2023,7,8,14,0,30
+2023,7,8,15,0,8
+2023,7,8,16,0,181
+2023,7,8,17,0,192
+2023,7,8,18,0,256
+2023,7,8,19,0,314
+2023,7,8,20,0,363
+2023,7,8,21,0,393
+2023,7,8,22,0,756
+2023,7,8,23,0,742
+2023,7,9,0,0,694
+2023,7,9,1,0,620
+2023,7,9,2,0,525
+2023,7,9,3,0,417
+2023,7,9,4,0,305
+2023,7,9,5,0,197
+2023,7,9,6,0,106
+2023,7,9,7,0,40
+2023,7,9,8,0,0
+2023,7,9,9,0,0
+2023,7,9,10,0,0
+2023,7,9,11,0,0
+2023,7,9,12,0,0
+2023,7,9,13,0,33
+2023,7,9,14,0,87
+2023,7,9,15,0,164
+2023,7,9,16,0,221
+2023,7,9,17,0,308
+2023,7,9,18,0,518
+2023,7,9,19,0,606
+2023,7,9,20,0,675
+2023,7,9,21,0,679
+2023,7,9,22,0,673
+2023,7,9,23,0,718
+2023,7,10,0,0,672
+2023,7,10,1,0,556
+2023,7,10,2,0,473
+2023,7,10,3,0,375
+2023,7,10,4,0,261
+2023,7,10,5,0,160
+2023,7,10,6,0,81
+2023,7,10,7,0,29
+2023,7,10,8,0,0
+2023,7,10,9,0,0
+2023,7,10,10,0,0
+2023,7,10,11,0,0
+2023,7,10,12,0,0
+2023,7,10,13,0,45
+2023,7,10,14,0,114
+2023,7,10,15,0,120
+2023,7,10,16,0,196
+2023,7,10,17,0,419
+2023,7,10,18,0,524
+2023,7,10,19,0,613
+2023,7,10,20,0,682
+2023,7,10,21,0,724
+2023,7,10,22,0,738
+2023,7,10,23,0,720
+2023,7,11,0,0,673
+2023,7,11,1,0,600
+2023,7,11,2,0,506
+2023,7,11,3,0,400
+2023,7,11,4,0,245
+2023,7,11,5,0,155
+2023,7,11,6,0,82
+2023,7,11,7,0,30
+2023,7,11,8,0,0
+2023,7,11,9,0,0
+2023,7,11,10,0,0
+2023,7,11,11,0,0
+2023,7,11,12,0,0
+2023,7,11,13,0,14
+2023,7,11,14,0,30
+2023,7,11,15,0,86
+2023,7,11,16,0,174
+2023,7,11,17,0,253
+2023,7,11,18,0,515
+2023,7,11,19,0,206
+2023,7,11,20,0,238
+2023,7,11,21,0,258
+2023,7,11,22,0,253
+2023,7,11,23,0,245
+2023,7,12,0,0,467
+2023,7,12,1,0,406
+2023,7,12,2,0,331
+2023,7,12,3,0,73
+2023,7,12,4,0,48
+2023,7,12,5,0,28
+2023,7,12,6,0,14
+2023,7,12,7,0,6
+2023,7,12,8,0,0
+2023,7,12,9,0,0
+2023,7,12,10,0,0
+2023,7,12,11,0,0
+2023,7,12,12,0,0
+2023,7,12,13,0,26
+2023,7,12,14,0,9
+2023,7,12,15,0,23
+2023,7,12,16,0,38
+2023,7,12,17,0,142
+2023,7,12,18,0,192
+2023,7,12,19,0,237
+2023,7,12,20,0,275
+2023,7,12,21,0,492
+2023,7,12,22,0,608
+2023,7,12,23,0,591
+2023,7,13,0,0,548
+2023,7,13,1,0,478
+2023,7,13,2,0,392
+2023,7,13,3,0,300
+2023,7,13,4,0,287
+2023,7,13,5,0,180
+2023,7,13,6,0,92
+2023,7,13,7,0,32
+2023,7,13,8,0,0
+2023,7,13,9,0,0
+2023,7,13,10,0,0
+2023,7,13,11,0,0
+2023,7,13,12,0,0
+2023,7,13,13,0,13
+2023,7,13,14,0,56
+2023,7,13,15,0,199
+2023,7,13,16,0,307
+2023,7,13,17,0,420
+2023,7,13,18,0,525
+2023,7,13,19,0,616
+2023,7,13,20,0,687
+2023,7,13,21,0,731
+2023,7,13,22,0,543
+2023,7,13,23,0,528
+2023,7,14,0,0,672
+2023,7,14,1,0,596
+2023,7,14,2,0,502
+2023,7,14,3,0,394
+2023,7,14,4,0,282
+2023,7,14,5,0,177
+2023,7,14,6,0,89
+2023,7,14,7,0,23
+2023,7,14,8,0,0
+2023,7,14,9,0,0
+2023,7,14,10,0,0
+2023,7,14,11,0,0
+2023,7,14,12,0,0
+2023,7,14,13,0,3
+2023,7,14,14,0,8
+2023,7,14,15,0,15
+2023,7,14,16,0,16
+2023,7,14,17,0,24
+2023,7,14,18,0,403
+2023,7,14,19,0,481
+2023,7,14,20,0,540
+2023,7,14,21,0,499
+2023,7,14,22,0,525
+2023,7,14,23,0,511
+2023,7,15,0,0,472
+2023,7,15,1,0,411
+2023,7,15,2,0,335
+2023,7,15,3,0,86
+2023,7,15,4,0,57
+2023,7,15,5,0,35
+2023,7,15,6,0,19
+2023,7,15,7,0,8
+2023,7,15,8,0,0
+2023,7,15,9,0,0
+2023,7,15,10,0,0
+2023,7,15,11,0,0
+2023,7,15,12,0,0
+2023,7,15,13,0,18
+2023,7,15,14,0,15
+2023,7,15,15,0,4
+2023,7,15,16,0,5
+2023,7,15,17,0,240
+2023,7,15,18,0,319
+2023,7,15,19,0,391
+2023,7,15,20,0,449
+2023,7,15,21,0,484
+2023,7,15,22,0,333
+2023,7,15,23,0,249
+2023,7,16,0,0,224
+2023,7,16,1,0,189
+2023,7,16,2,0,147
+2023,7,16,3,0,97
+2023,7,16,4,0,63
+2023,7,16,5,0,38
+2023,7,16,6,0,41
+2023,7,16,7,0,14
+2023,7,16,8,0,0
+2023,7,16,9,0,0
+2023,7,16,10,0,0
+2023,7,16,11,0,0
+2023,7,16,12,0,0
+2023,7,16,13,0,18
+2023,7,16,14,0,49
+2023,7,16,15,0,56
+2023,7,16,16,0,43
+2023,7,16,17,0,64
+2023,7,16,18,0,324
+2023,7,16,19,0,396
+2023,7,16,20,0,391
+2023,7,16,21,0,424
+2023,7,16,22,0,424
+2023,7,16,23,0,472
+2023,7,17,0,0,471
+2023,7,17,1,0,421
+2023,7,17,2,0,342
+2023,7,17,3,0,294
+2023,7,17,4,0,205
+2023,7,17,5,0,124
+2023,7,17,6,0,61
+2023,7,17,7,0,19
+2023,7,17,8,0,0
+2023,7,17,9,0,0
+2023,7,17,10,0,0
+2023,7,17,11,0,0
+2023,7,17,12,0,0
+2023,7,17,13,0,24
+2023,7,17,14,0,76
+2023,7,17,15,0,182
+2023,7,17,16,0,290
+2023,7,17,17,0,399
+2023,7,17,18,0,504
+2023,7,17,19,0,595
+2023,7,17,20,0,662
+2023,7,17,21,0,704
+2023,7,17,22,0,716
+2023,7,17,23,0,551
+2023,7,18,0,0,508
+2023,7,18,1,0,441
+2023,7,18,2,0,359
+2023,7,18,3,0,271
+2023,7,18,4,0,103
+2023,7,18,5,0,60
+2023,7,18,6,0,30
+2023,7,18,7,0,10
+2023,7,18,8,0,0
+2023,7,18,9,0,0
+2023,7,18,10,0,0
+2023,7,18,11,0,0
+2023,7,18,12,0,0
+2023,7,18,13,0,7
+2023,7,18,14,0,21
+2023,7,18,15,0,8
+2023,7,18,16,0,13
+2023,7,18,17,0,20
+2023,7,18,18,0,489
+2023,7,18,19,0,580
+2023,7,18,20,0,645
+2023,7,18,21,0,678
+2023,7,18,22,0,504
+2023,7,18,23,0,490
+2023,7,19,0,0,513
+2023,7,19,1,0,446
+2023,7,19,2,0,365
+2023,7,19,3,0,201
+2023,7,19,4,0,132
+2023,7,19,5,0,75
+2023,7,19,6,0,33
+2023,7,19,7,0,9
+2023,7,19,8,0,0
+2023,7,19,9,0,0
+2023,7,19,10,0,0
+2023,7,19,11,0,0
+2023,7,19,12,0,0
+2023,7,19,13,0,7
+2023,7,19,14,0,19
+2023,7,19,15,0,41
+2023,7,19,16,0,29
+2023,7,19,17,0,44
+2023,7,19,18,0,192
+2023,7,19,19,0,240
+2023,7,19,20,0,278
+2023,7,19,21,0,266
+2023,7,19,22,0,273
+2023,7,19,23,0,487
+2023,7,20,0,0,448
+2023,7,20,1,0,388
+2023,7,20,2,0,313
+2023,7,20,3,0,233
+2023,7,20,4,0,108
+2023,7,20,5,0,60
+2023,7,20,6,0,27
+2023,7,20,7,0,7
+2023,7,20,8,0,0
+2023,7,20,9,0,0
+2023,7,20,10,0,0
+2023,7,20,11,0,0
+2023,7,20,12,0,0
+2023,7,20,13,0,6
+2023,7,20,14,0,21
+2023,7,20,15,0,99
+2023,7,20,16,0,168
+2023,7,20,17,0,77
+2023,7,20,18,0,105
+2023,7,20,19,0,131
+2023,7,20,20,0,152
+2023,7,20,21,0,165
+2023,7,20,22,0,358
+2023,7,20,23,0,347
+2023,7,21,0,0,423
+2023,7,21,1,0,365
+2023,7,21,2,0,294
+2023,7,21,3,0,373
+2023,7,21,4,0,265
+2023,7,21,5,0,162
+2023,7,21,6,0,78
+2023,7,21,7,0,7
+2023,7,21,8,0,0
+2023,7,21,9,0,0
+2023,7,21,10,0,0
+2023,7,21,11,0,0
+2023,7,21,12,0,0
+2023,7,21,13,0,24
+2023,7,21,14,0,84
+2023,7,21,15,0,171
+2023,7,21,16,0,276
+2023,7,21,17,0,388
+2023,7,21,18,0,494
+2023,7,21,19,0,587
+2023,7,21,20,0,659
+2023,7,21,21,0,707
+2023,7,21,22,0,722
+2023,7,21,23,0,702
+2023,7,22,0,0,655
+2023,7,22,1,0,581
+2023,7,22,2,0,485
+2023,7,22,3,0,378
+2023,7,22,4,0,268
+2023,7,22,5,0,164
+2023,7,22,6,0,77
+2023,7,22,7,0,20
+2023,7,22,8,0,0
+2023,7,22,9,0,0
+2023,7,22,10,0,0
+2023,7,22,11,0,0
+2023,7,22,12,0,0
+2023,7,22,13,0,24
+2023,7,22,14,0,84
+2023,7,22,15,0,172
+2023,7,22,16,0,275
+2023,7,22,17,0,298
+2023,7,22,18,0,386
+2023,7,22,19,0,463
+2023,7,22,20,0,523
+2023,7,22,21,0,560
+2023,7,22,22,0,489
+2023,7,22,23,0,690
+2023,7,23,0,0,643
+2023,7,23,1,0,569
+2023,7,23,2,0,473
+2023,7,23,3,0,368
+2023,7,23,4,0,84
+2023,7,23,5,0,46
+2023,7,23,6,0,20
+2023,7,23,7,0,4
+2023,7,23,8,0,0
+2023,7,23,9,0,0
+2023,7,23,10,0,0
+2023,7,23,11,0,0
+2023,7,23,12,0,0
+2023,7,23,13,0,6
+2023,7,23,14,0,27
+2023,7,23,15,0,130
+2023,7,23,16,0,221
+2023,7,23,17,0,324
+2023,7,23,18,0,416
+2023,7,23,19,0,508
+2023,7,23,20,0,491
+2023,7,23,21,0,530
+2023,7,23,22,0,665
+2023,7,23,23,0,648
+2023,7,24,0,0,601
+2023,7,24,1,0,528
+2023,7,24,2,0,438
+2023,7,24,3,0,266
+2023,7,24,4,0,178
+2023,7,24,5,0,101
+2023,7,24,6,0,42
+2023,7,24,7,0,7
+2023,7,24,8,0,0
+2023,7,24,9,0,0
+2023,7,24,10,0,0
+2023,7,24,11,0,0
+2023,7,24,12,0,0
+2023,7,24,13,0,8
+2023,7,24,14,0,41
+2023,7,24,15,0,96
+2023,7,24,16,0,168
+2023,7,24,17,0,334
+2023,7,24,18,0,434
+2023,7,24,19,0,524
+2023,7,24,20,0,594
+2023,7,24,21,0,592
+2023,7,24,22,0,604
+2023,7,24,23,0,638
+2023,7,25,0,0,588
+2023,7,25,1,0,516
+2023,7,25,2,0,425
+2023,7,25,3,0,325
+2023,7,25,4,0,125
+2023,7,25,5,0,70
+2023,7,25,6,0,31
+2023,7,25,7,0,6
+2023,7,25,8,0,0
+2023,7,25,9,0,0
+2023,7,25,10,0,0
+2023,7,25,11,0,0
+2023,7,25,12,0,0
+2023,7,25,13,0,4
+2023,7,25,14,0,39
+2023,7,25,15,0,90
+2023,7,25,16,0,161
+2023,7,25,17,0,328
+2023,7,25,18,0,435
+2023,7,25,19,0,524
+2023,7,25,20,0,595
+2023,7,25,21,0,645
+2023,7,25,22,0,553
+2023,7,25,23,0,603
+2023,7,26,0,0,599
+2023,7,26,1,0,524
+2023,7,26,2,0,432
+2023,7,26,3,0,8
+2023,7,26,4,0,5
+2023,7,26,5,0,4
+2023,7,26,6,0,3
+2023,7,26,7,0,1
+2023,7,26,8,0,0
+2023,7,26,9,0,0
+2023,7,26,10,0,0
+2023,7,26,11,0,0
+2023,7,26,12,0,0
+2023,7,26,13,0,7
+2023,7,26,14,0,36
+2023,7,26,15,0,81
+2023,7,26,16,0,142
+2023,7,26,17,0,336
+2023,7,26,18,0,438
+2023,7,26,19,0,528
+2023,7,26,20,0,598
+2023,7,26,21,0,578
+2023,7,26,22,0,642
+2023,7,26,23,0,627
+2023,7,27,0,0,577
+2023,7,27,1,0,511
+2023,7,27,2,0,426
+2023,7,27,3,0,326
+2023,7,27,4,0,221
+2023,7,27,5,0,125
+2023,7,27,6,0,49
+2023,7,27,7,0,7
+2023,7,27,8,0,0
+2023,7,27,9,0,0
+2023,7,27,10,0,0
+2023,7,27,11,0,0
+2023,7,27,12,0,0
+2023,7,27,13,0,1
+2023,7,27,14,0,3
+2023,7,27,15,0,23
+2023,7,27,16,0,42
+2023,7,27,17,0,282
+2023,7,27,18,0,376
+2023,7,27,19,0,461
+2023,7,27,20,0,529
+2023,7,27,21,0,572
+2023,7,27,22,0,607
+2023,7,27,23,0,619
+2023,7,28,0,0,583
+2023,7,28,1,0,514
+2023,7,28,2,0,425
+2023,7,28,3,0,283
+2023,7,28,4,0,188
+2023,7,28,5,0,105
+2023,7,28,6,0,41
+2023,7,28,7,0,0
+2023,7,28,8,0,0
+2023,7,28,9,0,0
+2023,7,28,10,0,0
+2023,7,28,11,0,0
+2023,7,28,12,0,0
+2023,7,28,13,0,4
+2023,7,28,14,0,33
+2023,7,28,15,0,97
+2023,7,28,16,0,174
+2023,7,28,17,0,262
+2023,7,28,18,0,414
+2023,7,28,19,0,501
+2023,7,28,20,0,490
+2023,7,28,21,0,531
+2023,7,28,22,0,637
+2023,7,28,23,0,619
+2023,7,29,0,0,570
+2023,7,29,1,0,496
+2023,7,29,2,0,400
+2023,7,29,3,0,157
+2023,7,29,4,0,98
+2023,7,29,5,0,51
+2023,7,29,6,0,19
+2023,7,29,7,0,0
+2023,7,29,8,0,0
+2023,7,29,9,0,0
+2023,7,29,10,0,0
+2023,7,29,11,0,0
+2023,7,29,12,0,0
+2023,7,29,13,0,0
+2023,7,29,14,0,3
+2023,7,29,15,0,5
+2023,7,29,16,0,9
+2023,7,29,17,0,134
+2023,7,29,18,0,187
+2023,7,29,19,0,237
+2023,7,29,20,0,277
+2023,7,29,21,0,304
+2023,7,29,22,0,501
+2023,7,29,23,0,551
+2023,7,30,0,0,505
+2023,7,30,1,0,436
+2023,7,30,2,0,351
+2023,7,30,3,0,259
+2023,7,30,4,0,170
+2023,7,30,5,0,91
+2023,7,30,6,0,33
+2023,7,30,7,0,0
+2023,7,30,8,0,0
+2023,7,30,9,0,0
+2023,7,30,10,0,0
+2023,7,30,11,0,0
+2023,7,30,12,0,0
+2023,7,30,13,0,0
+2023,7,30,14,0,20
+2023,7,30,15,0,31
+2023,7,30,16,0,59
+2023,7,30,17,0,94
+2023,7,30,18,0,140
+2023,7,30,19,0,178
+2023,7,30,20,0,209
+2023,7,30,21,0,229
+2023,7,30,22,0,553
+2023,7,30,23,0,541
+2023,7,31,0,0,496
+2023,7,31,1,0,342
+2023,7,31,2,0,270
+2023,7,31,3,0,214
+2023,7,31,4,0,136
+2023,7,31,5,0,70
+2023,7,31,6,0,24
+2023,7,31,7,0,0
+2023,7,31,8,0,0
+2023,7,31,9,0,0
+2023,7,31,10,0,0
+2023,7,31,11,0,0
+2023,7,31,12,0,0
+2023,7,31,13,0,0
+2023,7,31,14,0,13
+2023,7,31,15,0,32
+2023,7,31,16,0,62
+2023,7,31,17,0,238
+2023,7,31,18,0,323
+2023,7,31,19,0,401
+2023,7,31,20,0,463
+2023,7,31,21,0,482
+2023,7,31,22,0,326
+2023,7,31,23,0,373
+2023,8,1,0,0,340
+2023,8,1,1,0,289
+2023,8,1,2,0,213
+2023,8,1,3,0,150
+2023,8,1,4,0,93
+2023,8,1,5,0,47
+2023,8,1,6,0,16
+2023,8,1,7,0,0
+2023,8,1,8,0,0
+2023,8,1,9,0,0
+2023,8,1,10,0,0
+2023,8,1,11,0,0
+2023,8,1,12,0,0
+2023,8,1,13,0,0
+2023,8,1,14,0,49
+2023,8,1,15,0,129
+2023,8,1,16,0,231
+2023,8,1,17,0,341
+2023,8,1,18,0,433
+2023,8,1,19,0,524
+2023,8,1,20,0,595
+2023,8,1,21,0,659
+2023,8,1,22,0,674
+2023,8,1,23,0,658
+2023,8,2,0,0,608
+2023,8,2,1,0,535
+2023,8,2,2,0,442
+2023,8,2,3,0,335
+2023,8,2,4,0,225
+2023,8,2,5,0,123
+2023,8,2,6,0,43
+2023,8,2,7,0,0
+2023,8,2,8,0,0
+2023,8,2,9,0,0
+2023,8,2,10,0,0
+2023,8,2,11,0,0
+2023,8,2,12,0,0
+2023,8,2,13,0,0
+2023,8,2,14,0,16
+2023,8,2,15,0,113
+2023,8,2,16,0,213
+2023,8,2,17,0,329
+2023,8,2,18,0,446
+2023,8,2,19,0,539
+2023,8,2,20,0,611
+2023,8,2,21,0,475
+2023,8,2,22,0,483
+2023,8,2,23,0,468
+2023,8,3,0,0,428
+2023,8,3,1,0,365
+2023,8,3,2,0,289
+2023,8,3,3,0,208
+2023,8,3,4,0,83
+2023,8,3,5,0,41
+2023,8,3,6,0,13
+2023,8,3,7,0,0
+2023,8,3,8,0,0
+2023,8,3,9,0,0
+2023,8,3,10,0,0
+2023,8,3,11,0,0
+2023,8,3,12,0,0
+2023,8,3,13,0,0
+2023,8,3,14,0,28
+2023,8,3,15,0,77
+2023,8,3,16,0,145
+2023,8,3,17,0,318
+2023,8,3,18,0,423
+2023,8,3,19,0,512
+2023,8,3,20,0,582
+2023,8,3,21,0,631
+2023,8,3,22,0,646
+2023,8,3,23,0,505
+2023,8,4,0,0,462
+2023,8,4,1,0,397
+2023,8,4,2,0,316
+2023,8,4,3,0,229
+2023,8,4,4,0,144
+2023,8,4,5,0,106
+2023,8,4,6,0,33
+2023,8,4,7,0,0
+2023,8,4,8,0,0
+2023,8,4,9,0,0
+2023,8,4,10,0,0
+2023,8,4,11,0,0
+2023,8,4,12,0,0
+2023,8,4,13,0,0
+2023,8,4,14,0,10
+2023,8,4,15,0,4
+2023,8,4,16,0,6
+2023,8,4,17,0,9
+2023,8,4,18,0,357
+2023,8,4,19,0,454
+2023,8,4,20,0,525
+2023,8,4,21,0,570
+2023,8,4,22,0,538
+2023,8,4,23,0,494
+2023,8,5,0,0,454
+2023,8,5,1,0,394
+2023,8,5,2,0,338
+2023,8,5,3,0,231
+2023,8,5,4,0,164
+2023,8,5,5,0,83
+2023,8,5,6,0,24
+2023,8,5,7,0,0
+2023,8,5,8,0,0
+2023,8,5,9,0,0
+2023,8,5,10,0,0
+2023,8,5,11,0,0
+2023,8,5,12,0,0
+2023,8,5,13,0,0
+2023,8,5,14,0,14
+2023,8,5,15,0,43
+2023,8,5,16,0,89
+2023,8,5,17,0,258
+2023,8,5,18,0,364
+2023,8,5,19,0,456
+2023,8,5,20,0,528
+2023,8,5,21,0,381
+2023,8,5,22,0,639
+2023,8,5,23,0,620
+2023,8,6,0,0,567
+2023,8,6,1,0,491
+2023,8,6,2,0,394
+2023,8,6,3,0,287
+2023,8,6,4,0,179
+2023,8,6,5,0,39
+2023,8,6,6,0,11
+2023,8,6,7,0,0
+2023,8,6,8,0,0
+2023,8,6,9,0,0
+2023,8,6,10,0,0
+2023,8,6,11,0,0
+2023,8,6,12,0,0
+2023,8,6,13,0,0
+2023,8,6,14,0,10
+2023,8,6,15,0,45
+2023,8,6,16,0,114
+2023,8,6,17,0,210
+2023,8,6,18,0,214
+2023,8,6,19,0,274
+2023,8,6,20,0,324
+2023,8,6,21,0,352
+2023,8,6,22,0,530
+2023,8,6,23,0,513
+2023,8,7,0,0,466
+2023,8,7,1,0,418
+2023,8,7,2,0,338
+2023,8,7,3,0,246
+2023,8,7,4,0,154
+2023,8,7,5,0,76
+2023,8,7,6,0,18
+2023,8,7,7,0,0
+2023,8,7,8,0,0
+2023,8,7,9,0,0
+2023,8,7,10,0,0
+2023,8,7,11,0,0
+2023,8,7,12,0,0
+2023,8,7,13,0,0
+2023,8,7,14,0,11
+2023,8,7,15,0,33
+2023,8,7,16,0,70
+2023,8,7,17,0,170
+2023,8,7,18,0,241
+2023,8,7,19,0,308
+2023,8,7,20,0,362
+2023,8,7,21,0,297
+2023,8,7,22,0,308
+2023,8,7,23,0,382
+2023,8,8,0,0,347
+2023,8,8,1,0,293
+2023,8,8,2,0,227
+2023,8,8,3,0,157
+2023,8,8,4,0,134
+2023,8,8,5,0,63
+2023,8,8,6,0,11
+2023,8,8,7,0,0
+2023,8,8,8,0,0
+2023,8,8,9,0,0
+2023,8,8,10,0,0
+2023,8,8,11,0,0
+2023,8,8,12,0,0
+2023,8,8,13,0,0
+2023,8,8,14,0,8
+2023,8,8,15,0,26
+2023,8,8,16,0,54
+2023,8,8,17,0,54
+2023,8,8,18,0,78
+2023,8,8,19,0,104
+2023,8,8,20,0,126
+2023,8,8,21,0,141
+2023,8,8,22,0,161
+2023,8,8,23,0,156
+2023,8,9,0,0,236
+2023,8,9,1,0,194
+2023,8,9,2,0,147
+2023,8,9,3,0,104
+2023,8,9,4,0,62
+2023,8,9,5,0,31
+2023,8,9,6,0,9
+2023,8,9,7,0,0
+2023,8,9,8,0,0
+2023,8,9,9,0,0
+2023,8,9,10,0,0
+2023,8,9,11,0,0
+2023,8,9,12,0,0
+2023,8,9,13,0,0
+2023,8,9,14,0,3
+2023,8,9,15,0,8
+2023,8,9,16,0,16
+2023,8,9,17,0,27
+2023,8,9,18,0,280
+2023,8,9,19,0,354
+2023,8,9,20,0,434
+2023,8,9,21,0,473
+2023,8,9,22,0,564
+2023,8,9,23,0,417
+2023,8,10,0,0,376
+2023,8,10,1,0,317
+2023,8,10,2,0,245
+2023,8,10,3,0,170
+2023,8,10,4,0,71
+2023,8,10,5,0,31
+2023,8,10,6,0,7
+2023,8,10,7,0,0
+2023,8,10,8,0,0
+2023,8,10,9,0,0
+2023,8,10,10,0,0
+2023,8,10,11,0,0
+2023,8,10,12,0,0
+2023,8,10,13,0,0
+2023,8,10,14,0,7
+2023,8,10,15,0,25
+2023,8,10,16,0,54
+2023,8,10,17,0,66
+2023,8,10,18,0,97
+2023,8,10,19,0,126
+2023,8,10,20,0,149
+2023,8,10,21,0,285
+2023,8,10,22,0,293
+2023,8,10,23,0,442
+2023,8,11,0,0,204
+2023,8,11,1,0,169
+2023,8,11,2,0,128
+2023,8,11,3,0,86
+2023,8,11,4,0,49
+2023,8,11,5,0,61
+2023,8,11,6,0,8
+2023,8,11,7,0,0
+2023,8,11,8,0,0
+2023,8,11,9,0,0
+2023,8,11,10,0,0
+2023,8,11,11,0,0
+2023,8,11,12,0,0
+2023,8,11,13,0,0
+2023,8,11,14,0,8
+2023,8,11,15,0,36
+2023,8,11,16,0,80
+2023,8,11,17,0,254
+2023,8,11,18,0,354
+2023,8,11,19,0,440
+2023,8,11,20,0,509
+2023,8,11,21,0,577
+2023,8,11,22,0,506
+2023,8,11,23,0,489
+2023,8,12,0,0,445
+2023,8,12,1,0,449
+2023,8,12,2,0,357
+2023,8,12,3,0,255
+2023,8,12,4,0,107
+2023,8,12,5,0,45
+2023,8,12,6,0,7
+2023,8,12,7,0,0
+2023,8,12,8,0,0
+2023,8,12,9,0,0
+2023,8,12,10,0,0
+2023,8,12,11,0,0
+2023,8,12,12,0,0
+2023,8,12,13,0,0
+2023,8,12,14,0,22
+2023,8,12,15,0,95
+2023,8,12,16,0,199
+2023,8,12,17,0,270
+2023,8,12,18,0,370
+2023,8,12,19,0,458
+2023,8,12,20,0,527
+2023,8,12,21,0,260
+2023,8,12,22,0,269
+2023,8,12,23,0,380
+2023,8,13,0,0,342
+2023,8,13,1,0,284
+2023,8,13,2,0,216
+2023,8,13,3,0,147
+2023,8,13,4,0,84
+2023,8,13,5,0,43
+2023,8,13,6,0,6
+2023,8,13,7,0,0
+2023,8,13,8,0,0
+2023,8,13,9,0,0
+2023,8,13,10,0,0
+2023,8,13,11,0,0
+2023,8,13,12,0,0
+2023,8,13,13,0,0
+2023,8,13,14,0,20
+2023,8,13,15,0,23
+2023,8,13,16,0,52
+2023,8,13,17,0,193
+2023,8,13,18,0,275
+2023,8,13,19,0,350
+2023,8,13,20,0,410
+2023,8,13,21,0,447
+2023,8,13,22,0,614
+2023,8,13,23,0,446
+2023,8,14,0,0,403
+2023,8,14,1,0,356
+2023,8,14,2,0,278
+2023,8,14,3,0,193
+2023,8,14,4,0,110
+2023,8,14,5,0,45
+2023,8,14,6,0,4
+2023,8,14,7,0,0
+2023,8,14,8,0,0
+2023,8,14,9,0,0
+2023,8,14,10,0,0
+2023,8,14,11,0,0
+2023,8,14,12,0,0
+2023,8,14,13,0,0
+2023,8,14,14,0,6
+2023,8,14,15,0,25
+2023,8,14,16,0,57
+2023,8,14,17,0,105
+2023,8,14,18,0,156
+2023,8,14,19,0,204
+2023,8,14,20,0,243
+2023,8,14,21,0,615
+2023,8,14,22,0,628
+2023,8,14,23,0,609
+2023,8,15,0,0,560
+2023,8,15,1,0,484
+2023,8,15,2,0,387
+2023,8,15,3,0,278
+2023,8,15,4,0,169
+2023,8,15,5,0,65
+2023,8,15,6,0,0
+2023,8,15,7,0,0
+2023,8,15,8,0,0
+2023,8,15,9,0,0
+2023,8,15,10,0,0
+2023,8,15,11,0,0
+2023,8,15,12,0,0
+2023,8,15,13,0,0
+2023,8,15,14,0,5
+2023,8,15,15,0,86
+2023,8,15,16,0,186
+2023,8,15,17,0,297
+2023,8,15,18,0,404
+2023,8,15,19,0,499
+2023,8,15,20,0,572
+2023,8,15,21,0,614
+2023,8,15,22,0,393
+2023,8,15,23,0,610
+2023,8,16,0,0,560
+2023,8,16,1,0,483
+2023,8,16,2,0,386
+2023,8,16,3,0,277
+2023,8,16,4,0,167
+2023,8,16,5,0,24
+2023,8,16,6,0,0
+2023,8,16,7,0,0
+2023,8,16,8,0,0
+2023,8,16,9,0,0
+2023,8,16,10,0,0
+2023,8,16,11,0,0
+2023,8,16,12,0,0
+2023,8,16,13,0,0
+2023,8,16,14,0,8
+2023,8,16,15,0,18
+2023,8,16,16,0,44
+2023,8,16,17,0,244
+2023,8,16,18,0,340
+2023,8,16,19,0,364
+2023,8,16,20,0,428
+2023,8,16,21,0,466
+2023,8,16,22,0,621
+2023,8,16,23,0,600
+2023,8,17,0,0,549
+2023,8,17,1,0,474
+2023,8,17,2,0,378
+2023,8,17,3,0,270
+2023,8,17,4,0,42
+2023,8,17,5,0,31
+2023,8,17,6,0,0
+2023,8,17,7,0,0
+2023,8,17,8,0,0
+2023,8,17,9,0,0
+2023,8,17,10,0,0
+2023,8,17,11,0,0
+2023,8,17,12,0,0
+2023,8,17,13,0,0
+2023,8,17,14,0,0
+2023,8,17,15,0,8
+2023,8,17,16,0,17
+2023,8,17,17,0,43
+2023,8,17,18,0,64
+2023,8,17,19,0,85
+2023,8,17,20,0,102
+2023,8,17,21,0,284
+2023,8,17,22,0,292
+2023,8,17,23,0,138
+2023,8,18,0,0,123
+2023,8,18,1,0,101
+2023,8,18,2,0,75
+2023,8,18,3,0,48
+2023,8,18,4,0,26
+2023,8,18,5,0,28
+2023,8,18,6,0,0
+2023,8,18,7,0,0
+2023,8,18,8,0,0
+2023,8,18,9,0,0
+2023,8,18,10,0,0
+2023,8,18,11,0,0
+2023,8,18,12,0,0
+2023,8,18,13,0,0
+2023,8,18,14,0,0
+2023,8,18,15,0,25
+2023,8,18,16,0,55
+2023,8,18,17,0,57
+2023,8,18,18,0,86
+2023,8,18,19,0,114
+2023,8,18,20,0,137
+2023,8,18,21,0,151
+2023,8,18,22,0,99
+2023,8,18,23,0,95
+2023,8,19,0,0,85
+2023,8,19,1,0,82
+2023,8,19,2,0,60
+2023,8,19,3,0,39
+2023,8,19,4,0,35
+2023,8,19,5,0,20
+2023,8,19,6,0,0
+2023,8,19,7,0,0
+2023,8,19,8,0,0
+2023,8,19,9,0,0
+2023,8,19,10,0,0
+2023,8,19,11,0,0
+2023,8,19,12,0,0
+2023,8,19,13,0,0
+2023,8,19,14,0,0
+2023,8,19,15,0,47
+2023,8,19,16,0,115
+2023,8,19,17,0,87
+2023,8,19,18,0,132
+2023,8,19,19,0,175
+2023,8,19,20,0,210
+2023,8,19,21,0,281
+2023,8,19,22,0,112
+2023,8,19,23,0,62
+2023,8,20,0,0,55
+2023,8,20,1,0,46
+2023,8,20,2,0,34
+2023,8,20,3,0,22
+2023,8,20,4,0,58
+2023,8,20,5,0,22
+2023,8,20,6,0,0
+2023,8,20,7,0,0
+2023,8,20,8,0,0
+2023,8,20,9,0,0
+2023,8,20,10,0,0
+2023,8,20,11,0,0
+2023,8,20,12,0,0
+2023,8,20,13,0,0
+2023,8,20,14,0,0
+2023,8,20,15,0,20
+2023,8,20,16,0,45
+2023,8,20,17,0,44
+2023,8,20,18,0,68
+2023,8,20,19,0,90
+2023,8,20,20,0,108
+2023,8,20,21,0,120
+2023,8,20,22,0,75
+2023,8,20,23,0,181
+2023,8,21,0,0,160
+2023,8,21,1,0,232
+2023,8,21,2,0,170
+2023,8,21,3,0,109
+2023,8,21,4,0,34
+2023,8,21,5,0,14
+2023,8,21,6,0,0
+2023,8,21,7,0,0
+2023,8,21,8,0,0
+2023,8,21,9,0,0
+2023,8,21,10,0,0
+2023,8,21,11,0,0
+2023,8,21,12,0,0
+2023,8,21,13,0,0
+2023,8,21,14,0,0
+2023,8,21,15,0,43
+2023,8,21,16,0,112
+2023,8,21,17,0,69
+2023,8,21,18,0,106
+2023,8,21,19,0,142
+2023,8,21,20,0,92
+2023,8,21,21,0,102
+2023,8,21,22,0,72
+2023,8,21,23,0,92
+2023,8,22,0,0,82
+2023,8,22,1,0,66
+2023,8,22,2,0,48
+2023,8,22,3,0,31
+2023,8,22,4,0,41
+2023,8,22,5,0,13
+2023,8,22,6,0,0
+2023,8,22,7,0,0
+2023,8,22,8,0,0
+2023,8,22,9,0,0
+2023,8,22,10,0,0
+2023,8,22,11,0,0
+2023,8,22,12,0,0
+2023,8,22,13,0,0
+2023,8,22,14,0,0
+2023,8,22,15,0,15
+2023,8,22,16,0,37
+2023,8,22,17,0,175
+2023,8,22,18,0,256
+2023,8,22,19,0,330
+2023,8,22,20,0,389
+2023,8,22,21,0,164
+2023,8,22,22,0,79
+2023,8,22,23,0,75
+2023,8,23,0,0,136
+2023,8,23,1,0,110
+2023,8,23,2,0,80
+2023,8,23,3,0,50
+2023,8,23,4,0,34
+2023,8,23,5,0,10
+2023,8,23,6,0,0
+2023,8,23,7,0,0
+2023,8,23,8,0,0
+2023,8,23,9,0,0
+2023,8,23,10,0,0
+2023,8,23,11,0,0
+2023,8,23,12,0,0
+2023,8,23,13,0,0
+2023,8,23,14,0,0
+2023,8,23,15,0,24
+2023,8,23,16,0,62
+2023,8,23,17,0,113
+2023,8,23,18,0,173
+2023,8,23,19,0,231
+2023,8,23,20,0,279
+2023,8,23,21,0,309
+2023,8,23,22,0,381
+2023,8,23,23,0,365
+2023,8,24,0,0,324
+2023,8,24,1,0,266
+2023,8,24,2,0,195
+2023,8,24,3,0,123
+2023,8,24,4,0,38
+2023,8,24,5,0,13
+2023,8,24,6,0,0
+2023,8,24,7,0,0
+2023,8,24,8,0,0
+2023,8,24,9,0,0
+2023,8,24,10,0,0
+2023,8,24,11,0,0
+2023,8,24,12,0,0
+2023,8,24,13,0,0
+2023,8,24,14,0,0
+2023,8,24,15,0,40
+2023,8,24,16,0,115
+2023,8,24,17,0,105
+2023,8,24,18,0,162
+2023,8,24,19,0,217
+2023,8,24,20,0,263
+2023,8,24,21,0,439
+2023,8,24,22,0,570
+2023,8,24,23,0,548
+2023,8,25,0,0,142
+2023,8,25,1,0,112
+2023,8,25,2,0,80
+2023,8,25,3,0,50
+2023,8,25,4,0,44
+2023,8,25,5,0,13
+2023,8,25,6,0,0
+2023,8,25,7,0,0
+2023,8,25,8,0,0
+2023,8,25,9,0,0
+2023,8,25,10,0,0
+2023,8,25,11,0,0
+2023,8,25,12,0,0
+2023,8,25,13,0,0
+2023,8,25,14,0,0
+2023,8,25,15,0,23
+2023,8,25,16,0,66
+2023,8,25,17,0,163
+2023,8,25,18,0,246
+2023,8,25,19,0,322
+2023,8,25,20,0,382
+2023,8,25,21,0,420
+2023,8,25,22,0,188
+2023,8,25,23,0,161
+2023,8,26,0,0,142
+2023,8,26,1,0,276
+2023,8,26,2,0,202
+2023,8,26,3,0,126
+2023,8,26,4,0,52
+2023,8,26,5,0,14
+2023,8,26,6,0,0
+2023,8,26,7,0,0
+2023,8,26,8,0,0
+2023,8,26,9,0,0
+2023,8,26,10,0,0
+2023,8,26,11,0,0
+2023,8,26,12,0,0
+2023,8,26,13,0,0
+2023,8,26,14,0,0
+2023,8,26,15,0,30
+2023,8,26,16,0,95
+2023,8,26,17,0,62
+2023,8,26,18,0,96
+2023,8,26,19,0,132
+2023,8,26,20,0,162
+2023,8,26,21,0,169
+2023,8,26,22,0,175
+2023,8,26,23,0,208
+2023,8,27,0,0,181
+2023,8,27,1,0,144
+2023,8,27,2,0,103
+2023,8,27,3,0,63
+2023,8,27,4,0,45
+2023,8,27,5,0,9
+2023,8,27,6,0,0
+2023,8,27,7,0,0
+2023,8,27,8,0,0
+2023,8,27,9,0,0
+2023,8,27,10,0,0
+2023,8,27,11,0,0
+2023,8,27,12,0,0
+2023,8,27,13,0,0
+2023,8,27,14,0,0
+2023,8,27,15,0,15
+2023,8,27,16,0,41
+2023,8,27,17,0,26
+2023,8,27,18,0,40
+2023,8,27,19,0,55
+2023,8,27,20,0,68
+2023,8,27,21,0,77
+2023,8,27,22,0,194
+2023,8,27,23,0,184
+2023,8,28,0,0,206
+2023,8,28,1,0,164
+2023,8,28,2,0,117
+2023,8,28,3,0,71
+2023,8,28,4,0,41
+2023,8,28,5,0,8
+2023,8,28,6,0,0
+2023,8,28,7,0,0
+2023,8,28,8,0,0
+2023,8,28,9,0,0
+2023,8,28,10,0,0
+2023,8,28,11,0,0
+2023,8,28,12,0,0
+2023,8,28,13,0,0
+2023,8,28,14,0,0
+2023,8,28,15,0,28
+2023,8,28,16,0,99
+2023,8,28,17,0,83
+2023,8,28,18,0,131
+2023,8,28,19,0,220
+2023,8,28,20,0,266
+2023,8,28,21,0,295
+2023,8,28,22,0,241
+2023,8,28,23,0,338
+2023,8,29,0,0,297
+2023,8,29,1,0,239
+2023,8,29,2,0,171
+2023,8,29,3,0,104
+2023,8,29,4,0,61
+2023,8,29,5,0,10
+2023,8,29,6,0,0
+2023,8,29,7,0,0
+2023,8,29,8,0,0
+2023,8,29,9,0,0
+2023,8,29,10,0,0
+2023,8,29,11,0,0
+2023,8,29,12,0,0
+2023,8,29,13,0,0
+2023,8,29,14,0,0
+2023,8,29,15,0,22
+2023,8,29,16,0,80
+2023,8,29,17,0,227
+2023,8,29,18,0,332
+2023,8,29,19,0,425
+2023,8,29,20,0,495
+2023,8,29,21,0,538
+2023,8,29,22,0,549
+2023,8,29,23,0,527
+2023,8,30,0,0,401
+2023,8,30,1,0,332
+2023,8,30,2,0,249
+2023,8,30,3,0,160
+2023,8,30,4,0,52
+2023,8,30,5,0,6
+2023,8,30,6,0,0
+2023,8,30,7,0,0
+2023,8,30,8,0,0
+2023,8,30,9,0,0
+2023,8,30,10,0,0
+2023,8,30,11,0,0
+2023,8,30,12,0,0
+2023,8,30,13,0,0
+2023,8,30,14,0,0
+2023,8,30,15,0,11
+2023,8,30,16,0,47
+2023,8,30,17,0,55
+2023,8,30,18,0,88
+2023,8,30,19,0,122
+2023,8,30,20,0,151
+2023,8,30,21,0,170
+2023,8,30,22,0,188
+2023,8,30,23,0,179
+2023,8,31,0,0,155
+2023,8,31,1,0,121
+2023,8,31,2,0,84
+2023,8,31,3,0,133
+2023,8,31,4,0,57
+2023,8,31,5,0,5
+2023,8,31,6,0,0
+2023,8,31,7,0,0
+2023,8,31,8,0,0
+2023,8,31,9,0,0
+2023,8,31,10,0,0
+2023,8,31,11,0,0
+2023,8,31,12,0,0
+2023,8,31,13,0,0
+2023,8,31,14,0,0
+2023,8,31,15,0,9
+2023,8,31,16,0,41
+2023,8,31,17,0,49
+2023,8,31,18,0,77
+2023,8,31,19,0,107
+2023,8,31,20,0,132
+2023,8,31,21,0,166
+2023,8,31,22,0,171
+2023,8,31,23,0,45
+2023,9,1,0,0,40
+2023,9,1,1,0,31
+2023,9,1,2,0,134
+2023,9,1,3,0,82
+2023,9,1,4,0,36
+2023,9,1,5,0,0
+2023,9,1,6,0,0
+2023,9,1,7,0,0
+2023,9,1,8,0,0
+2023,9,1,9,0,0
+2023,9,1,10,0,0
+2023,9,1,11,0,0
+2023,9,1,12,0,0
+2023,9,1,13,0,0
+2023,9,1,14,0,0
+2023,9,1,15,0,17
+2023,9,1,16,0,78
+2023,9,1,17,0,18
+2023,9,1,18,0,27
+2023,9,1,19,0,37
+2023,9,1,20,0,47
+2023,9,1,21,0,53
+2023,9,1,22,0,95
+2023,9,1,23,0,108
+2023,9,2,0,0,92
+2023,9,2,1,0,281
+2023,9,2,2,0,202
+2023,9,2,3,0,119
+2023,9,2,4,0,30
+2023,9,2,5,0,0
+2023,9,2,6,0,0
+2023,9,2,7,0,0
+2023,9,2,8,0,0
+2023,9,2,9,0,0
+2023,9,2,10,0,0
+2023,9,2,11,0,0
+2023,9,2,12,0,0
+2023,9,2,13,0,0
+2023,9,2,14,0,0
+2023,9,2,15,0,10
+2023,9,2,16,0,48
+2023,9,2,17,0,42
+2023,9,2,18,0,69
+2023,9,2,19,0,97
+2023,9,2,20,0,113
+2023,9,2,21,0,126
+2023,9,2,22,0,357
+2023,9,2,23,0,526
+2023,9,3,0,0,473
+2023,9,3,1,0,393
+2023,9,3,2,0,293
+2023,9,3,3,0,183
+2023,9,3,4,0,77
+2023,9,3,5,0,0
+2023,9,3,6,0,0
+2023,9,3,7,0,0
+2023,9,3,8,0,0
+2023,9,3,9,0,0
+2023,9,3,10,0,0
+2023,9,3,11,0,0
+2023,9,3,12,0,0
+2023,9,3,13,0,0
+2023,9,3,14,0,0
+2023,9,3,15,0,7
+2023,9,3,16,0,43
+2023,9,3,17,0,102
+2023,9,3,18,0,166
+2023,9,3,19,0,228
+2023,9,3,20,0,280
+2023,9,3,21,0,427
+2023,9,3,22,0,437
+2023,9,3,23,0,173
+2023,9,4,0,0,239
+2023,9,4,1,0,187
+2023,9,4,2,0,128
+2023,9,4,3,0,73
+2023,9,4,4,0,27
+2023,9,4,5,0,0
+2023,9,4,6,0,0
+2023,9,4,7,0,0
+2023,9,4,8,0,0
+2023,9,4,9,0,0
+2023,9,4,10,0,0
+2023,9,4,11,0,0
+2023,9,4,12,0,0
+2023,9,4,13,0,0
+2023,9,4,14,0,0
+2023,9,4,15,0,8
+2023,9,4,16,0,55
+2023,9,4,17,0,38
+2023,9,4,18,0,63
+2023,9,4,19,0,89
+2023,9,4,20,0,110
+2023,9,4,21,0,124
+2023,9,4,22,0,190
+2023,9,4,23,0,131
+2023,9,5,0,0,113
+2023,9,5,1,0,87
+2023,9,5,2,0,59
+2023,9,5,3,0,164
+2023,9,5,4,0,63
+2023,9,5,5,0,0
+2023,9,5,6,0,0
+2023,9,5,7,0,0
+2023,9,5,8,0,0
+2023,9,5,9,0,0
+2023,9,5,10,0,0
+2023,9,5,11,0,0
+2023,9,5,12,0,0
+2023,9,5,13,0,0
+2023,9,5,14,0,0
+2023,9,5,15,0,14
+2023,9,5,16,0,87
+2023,9,5,17,0,102
+2023,9,5,18,0,168
+2023,9,5,19,0,233
+2023,9,5,20,0,285
+2023,9,5,21,0,315
+2023,9,5,22,0,323
+2023,9,5,23,0,263
+2023,9,6,0,0,264
+2023,9,6,1,0,207
+2023,9,6,2,0,141
+2023,9,6,3,0,78
+2023,9,6,4,0,27
+2023,9,6,5,0,0
+2023,9,6,6,0,0
+2023,9,6,7,0,0
+2023,9,6,8,0,0
+2023,9,6,9,0,0
+2023,9,6,10,0,0
+2023,9,6,11,0,0
+2023,9,6,12,0,0
+2023,9,6,13,0,0
+2023,9,6,14,0,0
+2023,9,6,15,0,0
+2023,9,6,16,0,33
+2023,9,6,17,0,49
+2023,9,6,18,0,84
+2023,9,6,19,0,119
+2023,9,6,20,0,148
+2023,9,6,21,0,167
+2023,9,6,22,0,250
+2023,9,6,23,0,237
+2023,9,7,0,0,204
+2023,9,7,1,0,157
+2023,9,7,2,0,104
+2023,9,7,3,0,96
+2023,9,7,4,0,33
+2023,9,7,5,0,0
+2023,9,7,6,0,0
+2023,9,7,7,0,0
+2023,9,7,8,0,0
+2023,9,7,9,0,0
+2023,9,7,10,0,0
+2023,9,7,11,0,0
+2023,9,7,12,0,0
+2023,9,7,13,0,0
+2023,9,7,14,0,0
+2023,9,7,15,0,0
+2023,9,7,16,0,59
+2023,9,7,17,0,82
+2023,9,7,18,0,141
+2023,9,7,19,0,199
+2023,9,7,20,0,158
+2023,9,7,21,0,178
+2023,9,7,22,0,317
+2023,9,7,23,0,258
+2023,9,8,0,0,222
+2023,9,8,1,0,171
+2023,9,8,2,0,113
+2023,9,8,3,0,58
+2023,9,8,4,0,49
+2023,9,8,5,0,0
+2023,9,8,6,0,0
+2023,9,8,7,0,0
+2023,9,8,8,0,0
+2023,9,8,9,0,0
+2023,9,8,10,0,0
+2023,9,8,11,0,0
+2023,9,8,12,0,0
+2023,9,8,13,0,0
+2023,9,8,14,0,0
+2023,9,8,15,0,0
+2023,9,8,16,0,62
+2023,9,8,17,0,124
+2023,9,8,18,0,205
+2023,9,8,19,0,279
+2023,9,8,20,0,337
+2023,9,8,21,0,372
+2023,9,8,22,0,379
+2023,9,8,23,0,346
+2023,9,9,0,0,299
+2023,9,9,1,0,289
+2023,9,9,2,0,202
+2023,9,9,3,0,129
+2023,9,9,4,0,40
+2023,9,9,5,0,0
+2023,9,9,6,0,0
+2023,9,9,7,0,0
+2023,9,9,8,0,0
+2023,9,9,9,0,0
+2023,9,9,10,0,0
+2023,9,9,11,0,0
+2023,9,9,12,0,0
+2023,9,9,13,0,0
+2023,9,9,14,0,0
+2023,9,9,15,0,0
+2023,9,9,16,0,23
+2023,9,9,17,0,52
+2023,9,9,18,0,71
+2023,9,9,19,0,157
+2023,9,9,20,0,196
+2023,9,9,21,0,222
+2023,9,9,22,0,406
+2023,9,9,23,0,386
+2023,9,10,0,0,339
+2023,9,10,1,0,341
+2023,9,10,2,0,243
+2023,9,10,3,0,98
+2023,9,10,4,0,28
+2023,9,10,5,0,0
+2023,9,10,6,0,0
+2023,9,10,7,0,0
+2023,9,10,8,0,0
+2023,9,10,9,0,0
+2023,9,10,10,0,0
+2023,9,10,11,0,0
+2023,9,10,12,0,0
+2023,9,10,13,0,0
+2023,9,10,14,0,0
+2023,9,10,15,0,0
+2023,9,10,16,0,44
+2023,9,10,17,0,94
+2023,9,10,18,0,164
+2023,9,10,19,0,231
+2023,9,10,20,0,285
+2023,9,10,21,0,353
+2023,9,10,22,0,362
+2023,9,10,23,0,341
+2023,9,11,0,0,416
+2023,9,11,1,0,335
+2023,9,11,2,0,235
+2023,9,11,3,0,62
+2023,9,11,4,0,17
+2023,9,11,5,0,0
+2023,9,11,6,0,0
+2023,9,11,7,0,0
+2023,9,11,8,0,0
+2023,9,11,9,0,0
+2023,9,11,10,0,0
+2023,9,11,11,0,0
+2023,9,11,12,0,0
+2023,9,11,13,0,0
+2023,9,11,14,0,0
+2023,9,11,15,0,0
+2023,9,11,16,0,35
+2023,9,11,17,0,36
+2023,9,11,18,0,62
+2023,9,11,19,0,89
+2023,9,11,20,0,112
+2023,9,11,21,0,128
+2023,9,11,22,0,209
+2023,9,11,23,0,196
+2023,9,12,0,0,166
+2023,9,12,1,0,125
+2023,9,12,2,0,81
+2023,9,12,3,0,44
+2023,9,12,4,0,10
+2023,9,12,5,0,0
+2023,9,12,6,0,0
+2023,9,12,7,0,0
+2023,9,12,8,0,0
+2023,9,12,9,0,0
+2023,9,12,10,0,0
+2023,9,12,11,0,0
+2023,9,12,12,0,0
+2023,9,12,13,0,0
+2023,9,12,14,0,0
+2023,9,12,15,0,0
+2023,9,12,16,0,21
+2023,9,12,17,0,95
+2023,9,12,18,0,169
+2023,9,12,19,0,239
+2023,9,12,20,0,295
+2023,9,12,21,0,399
+2023,9,12,22,0,486
+2023,9,12,23,0,394
+2023,9,13,0,0,339
+2023,9,13,1,0,260
+2023,9,13,2,0,171
+2023,9,13,3,0,85
+2023,9,13,4,0,13
+2023,9,13,5,0,0
+2023,9,13,6,0,0
+2023,9,13,7,0,0
+2023,9,13,8,0,0
+2023,9,13,9,0,0
+2023,9,13,10,0,0
+2023,9,13,11,0,0
+2023,9,13,12,0,0
+2023,9,13,13,0,0
+2023,9,13,14,0,0
+2023,9,13,15,0,0
+2023,9,13,16,0,48
+2023,9,13,17,0,156
+2023,9,13,18,0,261
+2023,9,13,19,0,355
+2023,9,13,20,0,426
+2023,9,13,21,0,468
+2023,9,13,22,0,478
+2023,9,13,23,0,393
+2023,9,14,0,0,337
+2023,9,14,1,0,257
+2023,9,14,2,0,167
+2023,9,14,3,0,111
+2023,9,14,4,0,21
+2023,9,14,5,0,0
+2023,9,14,6,0,0
+2023,9,14,7,0,0
+2023,9,14,8,0,0
+2023,9,14,9,0,0
+2023,9,14,10,0,0
+2023,9,14,11,0,0
+2023,9,14,12,0,0
+2023,9,14,13,0,0
+2023,9,14,14,0,0
+2023,9,14,15,0,0
+2023,9,14,16,0,46
+2023,9,14,17,0,129
+2023,9,14,18,0,210
+2023,9,14,19,0,298
+2023,9,14,20,0,66
+2023,9,14,21,0,75
+2023,9,14,22,0,9
+2023,9,14,23,0,118
+2023,9,15,0,0,98
+2023,9,15,1,0,73
+2023,9,15,2,0,46
+2023,9,15,3,0,105
+2023,9,15,4,0,20
+2023,9,15,5,0,0
+2023,9,15,6,0,0
+2023,9,15,7,0,0
+2023,9,15,8,0,0
+2023,9,15,9,0,0
+2023,9,15,10,0,0
+2023,9,15,11,0,0
+2023,9,15,12,0,0
+2023,9,15,13,0,0
+2023,9,15,14,0,0
+2023,9,15,15,0,0
+2023,9,15,16,0,31
+2023,9,15,17,0,149
+2023,9,15,18,0,254
+2023,9,15,19,0,347
+2023,9,15,20,0,418
+2023,9,15,21,0,363
+2023,9,15,22,0,466
+2023,9,15,23,0,441
+2023,9,16,0,0,385
+2023,9,16,1,0,303
+2023,9,16,2,0,204
+2023,9,16,3,0,99
+2023,9,16,4,0,13
+2023,9,16,5,0,0
+2023,9,16,6,0,0
+2023,9,16,7,0,0
+2023,9,16,8,0,0
+2023,9,16,9,0,0
+2023,9,16,10,0,0
+2023,9,16,11,0,0
+2023,9,16,12,0,0
+2023,9,16,13,0,0
+2023,9,16,14,0,0
+2023,9,16,15,0,0
+2023,9,16,16,0,27
+2023,9,16,17,0,83
+2023,9,16,18,0,155
+2023,9,16,19,0,224
+2023,9,16,20,0,280
+2023,9,16,21,0,313
+2023,9,16,22,0,390
+2023,9,16,23,0,346
+2023,9,17,0,0,298
+2023,9,17,1,0,230
+2023,9,17,2,0,151
+2023,9,17,3,0,65
+2023,9,17,4,0,0
+2023,9,17,5,0,0
+2023,9,17,6,0,0
+2023,9,17,7,0,0
+2023,9,17,8,0,0
+2023,9,17,9,0,0
+2023,9,17,10,0,0
+2023,9,17,11,0,0
+2023,9,17,12,0,0
+2023,9,17,13,0,0
+2023,9,17,14,0,0
+2023,9,17,15,0,0
+2023,9,17,16,0,24
+2023,9,17,17,0,19
+2023,9,17,18,0,31
+2023,9,17,19,0,45
+2023,9,17,20,0,57
+2023,9,17,21,0,70
+2023,9,17,22,0,102
+2023,9,17,23,0,94
+2023,9,18,0,0,46
+2023,9,18,1,0,34
+2023,9,18,2,0,22
+2023,9,18,3,0,38
+2023,9,18,4,0,0
+2023,9,18,5,0,0
+2023,9,18,6,0,0
+2023,9,18,7,0,0
+2023,9,18,8,0,0
+2023,9,18,9,0,0
+2023,9,18,10,0,0
+2023,9,18,11,0,0
+2023,9,18,12,0,0
+2023,9,18,13,0,0
+2023,9,18,14,0,0
+2023,9,18,15,0,0
+2023,9,18,16,0,20
+2023,9,18,17,0,25
+2023,9,18,18,0,49
+2023,9,18,19,0,74
+2023,9,18,20,0,95
+2023,9,18,21,0,108
+2023,9,18,22,0,266
+2023,9,18,23,0,232
+2023,9,19,0,0,194
+2023,9,19,1,0,141
+2023,9,19,2,0,84
+2023,9,19,3,0,54
+2023,9,19,4,0,0
+2023,9,19,5,0,0
+2023,9,19,6,0,0
+2023,9,19,7,0,0
+2023,9,19,8,0,0
+2023,9,19,9,0,0
+2023,9,19,10,0,0
+2023,9,19,11,0,0
+2023,9,19,12,0,0
+2023,9,19,13,0,0
+2023,9,19,14,0,0
+2023,9,19,15,0,0
+2023,9,19,16,0,37
+2023,9,19,17,0,131
+2023,9,19,18,0,103
+2023,9,19,19,0,155
+2023,9,19,20,0,283
+2023,9,19,21,0,317
+2023,9,19,22,0,280
+2023,9,19,23,0,421
+2023,9,20,0,0,364
+2023,9,20,1,0,281
+2023,9,20,2,0,181
+2023,9,20,3,0,78
+2023,9,20,4,0,0
+2023,9,20,5,0,0
+2023,9,20,6,0,0
+2023,9,20,7,0,0
+2023,9,20,8,0,0
+2023,9,20,9,0,0
+2023,9,20,10,0,0
+2023,9,20,11,0,0
+2023,9,20,12,0,0
+2023,9,20,13,0,0
+2023,9,20,14,0,0
+2023,9,20,15,0,0
+2023,9,20,16,0,14
+2023,9,20,17,0,21
+2023,9,20,18,0,36
+2023,9,20,19,0,53
+2023,9,20,20,0,68
+2023,9,20,21,0,78
+2023,9,20,22,0,49
+2023,9,20,23,0,108
+2023,9,21,0,0,89
+2023,9,21,1,0,64
+2023,9,21,2,0,39
+2023,9,21,3,0,30
+2023,9,21,4,0,0
+2023,9,21,5,0,0
+2023,9,21,6,0,0
+2023,9,21,7,0,0
+2023,9,21,8,0,0
+2023,9,21,9,0,0
+2023,9,21,10,0,0
+2023,9,21,11,0,0
+2023,9,21,12,0,0
+2023,9,21,13,0,0
+2023,9,21,14,0,0
+2023,9,21,15,0,0
+2023,9,21,16,0,28
+2023,9,21,17,0,116
+2023,9,21,18,0,111
+2023,9,21,19,0,169
+2023,9,21,20,0,216
+2023,9,21,21,0,246
+2023,9,21,22,0,237
+2023,9,21,23,0,175
+2023,9,22,0,0,143
+2023,9,22,1,0,101
+2023,9,22,2,0,57
+2023,9,22,3,0,19
+2023,9,22,4,0,0
+2023,9,22,5,0,0
+2023,9,22,6,0,0
+2023,9,22,7,0,0
+2023,9,22,8,0,0
+2023,9,22,9,0,0
+2023,9,22,10,0,0
+2023,9,22,11,0,0
+2023,9,22,12,0,0
+2023,9,22,13,0,0
+2023,9,22,14,0,0
+2023,9,22,15,0,0
+2023,9,22,16,0,12
+2023,9,22,17,0,14
+2023,9,22,18,0,29
+2023,9,22,19,0,44
+2023,9,22,20,0,57
+2023,9,22,21,0,168
+2023,9,22,22,0,218
+2023,9,22,23,0,214
+2023,9,23,0,0,176
+2023,9,23,1,0,228
+2023,9,23,2,0,137
+2023,9,23,3,0,59
+2023,9,23,4,0,0
+2023,9,23,5,0,0
+2023,9,23,6,0,0
+2023,9,23,7,0,0
+2023,9,23,8,0,0
+2023,9,23,9,0,0
+2023,9,23,10,0,0
+2023,9,23,11,0,0
+2023,9,23,12,0,0
+2023,9,23,13,0,0
+2023,9,23,14,0,0
+2023,9,23,15,0,0
+2023,9,23,16,0,13
+2023,9,23,17,0,73
+2023,9,23,18,0,211
+2023,9,23,19,0,302
+2023,9,23,20,0,371
+2023,9,23,21,0,411
+2023,9,23,22,0,418
+2023,9,23,23,0,294
+2023,9,24,0,0,245
+2023,9,24,1,0,178
+2023,9,24,2,0,102
+2023,9,24,3,0,55
+2023,9,24,4,0,0
+2023,9,24,5,0,0
+2023,9,24,6,0,0
+2023,9,24,7,0,0
+2023,9,24,8,0,0
+2023,9,24,9,0,0
+2023,9,24,10,0,0
+2023,9,24,11,0,0
+2023,9,24,12,0,0
+2023,9,24,13,0,0
+2023,9,24,14,0,0
+2023,9,24,15,0,0
+2023,9,24,16,0,10
+2023,9,24,17,0,75
+2023,9,24,18,0,87
+2023,9,24,19,0,137
+2023,9,24,20,0,178
+2023,9,24,21,0,276
+2023,9,24,22,0,282
+2023,9,24,23,0,387
+2023,9,25,0,0,329
+2023,9,25,1,0,246
+2023,9,25,2,0,147
+2023,9,25,3,0,50
+2023,9,25,4,0,0
+2023,9,25,5,0,0
+2023,9,25,6,0,0
+2023,9,25,7,0,0
+2023,9,25,8,0,0
+2023,9,25,9,0,0
+2023,9,25,10,0,0
+2023,9,25,11,0,0
+2023,9,25,12,0,0
+2023,9,25,13,0,0
+2023,9,25,14,0,0
+2023,9,25,15,0,0
+2023,9,25,16,0,18
+2023,9,25,17,0,103
+2023,9,25,18,0,204
+2023,9,25,19,0,295
+2023,9,25,20,0,365
+2023,9,25,21,0,404
+2023,9,25,22,0,411
+2023,9,25,23,0,384
+2023,9,26,0,0,326
+2023,9,26,1,0,242
+2023,9,26,2,0,142
+2023,9,26,3,0,45
+2023,9,26,4,0,0
+2023,9,26,5,0,0
+2023,9,26,6,0,0
+2023,9,26,7,0,0
+2023,9,26,8,0,0
+2023,9,26,9,0,0
+2023,9,26,10,0,0
+2023,9,26,11,0,0
+2023,9,26,12,0,0
+2023,9,26,13,0,0
+2023,9,26,14,0,0
+2023,9,26,15,0,0
+2023,9,26,16,0,14
+2023,9,26,17,0,95
+2023,9,26,18,0,195
+2023,9,26,19,0,286
+2023,9,26,20,0,294
+2023,9,26,21,0,333
+2023,9,26,22,0,400
+2023,9,26,23,0,305
+2023,9,27,0,0,314
+2023,9,27,1,0,231
+2023,9,27,2,0,132
+2023,9,27,3,0,7
+2023,9,27,4,0,0
+2023,9,27,5,0,0
+2023,9,27,6,0,0
+2023,9,27,7,0,0
+2023,9,27,8,0,0
+2023,9,27,9,0,0
+2023,9,27,10,0,0
+2023,9,27,11,0,0
+2023,9,27,12,0,0
+2023,9,27,13,0,0
+2023,9,27,14,0,0
+2023,9,27,15,0,0
+2023,9,27,16,0,0
+2023,9,27,17,0,23
+2023,9,27,18,0,52
+2023,9,27,19,0,83
+2023,9,27,20,0,110
+2023,9,27,21,0,144
+2023,9,27,22,0,207
+2023,9,27,23,0,189
+2023,9,28,0,0,153
+2023,9,28,1,0,106
+2023,9,28,2,0,25
+2023,9,28,3,0,17
+2023,9,28,4,0,0
+2023,9,28,5,0,0
+2023,9,28,6,0,0
+2023,9,28,7,0,0
+2023,9,28,8,0,0
+2023,9,28,9,0,0
+2023,9,28,10,0,0
+2023,9,28,11,0,0
+2023,9,28,12,0,0
+2023,9,28,13,0,0
+2023,9,28,14,0,0
+2023,9,28,15,0,0
+2023,9,28,16,0,0
+2023,9,28,17,0,30
+2023,9,28,18,0,139
+2023,9,28,19,0,216
+2023,9,28,20,0,279
+2023,9,28,21,0,317
+2023,9,28,22,0,387
+2023,9,28,23,0,360
+2023,9,29,0,0,301
+2023,9,29,1,0,217
+2023,9,29,2,0,120
+2023,9,29,3,0,30
+2023,9,29,4,0,0
+2023,9,29,5,0,0
+2023,9,29,6,0,0
+2023,9,29,7,0,0
+2023,9,29,8,0,0
+2023,9,29,9,0,0
+2023,9,29,10,0,0
+2023,9,29,11,0,0
+2023,9,29,12,0,0
+2023,9,29,13,0,0
+2023,9,29,14,0,0
+2023,9,29,15,0,0
+2023,9,29,16,0,0
+2023,9,29,17,0,65
+2023,9,29,18,0,91
+2023,9,29,19,0,144
+2023,9,29,20,0,188
+2023,9,29,21,0,263
+2023,9,29,22,0,268
+2023,9,29,23,0,279
+2023,9,30,0,0,265
+2023,9,30,1,0,186
+2023,9,30,2,0,99
+2023,9,30,3,0,23
+2023,9,30,4,0,0
+2023,9,30,5,0,0
+2023,9,30,6,0,0
+2023,9,30,7,0,0
+2023,9,30,8,0,0
+2023,9,30,9,0,0
+2023,9,30,10,0,0
+2023,9,30,11,0,0
+2023,9,30,12,0,0
+2023,9,30,13,0,0
+2023,9,30,14,0,0
+2023,9,30,15,0,0
+2023,9,30,16,0,0
+2023,9,30,17,0,74
+2023,9,30,18,0,170
+2023,9,30,19,0,259
+2023,9,30,20,0,327
+2023,9,30,21,0,366
+2023,9,30,22,0,372
+2023,9,30,23,0,344
+2023,10,1,0,0,285
+2023,10,1,1,0,202
+2023,10,1,2,0,91
+2023,10,1,3,0,16
+2023,10,1,4,0,0
+2023,10,1,5,0,0
+2023,10,1,6,0,0
+2023,10,1,7,0,0
+2023,10,1,8,0,0
+2023,10,1,9,0,0
+2023,10,1,10,0,0
+2023,10,1,11,0,0
+2023,10,1,12,0,0
+2023,10,1,13,0,0
+2023,10,1,14,0,0
+2023,10,1,15,0,0
+2023,10,1,16,0,0
+2023,10,1,17,0,43
+2023,10,1,18,0,50
+2023,10,1,19,0,84
+2023,10,1,20,0,93
+2023,10,1,21,0,108
+2023,10,1,22,0,206
+2023,10,1,23,0,187
+2023,10,2,0,0,114
+2023,10,2,1,0,76
+2023,10,2,2,0,38
+2023,10,2,3,0,9
+2023,10,2,4,0,0
+2023,10,2,5,0,0
+2023,10,2,6,0,0
+2023,10,2,7,0,0
+2023,10,2,8,0,0
+2023,10,2,9,0,0
+2023,10,2,10,0,0
+2023,10,2,11,0,0
+2023,10,2,12,0,0
+2023,10,2,13,0,0
+2023,10,2,14,0,0
+2023,10,2,15,0,0
+2023,10,2,16,0,0
+2023,10,2,17,0,3
+2023,10,2,18,0,7
+2023,10,2,19,0,11
+2023,10,2,20,0,14
+2023,10,2,21,0,234
+2023,10,2,22,0,238
+2023,10,2,23,0,240
+2023,10,3,0,0,194
+2023,10,3,1,0,130
+2023,10,3,2,0,63
+2023,10,3,3,0,15
+2023,10,3,4,0,0
+2023,10,3,5,0,0
+2023,10,3,6,0,0
+2023,10,3,7,0,0
+2023,10,3,8,0,0
+2023,10,3,9,0,0
+2023,10,3,10,0,0
+2023,10,3,11,0,0
+2023,10,3,12,0,0
+2023,10,3,13,0,0
+2023,10,3,14,0,0
+2023,10,3,15,0,0
+2023,10,3,16,0,0
+2023,10,3,17,0,43
+2023,10,3,18,0,30
+2023,10,3,19,0,47
+2023,10,3,20,0,62
+2023,10,3,21,0,71
+2023,10,3,22,0,28
+2023,10,3,23,0,25
+2023,10,4,0,0,20
+2023,10,4,1,0,13
+2023,10,4,2,0,7
+2023,10,4,3,0,0
+2023,10,4,4,0,0
+2023,10,4,5,0,0
+2023,10,4,6,0,0
+2023,10,4,7,0,0
+2023,10,4,8,0,0
+2023,10,4,9,0,0
+2023,10,4,10,0,0
+2023,10,4,11,0,0
+2023,10,4,12,0,0
+2023,10,4,13,0,0
+2023,10,4,14,0,0
+2023,10,4,15,0,0
+2023,10,4,16,0,0
+2023,10,4,17,0,58
+2023,10,4,18,0,150
+2023,10,4,19,0,238
+2023,10,4,20,0,305
+2023,10,4,21,0,199
+2023,10,4,22,0,202
+2023,10,4,23,0,207
+2023,10,5,0,0,163
+2023,10,5,1,0,176
+2023,10,5,2,0,83
+2023,10,5,3,0,0
+2023,10,5,4,0,0
+2023,10,5,5,0,0
+2023,10,5,6,0,0
+2023,10,5,7,0,0
+2023,10,5,8,0,0
+2023,10,5,9,0,0
+2023,10,5,10,0,0
+2023,10,5,11,0,0
+2023,10,5,12,0,0
+2023,10,5,13,0,0
+2023,10,5,14,0,0
+2023,10,5,15,0,0
+2023,10,5,16,0,0
+2023,10,5,17,0,53
+2023,10,5,18,0,102
+2023,10,5,19,0,169
+2023,10,5,20,0,220
+2023,10,5,21,0,249
+2023,10,5,22,0,150
+2023,10,5,23,0,73
+2023,10,6,0,0,76
+2023,10,6,1,0,47
+2023,10,6,2,0,20
+2023,10,6,3,0,0
+2023,10,6,4,0,0
+2023,10,6,5,0,0
+2023,10,6,6,0,0
+2023,10,6,7,0,0
+2023,10,6,8,0,0
+2023,10,6,9,0,0
+2023,10,6,10,0,0
+2023,10,6,11,0,0
+2023,10,6,12,0,0
+2023,10,6,13,0,0
+2023,10,6,14,0,0
+2023,10,6,15,0,0
+2023,10,6,16,0,0
+2023,10,6,17,0,45
+2023,10,6,18,0,56
+2023,10,6,19,0,101
+2023,10,6,20,0,139
+2023,10,6,21,0,204
+2023,10,6,22,0,127
+2023,10,6,23,0,113
+2023,10,7,0,0,190
+2023,10,7,1,0,123
+2023,10,7,2,0,52
+2023,10,7,3,0,0
+2023,10,7,4,0,0
+2023,10,7,5,0,0
+2023,10,7,6,0,0
+2023,10,7,7,0,0
+2023,10,7,8,0,0
+2023,10,7,9,0,0
+2023,10,7,10,0,0
+2023,10,7,11,0,0
+2023,10,7,12,0,0
+2023,10,7,13,0,0
+2023,10,7,14,0,0
+2023,10,7,15,0,0
+2023,10,7,16,0,0
+2023,10,7,17,0,14
+2023,10,7,18,0,44
+2023,10,7,19,0,79
+2023,10,7,20,0,110
+2023,10,7,21,0,129
+2023,10,7,22,0,83
+2023,10,7,23,0,245
+2023,10,8,0,0,196
+2023,10,8,1,0,126
+2023,10,8,2,0,52
+2023,10,8,3,0,0
+2023,10,8,4,0,0
+2023,10,8,5,0,0
+2023,10,8,6,0,0
+2023,10,8,7,0,0
+2023,10,8,8,0,0
+2023,10,8,9,0,0
+2023,10,8,10,0,0
+2023,10,8,11,0,0
+2023,10,8,12,0,0
+2023,10,8,13,0,0
+2023,10,8,14,0,0
+2023,10,8,15,0,0
+2023,10,8,16,0,0
+2023,10,8,17,0,29
+2023,10,8,18,0,34
+2023,10,8,19,0,55
+2023,10,8,20,0,159
+2023,10,8,21,0,185
+2023,10,8,22,0,95
+2023,10,8,23,0,84
+2023,10,9,0,0,57
+2023,10,9,1,0,37
+2023,10,9,2,0,18
+2023,10,9,3,0,0
+2023,10,9,4,0,0
+2023,10,9,5,0,0
+2023,10,9,6,0,0
+2023,10,9,7,0,0
+2023,10,9,8,0,0
+2023,10,9,9,0,0
+2023,10,9,10,0,0
+2023,10,9,11,0,0
+2023,10,9,12,0,0
+2023,10,9,13,0,0
+2023,10,9,14,0,0
+2023,10,9,15,0,0
+2023,10,9,16,0,0
+2023,10,9,17,0,27
+2023,10,9,18,0,98
+2023,10,9,19,0,170
+2023,10,9,20,0,227
+2023,10,9,21,0,166
+2023,10,9,22,0,154
+2023,10,9,23,0,143
+2023,10,10,0,0,109
+2023,10,10,1,0,67
+2023,10,10,2,0,27
+2023,10,10,3,0,0
+2023,10,10,4,0,0
+2023,10,10,5,0,0
+2023,10,10,6,0,0
+2023,10,10,7,0,0
+2023,10,10,8,0,0
+2023,10,10,9,0,0
+2023,10,10,10,0,0
+2023,10,10,11,0,0
+2023,10,10,12,0,0
+2023,10,10,13,0,0
+2023,10,10,14,0,0
+2023,10,10,15,0,0
+2023,10,10,16,0,0
+2023,10,10,17,0,13
+2023,10,10,18,0,23
+2023,10,10,19,0,41
+2023,10,10,20,0,57
+2023,10,10,21,0,67
+2023,10,10,22,0,21
+2023,10,10,23,0,20
+2023,10,11,0,0,16
+2023,10,11,1,0,10
+2023,10,11,2,0,5
+2023,10,11,3,0,0
+2023,10,11,4,0,0
+2023,10,11,5,0,0
+2023,10,11,6,0,0
+2023,10,11,7,0,0
+2023,10,11,8,0,0
+2023,10,11,9,0,0
+2023,10,11,10,0,0
+2023,10,11,11,0,0
+2023,10,11,12,0,0
+2023,10,11,13,0,0
+2023,10,11,14,0,0
+2023,10,11,15,0,0
+2023,10,11,16,0,0
+2023,10,11,17,0,11
+2023,10,11,18,0,46
+2023,10,11,19,0,89
+2023,10,11,20,0,127
+2023,10,11,21,0,142
+2023,10,11,22,0,86
+2023,10,11,23,0,76
+2023,10,12,0,0,38
+2023,10,12,1,0,31
+2023,10,12,2,0,11
+2023,10,12,3,0,0
+2023,10,12,4,0,0
+2023,10,12,5,0,0
+2023,10,12,6,0,0
+2023,10,12,7,0,0
+2023,10,12,8,0,0
+2023,10,12,9,0,0
+2023,10,12,10,0,0
+2023,10,12,11,0,0
+2023,10,12,12,0,0
+2023,10,12,13,0,0
+2023,10,12,14,0,0
+2023,10,12,15,0,0
+2023,10,12,16,0,0
+2023,10,12,17,0,15
+2023,10,12,18,0,38
+2023,10,12,19,0,67
+2023,10,12,20,0,92
+2023,10,12,21,0,108
+2023,10,12,22,0,149
+2023,10,12,23,0,191
+2023,10,13,0,0,122
+2023,10,13,1,0,71
+2023,10,13,2,0,23
+2023,10,13,3,0,0
+2023,10,13,4,0,0
+2023,10,13,5,0,0
+2023,10,13,6,0,0
+2023,10,13,7,0,0
+2023,10,13,8,0,0
+2023,10,13,9,0,0
+2023,10,13,10,0,0
+2023,10,13,11,0,0
+2023,10,13,12,0,0
+2023,10,13,13,0,0
+2023,10,13,14,0,0
+2023,10,13,15,0,0
+2023,10,13,16,0,0
+2023,10,13,17,0,14
+2023,10,13,18,0,97
+2023,10,13,19,0,178
+2023,10,13,20,0,242
+2023,10,13,21,0,277
+2023,10,13,22,0,283
+2023,10,13,23,0,254
+2023,10,14,0,0,200
+2023,10,14,1,0,120
+2023,10,14,2,0,36
+2023,10,14,3,0,0
+2023,10,14,4,0,0
+2023,10,14,5,0,0
+2023,10,14,6,0,0
+2023,10,14,7,0,0
+2023,10,14,8,0,0
+2023,10,14,9,0,0
+2023,10,14,10,0,0
+2023,10,14,11,0,0
+2023,10,14,12,0,0
+2023,10,14,13,0,0
+2023,10,14,14,0,0
+2023,10,14,15,0,0
+2023,10,14,16,0,0
+2023,10,14,17,0,9
+2023,10,14,18,0,51
+2023,10,14,19,0,98
+2023,10,14,20,0,138
+2023,10,14,21,0,146
+2023,10,14,22,0,179
+2023,10,14,23,0,122
+2023,10,15,0,0,74
+2023,10,15,1,0,42
+2023,10,15,2,0,12
+2023,10,15,3,0,0
+2023,10,15,4,0,0
+2023,10,15,5,0,0
+2023,10,15,6,0,0
+2023,10,15,7,0,0
+2023,10,15,8,0,0
+2023,10,15,9,0,0
+2023,10,15,10,0,0
+2023,10,15,11,0,0
+2023,10,15,12,0,0
+2023,10,15,13,0,0
+2023,10,15,14,0,0
+2023,10,15,15,0,0
+2023,10,15,16,0,0
+2023,10,15,17,0,5
+2023,10,15,18,0,86
+2023,10,15,19,0,166
+2023,10,15,20,0,228
+2023,10,15,21,0,262
+2023,10,15,22,0,266
+2023,10,15,23,0,138
+2023,10,16,0,0,180
+2023,10,16,1,0,103
+2023,10,16,2,0,27
+2023,10,16,3,0,0
+2023,10,16,4,0,0
+2023,10,16,5,0,0
+2023,10,16,6,0,0
+2023,10,16,7,0,0
+2023,10,16,8,0,0
+2023,10,16,9,0,0
+2023,10,16,10,0,0
+2023,10,16,11,0,0
+2023,10,16,12,0,0
+2023,10,16,13,0,0
+2023,10,16,14,0,0
+2023,10,16,15,0,0
+2023,10,16,16,0,0
+2023,10,16,17,0,0
+2023,10,16,18,0,63
+2023,10,16,19,0,125
+2023,10,16,20,0,174
+2023,10,16,21,0,162
+2023,10,16,22,0,66
+2023,10,16,23,0,58
+2023,10,17,0,0,41
+2023,10,17,1,0,22
+2023,10,17,2,0,5
+2023,10,17,3,0,0
+2023,10,17,4,0,0
+2023,10,17,5,0,0
+2023,10,17,6,0,0
+2023,10,17,7,0,0
+2023,10,17,8,0,0
+2023,10,17,9,0,0
+2023,10,17,10,0,0
+2023,10,17,11,0,0
+2023,10,17,12,0,0
+2023,10,17,13,0,0
+2023,10,17,14,0,0
+2023,10,17,15,0,0
+2023,10,17,16,0,0
+2023,10,17,17,0,0
+2023,10,17,18,0,74
+2023,10,17,19,0,148
+2023,10,17,20,0,209
+2023,10,17,21,0,242
+2023,10,17,22,0,245
+2023,10,17,23,0,92
+2023,10,18,0,0,65
+2023,10,18,1,0,33
+2023,10,18,2,0,5
+2023,10,18,3,0,0
+2023,10,18,4,0,0
+2023,10,18,5,0,0
+2023,10,18,6,0,0
+2023,10,18,7,0,0
+2023,10,18,8,0,0
+2023,10,18,9,0,0
+2023,10,18,10,0,0
+2023,10,18,11,0,0
+2023,10,18,12,0,0
+2023,10,18,13,0,0
+2023,10,18,14,0,0
+2023,10,18,15,0,0
+2023,10,18,16,0,0
+2023,10,18,17,0,0
+2023,10,18,18,0,11
+2023,10,18,19,0,22
+2023,10,18,20,0,33
+2023,10,18,21,0,17
+2023,10,18,22,0,17
+2023,10,18,23,0,34
+2023,10,19,0,0,39
+2023,10,19,1,0,15
+2023,10,19,2,0,3
+2023,10,19,3,0,0
+2023,10,19,4,0,0
+2023,10,19,5,0,0
+2023,10,19,6,0,0
+2023,10,19,7,0,0
+2023,10,19,8,0,0
+2023,10,19,9,0,0
+2023,10,19,10,0,0
+2023,10,19,11,0,0
+2023,10,19,12,0,0
+2023,10,19,13,0,0
+2023,10,19,14,0,0
+2023,10,19,15,0,0
+2023,10,19,16,0,0
+2023,10,19,17,0,0
+2023,10,19,18,0,17
+2023,10,19,19,0,36
+2023,10,19,20,0,53
+2023,10,19,21,0,66
+2023,10,19,22,0,68
+2023,10,19,23,0,224
+2023,10,20,0,0,161
+2023,10,20,1,0,83
+2023,10,20,2,0,0
+2023,10,20,3,0,0
+2023,10,20,4,0,0
+2023,10,20,5,0,0
+2023,10,20,6,0,0
+2023,10,20,7,0,0
+2023,10,20,8,0,0
+2023,10,20,9,0,0
+2023,10,20,10,0,0
+2023,10,20,11,0,0
+2023,10,20,12,0,0
+2023,10,20,13,0,0
+2023,10,20,14,0,0
+2023,10,20,15,0,0
+2023,10,20,16,0,0
+2023,10,20,17,0,0
+2023,10,20,18,0,25
+2023,10,20,19,0,59
+2023,10,20,20,0,118
+2023,10,20,21,0,143
+2023,10,20,22,0,36
+2023,10,20,23,0,31
+2023,10,21,0,0,68
+2023,10,21,1,0,32
+2023,10,21,2,0,0
+2023,10,21,3,0,0
+2023,10,21,4,0,0
+2023,10,21,5,0,0
+2023,10,21,6,0,0
+2023,10,21,7,0,0
+2023,10,21,8,0,0
+2023,10,21,9,0,0
+2023,10,21,10,0,0
+2023,10,21,11,0,0
+2023,10,21,12,0,0
+2023,10,21,13,0,0
+2023,10,21,14,0,0
+2023,10,21,15,0,0
+2023,10,21,16,0,0
+2023,10,21,17,0,0
+2023,10,21,18,0,21
+2023,10,21,19,0,49
+2023,10,21,20,0,76
+2023,10,21,21,0,143
+2023,10,21,22,0,78
+2023,10,21,23,0,66
+2023,10,22,0,0,45
+2023,10,22,1,0,21
+2023,10,22,2,0,0
+2023,10,22,3,0,0
+2023,10,22,4,0,0
+2023,10,22,5,0,0
+2023,10,22,6,0,0
+2023,10,22,7,0,0
+2023,10,22,8,0,0
+2023,10,22,9,0,0
+2023,10,22,10,0,0
+2023,10,22,11,0,0
+2023,10,22,12,0,0
+2023,10,22,13,0,0
+2023,10,22,14,0,0
+2023,10,22,15,0,0
+2023,10,22,16,0,0
+2023,10,22,17,0,0
+2023,10,22,18,0,55
+2023,10,22,19,0,129
+2023,10,22,20,0,190
+2023,10,22,21,0,224
+2023,10,22,22,0,30
+2023,10,22,23,0,27
+2023,10,23,0,0,33
+2023,10,23,1,0,16
+2023,10,23,2,0,0
+2023,10,23,3,0,0
+2023,10,23,4,0,0
+2023,10,23,5,0,0
+2023,10,23,6,0,0
+2023,10,23,7,0,0
+2023,10,23,8,0,0
+2023,10,23,9,0,0
+2023,10,23,10,0,0
+2023,10,23,11,0,0
+2023,10,23,12,0,0
+2023,10,23,13,0,0
+2023,10,23,14,0,0
+2023,10,23,15,0,0
+2023,10,23,16,0,0
+2023,10,23,17,0,0
+2023,10,23,18,0,19
+2023,10,23,19,0,50
+2023,10,23,20,0,78
+2023,10,23,21,0,151
+2023,10,23,22,0,152
+2023,10,23,23,0,71
+2023,10,24,0,0,47
+2023,10,24,1,0,20
+2023,10,24,2,0,0
+2023,10,24,3,0,0
+2023,10,24,4,0,0
+2023,10,24,5,0,0
+2023,10,24,6,0,0
+2023,10,24,7,0,0
+2023,10,24,8,0,0
+2023,10,24,9,0,0
+2023,10,24,10,0,0
+2023,10,24,11,0,0
+2023,10,24,12,0,0
+2023,10,24,13,0,0
+2023,10,24,14,0,0
+2023,10,24,15,0,0
+2023,10,24,16,0,0
+2023,10,24,17,0,0
+2023,10,24,18,0,10
+2023,10,24,19,0,23
+2023,10,24,20,0,36
+2023,10,24,21,0,44
+2023,10,24,22,0,59
+2023,10,24,23,0,47
+2023,10,25,0,0,32
+2023,10,25,1,0,14
+2023,10,25,2,0,0
+2023,10,25,3,0,0
+2023,10,25,4,0,0
+2023,10,25,5,0,0
+2023,10,25,6,0,0
+2023,10,25,7,0,0
+2023,10,25,8,0,0
+2023,10,25,9,0,0
+2023,10,25,10,0,0
+2023,10,25,11,0,0
+2023,10,25,12,0,0
+2023,10,25,13,0,0
+2023,10,25,14,0,0
+2023,10,25,15,0,0
+2023,10,25,16,0,0
+2023,10,25,17,0,0
+2023,10,25,18,0,33
+2023,10,25,19,0,91
+2023,10,25,20,0,177
+2023,10,25,21,0,211
+2023,10,25,22,0,213
+2023,10,25,23,0,184
+2023,10,26,0,0,127
+2023,10,26,1,0,54
+2023,10,26,2,0,0
+2023,10,26,3,0,0
+2023,10,26,4,0,0
+2023,10,26,5,0,0
+2023,10,26,6,0,0
+2023,10,26,7,0,0
+2023,10,26,8,0,0
+2023,10,26,9,0,0
+2023,10,26,10,0,0
+2023,10,26,11,0,0
+2023,10,26,12,0,0
+2023,10,26,13,0,0
+2023,10,26,14,0,0
+2023,10,26,15,0,0
+2023,10,26,16,0,0
+2023,10,26,17,0,0
+2023,10,26,18,0,24
+2023,10,26,19,0,69
+2023,10,26,20,0,109
+2023,10,26,21,0,109
+2023,10,26,22,0,111
+2023,10,26,23,0,93
+2023,10,27,0,0,59
+2023,10,27,1,0,22
+2023,10,27,2,0,0
+2023,10,27,3,0,0
+2023,10,27,4,0,0
+2023,10,27,5,0,0
+2023,10,27,6,0,0
+2023,10,27,7,0,0
+2023,10,27,8,0,0
+2023,10,27,9,0,0
+2023,10,27,10,0,0
+2023,10,27,11,0,0
+2023,10,27,12,0,0
+2023,10,27,13,0,0
+2023,10,27,14,0,0
+2023,10,27,15,0,0
+2023,10,27,16,0,0
+2023,10,27,17,0,0
+2023,10,27,18,0,36
+2023,10,27,19,0,103
+2023,10,27,20,0,161
+2023,10,27,21,0,193
+2023,10,27,22,0,194
+2023,10,27,23,0,165
+2023,10,28,0,0,111
+2023,10,28,1,0,30
+2023,10,28,2,0,0
+2023,10,28,3,0,0
+2023,10,28,4,0,0
+2023,10,28,5,0,0
+2023,10,28,6,0,0
+2023,10,28,7,0,0
+2023,10,28,8,0,0
+2023,10,28,9,0,0
+2023,10,28,10,0,0
+2023,10,28,11,0,0
+2023,10,28,12,0,0
+2023,10,28,13,0,0
+2023,10,28,14,0,0
+2023,10,28,15,0,0
+2023,10,28,16,0,0
+2023,10,28,17,0,0
+2023,10,28,18,0,20
+2023,10,28,19,0,67
+2023,10,28,20,0,109
+2023,10,28,21,0,184
+2023,10,28,22,0,186
+2023,10,28,23,0,158
+2023,10,29,0,0,105
+2023,10,29,1,0,39
+2023,10,29,2,0,0
+2023,10,29,3,0,0
+2023,10,29,4,0,0
+2023,10,29,5,0,0
+2023,10,29,6,0,0
+2023,10,29,7,0,0
+2023,10,29,8,0,0
+2023,10,29,9,0,0
+2023,10,29,10,0,0
+2023,10,29,11,0,0
+2023,10,29,12,0,0
+2023,10,29,13,0,0
+2023,10,29,14,0,0
+2023,10,29,15,0,0
+2023,10,29,16,0,0
+2023,10,29,17,0,0
+2023,10,29,18,0,16
+2023,10,29,19,0,56
+2023,10,29,20,0,91
+2023,10,29,21,0,113
+2023,10,29,22,0,110
+2023,10,29,23,0,58
+2023,10,30,0,0,59
+2023,10,30,1,0,20
+2023,10,30,2,0,0
+2023,10,30,3,0,0
+2023,10,30,4,0,0
+2023,10,30,5,0,0
+2023,10,30,6,0,0
+2023,10,30,7,0,0
+2023,10,30,8,0,0
+2023,10,30,9,0,0
+2023,10,30,10,0,0
+2023,10,30,11,0,0
+2023,10,30,12,0,0
+2023,10,30,13,0,0
+2023,10,30,14,0,0
+2023,10,30,15,0,0
+2023,10,30,16,0,0
+2023,10,30,17,0,0
+2023,10,30,18,0,8
+2023,10,30,19,0,36
+2023,10,30,20,0,48
+2023,10,30,21,0,71
+2023,10,30,22,0,79
+2023,10,30,23,0,64
+2023,10,31,0,0,40
+2023,10,31,1,0,12
+2023,10,31,2,0,0
+2023,10,31,3,0,0
+2023,10,31,4,0,0
+2023,10,31,5,0,0
+2023,10,31,6,0,0
+2023,10,31,7,0,0
+2023,10,31,8,0,0
+2023,10,31,9,0,0
+2023,10,31,10,0,0
+2023,10,31,11,0,0
+2023,10,31,12,0,0
+2023,10,31,13,0,0
+2023,10,31,14,0,0
+2023,10,31,15,0,0
+2023,10,31,16,0,0
+2023,10,31,17,0,0
+2023,10,31,18,0,20
+2023,10,31,19,0,77
+2023,10,31,20,0,131
+2023,10,31,21,0,161
+2023,10,31,22,0,164
+2023,10,31,23,0,65
+2023,11,1,0,0,38
+2023,11,1,1,0,11
+2023,11,1,2,0,0
+2023,11,1,3,0,0
+2023,11,1,4,0,0
+2023,11,1,5,0,0
+2023,11,1,6,0,0
+2023,11,1,7,0,0
+2023,11,1,8,0,0
+2023,11,1,9,0,0
+2023,11,1,10,0,0
+2023,11,1,11,0,0
+2023,11,1,12,0,0
+2023,11,1,13,0,0
+2023,11,1,14,0,0
+2023,11,1,15,0,0
+2023,11,1,16,0,0
+2023,11,1,17,0,0
+2023,11,1,18,0,18
+2023,11,1,19,0,74
+2023,11,1,20,0,127
+2023,11,1,21,0,157
+2023,11,1,22,0,160
+2023,11,1,23,0,63
+2023,11,2,0,0,37
+2023,11,2,1,0,9
+2023,11,2,2,0,0
+2023,11,2,3,0,0
+2023,11,2,4,0,0
+2023,11,2,5,0,0
+2023,11,2,6,0,0
+2023,11,2,7,0,0
+2023,11,2,8,0,0
+2023,11,2,9,0,0
+2023,11,2,10,0,0
+2023,11,2,11,0,0
+2023,11,2,12,0,0
+2023,11,2,13,0,0
+2023,11,2,14,0,0
+2023,11,2,15,0,0
+2023,11,2,16,0,0
+2023,11,2,17,0,0
+2023,11,2,18,0,6
+2023,11,2,19,0,47
+2023,11,2,20,0,88
+2023,11,2,21,0,86
+2023,11,2,22,0,117
+2023,11,2,23,0,81
+2023,11,3,0,0,46
+2023,11,3,1,0,9
+2023,11,3,2,0,0
+2023,11,3,3,0,0
+2023,11,3,4,0,0
+2023,11,3,5,0,0
+2023,11,3,6,0,0
+2023,11,3,7,0,0
+2023,11,3,8,0,0
+2023,11,3,9,0,0
+2023,11,3,10,0,0
+2023,11,3,11,0,0
+2023,11,3,12,0,0
+2023,11,3,13,0,0
+2023,11,3,14,0,0
+2023,11,3,15,0,0
+2023,11,3,16,0,0
+2023,11,3,17,0,0
+2023,11,3,18,0,0
+2023,11,3,19,0,18
+2023,11,3,20,0,32
+2023,11,3,21,0,41
+2023,11,3,22,0,151
+2023,11,3,23,0,124
+2023,11,4,0,0,26
+2023,11,4,1,0,6
+2023,11,4,2,0,0
+2023,11,4,3,0,0
+2023,11,4,4,0,0
+2023,11,4,5,0,0
+2023,11,4,6,0,0
+2023,11,4,7,0,0
+2023,11,4,8,0,0
+2023,11,4,9,0,0
+2023,11,4,10,0,0
+2023,11,4,11,0,0
+2023,11,4,12,0,0
+2023,11,4,13,0,0
+2023,11,4,14,0,0
+2023,11,4,15,0,0
+2023,11,4,16,0,0
+2023,11,4,17,0,0
+2023,11,4,18,0,0
+2023,11,4,19,0,30
+2023,11,4,20,0,13
+2023,11,4,21,0,16
+2023,11,4,22,0,23
+2023,11,4,23,0,114
+2023,11,5,0,0,65
+2023,11,5,1,0,15
+2023,11,5,2,0,0
+2023,11,5,3,0,0
+2023,11,5,4,0,0
+2023,11,5,5,0,0
+2023,11,5,6,0,0
+2023,11,5,7,0,0
+2023,11,5,8,0,0
+2023,11,5,9,0,0
+2023,11,5,10,0,0
+2023,11,5,11,0,0
+2023,11,5,12,0,0
+2023,11,5,13,0,0
+2023,11,5,14,0,0
+2023,11,5,15,0,0
+2023,11,5,16,0,0
+2023,11,5,17,0,0
+2023,11,5,18,0,0
+2023,11,5,19,0,56
+2023,11,5,20,0,106
+2023,11,5,21,0,135
+2023,11,5,22,0,91
+2023,11,5,23,0,73
+2023,11,6,0,0,40
+2023,11,6,1,0,0
+2023,11,6,2,0,0
+2023,11,6,3,0,0
+2023,11,6,4,0,0
+2023,11,6,5,0,0
+2023,11,6,6,0,0
+2023,11,6,7,0,0
+2023,11,6,8,0,0
+2023,11,6,9,0,0
+2023,11,6,10,0,0
+2023,11,6,11,0,0
+2023,11,6,12,0,0
+2023,11,6,13,0,0
+2023,11,6,14,0,0
+2023,11,6,15,0,0
+2023,11,6,16,0,0
+2023,11,6,17,0,0
+2023,11,6,18,0,0
+2023,11,6,19,0,7
+2023,11,6,20,0,12
+2023,11,6,21,0,15
+2023,11,6,22,0,17
+2023,11,6,23,0,7
+2023,11,7,0,0,5
+2023,11,7,1,0,0
+2023,11,7,2,0,0
+2023,11,7,3,0,0
+2023,11,7,4,0,0
+2023,11,7,5,0,0
+2023,11,7,6,0,0
+2023,11,7,7,0,0
+2023,11,7,8,0,0
+2023,11,7,9,0,0
+2023,11,7,10,0,0
+2023,11,7,11,0,0
+2023,11,7,12,0,0
+2023,11,7,13,0,0
+2023,11,7,14,0,0
+2023,11,7,15,0,0
+2023,11,7,16,0,0
+2023,11,7,17,0,0
+2023,11,7,18,0,0
+2023,11,7,19,0,20
+2023,11,7,20,0,36
+2023,11,7,21,0,8
+2023,11,7,22,0,42
+2023,11,7,23,0,102
+2023,11,8,0,0,55
+2023,11,8,1,0,0
+2023,11,8,2,0,0
+2023,11,8,3,0,0
+2023,11,8,4,0,0
+2023,11,8,5,0,0
+2023,11,8,6,0,0
+2023,11,8,7,0,0
+2023,11,8,8,0,0
+2023,11,8,9,0,0
+2023,11,8,10,0,0
+2023,11,8,11,0,0
+2023,11,8,12,0,0
+2023,11,8,13,0,0
+2023,11,8,14,0,0
+2023,11,8,15,0,0
+2023,11,8,16,0,0
+2023,11,8,17,0,0
+2023,11,8,18,0,0
+2023,11,8,19,0,24
+2023,11,8,20,0,49
+2023,11,8,21,0,64
+2023,11,8,22,0,49
+2023,11,8,23,0,39
+2023,11,9,0,0,28
+2023,11,9,1,0,0
+2023,11,9,2,0,0
+2023,11,9,3,0,0
+2023,11,9,4,0,0
+2023,11,9,5,0,0
+2023,11,9,6,0,0
+2023,11,9,7,0,0
+2023,11,9,8,0,0
+2023,11,9,9,0,0
+2023,11,9,10,0,0
+2023,11,9,11,0,0
+2023,11,9,12,0,0
+2023,11,9,13,0,0
+2023,11,9,14,0,0
+2023,11,9,15,0,0
+2023,11,9,16,0,0
+2023,11,9,17,0,0
+2023,11,9,18,0,0
+2023,11,9,19,0,26
+2023,11,9,20,0,6
+2023,11,9,21,0,7
+2023,11,9,22,0,7
+2023,11,9,23,0,61
+2023,11,10,0,0,31
+2023,11,10,1,0,0
+2023,11,10,2,0,0
+2023,11,10,3,0,0
+2023,11,10,4,0,0
+2023,11,10,5,0,0
+2023,11,10,6,0,0
+2023,11,10,7,0,0
+2023,11,10,8,0,0
+2023,11,10,9,0,0
+2023,11,10,10,0,0
+2023,11,10,11,0,0
+2023,11,10,12,0,0
+2023,11,10,13,0,0
+2023,11,10,14,0,0
+2023,11,10,15,0,0
+2023,11,10,16,0,0
+2023,11,10,17,0,0
+2023,11,10,18,0,0
+2023,11,10,19,0,16
+2023,11,10,20,0,36
+2023,11,10,21,0,50
+2023,11,10,22,0,43
+2023,11,10,23,0,33
+2023,11,11,0,0,16
+2023,11,11,1,0,0
+2023,11,11,2,0,0
+2023,11,11,3,0,0
+2023,11,11,4,0,0
+2023,11,11,5,0,0
+2023,11,11,6,0,0
+2023,11,11,7,0,0
+2023,11,11,8,0,0
+2023,11,11,9,0,0
+2023,11,11,10,0,0
+2023,11,11,11,0,0
+2023,11,11,12,0,0
+2023,11,11,13,0,0
+2023,11,11,14,0,0
+2023,11,11,15,0,0
+2023,11,11,16,0,0
+2023,11,11,17,0,0
+2023,11,11,18,0,0
+2023,11,11,19,0,14
+2023,11,11,20,0,35
+2023,11,11,21,0,49
+2023,11,11,22,0,50
+2023,11,11,23,0,38
+2023,11,12,0,0,17
+2023,11,12,1,0,0
+2023,11,12,2,0,0
+2023,11,12,3,0,0
+2023,11,12,4,0,0
+2023,11,12,5,0,0
+2023,11,12,6,0,0
+2023,11,12,7,0,0
+2023,11,12,8,0,0
+2023,11,12,9,0,0
+2023,11,12,10,0,0
+2023,11,12,11,0,0
+2023,11,12,12,0,0
+2023,11,12,13,0,0
+2023,11,12,14,0,0
+2023,11,12,15,0,0
+2023,11,12,16,0,0
+2023,11,12,17,0,0
+2023,11,12,18,0,0
+2023,11,12,19,0,13
+2023,11,12,20,0,33
+2023,11,12,21,0,46
+2023,11,12,22,0,47
+2023,11,12,23,0,77
+2023,11,13,0,0,16
+2023,11,13,1,0,0
+2023,11,13,2,0,0
+2023,11,13,3,0,0
+2023,11,13,4,0,0
+2023,11,13,5,0,0
+2023,11,13,6,0,0
+2023,11,13,7,0,0
+2023,11,13,8,0,0
+2023,11,13,9,0,0
+2023,11,13,10,0,0
+2023,11,13,11,0,0
+2023,11,13,12,0,0
+2023,11,13,13,0,0
+2023,11,13,14,0,0
+2023,11,13,15,0,0
+2023,11,13,16,0,0
+2023,11,13,17,0,0
+2023,11,13,18,0,0
+2023,11,13,19,0,18
+2023,11,13,20,0,48
+2023,11,13,21,0,67
+2023,11,13,22,0,70
+2023,11,13,23,0,50
+2023,11,14,0,0,22
+2023,11,14,1,0,0
+2023,11,14,2,0,0
+2023,11,14,3,0,0
+2023,11,14,4,0,0
+2023,11,14,5,0,0
+2023,11,14,6,0,0
+2023,11,14,7,0,0
+2023,11,14,8,0,0
+2023,11,14,9,0,0
+2023,11,14,10,0,0
+2023,11,14,11,0,0
+2023,11,14,12,0,0
+2023,11,14,13,0,0
+2023,11,14,14,0,0
+2023,11,14,15,0,0
+2023,11,14,16,0,0
+2023,11,14,17,0,0
+2023,11,14,18,0,0
+2023,11,14,19,0,11
+2023,11,14,20,0,32
+2023,11,14,21,0,31
+2023,11,14,22,0,32
+2023,11,14,23,0,30
+2023,11,15,0,0,11
+2023,11,15,1,0,0
+2023,11,15,2,0,0
+2023,11,15,3,0,0
+2023,11,15,4,0,0
+2023,11,15,5,0,0
+2023,11,15,6,0,0
+2023,11,15,7,0,0
+2023,11,15,8,0,0
+2023,11,15,9,0,0
+2023,11,15,10,0,0
+2023,11,15,11,0,0
+2023,11,15,12,0,0
+2023,11,15,13,0,0
+2023,11,15,14,0,0
+2023,11,15,15,0,0
+2023,11,15,16,0,0
+2023,11,15,17,0,0
+2023,11,15,18,0,0
+2023,11,15,19,0,12
+2023,11,15,20,0,35
+2023,11,15,21,0,49
+2023,11,15,22,0,71
+2023,11,15,23,0,53
+2023,11,16,0,0,21
+2023,11,16,1,0,0
+2023,11,16,2,0,0
+2023,11,16,3,0,0
+2023,11,16,4,0,0
+2023,11,16,5,0,0
+2023,11,16,6,0,0
+2023,11,16,7,0,0
+2023,11,16,8,0,0
+2023,11,16,9,0,0
+2023,11,16,10,0,0
+2023,11,16,11,0,0
+2023,11,16,12,0,0
+2023,11,16,13,0,0
+2023,11,16,14,0,0
+2023,11,16,15,0,0
+2023,11,16,16,0,0
+2023,11,16,17,0,0
+2023,11,16,18,0,0
+2023,11,16,19,0,8
+2023,11,16,20,0,27
+2023,11,16,21,0,39
+2023,11,16,22,0,40
+2023,11,16,23,0,65
+2023,11,17,0,0,26
+2023,11,17,1,0,0
+2023,11,17,2,0,0
+2023,11,17,3,0,0
+2023,11,17,4,0,0
+2023,11,17,5,0,0
+2023,11,17,6,0,0
+2023,11,17,7,0,0
+2023,11,17,8,0,0
+2023,11,17,9,0,0
+2023,11,17,10,0,0
+2023,11,17,11,0,0
+2023,11,17,12,0,0
+2023,11,17,13,0,0
+2023,11,17,14,0,0
+2023,11,17,15,0,0
+2023,11,17,16,0,0
+2023,11,17,17,0,0
+2023,11,17,18,0,0
+2023,11,17,19,0,6
+2023,11,17,20,0,23
+2023,11,17,21,0,31
+2023,11,17,22,0,32
+2023,11,17,23,0,64
+2023,11,18,0,0,25
+2023,11,18,1,0,0
+2023,11,18,2,0,0
+2023,11,18,3,0,0
+2023,11,18,4,0,0
+2023,11,18,5,0,0
+2023,11,18,6,0,0
+2023,11,18,7,0,0
+2023,11,18,8,0,0
+2023,11,18,9,0,0
+2023,11,18,10,0,0
+2023,11,18,11,0,0
+2023,11,18,12,0,0
+2023,11,18,13,0,0
+2023,11,18,14,0,0
+2023,11,18,15,0,0
+2023,11,18,16,0,0
+2023,11,18,17,0,0
+2023,11,18,18,0,0
+2023,11,18,19,0,6
+2023,11,18,20,0,28
+2023,11,18,21,0,40
+2023,11,18,22,0,87
+2023,11,18,23,0,63
+2023,11,19,0,0,24
+2023,11,19,1,0,0
+2023,11,19,2,0,0
+2023,11,19,3,0,0
+2023,11,19,4,0,0
+2023,11,19,5,0,0
+2023,11,19,6,0,0
+2023,11,19,7,0,0
+2023,11,19,8,0,0
+2023,11,19,9,0,0
+2023,11,19,10,0,0
+2023,11,19,11,0,0
+2023,11,19,12,0,0
+2023,11,19,13,0,0
+2023,11,19,14,0,0
+2023,11,19,15,0,0
+2023,11,19,16,0,0
+2023,11,19,17,0,0
+2023,11,19,18,0,0
+2023,11,19,19,0,0
+2023,11,19,20,0,20
+2023,11,19,21,0,45
+2023,11,19,22,0,47
+2023,11,19,23,0,34
+2023,11,20,0,0,7
+2023,11,20,1,0,0
+2023,11,20,2,0,0
+2023,11,20,3,0,0
+2023,11,20,4,0,0
+2023,11,20,5,0,0
+2023,11,20,6,0,0
+2023,11,20,7,0,0
+2023,11,20,8,0,0
+2023,11,20,9,0,0
+2023,11,20,10,0,0
+2023,11,20,11,0,0
+2023,11,20,12,0,0
+2023,11,20,13,0,0
+2023,11,20,14,0,0
+2023,11,20,15,0,0
+2023,11,20,16,0,0
+2023,11,20,17,0,0
+2023,11,20,18,0,0
+2023,11,20,19,0,0
+2023,11,20,20,0,49
+2023,11,20,21,0,76
+2023,11,20,22,0,79
+2023,11,20,23,0,57
+2023,11,21,0,0,20
+2023,11,21,1,0,0
+2023,11,21,2,0,0
+2023,11,21,3,0,0
+2023,11,21,4,0,0
+2023,11,21,5,0,0
+2023,11,21,6,0,0
+2023,11,21,7,0,0
+2023,11,21,8,0,0
+2023,11,21,9,0,0
+2023,11,21,10,0,0
+2023,11,21,11,0,0
+2023,11,21,12,0,0
+2023,11,21,13,0,0
+2023,11,21,14,0,0
+2023,11,21,15,0,0
+2023,11,21,16,0,0
+2023,11,21,17,0,0
+2023,11,21,18,0,0
+2023,11,21,19,0,0
+2023,11,21,20,0,43
+2023,11,21,21,0,67
+2023,11,21,22,0,70
+2023,11,21,23,0,49
+2023,11,22,0,0,16
+2023,11,22,1,0,0
+2023,11,22,2,0,0
+2023,11,22,3,0,0
+2023,11,22,4,0,0
+2023,11,22,5,0,0
+2023,11,22,6,0,0
+2023,11,22,7,0,0
+2023,11,22,8,0,0
+2023,11,22,9,0,0
+2023,11,22,10,0,0
+2023,11,22,11,0,0
+2023,11,22,12,0,0
+2023,11,22,13,0,0
+2023,11,22,14,0,0
+2023,11,22,15,0,0
+2023,11,22,16,0,0
+2023,11,22,17,0,0
+2023,11,22,18,0,0
+2023,11,22,19,0,0
+2023,11,22,20,0,41
+2023,11,22,21,0,66
+2023,11,22,22,0,69
+2023,11,22,23,0,48
+2023,11,23,0,0,15
+2023,11,23,1,0,0
+2023,11,23,2,0,0
+2023,11,23,3,0,0
+2023,11,23,4,0,0
+2023,11,23,5,0,0
+2023,11,23,6,0,0
+2023,11,23,7,0,0
+2023,11,23,8,0,0
+2023,11,23,9,0,0
+2023,11,23,10,0,0
+2023,11,23,11,0,0
+2023,11,23,12,0,0
+2023,11,23,13,0,0
+2023,11,23,14,0,0
+2023,11,23,15,0,0
+2023,11,23,16,0,0
+2023,11,23,17,0,0
+2023,11,23,18,0,0
+2023,11,23,19,0,0
+2023,11,23,20,0,17
+2023,11,23,21,0,27
+2023,11,23,22,0,52
+2023,11,23,23,0,35
+2023,11,24,0,0,0
+2023,11,24,1,0,0
+2023,11,24,2,0,0
+2023,11,24,3,0,0
+2023,11,24,4,0,0
+2023,11,24,5,0,0
+2023,11,24,6,0,0
+2023,11,24,7,0,0
+2023,11,24,8,0,0
+2023,11,24,9,0,0
+2023,11,24,10,0,0
+2023,11,24,11,0,0
+2023,11,24,12,0,0
+2023,11,24,13,0,0
+2023,11,24,14,0,0
+2023,11,24,15,0,0
+2023,11,24,16,0,0
+2023,11,24,17,0,0
+2023,11,24,18,0,0
+2023,11,24,19,0,0
+2023,11,24,20,0,34
+2023,11,24,21,0,57
+2023,11,24,22,0,60
+2023,11,24,23,0,41
+2023,11,25,0,0,0
+2023,11,25,1,0,0
+2023,11,25,2,0,0
+2023,11,25,3,0,0
+2023,11,25,4,0,0
+2023,11,25,5,0,0
+2023,11,25,6,0,0
+2023,11,25,7,0,0
+2023,11,25,8,0,0
+2023,11,25,9,0,0
+2023,11,25,10,0,0
+2023,11,25,11,0,0
+2023,11,25,12,0,0
+2023,11,25,13,0,0
+2023,11,25,14,0,0
+2023,11,25,15,0,0
+2023,11,25,16,0,0
+2023,11,25,17,0,0
+2023,11,25,18,0,0
+2023,11,25,19,0,0
+2023,11,25,20,0,31
+2023,11,25,21,0,53
+2023,11,25,22,0,57
+2023,11,25,23,0,38
+2023,11,26,0,0,0
+2023,11,26,1,0,0
+2023,11,26,2,0,0
+2023,11,26,3,0,0
+2023,11,26,4,0,0
+2023,11,26,5,0,0
+2023,11,26,6,0,0
+2023,11,26,7,0,0
+2023,11,26,8,0,0
+2023,11,26,9,0,0
+2023,11,26,10,0,0
+2023,11,26,11,0,0
+2023,11,26,12,0,0
+2023,11,26,13,0,0
+2023,11,26,14,0,0
+2023,11,26,15,0,0
+2023,11,26,16,0,0
+2023,11,26,17,0,0
+2023,11,26,18,0,0
+2023,11,26,19,0,0
+2023,11,26,20,0,21
+2023,11,26,21,0,39
+2023,11,26,22,0,22
+2023,11,26,23,0,14
+2023,11,27,0,0,0
+2023,11,27,1,0,0
+2023,11,27,2,0,0
+2023,11,27,3,0,0
+2023,11,27,4,0,0
+2023,11,27,5,0,0
+2023,11,27,6,0,0
+2023,11,27,7,0,0
+2023,11,27,8,0,0
+2023,11,27,9,0,0
+2023,11,27,10,0,0
+2023,11,27,11,0,0
+2023,11,27,12,0,0
+2023,11,27,13,0,0
+2023,11,27,14,0,0
+2023,11,27,15,0,0
+2023,11,27,16,0,0
+2023,11,27,17,0,0
+2023,11,27,18,0,0
+2023,11,27,19,0,0
+2023,11,27,20,0,13
+2023,11,27,21,0,24
+2023,11,27,22,0,25
+2023,11,27,23,0,20
+2023,11,28,0,0,0
+2023,11,28,1,0,0
+2023,11,28,2,0,0
+2023,11,28,3,0,0
+2023,11,28,4,0,0
+2023,11,28,5,0,0
+2023,11,28,6,0,0
+2023,11,28,7,0,0
+2023,11,28,8,0,0
+2023,11,28,9,0,0
+2023,11,28,10,0,0
+2023,11,28,11,0,0
+2023,11,28,12,0,0
+2023,11,28,13,0,0
+2023,11,28,14,0,0
+2023,11,28,15,0,0
+2023,11,28,16,0,0
+2023,11,28,17,0,0
+2023,11,28,18,0,0
+2023,11,28,19,0,0
+2023,11,28,20,0,26
+2023,11,28,21,0,48
+2023,11,28,22,0,50
+2023,11,28,23,0,32
+2023,11,29,0,0,0
+2023,11,29,1,0,0
+2023,11,29,2,0,0
+2023,11,29,3,0,0
+2023,11,29,4,0,0
+2023,11,29,5,0,0
+2023,11,29,6,0,0
+2023,11,29,7,0,0
+2023,11,29,8,0,0
+2023,11,29,9,0,0
+2023,11,29,10,0,0
+2023,11,29,11,0,0
+2023,11,29,12,0,0
+2023,11,29,13,0,0
+2023,11,29,14,0,0
+2023,11,29,15,0,0
+2023,11,29,16,0,0
+2023,11,29,17,0,0
+2023,11,29,18,0,0
+2023,11,29,19,0,0
+2023,11,29,20,0,14
+2023,11,29,21,0,31
+2023,11,29,22,0,33
+2023,11,29,23,0,20
+2023,11,30,0,0,0
+2023,11,30,1,0,0
+2023,11,30,2,0,0
+2023,11,30,3,0,0
+2023,11,30,4,0,0
+2023,11,30,5,0,0
+2023,11,30,6,0,0
+2023,11,30,7,0,0
+2023,11,30,8,0,0
+2023,11,30,9,0,0
+2023,11,30,10,0,0
+2023,11,30,11,0,0
+2023,11,30,12,0,0
+2023,11,30,13,0,0
+2023,11,30,14,0,0
+2023,11,30,15,0,0
+2023,11,30,16,0,0
+2023,11,30,17,0,0
+2023,11,30,18,0,0
+2023,11,30,19,0,0
+2023,11,30,20,0,11
+2023,11,30,21,0,24
+2023,11,30,22,0,26
+2023,11,30,23,0,18
+2023,12,1,0,0,0
+2023,12,1,1,0,0
+2023,12,1,2,0,0
+2023,12,1,3,0,0
+2023,12,1,4,0,0
+2023,12,1,5,0,0
+2023,12,1,6,0,0
+2023,12,1,7,0,0
+2023,12,1,8,0,0
+2023,12,1,9,0,0
+2023,12,1,10,0,0
+2023,12,1,11,0,0
+2023,12,1,12,0,0
+2023,12,1,13,0,0
+2023,12,1,14,0,0
+2023,12,1,15,0,0
+2023,12,1,16,0,0
+2023,12,1,17,0,0
+2023,12,1,18,0,0
+2023,12,1,19,0,0
+2023,12,1,20,0,21
+2023,12,1,21,0,42
+2023,12,1,22,0,45
+2023,12,1,23,0,29
+2023,12,2,0,0,0
+2023,12,2,1,0,0
+2023,12,2,2,0,0
+2023,12,2,3,0,0
+2023,12,2,4,0,0
+2023,12,2,5,0,0
+2023,12,2,6,0,0
+2023,12,2,7,0,0
+2023,12,2,8,0,0
+2023,12,2,9,0,0
+2023,12,2,10,0,0
+2023,12,2,11,0,0
+2023,12,2,12,0,0
+2023,12,2,13,0,0
+2023,12,2,14,0,0
+2023,12,2,15,0,0
+2023,12,2,16,0,0
+2023,12,2,17,0,0
+2023,12,2,18,0,0
+2023,12,2,19,0,0
+2023,12,2,20,0,19
+2023,12,2,21,0,40
+2023,12,2,22,0,43
+2023,12,2,23,0,27
+2023,12,3,0,0,0
+2023,12,3,1,0,0
+2023,12,3,2,0,0
+2023,12,3,3,0,0
+2023,12,3,4,0,0
+2023,12,3,5,0,0
+2023,12,3,6,0,0
+2023,12,3,7,0,0
+2023,12,3,8,0,0
+2023,12,3,9,0,0
+2023,12,3,10,0,0
+2023,12,3,11,0,0
+2023,12,3,12,0,0
+2023,12,3,13,0,0
+2023,12,3,14,0,0
+2023,12,3,15,0,0
+2023,12,3,16,0,0
+2023,12,3,17,0,0
+2023,12,3,18,0,0
+2023,12,3,19,0,0
+2023,12,3,20,0,18
+2023,12,3,21,0,39
+2023,12,3,22,0,43
+2023,12,3,23,0,11
+2023,12,4,0,0,0
+2023,12,4,1,0,0
+2023,12,4,2,0,0
+2023,12,4,3,0,0
+2023,12,4,4,0,0
+2023,12,4,5,0,0
+2023,12,4,6,0,0
+2023,12,4,7,0,0
+2023,12,4,8,0,0
+2023,12,4,9,0,0
+2023,12,4,10,0,0
+2023,12,4,11,0,0
+2023,12,4,12,0,0
+2023,12,4,13,0,0
+2023,12,4,14,0,0
+2023,12,4,15,0,0
+2023,12,4,16,0,0
+2023,12,4,17,0,0
+2023,12,4,18,0,0
+2023,12,4,19,0,0
+2023,12,4,20,0,7
+2023,12,4,21,0,23
+2023,12,4,22,0,40
+2023,12,4,23,0,25
+2023,12,5,0,0,0
+2023,12,5,1,0,0
+2023,12,5,2,0,0
+2023,12,5,3,0,0
+2023,12,5,4,0,0
+2023,12,5,5,0,0
+2023,12,5,6,0,0
+2023,12,5,7,0,0
+2023,12,5,8,0,0
+2023,12,5,9,0,0
+2023,12,5,10,0,0
+2023,12,5,11,0,0
+2023,12,5,12,0,0
+2023,12,5,13,0,0
+2023,12,5,14,0,0
+2023,12,5,15,0,0
+2023,12,5,16,0,0
+2023,12,5,17,0,0
+2023,12,5,18,0,0
+2023,12,5,19,0,0
+2023,12,5,20,0,0
+2023,12,5,21,0,17
+2023,12,5,22,0,22
+2023,12,5,23,0,19
+2023,12,6,0,0,0
+2023,12,6,1,0,0
+2023,12,6,2,0,0
+2023,12,6,3,0,0
+2023,12,6,4,0,0
+2023,12,6,5,0,0
+2023,12,6,6,0,0
+2023,12,6,7,0,0
+2023,12,6,8,0,0
+2023,12,6,9,0,0
+2023,12,6,10,0,0
+2023,12,6,11,0,0
+2023,12,6,12,0,0
+2023,12,6,13,0,0
+2023,12,6,14,0,0
+2023,12,6,15,0,0
+2023,12,6,16,0,0
+2023,12,6,17,0,0
+2023,12,6,18,0,0
+2023,12,6,19,0,0
+2023,12,6,20,0,0
+2023,12,6,21,0,23
+2023,12,6,22,0,36
+2023,12,6,23,0,22
+2023,12,7,0,0,0
+2023,12,7,1,0,0
+2023,12,7,2,0,0
+2023,12,7,3,0,0
+2023,12,7,4,0,0
+2023,12,7,5,0,0
+2023,12,7,6,0,0
+2023,12,7,7,0,0
+2023,12,7,8,0,0
+2023,12,7,9,0,0
+2023,12,7,10,0,0
+2023,12,7,11,0,0
+2023,12,7,12,0,0
+2023,12,7,13,0,0
+2023,12,7,14,0,0
+2023,12,7,15,0,0
+2023,12,7,16,0,0
+2023,12,7,17,0,0
+2023,12,7,18,0,0
+2023,12,7,19,0,0
+2023,12,7,20,0,0
+2023,12,7,21,0,17
+2023,12,7,22,0,33
+2023,12,7,23,0,21
+2023,12,8,0,0,0
+2023,12,8,1,0,0
+2023,12,8,2,0,0
+2023,12,8,3,0,0
+2023,12,8,4,0,0
+2023,12,8,5,0,0
+2023,12,8,6,0,0
+2023,12,8,7,0,0
+2023,12,8,8,0,0
+2023,12,8,9,0,0
+2023,12,8,10,0,0
+2023,12,8,11,0,0
+2023,12,8,12,0,0
+2023,12,8,13,0,0
+2023,12,8,14,0,0
+2023,12,8,15,0,0
+2023,12,8,16,0,0
+2023,12,8,17,0,0
+2023,12,8,18,0,0
+2023,12,8,19,0,0
+2023,12,8,20,0,0
+2023,12,8,21,0,23
+2023,12,8,22,0,27
+2023,12,8,23,0,14
+2023,12,9,0,0,0
+2023,12,9,1,0,0
+2023,12,9,2,0,0
+2023,12,9,3,0,0
+2023,12,9,4,0,0
+2023,12,9,5,0,0
+2023,12,9,6,0,0
+2023,12,9,7,0,0
+2023,12,9,8,0,0
+2023,12,9,9,0,0
+2023,12,9,10,0,0
+2023,12,9,11,0,0
+2023,12,9,12,0,0
+2023,12,9,13,0,0
+2023,12,9,14,0,0
+2023,12,9,15,0,0
+2023,12,9,16,0,0
+2023,12,9,17,0,0
+2023,12,9,18,0,0
+2023,12,9,19,0,0
+2023,12,9,20,0,0
+2023,12,9,21,0,30
+2023,12,9,22,0,34
+2023,12,9,23,0,20
+2023,12,10,0,0,0
+2023,12,10,1,0,0
+2023,12,10,2,0,0
+2023,12,10,3,0,0
+2023,12,10,4,0,0
+2023,12,10,5,0,0
+2023,12,10,6,0,0
+2023,12,10,7,0,0
+2023,12,10,8,0,0
+2023,12,10,9,0,0
+2023,12,10,10,0,0
+2023,12,10,11,0,0
+2023,12,10,12,0,0
+2023,12,10,13,0,0
+2023,12,10,14,0,0
+2023,12,10,15,0,0
+2023,12,10,16,0,0
+2023,12,10,17,0,0
+2023,12,10,18,0,0
+2023,12,10,19,0,0
+2023,12,10,20,0,0
+2023,12,10,21,0,29
+2023,12,10,22,0,33
+2023,12,10,23,0,12
+2023,12,11,0,0,0
+2023,12,11,1,0,0
+2023,12,11,2,0,0
+2023,12,11,3,0,0
+2023,12,11,4,0,0
+2023,12,11,5,0,0
+2023,12,11,6,0,0
+2023,12,11,7,0,0
+2023,12,11,8,0,0
+2023,12,11,9,0,0
+2023,12,11,10,0,0
+2023,12,11,11,0,0
+2023,12,11,12,0,0
+2023,12,11,13,0,0
+2023,12,11,14,0,0
+2023,12,11,15,0,0
+2023,12,11,16,0,0
+2023,12,11,17,0,0
+2023,12,11,18,0,0
+2023,12,11,19,0,0
+2023,12,11,20,0,0
+2023,12,11,21,0,16
+2023,12,11,22,0,19
+2023,12,11,23,0,8
+2023,12,12,0,0,0
+2023,12,12,1,0,0
+2023,12,12,2,0,0
+2023,12,12,3,0,0
+2023,12,12,4,0,0
+2023,12,12,5,0,0
+2023,12,12,6,0,0
+2023,12,12,7,0,0
+2023,12,12,8,0,0
+2023,12,12,9,0,0
+2023,12,12,10,0,0
+2023,12,12,11,0,0
+2023,12,12,12,0,0
+2023,12,12,13,0,0
+2023,12,12,14,0,0
+2023,12,12,15,0,0
+2023,12,12,16,0,0
+2023,12,12,17,0,0
+2023,12,12,18,0,0
+2023,12,12,19,0,0
+2023,12,12,20,0,0
+2023,12,12,21,0,25
+2023,12,12,22,0,15
+2023,12,12,23,0,10
+2023,12,13,0,0,0
+2023,12,13,1,0,0
+2023,12,13,2,0,0
+2023,12,13,3,0,0
+2023,12,13,4,0,0
+2023,12,13,5,0,0
+2023,12,13,6,0,0
+2023,12,13,7,0,0
+2023,12,13,8,0,0
+2023,12,13,9,0,0
+2023,12,13,10,0,0
+2023,12,13,11,0,0
+2023,12,13,12,0,0
+2023,12,13,13,0,0
+2023,12,13,14,0,0
+2023,12,13,15,0,0
+2023,12,13,16,0,0
+2023,12,13,17,0,0
+2023,12,13,18,0,0
+2023,12,13,19,0,0
+2023,12,13,20,0,0
+2023,12,13,21,0,19
+2023,12,13,22,0,23
+2023,12,13,23,0,10
+2023,12,14,0,0,0
+2023,12,14,1,0,0
+2023,12,14,2,0,0
+2023,12,14,3,0,0
+2023,12,14,4,0,0
+2023,12,14,5,0,0
+2023,12,14,6,0,0
+2023,12,14,7,0,0
+2023,12,14,8,0,0
+2023,12,14,9,0,0
+2023,12,14,10,0,0
+2023,12,14,11,0,0
+2023,12,14,12,0,0
+2023,12,14,13,0,0
+2023,12,14,14,0,0
+2023,12,14,15,0,0
+2023,12,14,16,0,0
+2023,12,14,17,0,0
+2023,12,14,18,0,0
+2023,12,14,19,0,0
+2023,12,14,20,0,0
+2023,12,14,21,0,24
+2023,12,14,22,0,15
+2023,12,14,23,0,6
+2023,12,15,0,0,0
+2023,12,15,1,0,0
+2023,12,15,2,0,0
+2023,12,15,3,0,0
+2023,12,15,4,0,0
+2023,12,15,5,0,0
+2023,12,15,6,0,0
+2023,12,15,7,0,0
+2023,12,15,8,0,0
+2023,12,15,9,0,0
+2023,12,15,10,0,0
+2023,12,15,11,0,0
+2023,12,15,12,0,0
+2023,12,15,13,0,0
+2023,12,15,14,0,0
+2023,12,15,15,0,0
+2023,12,15,16,0,0
+2023,12,15,17,0,0
+2023,12,15,18,0,0
+2023,12,15,19,0,0
+2023,12,15,20,0,0
+2023,12,15,21,0,16
+2023,12,15,22,0,20
+2023,12,15,23,0,16
+2023,12,16,0,0,0
+2023,12,16,1,0,0
+2023,12,16,2,0,0
+2023,12,16,3,0,0
+2023,12,16,4,0,0
+2023,12,16,5,0,0
+2023,12,16,6,0,0
+2023,12,16,7,0,0
+2023,12,16,8,0,0
+2023,12,16,9,0,0
+2023,12,16,10,0,0
+2023,12,16,11,0,0
+2023,12,16,12,0,0
+2023,12,16,13,0,0
+2023,12,16,14,0,0
+2023,12,16,15,0,0
+2023,12,16,16,0,0
+2023,12,16,17,0,0
+2023,12,16,18,0,0
+2023,12,16,19,0,0
+2023,12,16,20,0,0
+2023,12,16,21,0,17
+2023,12,16,22,0,22
+2023,12,16,23,0,8
+2023,12,17,0,0,0
+2023,12,17,1,0,0
+2023,12,17,2,0,0
+2023,12,17,3,0,0
+2023,12,17,4,0,0
+2023,12,17,5,0,0
+2023,12,17,6,0,0
+2023,12,17,7,0,0
+2023,12,17,8,0,0
+2023,12,17,9,0,0
+2023,12,17,10,0,0
+2023,12,17,11,0,0
+2023,12,17,12,0,0
+2023,12,17,13,0,0
+2023,12,17,14,0,0
+2023,12,17,15,0,0
+2023,12,17,16,0,0
+2023,12,17,17,0,0
+2023,12,17,18,0,0
+2023,12,17,19,0,0
+2023,12,17,20,0,0
+2023,12,17,21,0,21
+2023,12,17,22,0,26
+2023,12,17,23,0,15
+2023,12,18,0,0,0
+2023,12,18,1,0,0
+2023,12,18,2,0,0
+2023,12,18,3,0,0
+2023,12,18,4,0,0
+2023,12,18,5,0,0
+2023,12,18,6,0,0
+2023,12,18,7,0,0
+2023,12,18,8,0,0
+2023,12,18,9,0,0
+2023,12,18,10,0,0
+2023,12,18,11,0,0
+2023,12,18,12,0,0
+2023,12,18,13,0,0
+2023,12,18,14,0,0
+2023,12,18,15,0,0
+2023,12,18,16,0,0
+2023,12,18,17,0,0
+2023,12,18,18,0,0
+2023,12,18,19,0,0
+2023,12,18,20,0,0
+2023,12,18,21,0,21
+2023,12,18,22,0,25
+2023,12,18,23,0,15
+2023,12,19,0,0,0
+2023,12,19,1,0,0
+2023,12,19,2,0,0
+2023,12,19,3,0,0
+2023,12,19,4,0,0
+2023,12,19,5,0,0
+2023,12,19,6,0,0
+2023,12,19,7,0,0
+2023,12,19,8,0,0
+2023,12,19,9,0,0
+2023,12,19,10,0,0
+2023,12,19,11,0,0
+2023,12,19,12,0,0
+2023,12,19,13,0,0
+2023,12,19,14,0,0
+2023,12,19,15,0,0
+2023,12,19,16,0,0
+2023,12,19,17,0,0
+2023,12,19,18,0,0
+2023,12,19,19,0,0
+2023,12,19,20,0,0
+2023,12,19,21,0,17
+2023,12,19,22,0,19
+2023,12,19,23,0,8
+2023,12,20,0,0,0
+2023,12,20,1,0,0
+2023,12,20,2,0,0
+2023,12,20,3,0,0
+2023,12,20,4,0,0
+2023,12,20,5,0,0
+2023,12,20,6,0,0
+2023,12,20,7,0,0
+2023,12,20,8,0,0
+2023,12,20,9,0,0
+2023,12,20,10,0,0
+2023,12,20,11,0,0
+2023,12,20,12,0,0
+2023,12,20,13,0,0
+2023,12,20,14,0,0
+2023,12,20,15,0,0
+2023,12,20,16,0,0
+2023,12,20,17,0,0
+2023,12,20,18,0,0
+2023,12,20,19,0,0
+2023,12,20,20,0,0
+2023,12,20,21,0,14
+2023,12,20,22,0,17
+2023,12,20,23,0,7
+2023,12,21,0,0,0
+2023,12,21,1,0,0
+2023,12,21,2,0,0
+2023,12,21,3,0,0
+2023,12,21,4,0,0
+2023,12,21,5,0,0
+2023,12,21,6,0,0
+2023,12,21,7,0,0
+2023,12,21,8,0,0
+2023,12,21,9,0,0
+2023,12,21,10,0,0
+2023,12,21,11,0,0
+2023,12,21,12,0,0
+2023,12,21,13,0,0
+2023,12,21,14,0,0
+2023,12,21,15,0,0
+2023,12,21,16,0,0
+2023,12,21,17,0,0
+2023,12,21,18,0,0
+2023,12,21,19,0,0
+2023,12,21,20,0,0
+2023,12,21,21,0,12
+2023,12,21,22,0,17
+2023,12,21,23,0,10
+2023,12,22,0,0,0
+2023,12,22,1,0,0
+2023,12,22,2,0,0
+2023,12,22,3,0,0
+2023,12,22,4,0,0
+2023,12,22,5,0,0
+2023,12,22,6,0,0
+2023,12,22,7,0,0
+2023,12,22,8,0,0
+2023,12,22,9,0,0
+2023,12,22,10,0,0
+2023,12,22,11,0,0
+2023,12,22,12,0,0
+2023,12,22,13,0,0
+2023,12,22,14,0,0
+2023,12,22,15,0,0
+2023,12,22,16,0,0
+2023,12,22,17,0,0
+2023,12,22,18,0,0
+2023,12,22,19,0,0
+2023,12,22,20,0,0
+2023,12,22,21,0,21
+2023,12,22,22,0,26
+2023,12,22,23,0,16
+2023,12,23,0,0,0
+2023,12,23,1,0,0
+2023,12,23,2,0,0
+2023,12,23,3,0,0
+2023,12,23,4,0,0
+2023,12,23,5,0,0
+2023,12,23,6,0,0
+2023,12,23,7,0,0
+2023,12,23,8,0,0
+2023,12,23,9,0,0
+2023,12,23,10,0,0
+2023,12,23,11,0,0
+2023,12,23,12,0,0
+2023,12,23,13,0,0
+2023,12,23,14,0,0
+2023,12,23,15,0,0
+2023,12,23,16,0,0
+2023,12,23,17,0,0
+2023,12,23,18,0,0
+2023,12,23,19,0,0
+2023,12,23,20,0,0
+2023,12,23,21,0,13
+2023,12,23,22,0,18
+2023,12,23,23,0,8
+2023,12,24,0,0,0
+2023,12,24,1,0,0
+2023,12,24,2,0,0
+2023,12,24,3,0,0
+2023,12,24,4,0,0
+2023,12,24,5,0,0
+2023,12,24,6,0,0
+2023,12,24,7,0,0
+2023,12,24,8,0,0
+2023,12,24,9,0,0
+2023,12,24,10,0,0
+2023,12,24,11,0,0
+2023,12,24,12,0,0
+2023,12,24,13,0,0
+2023,12,24,14,0,0
+2023,12,24,15,0,0
+2023,12,24,16,0,0
+2023,12,24,17,0,0
+2023,12,24,18,0,0
+2023,12,24,19,0,0
+2023,12,24,20,0,0
+2023,12,24,21,0,9
+2023,12,24,22,0,12
+2023,12,24,23,0,6
+2023,12,25,0,0,0
+2023,12,25,1,0,0
+2023,12,25,2,0,0
+2023,12,25,3,0,0
+2023,12,25,4,0,0
+2023,12,25,5,0,0
+2023,12,25,6,0,0
+2023,12,25,7,0,0
+2023,12,25,8,0,0
+2023,12,25,9,0,0
+2023,12,25,10,0,0
+2023,12,25,11,0,0
+2023,12,25,12,0,0
+2023,12,25,13,0,0
+2023,12,25,14,0,0
+2023,12,25,15,0,0
+2023,12,25,16,0,0
+2023,12,25,17,0,0
+2023,12,25,18,0,0
+2023,12,25,19,0,0
+2023,12,25,20,0,0
+2023,12,25,21,0,15
+2023,12,25,22,0,13
+2023,12,25,23,0,6
+2023,12,26,0,0,0
+2023,12,26,1,0,0
+2023,12,26,2,0,0
+2023,12,26,3,0,0
+2023,12,26,4,0,0
+2023,12,26,5,0,0
+2023,12,26,6,0,0
+2023,12,26,7,0,0
+2023,12,26,8,0,0
+2023,12,26,9,0,0
+2023,12,26,10,0,0
+2023,12,26,11,0,0
+2023,12,26,12,0,0
+2023,12,26,13,0,0
+2023,12,26,14,0,0
+2023,12,26,15,0,0
+2023,12,26,16,0,0
+2023,12,26,17,0,0
+2023,12,26,18,0,0
+2023,12,26,19,0,0
+2023,12,26,20,0,0
+2023,12,26,21,0,10
+2023,12,26,22,0,15
+2023,12,26,23,0,8
+2023,12,27,0,0,0
+2023,12,27,1,0,0
+2023,12,27,2,0,0
+2023,12,27,3,0,0
+2023,12,27,4,0,0
+2023,12,27,5,0,0
+2023,12,27,6,0,0
+2023,12,27,7,0,0
+2023,12,27,8,0,0
+2023,12,27,9,0,0
+2023,12,27,10,0,0
+2023,12,27,11,0,0
+2023,12,27,12,0,0
+2023,12,27,13,0,0
+2023,12,27,14,0,0
+2023,12,27,15,0,0
+2023,12,27,16,0,0
+2023,12,27,17,0,0
+2023,12,27,18,0,0
+2023,12,27,19,0,0
+2023,12,27,20,0,0
+2023,12,27,21,0,23
+2023,12,27,22,0,29
+2023,12,27,23,0,19
+2023,12,28,0,0,0
+2023,12,28,1,0,0
+2023,12,28,2,0,0
+2023,12,28,3,0,0
+2023,12,28,4,0,0
+2023,12,28,5,0,0
+2023,12,28,6,0,0
+2023,12,28,7,0,0
+2023,12,28,8,0,0
+2023,12,28,9,0,0
+2023,12,28,10,0,0
+2023,12,28,11,0,0
+2023,12,28,12,0,0
+2023,12,28,13,0,0
+2023,12,28,14,0,0
+2023,12,28,15,0,0
+2023,12,28,16,0,0
+2023,12,28,17,0,0
+2023,12,28,18,0,0
+2023,12,28,19,0,0
+2023,12,28,20,0,0
+2023,12,28,21,0,18
+2023,12,28,22,0,15
+2023,12,28,23,0,8
+2023,12,29,0,0,0
+2023,12,29,1,0,0
+2023,12,29,2,0,0
+2023,12,29,3,0,0
+2023,12,29,4,0,0
+2023,12,29,5,0,0
+2023,12,29,6,0,0
+2023,12,29,7,0,0
+2023,12,29,8,0,0
+2023,12,29,9,0,0
+2023,12,29,10,0,0
+2023,12,29,11,0,0
+2023,12,29,12,0,0
+2023,12,29,13,0,0
+2023,12,29,14,0,0
+2023,12,29,15,0,0
+2023,12,29,16,0,0
+2023,12,29,17,0,0
+2023,12,29,18,0,0
+2023,12,29,19,0,0
+2023,12,29,20,0,0
+2023,12,29,21,0,20
+2023,12,29,22,0,30
+2023,12,29,23,0,20
+2023,12,30,0,0,0
+2023,12,30,1,0,0
+2023,12,30,2,0,0
+2023,12,30,3,0,0
+2023,12,30,4,0,0
+2023,12,30,5,0,0
+2023,12,30,6,0,0
+2023,12,30,7,0,0
+2023,12,30,8,0,0
+2023,12,30,9,0,0
+2023,12,30,10,0,0
+2023,12,30,11,0,0
+2023,12,30,12,0,0
+2023,12,30,13,0,0
+2023,12,30,14,0,0
+2023,12,30,15,0,0
+2023,12,30,16,0,0
+2023,12,30,17,0,0
+2023,12,30,18,0,0
+2023,12,30,19,0,0
+2023,12,30,20,0,0
+2023,12,30,21,0,8
+2023,12,30,22,0,11
+2023,12,30,23,0,12
+2023,12,31,0,0,0
+2023,12,31,1,0,0
+2023,12,31,2,0,0
+2023,12,31,3,0,0
+2023,12,31,4,0,0
+2023,12,31,5,0,0
+2023,12,31,6,0,0
+2023,12,31,7,0,0
+2023,12,31,8,0,0
+2023,12,31,9,0,0
+2023,12,31,10,0,0
+2023,12,31,11,0,0
+2023,12,31,12,0,0
+2023,12,31,13,0,0
+2023,12,31,14,0,0
+2023,12,31,15,0,0
+2023,12,31,16,0,0
+2023,12,31,17,0,0
+2023,12,31,18,0,0
+2023,12,31,19,0,0
+2023,12,31,20,0,0
+2023,12,31,21,0,18
+2023,12,31,22,0,31
+2023,12,31,23,0,21
diff --git a/tests/data/test_psm4_polar_tmy_2023.csv b/tests/data/test_psm4_polar_tmy_2023.csv
new file mode 100644
index 0000000000..8037413ff7
--- /dev/null
+++ b/tests/data/test_psm4_polar_tmy_2023.csv
@@ -0,0 +1,8763 @@
+Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed Units,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version
+NSRDB,3049132,-,-,-,64.84091,-147.70454,0,132,-9,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,4.1.3.dev28+g75fa2f74.d20250603
+Year,Month,Day,Hour,Minute,GHI
+2015,1,1,0,30,0
+2015,1,1,1,30,0
+2015,1,1,2,30,0
+2015,1,1,3,30,0
+2015,1,1,4,30,0
+2015,1,1,5,30,0
+2015,1,1,6,30,0
+2015,1,1,7,30,0
+2015,1,1,8,30,0
+2015,1,1,9,30,0
+2015,1,1,10,30,0
+2015,1,1,11,30,0
+2015,1,1,12,30,0
+2015,1,1,13,30,0
+2015,1,1,14,30,0
+2015,1,1,15,30,0
+2015,1,1,16,30,0
+2015,1,1,17,30,0
+2015,1,1,18,30,0
+2015,1,1,19,30,0
+2015,1,1,20,30,0
+2015,1,1,21,30,25
+2015,1,1,22,30,32
+2015,1,1,23,30,22
+2015,1,2,0,30,0
+2015,1,2,1,30,0
+2015,1,2,2,30,0
+2015,1,2,3,30,0
+2015,1,2,4,30,0
+2015,1,2,5,30,0
+2015,1,2,6,30,0
+2015,1,2,7,30,0
+2015,1,2,8,30,0
+2015,1,2,9,30,0
+2015,1,2,10,30,0
+2015,1,2,11,30,0
+2015,1,2,12,30,0
+2015,1,2,13,30,0
+2015,1,2,14,30,0
+2015,1,2,15,30,0
+2015,1,2,16,30,0
+2015,1,2,17,30,0
+2015,1,2,18,30,0
+2015,1,2,19,30,0
+2015,1,2,20,30,0
+2015,1,2,21,30,28
+2015,1,2,22,30,37
+2015,1,2,23,30,25
+2015,1,3,0,30,0
+2015,1,3,1,30,0
+2015,1,3,2,30,0
+2015,1,3,3,30,0
+2015,1,3,4,30,0
+2015,1,3,5,30,0
+2015,1,3,6,30,0
+2015,1,3,7,30,0
+2015,1,3,8,30,0
+2015,1,3,9,30,0
+2015,1,3,10,30,0
+2015,1,3,11,30,0
+2015,1,3,12,30,0
+2015,1,3,13,30,0
+2015,1,3,14,30,0
+2015,1,3,15,30,0
+2015,1,3,16,30,0
+2015,1,3,17,30,0
+2015,1,3,18,30,0
+2015,1,3,19,30,0
+2015,1,3,20,30,0
+2015,1,3,21,30,30
+2015,1,3,22,30,38
+2015,1,3,23,30,26
+2015,1,4,0,30,0
+2015,1,4,1,30,0
+2015,1,4,2,30,0
+2015,1,4,3,30,0
+2015,1,4,4,30,0
+2015,1,4,5,30,0
+2015,1,4,6,30,0
+2015,1,4,7,30,0
+2015,1,4,8,30,0
+2015,1,4,9,30,0
+2015,1,4,10,30,0
+2015,1,4,11,30,0
+2015,1,4,12,30,0
+2015,1,4,13,30,0
+2015,1,4,14,30,0
+2015,1,4,15,30,0
+2015,1,4,16,30,0
+2015,1,4,17,30,0
+2015,1,4,18,30,0
+2015,1,4,19,30,0
+2015,1,4,20,30,0
+2015,1,4,21,30,29
+2015,1,4,22,30,38
+2015,1,4,23,30,27
+2015,1,5,0,30,0
+2015,1,5,1,30,0
+2015,1,5,2,30,0
+2015,1,5,3,30,0
+2015,1,5,4,30,0
+2015,1,5,5,30,0
+2015,1,5,6,30,0
+2015,1,5,7,30,0
+2015,1,5,8,30,0
+2015,1,5,9,30,0
+2015,1,5,10,30,0
+2015,1,5,11,30,0
+2015,1,5,12,30,0
+2015,1,5,13,30,0
+2015,1,5,14,30,0
+2015,1,5,15,30,0
+2015,1,5,16,30,0
+2015,1,5,17,30,0
+2015,1,5,18,30,0
+2015,1,5,19,30,0
+2015,1,5,20,30,0
+2015,1,5,21,30,32
+2015,1,5,22,30,41
+2015,1,5,23,30,29
+2015,1,6,0,30,0
+2015,1,6,1,30,0
+2015,1,6,2,30,0
+2015,1,6,3,30,0
+2015,1,6,4,30,0
+2015,1,6,5,30,0
+2015,1,6,6,30,0
+2015,1,6,7,30,0
+2015,1,6,8,30,0
+2015,1,6,9,30,0
+2015,1,6,10,30,0
+2015,1,6,11,30,0
+2015,1,6,12,30,0
+2015,1,6,13,30,0
+2015,1,6,14,30,0
+2015,1,6,15,30,0
+2015,1,6,16,30,0
+2015,1,6,17,30,0
+2015,1,6,18,30,0
+2015,1,6,19,30,0
+2015,1,6,20,30,0
+2015,1,6,21,30,33
+2015,1,6,22,30,42
+2015,1,6,23,30,31
+2015,1,7,0,30,0
+2015,1,7,1,30,0
+2015,1,7,2,30,0
+2015,1,7,3,30,0
+2015,1,7,4,30,0
+2015,1,7,5,30,0
+2015,1,7,6,30,0
+2015,1,7,7,30,0
+2015,1,7,8,30,0
+2015,1,7,9,30,0
+2015,1,7,10,30,0
+2015,1,7,11,30,0
+2015,1,7,12,30,0
+2015,1,7,13,30,0
+2015,1,7,14,30,0
+2015,1,7,15,30,0
+2015,1,7,16,30,0
+2015,1,7,17,30,0
+2015,1,7,18,30,0
+2015,1,7,19,30,0
+2015,1,7,20,30,0
+2015,1,7,21,30,34
+2015,1,7,22,30,44
+2015,1,7,23,30,33
+2015,1,8,0,30,0
+2015,1,8,1,30,0
+2015,1,8,2,30,0
+2015,1,8,3,30,0
+2015,1,8,4,30,0
+2015,1,8,5,30,0
+2015,1,8,6,30,0
+2015,1,8,7,30,0
+2015,1,8,8,30,0
+2015,1,8,9,30,0
+2015,1,8,10,30,0
+2015,1,8,11,30,0
+2015,1,8,12,30,0
+2015,1,8,13,30,0
+2015,1,8,14,30,0
+2015,1,8,15,30,0
+2015,1,8,16,30,0
+2015,1,8,17,30,0
+2015,1,8,18,30,0
+2015,1,8,19,30,0
+2015,1,8,20,30,0
+2015,1,8,21,30,27
+2015,1,8,22,30,19
+2015,1,8,23,30,14
+2015,1,9,0,30,0
+2015,1,9,1,30,0
+2015,1,9,2,30,0
+2015,1,9,3,30,0
+2015,1,9,4,30,0
+2015,1,9,5,30,0
+2015,1,9,6,30,0
+2015,1,9,7,30,0
+2015,1,9,8,30,0
+2015,1,9,9,30,0
+2015,1,9,10,30,0
+2015,1,9,11,30,0
+2015,1,9,12,30,0
+2015,1,9,13,30,0
+2015,1,9,14,30,0
+2015,1,9,15,30,0
+2015,1,9,16,30,0
+2015,1,9,17,30,0
+2015,1,9,18,30,0
+2015,1,9,19,30,0
+2015,1,9,20,30,0
+2015,1,9,21,30,16
+2015,1,9,22,30,25
+2015,1,9,23,30,19
+2015,1,10,0,30,0
+2015,1,10,1,30,0
+2015,1,10,2,30,0
+2015,1,10,3,30,0
+2015,1,10,4,30,0
+2015,1,10,5,30,0
+2015,1,10,6,30,0
+2015,1,10,7,30,0
+2015,1,10,8,30,0
+2015,1,10,9,30,0
+2015,1,10,10,30,0
+2015,1,10,11,30,0
+2015,1,10,12,30,0
+2015,1,10,13,30,0
+2015,1,10,14,30,0
+2015,1,10,15,30,0
+2015,1,10,16,30,0
+2015,1,10,17,30,0
+2015,1,10,18,30,0
+2015,1,10,19,30,0
+2015,1,10,20,30,0
+2015,1,10,21,30,34
+2015,1,10,22,30,18
+2015,1,10,23,30,14
+2015,1,11,0,30,0
+2015,1,11,1,30,0
+2015,1,11,2,30,0
+2015,1,11,3,30,0
+2015,1,11,4,30,0
+2015,1,11,5,30,0
+2015,1,11,6,30,0
+2015,1,11,7,30,0
+2015,1,11,8,30,0
+2015,1,11,9,30,0
+2015,1,11,10,30,0
+2015,1,11,11,30,0
+2015,1,11,12,30,0
+2015,1,11,13,30,0
+2015,1,11,14,30,0
+2015,1,11,15,30,0
+2015,1,11,16,30,0
+2015,1,11,17,30,0
+2015,1,11,18,30,0
+2015,1,11,19,30,0
+2015,1,11,20,30,0
+2015,1,11,21,30,17
+2015,1,11,22,30,23
+2015,1,11,23,30,17
+2015,1,12,0,30,0
+2015,1,12,1,30,0
+2015,1,12,2,30,0
+2015,1,12,3,30,0
+2015,1,12,4,30,0
+2015,1,12,5,30,0
+2015,1,12,6,30,0
+2015,1,12,7,30,0
+2015,1,12,8,30,0
+2015,1,12,9,30,0
+2015,1,12,10,30,0
+2015,1,12,11,30,0
+2015,1,12,12,30,0
+2015,1,12,13,30,0
+2015,1,12,14,30,0
+2015,1,12,15,30,0
+2015,1,12,16,30,0
+2015,1,12,17,30,0
+2015,1,12,18,30,0
+2015,1,12,19,30,0
+2015,1,12,20,30,0
+2015,1,12,21,30,16
+2015,1,12,22,30,49
+2015,1,12,23,30,39
+2015,1,13,0,30,0
+2015,1,13,1,30,0
+2015,1,13,2,30,0
+2015,1,13,3,30,0
+2015,1,13,4,30,0
+2015,1,13,5,30,0
+2015,1,13,6,30,0
+2015,1,13,7,30,0
+2015,1,13,8,30,0
+2015,1,13,9,30,0
+2015,1,13,10,30,0
+2015,1,13,11,30,0
+2015,1,13,12,30,0
+2015,1,13,13,30,0
+2015,1,13,14,30,0
+2015,1,13,15,30,0
+2015,1,13,16,30,0
+2015,1,13,17,30,0
+2015,1,13,18,30,0
+2015,1,13,19,30,0
+2015,1,13,20,30,4
+2015,1,13,21,30,17
+2015,1,13,22,30,36
+2015,1,13,23,30,23
+2015,1,14,0,30,5
+2015,1,14,1,30,0
+2015,1,14,2,30,0
+2015,1,14,3,30,0
+2015,1,14,4,30,0
+2015,1,14,5,30,0
+2015,1,14,6,30,0
+2015,1,14,7,30,0
+2015,1,14,8,30,0
+2015,1,14,9,30,0
+2015,1,14,10,30,0
+2015,1,14,11,30,0
+2015,1,14,12,30,0
+2015,1,14,13,30,0
+2015,1,14,14,30,0
+2015,1,14,15,30,0
+2015,1,14,16,30,0
+2015,1,14,17,30,0
+2015,1,14,18,30,0
+2015,1,14,19,30,0
+2015,1,14,20,30,9
+2015,1,14,21,30,31
+2015,1,14,22,30,39
+2015,1,14,23,30,25
+2015,1,15,0,30,7
+2015,1,15,1,30,0
+2015,1,15,2,30,0
+2015,1,15,3,30,0
+2015,1,15,4,30,0
+2015,1,15,5,30,0
+2015,1,15,6,30,0
+2015,1,15,7,30,0
+2015,1,15,8,30,0
+2015,1,15,9,30,0
+2015,1,15,10,30,0
+2015,1,15,11,30,0
+2015,1,15,12,30,0
+2015,1,15,13,30,0
+2015,1,15,14,30,0
+2015,1,15,15,30,0
+2015,1,15,16,30,0
+2015,1,15,17,30,0
+2015,1,15,18,30,0
+2015,1,15,19,30,0
+2015,1,15,20,30,10
+2015,1,15,21,30,32
+2015,1,15,22,30,41
+2015,1,15,23,30,32
+2015,1,16,0,30,11
+2015,1,16,1,30,0
+2015,1,16,2,30,0
+2015,1,16,3,30,0
+2015,1,16,4,30,0
+2015,1,16,5,30,0
+2015,1,16,6,30,0
+2015,1,16,7,30,0
+2015,1,16,8,30,0
+2015,1,16,9,30,0
+2015,1,16,10,30,0
+2015,1,16,11,30,0
+2015,1,16,12,30,0
+2015,1,16,13,30,0
+2015,1,16,14,30,0
+2015,1,16,15,30,0
+2015,1,16,16,30,0
+2015,1,16,17,30,0
+2015,1,16,18,30,0
+2015,1,16,19,30,0
+2015,1,16,20,30,20
+2015,1,16,21,30,48
+2015,1,16,22,30,59
+2015,1,16,23,30,49
+2015,1,17,0,30,21
+2015,1,17,1,30,0
+2015,1,17,2,30,0
+2015,1,17,3,30,0
+2015,1,17,4,30,0
+2015,1,17,5,30,0
+2015,1,17,6,30,0
+2015,1,17,7,30,0
+2015,1,17,8,30,0
+2015,1,17,9,30,0
+2015,1,17,10,30,0
+2015,1,17,11,30,0
+2015,1,17,12,30,0
+2015,1,17,13,30,0
+2015,1,17,14,30,0
+2015,1,17,15,30,0
+2015,1,17,16,30,0
+2015,1,17,17,30,0
+2015,1,17,18,30,0
+2015,1,17,19,30,0
+2015,1,17,20,30,8
+2015,1,17,21,30,19
+2015,1,17,22,30,29
+2015,1,17,23,30,24
+2015,1,18,0,30,9
+2015,1,18,1,30,0
+2015,1,18,2,30,0
+2015,1,18,3,30,0
+2015,1,18,4,30,0
+2015,1,18,5,30,0
+2015,1,18,6,30,0
+2015,1,18,7,30,0
+2015,1,18,8,30,0
+2015,1,18,9,30,0
+2015,1,18,10,30,0
+2015,1,18,11,30,0
+2015,1,18,12,30,0
+2015,1,18,13,30,0
+2015,1,18,14,30,0
+2015,1,18,15,30,0
+2015,1,18,16,30,0
+2015,1,18,17,30,0
+2015,1,18,18,30,0
+2015,1,18,19,30,0
+2015,1,18,20,30,24
+2015,1,18,21,30,53
+2015,1,18,22,30,65
+2015,1,18,23,30,54
+2015,1,19,0,30,25
+2015,1,19,1,30,0
+2015,1,19,2,30,0
+2015,1,19,3,30,0
+2015,1,19,4,30,0
+2015,1,19,5,30,0
+2015,1,19,6,30,0
+2015,1,19,7,30,0
+2015,1,19,8,30,0
+2015,1,19,9,30,0
+2015,1,19,10,30,0
+2015,1,19,11,30,0
+2015,1,19,12,30,0
+2015,1,19,13,30,0
+2015,1,19,14,30,0
+2015,1,19,15,30,0
+2015,1,19,16,30,0
+2015,1,19,17,30,0
+2015,1,19,18,30,0
+2015,1,19,19,30,0
+2015,1,19,20,30,13
+2015,1,19,21,30,31
+2015,1,19,22,30,27
+2015,1,19,23,30,41
+2015,1,20,0,30,18
+2015,1,20,1,30,0
+2015,1,20,2,30,0
+2015,1,20,3,30,0
+2015,1,20,4,30,0
+2015,1,20,5,30,0
+2015,1,20,6,30,0
+2015,1,20,7,30,0
+2015,1,20,8,30,0
+2015,1,20,9,30,0
+2015,1,20,10,30,0
+2015,1,20,11,30,0
+2015,1,20,12,30,0
+2015,1,20,13,30,0
+2015,1,20,14,30,0
+2015,1,20,15,30,0
+2015,1,20,16,30,0
+2015,1,20,17,30,0
+2015,1,20,18,30,0
+2015,1,20,19,30,0
+2015,1,20,20,30,28
+2015,1,20,21,30,59
+2015,1,20,22,30,72
+2015,1,20,23,30,61
+2015,1,21,0,30,31
+2015,1,21,1,30,0
+2015,1,21,2,30,0
+2015,1,21,3,30,0
+2015,1,21,4,30,0
+2015,1,21,5,30,0
+2015,1,21,6,30,0
+2015,1,21,7,30,0
+2015,1,21,8,30,0
+2015,1,21,9,30,0
+2015,1,21,10,30,0
+2015,1,21,11,30,0
+2015,1,21,12,30,0
+2015,1,21,13,30,0
+2015,1,21,14,30,0
+2015,1,21,15,30,0
+2015,1,21,16,30,0
+2015,1,21,17,30,0
+2015,1,21,18,30,0
+2015,1,21,19,30,0
+2015,1,21,20,30,31
+2015,1,21,21,30,64
+2015,1,21,22,30,78
+2015,1,21,23,30,66
+2015,1,22,0,30,34
+2015,1,22,1,30,0
+2015,1,22,2,30,0
+2015,1,22,3,30,0
+2015,1,22,4,30,0
+2015,1,22,5,30,0
+2015,1,22,6,30,0
+2015,1,22,7,30,0
+2015,1,22,8,30,0
+2015,1,22,9,30,0
+2015,1,22,10,30,0
+2015,1,22,11,30,0
+2015,1,22,12,30,0
+2015,1,22,13,30,0
+2015,1,22,14,30,0
+2015,1,22,15,30,0
+2015,1,22,16,30,0
+2015,1,22,17,30,0
+2015,1,22,18,30,0
+2015,1,22,19,30,0
+2015,1,22,20,30,18
+2015,1,22,21,30,34
+2015,1,22,22,30,40
+2015,1,22,23,30,35
+2015,1,23,0,30,20
+2015,1,23,1,30,0
+2015,1,23,2,30,0
+2015,1,23,3,30,0
+2015,1,23,4,30,0
+2015,1,23,5,30,0
+2015,1,23,6,30,0
+2015,1,23,7,30,0
+2015,1,23,8,30,0
+2015,1,23,9,30,0
+2015,1,23,10,30,0
+2015,1,23,11,30,0
+2015,1,23,12,30,0
+2015,1,23,13,30,0
+2015,1,23,14,30,0
+2015,1,23,15,30,0
+2015,1,23,16,30,0
+2015,1,23,17,30,0
+2015,1,23,18,30,0
+2015,1,23,19,30,0
+2015,1,23,20,30,36
+2015,1,23,21,30,71
+2015,1,23,22,30,85
+2015,1,23,23,30,27
+2015,1,24,0,30,16
+2015,1,24,1,30,0
+2015,1,24,2,30,0
+2015,1,24,3,30,0
+2015,1,24,4,30,0
+2015,1,24,5,30,0
+2015,1,24,6,30,0
+2015,1,24,7,30,0
+2015,1,24,8,30,0
+2015,1,24,9,30,0
+2015,1,24,10,30,0
+2015,1,24,11,30,0
+2015,1,24,12,30,0
+2015,1,24,13,30,0
+2015,1,24,14,30,0
+2015,1,24,15,30,0
+2015,1,24,16,30,0
+2015,1,24,17,30,0
+2015,1,24,18,30,0
+2015,1,24,19,30,0
+2015,1,24,20,30,41
+2015,1,24,21,30,27
+2015,1,24,22,30,31
+2015,1,24,23,30,80
+2015,1,25,0,30,45
+2015,1,25,1,30,0
+2015,1,25,2,30,0
+2015,1,25,3,30,0
+2015,1,25,4,30,0
+2015,1,25,5,30,0
+2015,1,25,6,30,0
+2015,1,25,7,30,0
+2015,1,25,8,30,0
+2015,1,25,9,30,0
+2015,1,25,10,30,0
+2015,1,25,11,30,0
+2015,1,25,12,30,0
+2015,1,25,13,30,0
+2015,1,25,14,30,0
+2015,1,25,15,30,0
+2015,1,25,16,30,0
+2015,1,25,17,30,0
+2015,1,25,18,30,0
+2015,1,25,19,30,0
+2015,1,25,20,30,19
+2015,1,25,21,30,34
+2015,1,25,22,30,99
+2015,1,25,23,30,87
+2015,1,26,0,30,51
+2015,1,26,1,30,0
+2015,1,26,2,30,0
+2015,1,26,3,30,0
+2015,1,26,4,30,0
+2015,1,26,5,30,0
+2015,1,26,6,30,0
+2015,1,26,7,30,0
+2015,1,26,8,30,0
+2015,1,26,9,30,0
+2015,1,26,10,30,0
+2015,1,26,11,30,0
+2015,1,26,12,30,0
+2015,1,26,13,30,0
+2015,1,26,14,30,0
+2015,1,26,15,30,0
+2015,1,26,16,30,0
+2015,1,26,17,30,0
+2015,1,26,18,30,0
+2015,1,26,19,30,0
+2015,1,26,20,30,50
+2015,1,26,21,30,89
+2015,1,26,22,30,105
+2015,1,26,23,30,93
+2015,1,27,0,30,56
+2015,1,27,1,30,0
+2015,1,27,2,30,0
+2015,1,27,3,30,0
+2015,1,27,4,30,0
+2015,1,27,5,30,0
+2015,1,27,6,30,0
+2015,1,27,7,30,0
+2015,1,27,8,30,0
+2015,1,27,9,30,0
+2015,1,27,10,30,0
+2015,1,27,11,30,0
+2015,1,27,12,30,0
+2015,1,27,13,30,0
+2015,1,27,14,30,0
+2015,1,27,15,30,0
+2015,1,27,16,30,0
+2015,1,27,17,30,0
+2015,1,27,18,30,0
+2015,1,27,19,30,0
+2015,1,27,20,30,30
+2015,1,27,21,30,51
+2015,1,27,22,30,47
+2015,1,27,23,30,47
+2015,1,28,0,30,30
+2015,1,28,1,30,0
+2015,1,28,2,30,0
+2015,1,28,3,30,0
+2015,1,28,4,30,0
+2015,1,28,5,30,0
+2015,1,28,6,30,0
+2015,1,28,7,30,0
+2015,1,28,8,30,0
+2015,1,28,9,30,0
+2015,1,28,10,30,0
+2015,1,28,11,30,0
+2015,1,28,12,30,0
+2015,1,28,13,30,0
+2015,1,28,14,30,0
+2015,1,28,15,30,0
+2015,1,28,16,30,0
+2015,1,28,17,30,0
+2015,1,28,18,30,0
+2015,1,28,19,30,0
+2015,1,28,20,30,29
+2015,1,28,21,30,48
+2015,1,28,22,30,60
+2015,1,28,23,30,54
+2015,1,29,0,30,34
+2015,1,29,1,30,5
+2015,1,29,2,30,0
+2015,1,29,3,30,0
+2015,1,29,4,30,0
+2015,1,29,5,30,0
+2015,1,29,6,30,0
+2015,1,29,7,30,0
+2015,1,29,8,30,0
+2015,1,29,9,30,0
+2015,1,29,10,30,0
+2015,1,29,11,30,0
+2015,1,29,12,30,0
+2015,1,29,13,30,0
+2015,1,29,14,30,0
+2015,1,29,15,30,0
+2015,1,29,16,30,0
+2015,1,29,17,30,0
+2015,1,29,18,30,0
+2015,1,29,19,30,0
+2015,1,29,20,30,24
+2015,1,29,21,30,37
+2015,1,29,22,30,63
+2015,1,29,23,30,56
+2015,1,30,0,30,36
+2015,1,30,1,30,8
+2015,1,30,2,30,0
+2015,1,30,3,30,0
+2015,1,30,4,30,0
+2015,1,30,5,30,0
+2015,1,30,6,30,0
+2015,1,30,7,30,0
+2015,1,30,8,30,0
+2015,1,30,9,30,0
+2015,1,30,10,30,0
+2015,1,30,11,30,0
+2015,1,30,12,30,0
+2015,1,30,13,30,0
+2015,1,30,14,30,0
+2015,1,30,15,30,0
+2015,1,30,16,30,0
+2015,1,30,17,30,0
+2015,1,30,18,30,0
+2015,1,30,19,30,0
+2015,1,30,20,30,34
+2015,1,30,21,30,54
+2015,1,30,22,30,62
+2015,1,30,23,30,105
+2015,1,31,0,30,68
+2015,1,31,1,30,20
+2015,1,31,2,30,0
+2015,1,31,3,30,0
+2015,1,31,4,30,0
+2015,1,31,5,30,0
+2015,1,31,6,30,0
+2015,1,31,7,30,0
+2015,1,31,8,30,0
+2015,1,31,9,30,0
+2015,1,31,10,30,0
+2015,1,31,11,30,0
+2015,1,31,12,30,0
+2015,1,31,13,30,0
+2015,1,31,14,30,0
+2015,1,31,15,30,0
+2015,1,31,16,30,0
+2015,1,31,17,30,0
+2015,1,31,18,30,0
+2015,1,31,19,30,15
+2015,1,31,20,30,62
+2015,1,31,21,30,102
+2015,1,31,22,30,118
+2015,1,31,23,30,107
+2018,2,1,0,30,79
+2018,2,1,1,30,26
+2018,2,1,2,30,0
+2018,2,1,3,30,0
+2018,2,1,4,30,0
+2018,2,1,5,30,0
+2018,2,1,6,30,0
+2018,2,1,7,30,0
+2018,2,1,8,30,0
+2018,2,1,9,30,0
+2018,2,1,10,30,0
+2018,2,1,11,30,0
+2018,2,1,12,30,0
+2018,2,1,13,30,0
+2018,2,1,14,30,0
+2018,2,1,15,30,0
+2018,2,1,16,30,0
+2018,2,1,17,30,0
+2018,2,1,18,30,0
+2018,2,1,19,30,21
+2018,2,1,20,30,72
+2018,2,1,21,30,115
+2018,2,1,22,30,132
+2018,2,1,23,30,120
+2018,2,2,0,30,81
+2018,2,2,1,30,28
+2018,2,2,2,30,0
+2018,2,2,3,30,0
+2018,2,2,4,30,0
+2018,2,2,5,30,0
+2018,2,2,6,30,0
+2018,2,2,7,30,0
+2018,2,2,8,30,0
+2018,2,2,9,30,0
+2018,2,2,10,30,0
+2018,2,2,11,30,0
+2018,2,2,12,30,0
+2018,2,2,13,30,0
+2018,2,2,14,30,0
+2018,2,2,15,30,0
+2018,2,2,16,30,0
+2018,2,2,17,30,0
+2018,2,2,18,30,0
+2018,2,2,19,30,22
+2018,2,2,20,30,76
+2018,2,2,21,30,119
+2018,2,2,22,30,137
+2018,2,2,23,30,124
+2018,2,3,0,30,85
+2018,2,3,1,30,31
+2018,2,3,2,30,0
+2018,2,3,3,30,0
+2018,2,3,4,30,0
+2018,2,3,5,30,0
+2018,2,3,6,30,0
+2018,2,3,7,30,0
+2018,2,3,8,30,0
+2018,2,3,9,30,0
+2018,2,3,10,30,0
+2018,2,3,11,30,0
+2018,2,3,12,30,0
+2018,2,3,13,30,0
+2018,2,3,14,30,0
+2018,2,3,15,30,0
+2018,2,3,16,30,0
+2018,2,3,17,30,0
+2018,2,3,18,30,0
+2018,2,3,19,30,26
+2018,2,3,20,30,82
+2018,2,3,21,30,126
+2018,2,3,22,30,144
+2018,2,3,23,30,131
+2018,2,4,0,30,91
+2018,2,4,1,30,35
+2018,2,4,2,30,0
+2018,2,4,3,30,0
+2018,2,4,4,30,0
+2018,2,4,5,30,0
+2018,2,4,6,30,0
+2018,2,4,7,30,0
+2018,2,4,8,30,0
+2018,2,4,9,30,0
+2018,2,4,10,30,0
+2018,2,4,11,30,0
+2018,2,4,12,30,0
+2018,2,4,13,30,0
+2018,2,4,14,30,0
+2018,2,4,15,30,0
+2018,2,4,16,30,0
+2018,2,4,17,30,0
+2018,2,4,18,30,0
+2018,2,4,19,30,29
+2018,2,4,20,30,85
+2018,2,4,21,30,129
+2018,2,4,22,30,147
+2018,2,4,23,30,137
+2018,2,5,0,30,97
+2018,2,5,1,30,39
+2018,2,5,2,30,0
+2018,2,5,3,30,0
+2018,2,5,4,30,0
+2018,2,5,5,30,0
+2018,2,5,6,30,0
+2018,2,5,7,30,0
+2018,2,5,8,30,0
+2018,2,5,9,30,0
+2018,2,5,10,30,0
+2018,2,5,11,30,0
+2018,2,5,12,30,0
+2018,2,5,13,30,0
+2018,2,5,14,30,0
+2018,2,5,15,30,0
+2018,2,5,16,30,0
+2018,2,5,17,30,0
+2018,2,5,18,30,0
+2018,2,5,19,30,33
+2018,2,5,20,30,93
+2018,2,5,21,30,138
+2018,2,5,22,30,156
+2018,2,5,23,30,143
+2018,2,6,0,30,102
+2018,2,6,1,30,43
+2018,2,6,2,30,0
+2018,2,6,3,30,0
+2018,2,6,4,30,0
+2018,2,6,5,30,0
+2018,2,6,6,30,0
+2018,2,6,7,30,0
+2018,2,6,8,30,0
+2018,2,6,9,30,0
+2018,2,6,10,30,0
+2018,2,6,11,30,0
+2018,2,6,12,30,0
+2018,2,6,13,30,0
+2018,2,6,14,30,0
+2018,2,6,15,30,0
+2018,2,6,16,30,0
+2018,2,6,17,30,0
+2018,2,6,18,30,0
+2018,2,6,19,30,38
+2018,2,6,20,30,100
+2018,2,6,21,30,147
+2018,2,6,22,30,166
+2018,2,6,23,30,153
+2018,2,7,0,30,110
+2018,2,7,1,30,49
+2018,2,7,2,30,0
+2018,2,7,3,30,0
+2018,2,7,4,30,0
+2018,2,7,5,30,0
+2018,2,7,6,30,0
+2018,2,7,7,30,0
+2018,2,7,8,30,0
+2018,2,7,9,30,0
+2018,2,7,10,30,0
+2018,2,7,11,30,0
+2018,2,7,12,30,0
+2018,2,7,13,30,0
+2018,2,7,14,30,0
+2018,2,7,15,30,0
+2018,2,7,16,30,0
+2018,2,7,17,30,0
+2018,2,7,18,30,0
+2018,2,7,19,30,42
+2018,2,7,20,30,105
+2018,2,7,21,30,153
+2018,2,7,22,30,171
+2018,2,7,23,30,158
+2018,2,8,0,30,116
+2018,2,8,1,30,54
+2018,2,8,2,30,0
+2018,2,8,3,30,0
+2018,2,8,4,30,0
+2018,2,8,5,30,0
+2018,2,8,6,30,0
+2018,2,8,7,30,0
+2018,2,8,8,30,0
+2018,2,8,9,30,0
+2018,2,8,10,30,0
+2018,2,8,11,30,0
+2018,2,8,12,30,0
+2018,2,8,13,30,0
+2018,2,8,14,30,0
+2018,2,8,15,30,0
+2018,2,8,16,30,0
+2018,2,8,17,30,0
+2018,2,8,18,30,0
+2018,2,8,19,30,46
+2018,2,8,20,30,111
+2018,2,8,21,30,159
+2018,2,8,22,30,178
+2018,2,8,23,30,120
+2018,2,9,0,30,87
+2018,2,9,1,30,40
+2018,2,9,2,30,0
+2018,2,9,3,30,0
+2018,2,9,4,30,0
+2018,2,9,5,30,0
+2018,2,9,6,30,0
+2018,2,9,7,30,0
+2018,2,9,8,30,0
+2018,2,9,9,30,0
+2018,2,9,10,30,0
+2018,2,9,11,30,0
+2018,2,9,12,30,0
+2018,2,9,13,30,0
+2018,2,9,14,30,0
+2018,2,9,15,30,0
+2018,2,9,16,30,0
+2018,2,9,17,30,0
+2018,2,9,18,30,0
+2018,2,9,19,30,51
+2018,2,9,20,30,117
+2018,2,9,21,30,165
+2018,2,9,22,30,185
+2018,2,9,23,30,171
+2018,2,10,0,30,128
+2018,2,10,1,30,63
+2018,2,10,2,30,0
+2018,2,10,3,30,0
+2018,2,10,4,30,0
+2018,2,10,5,30,0
+2018,2,10,6,30,0
+2018,2,10,7,30,0
+2018,2,10,8,30,0
+2018,2,10,9,30,0
+2018,2,10,10,30,0
+2018,2,10,11,30,0
+2018,2,10,12,30,0
+2018,2,10,13,30,0
+2018,2,10,14,30,0
+2018,2,10,15,30,0
+2018,2,10,16,30,0
+2018,2,10,17,30,0
+2018,2,10,18,30,0
+2018,2,10,19,30,56
+2018,2,10,20,30,120
+2018,2,10,21,30,168
+2018,2,10,22,30,154
+2018,2,10,23,30,131
+2018,2,11,0,30,95
+2018,2,11,1,30,46
+2018,2,11,2,30,0
+2018,2,11,3,30,0
+2018,2,11,4,30,0
+2018,2,11,5,30,0
+2018,2,11,6,30,0
+2018,2,11,7,30,0
+2018,2,11,8,30,0
+2018,2,11,9,30,0
+2018,2,11,10,30,0
+2018,2,11,11,30,0
+2018,2,11,12,30,0
+2018,2,11,13,30,0
+2018,2,11,14,30,0
+2018,2,11,15,30,0
+2018,2,11,16,30,0
+2018,2,11,17,30,0
+2018,2,11,18,30,0
+2018,2,11,19,30,53
+2018,2,11,20,30,116
+2018,2,11,21,30,163
+2018,2,11,22,30,13
+2018,2,11,23,30,82
+2018,2,12,0,30,75
+2018,2,12,1,30,36
+2018,2,12,2,30,0
+2018,2,12,3,30,0
+2018,2,12,4,30,0
+2018,2,12,5,30,0
+2018,2,12,6,30,0
+2018,2,12,7,30,0
+2018,2,12,8,30,0
+2018,2,12,9,30,0
+2018,2,12,10,30,0
+2018,2,12,11,30,0
+2018,2,12,12,30,0
+2018,2,12,13,30,0
+2018,2,12,14,30,0
+2018,2,12,15,30,0
+2018,2,12,16,30,0
+2018,2,12,17,30,0
+2018,2,12,18,30,0
+2018,2,12,19,30,6
+2018,2,12,20,30,8
+2018,2,12,21,30,9
+2018,2,12,22,30,103
+2018,2,12,23,30,96
+2018,2,13,0,30,72
+2018,2,13,1,30,53
+2018,2,13,2,30,0
+2018,2,13,3,30,0
+2018,2,13,4,30,0
+2018,2,13,5,30,0
+2018,2,13,6,30,0
+2018,2,13,7,30,0
+2018,2,13,8,30,0
+2018,2,13,9,30,0
+2018,2,13,10,30,0
+2018,2,13,11,30,0
+2018,2,13,12,30,0
+2018,2,13,13,30,0
+2018,2,13,14,30,0
+2018,2,13,15,30,0
+2018,2,13,16,30,0
+2018,2,13,17,30,0
+2018,2,13,18,30,0
+2018,2,13,19,30,8
+2018,2,13,20,30,14
+2018,2,13,21,30,19
+2018,2,13,22,30,198
+2018,2,13,23,30,68
+2018,2,14,0,30,50
+2018,2,14,1,30,26
+2018,2,14,2,30,0
+2018,2,14,3,30,0
+2018,2,14,4,30,0
+2018,2,14,5,30,0
+2018,2,14,6,30,0
+2018,2,14,7,30,0
+2018,2,14,8,30,0
+2018,2,14,9,30,0
+2018,2,14,10,30,0
+2018,2,14,11,30,0
+2018,2,14,12,30,0
+2018,2,14,13,30,0
+2018,2,14,14,30,0
+2018,2,14,15,30,0
+2018,2,14,16,30,0
+2018,2,14,17,30,0
+2018,2,14,18,30,0
+2018,2,14,19,30,38
+2018,2,14,20,30,74
+2018,2,14,21,30,101
+2018,2,14,22,30,127
+2018,2,14,23,30,92
+2018,2,15,0,30,70
+2018,2,15,1,30,40
+2018,2,15,2,30,7
+2018,2,15,3,30,0
+2018,2,15,4,30,0
+2018,2,15,5,30,0
+2018,2,15,6,30,0
+2018,2,15,7,30,0
+2018,2,15,8,30,0
+2018,2,15,9,30,0
+2018,2,15,10,30,0
+2018,2,15,11,30,0
+2018,2,15,12,30,0
+2018,2,15,13,30,0
+2018,2,15,14,30,0
+2018,2,15,15,30,0
+2018,2,15,16,30,0
+2018,2,15,17,30,0
+2018,2,15,18,30,0
+2018,2,15,19,30,20
+2018,2,15,20,30,38
+2018,2,15,21,30,71
+2018,2,15,22,30,83
+2018,2,15,23,30,81
+2018,2,16,0,30,61
+2018,2,16,1,30,33
+2018,2,16,2,30,6
+2018,2,16,3,30,0
+2018,2,16,4,30,0
+2018,2,16,5,30,0
+2018,2,16,6,30,0
+2018,2,16,7,30,0
+2018,2,16,8,30,0
+2018,2,16,9,30,0
+2018,2,16,10,30,0
+2018,2,16,11,30,0
+2018,2,16,12,30,0
+2018,2,16,13,30,0
+2018,2,16,14,30,0
+2018,2,16,15,30,0
+2018,2,16,16,30,0
+2018,2,16,17,30,0
+2018,2,16,18,30,0
+2018,2,16,19,30,81
+2018,2,16,20,30,152
+2018,2,16,21,30,201
+2018,2,16,22,30,220
+2018,2,16,23,30,206
+2018,2,17,0,30,162
+2018,2,17,1,30,93
+2018,2,17,2,30,23
+2018,2,17,3,30,0
+2018,2,17,4,30,0
+2018,2,17,5,30,0
+2018,2,17,6,30,0
+2018,2,17,7,30,0
+2018,2,17,8,30,0
+2018,2,17,9,30,0
+2018,2,17,10,30,0
+2018,2,17,11,30,0
+2018,2,17,12,30,0
+2018,2,17,13,30,0
+2018,2,17,14,30,0
+2018,2,17,15,30,0
+2018,2,17,16,30,0
+2018,2,17,17,30,0
+2018,2,17,18,30,6
+2018,2,17,19,30,41
+2018,2,17,20,30,80
+2018,2,17,21,30,191
+2018,2,17,22,30,112
+2018,2,17,23,30,103
+2018,2,18,0,30,78
+2018,2,18,1,30,43
+2018,2,18,2,30,10
+2018,2,18,3,30,0
+2018,2,18,4,30,0
+2018,2,18,5,30,0
+2018,2,18,6,30,0
+2018,2,18,7,30,0
+2018,2,18,8,30,0
+2018,2,18,9,30,0
+2018,2,18,10,30,0
+2018,2,18,11,30,0
+2018,2,18,12,30,0
+2018,2,18,13,30,0
+2018,2,18,14,30,0
+2018,2,18,15,30,0
+2018,2,18,16,30,0
+2018,2,18,17,30,0
+2018,2,18,18,30,11
+2018,2,18,19,30,59
+2018,2,18,20,30,110
+2018,2,18,21,30,147
+2018,2,18,22,30,171
+2018,2,18,23,30,159
+2018,2,19,0,30,137
+2018,2,19,1,30,81
+2018,2,19,2,30,22
+2018,2,19,3,30,0
+2018,2,19,4,30,0
+2018,2,19,5,30,0
+2018,2,19,6,30,0
+2018,2,19,7,30,0
+2018,2,19,8,30,0
+2018,2,19,9,30,0
+2018,2,19,10,30,0
+2018,2,19,11,30,0
+2018,2,19,12,30,0
+2018,2,19,13,30,0
+2018,2,19,14,30,0
+2018,2,19,15,30,0
+2018,2,19,16,30,0
+2018,2,19,17,30,0
+2018,2,19,18,30,11
+2018,2,19,19,30,43
+2018,2,19,20,30,74
+2018,2,19,21,30,170
+2018,2,19,22,30,71
+2018,2,19,23,30,66
+2018,2,20,0,30,50
+2018,2,20,1,30,30
+2018,2,20,2,30,10
+2018,2,20,3,30,0
+2018,2,20,4,30,0
+2018,2,20,5,30,0
+2018,2,20,6,30,0
+2018,2,20,7,30,0
+2018,2,20,8,30,0
+2018,2,20,9,30,0
+2018,2,20,10,30,0
+2018,2,20,11,30,0
+2018,2,20,12,30,0
+2018,2,20,13,30,0
+2018,2,20,14,30,0
+2018,2,20,15,30,0
+2018,2,20,16,30,0
+2018,2,20,17,30,0
+2018,2,20,18,30,7
+2018,2,20,19,30,26
+2018,2,20,20,30,46
+2018,2,20,21,30,60
+2018,2,20,22,30,138
+2018,2,20,23,30,128
+2018,2,21,0,30,185
+2018,2,21,1,30,114
+2018,2,21,2,30,37
+2018,2,21,3,30,0
+2018,2,21,4,30,0
+2018,2,21,5,30,0
+2018,2,21,6,30,0
+2018,2,21,7,30,0
+2018,2,21,8,30,0
+2018,2,21,9,30,0
+2018,2,21,10,30,0
+2018,2,21,11,30,0
+2018,2,21,12,30,0
+2018,2,21,13,30,0
+2018,2,21,14,30,0
+2018,2,21,15,30,0
+2018,2,21,16,30,0
+2018,2,21,17,30,0
+2018,2,21,18,30,22
+2018,2,21,19,30,81
+2018,2,21,20,30,138
+2018,2,21,21,30,169
+2018,2,21,22,30,154
+2018,2,21,23,30,143
+2018,2,22,0,30,99
+2018,2,22,1,30,62
+2018,2,22,2,30,23
+2018,2,22,3,30,0
+2018,2,22,4,30,0
+2018,2,22,5,30,0
+2018,2,22,6,30,0
+2018,2,22,7,30,0
+2018,2,22,8,30,0
+2018,2,22,9,30,0
+2018,2,22,10,30,0
+2018,2,22,11,30,0
+2018,2,22,12,30,0
+2018,2,22,13,30,0
+2018,2,22,14,30,0
+2018,2,22,15,30,0
+2018,2,22,16,30,0
+2018,2,22,17,30,0
+2018,2,22,18,30,9
+2018,2,22,19,30,20
+2018,2,22,20,30,29
+2018,2,22,21,30,36
+2018,2,22,22,30,147
+2018,2,22,23,30,193
+2018,2,23,0,30,154
+2018,2,23,1,30,97
+2018,2,23,2,30,35
+2018,2,23,3,30,0
+2018,2,23,4,30,0
+2018,2,23,5,30,0
+2018,2,23,6,30,0
+2018,2,23,7,30,0
+2018,2,23,8,30,0
+2018,2,23,9,30,0
+2018,2,23,10,30,0
+2018,2,23,11,30,0
+2018,2,23,12,30,0
+2018,2,23,13,30,0
+2018,2,23,14,30,0
+2018,2,23,15,30,0
+2018,2,23,16,30,0
+2018,2,23,17,30,0
+2018,2,23,18,30,5
+2018,2,23,19,30,12
+2018,2,23,20,30,19
+2018,2,23,21,30,26
+2018,2,23,22,30,28
+2018,2,23,23,30,96
+2018,2,24,0,30,75
+2018,2,24,1,30,23
+2018,2,24,2,30,10
+2018,2,24,3,30,0
+2018,2,24,4,30,0
+2018,2,24,5,30,0
+2018,2,24,6,30,0
+2018,2,24,7,30,0
+2018,2,24,8,30,0
+2018,2,24,9,30,0
+2018,2,24,10,30,0
+2018,2,24,11,30,0
+2018,2,24,12,30,0
+2018,2,24,13,30,0
+2018,2,24,14,30,0
+2018,2,24,15,30,0
+2018,2,24,16,30,0
+2018,2,24,17,30,0
+2018,2,24,18,30,25
+2018,2,24,19,30,67
+2018,2,24,20,30,110
+2018,2,24,21,30,214
+2018,2,24,22,30,234
+2018,2,24,23,30,262
+2018,2,25,0,30,215
+2018,2,25,1,30,142
+2018,2,25,2,30,59
+2018,2,25,3,30,0
+2018,2,25,4,30,0
+2018,2,25,5,30,0
+2018,2,25,6,30,0
+2018,2,25,7,30,0
+2018,2,25,8,30,0
+2018,2,25,9,30,0
+2018,2,25,10,30,0
+2018,2,25,11,30,0
+2018,2,25,12,30,0
+2018,2,25,13,30,0
+2018,2,25,14,30,0
+2018,2,25,15,30,0
+2018,2,25,16,30,0
+2018,2,25,17,30,0
+2018,2,25,18,30,24
+2018,2,25,19,30,70
+2018,2,25,20,30,118
+2018,2,25,21,30,154
+2018,2,25,22,30,169
+2018,2,25,23,30,107
+2018,2,26,0,30,85
+2018,2,26,1,30,71
+2018,2,26,2,30,28
+2018,2,26,3,30,0
+2018,2,26,4,30,0
+2018,2,26,5,30,0
+2018,2,26,6,30,0
+2018,2,26,7,30,0
+2018,2,26,8,30,0
+2018,2,26,9,30,0
+2018,2,26,10,30,0
+2018,2,26,11,30,0
+2018,2,26,12,30,0
+2018,2,26,13,30,0
+2018,2,26,14,30,0
+2018,2,26,15,30,0
+2018,2,26,16,30,0
+2018,2,26,17,30,0
+2018,2,26,18,30,5
+2018,2,26,19,30,6
+2018,2,26,20,30,15
+2018,2,26,21,30,18
+2018,2,26,22,30,287
+2018,2,26,23,30,114
+2018,2,27,0,30,90
+2018,2,27,1,30,57
+2018,2,27,2,30,24
+2018,2,27,3,30,0
+2018,2,27,4,30,0
+2018,2,27,5,30,0
+2018,2,27,6,30,0
+2018,2,27,7,30,0
+2018,2,27,8,30,0
+2018,2,27,9,30,0
+2018,2,27,10,30,0
+2018,2,27,11,30,0
+2018,2,27,12,30,0
+2018,2,27,13,30,0
+2018,2,27,14,30,0
+2018,2,27,15,30,0
+2018,2,27,16,30,0
+2018,2,27,17,30,0
+2018,2,27,18,30,45
+2018,2,27,19,30,113
+2018,2,27,20,30,177
+2018,2,27,21,30,222
+2018,2,27,22,30,176
+2018,2,27,23,30,184
+2018,2,28,0,30,148
+2018,2,28,1,30,97
+2018,2,28,2,30,45
+2018,2,28,3,30,0
+2018,2,28,4,30,0
+2018,2,28,5,30,0
+2018,2,28,6,30,0
+2018,2,28,7,30,0
+2018,2,28,8,30,0
+2018,2,28,9,30,0
+2018,2,28,10,30,0
+2018,2,28,11,30,0
+2018,2,28,12,30,0
+2018,2,28,13,30,0
+2018,2,28,14,30,0
+2018,2,28,15,30,0
+2018,2,28,16,30,0
+2018,2,28,17,30,0
+2018,2,28,18,30,73
+2018,2,28,19,30,167
+2018,2,28,20,30,248
+2018,2,28,21,30,302
+2018,2,28,22,30,136
+2018,2,28,23,30,127
+2022,3,1,0,30,88
+2022,3,1,1,30,57
+2022,3,1,2,30,10
+2022,3,1,3,30,0
+2022,3,1,4,30,0
+2022,3,1,5,30,0
+2022,3,1,6,30,0
+2022,3,1,7,30,0
+2022,3,1,8,30,0
+2022,3,1,9,30,0
+2022,3,1,10,30,0
+2022,3,1,11,30,0
+2022,3,1,12,30,0
+2022,3,1,13,30,0
+2022,3,1,14,30,0
+2022,3,1,15,30,0
+2022,3,1,16,30,0
+2022,3,1,17,30,0
+2022,3,1,18,30,5
+2022,3,1,19,30,10
+2022,3,1,20,30,15
+2022,3,1,21,30,18
+2022,3,1,22,30,20
+2022,3,1,23,30,19
+2022,3,2,0,30,121
+2022,3,2,1,30,78
+2022,3,2,2,30,34
+2022,3,2,3,30,0
+2022,3,2,4,30,0
+2022,3,2,5,30,0
+2022,3,2,6,30,0
+2022,3,2,7,30,0
+2022,3,2,8,30,0
+2022,3,2,9,30,0
+2022,3,2,10,30,0
+2022,3,2,11,30,0
+2022,3,2,12,30,0
+2022,3,2,13,30,0
+2022,3,2,14,30,0
+2022,3,2,15,30,0
+2022,3,2,16,30,0
+2022,3,2,17,30,0
+2022,3,2,18,30,80
+2022,3,2,19,30,171
+2022,3,2,20,30,249
+2022,3,2,21,30,300
+2022,3,2,22,30,319
+2022,3,2,23,30,304
+2022,3,3,0,30,256
+2022,3,3,1,30,181
+2022,3,3,2,30,90
+2022,3,3,3,30,0
+2022,3,3,4,30,0
+2022,3,3,5,30,0
+2022,3,3,6,30,0
+2022,3,3,7,30,0
+2022,3,3,8,30,0
+2022,3,3,9,30,0
+2022,3,3,10,30,0
+2022,3,3,11,30,0
+2022,3,3,12,30,0
+2022,3,3,13,30,0
+2022,3,3,14,30,0
+2022,3,3,15,30,0
+2022,3,3,16,30,0
+2022,3,3,17,30,0
+2022,3,3,18,30,67
+2022,3,3,19,30,143
+2022,3,3,20,30,209
+2022,3,3,21,30,254
+2022,3,3,22,30,211
+2022,3,3,23,30,199
+2022,3,4,0,30,163
+2022,3,4,1,30,110
+2022,3,4,2,30,54
+2022,3,4,3,30,14
+2022,3,4,4,30,0
+2022,3,4,5,30,0
+2022,3,4,6,30,0
+2022,3,4,7,30,0
+2022,3,4,8,30,0
+2022,3,4,9,30,0
+2022,3,4,10,30,0
+2022,3,4,11,30,0
+2022,3,4,12,30,0
+2022,3,4,13,30,0
+2022,3,4,14,30,0
+2022,3,4,15,30,0
+2022,3,4,16,30,0
+2022,3,4,17,30,0
+2022,3,4,18,30,75
+2022,3,4,19,30,154
+2022,3,4,20,30,112
+2022,3,4,21,30,141
+2022,3,4,22,30,317
+2022,3,4,23,30,303
+2022,3,5,0,30,258
+2022,3,5,1,30,187
+2022,3,5,2,30,99
+2022,3,5,3,30,18
+2022,3,5,4,30,0
+2022,3,5,5,30,0
+2022,3,5,6,30,0
+2022,3,5,7,30,0
+2022,3,5,8,30,0
+2022,3,5,9,30,0
+2022,3,5,10,30,0
+2022,3,5,11,30,0
+2022,3,5,12,30,0
+2022,3,5,13,30,0
+2022,3,5,14,30,0
+2022,3,5,15,30,0
+2022,3,5,16,30,0
+2022,3,5,17,30,5
+2022,3,5,18,30,74
+2022,3,5,19,30,151
+2022,3,5,20,30,219
+2022,3,5,21,30,102
+2022,3,5,22,30,109
+2022,3,5,23,30,222
+2022,3,6,0,30,181
+2022,3,6,1,30,125
+2022,3,6,2,30,64
+2022,3,6,3,30,12
+2022,3,6,4,30,0
+2022,3,6,5,30,0
+2022,3,6,6,30,0
+2022,3,6,7,30,0
+2022,3,6,8,30,0
+2022,3,6,9,30,0
+2022,3,6,10,30,0
+2022,3,6,11,30,0
+2022,3,6,12,30,0
+2022,3,6,13,30,0
+2022,3,6,14,30,0
+2022,3,6,15,30,0
+2022,3,6,16,30,0
+2022,3,6,17,30,17
+2022,3,6,18,30,29
+2022,3,6,19,30,60
+2022,3,6,20,30,90
+2022,3,6,21,30,114
+2022,3,6,22,30,123
+2022,3,6,23,30,79
+2022,3,7,0,30,65
+2022,3,7,1,30,24
+2022,3,7,2,30,13
+2022,3,7,3,30,25
+2022,3,7,4,30,0
+2022,3,7,5,30,0
+2022,3,7,6,30,0
+2022,3,7,7,30,0
+2022,3,7,8,30,0
+2022,3,7,9,30,0
+2022,3,7,10,30,0
+2022,3,7,11,30,0
+2022,3,7,12,30,0
+2022,3,7,13,30,0
+2022,3,7,14,30,0
+2022,3,7,15,30,0
+2022,3,7,16,30,0
+2022,3,7,17,30,24
+2022,3,7,18,30,113
+2022,3,7,19,30,209
+2022,3,7,20,30,289
+2022,3,7,21,30,342
+2022,3,7,22,30,361
+2022,3,7,23,30,344
+2022,3,8,0,30,295
+2022,3,8,1,30,217
+2022,3,8,2,30,121
+2022,3,8,3,30,11
+2022,3,8,4,30,0
+2022,3,8,5,30,0
+2022,3,8,6,30,0
+2022,3,8,7,30,0
+2022,3,8,8,30,0
+2022,3,8,9,30,0
+2022,3,8,10,30,0
+2022,3,8,11,30,0
+2022,3,8,12,30,0
+2022,3,8,13,30,0
+2022,3,8,14,30,0
+2022,3,8,15,30,0
+2022,3,8,16,30,0
+2022,3,8,17,30,27
+2022,3,8,18,30,101
+2022,3,8,19,30,187
+2022,3,8,20,30,259
+2022,3,8,21,30,306
+2022,3,8,22,30,232
+2022,3,8,23,30,254
+2022,3,9,0,30,210
+2022,3,9,1,30,172
+2022,3,9,2,30,94
+2022,3,9,3,30,19
+2022,3,9,4,30,0
+2022,3,9,5,30,0
+2022,3,9,6,30,0
+2022,3,9,7,30,0
+2022,3,9,8,30,0
+2022,3,9,9,30,0
+2022,3,9,10,30,0
+2022,3,9,11,30,0
+2022,3,9,12,30,0
+2022,3,9,13,30,0
+2022,3,9,14,30,0
+2022,3,9,15,30,0
+2022,3,9,16,30,0
+2022,3,9,17,30,19
+2022,3,9,18,30,40
+2022,3,9,19,30,78
+2022,3,9,20,30,114
+2022,3,9,21,30,244
+2022,3,9,22,30,286
+2022,3,9,23,30,272
+2022,3,10,0,30,229
+2022,3,10,1,30,166
+2022,3,10,2,30,91
+2022,3,10,3,30,22
+2022,3,10,4,30,0
+2022,3,10,5,30,0
+2022,3,10,6,30,0
+2022,3,10,7,30,0
+2022,3,10,8,30,0
+2022,3,10,9,30,0
+2022,3,10,10,30,0
+2022,3,10,11,30,0
+2022,3,10,12,30,0
+2022,3,10,13,30,0
+2022,3,10,14,30,0
+2022,3,10,15,30,0
+2022,3,10,16,30,0
+2022,3,10,17,30,23
+2022,3,10,18,30,100
+2022,3,10,19,30,180
+2022,3,10,20,30,249
+2022,3,10,21,30,296
+2022,3,10,22,30,202
+2022,3,10,23,30,193
+2022,3,11,0,30,114
+2022,3,11,1,30,80
+2022,3,11,2,30,43
+2022,3,11,3,30,40
+2022,3,11,4,30,0
+2022,3,11,5,30,0
+2022,3,11,6,30,0
+2022,3,11,7,30,0
+2022,3,11,8,30,0
+2022,3,11,9,30,0
+2022,3,11,10,30,0
+2022,3,11,11,30,0
+2022,3,11,12,30,0
+2022,3,11,13,30,0
+2022,3,11,14,30,0
+2022,3,11,15,30,0
+2022,3,11,16,30,0
+2022,3,11,17,30,44
+2022,3,11,18,30,143
+2022,3,11,19,30,244
+2022,3,11,20,30,326
+2022,3,11,21,30,379
+2022,3,11,22,30,397
+2022,3,11,23,30,380
+2022,3,12,0,30,328
+2022,3,12,1,30,247
+2022,3,12,2,30,147
+2022,3,12,3,30,47
+2022,3,12,4,30,0
+2022,3,12,5,30,0
+2022,3,12,6,30,0
+2022,3,12,7,30,0
+2022,3,12,8,30,0
+2022,3,12,9,30,0
+2022,3,12,10,30,0
+2022,3,12,11,30,0
+2022,3,12,12,30,0
+2022,3,12,13,30,0
+2022,3,12,14,30,0
+2022,3,12,15,30,0
+2022,3,12,16,30,0
+2022,3,12,17,30,51
+2022,3,12,18,30,155
+2022,3,12,19,30,258
+2022,3,12,20,30,342
+2022,3,12,21,30,396
+2022,3,12,22,30,415
+2022,3,12,23,30,397
+2022,3,13,0,30,344
+2022,3,13,1,30,261
+2022,3,13,2,30,159
+2022,3,13,3,30,54
+2022,3,13,4,30,0
+2022,3,13,5,30,0
+2022,3,13,6,30,0
+2022,3,13,7,30,0
+2022,3,13,8,30,0
+2022,3,13,9,30,0
+2022,3,13,10,30,0
+2022,3,13,11,30,0
+2022,3,13,12,30,0
+2022,3,13,13,30,0
+2022,3,13,14,30,0
+2022,3,13,15,30,0
+2022,3,13,16,30,0
+2022,3,13,17,30,49
+2022,3,13,18,30,161
+2022,3,13,19,30,265
+2022,3,13,20,30,349
+2022,3,13,21,30,403
+2022,3,13,22,30,422
+2022,3,13,23,30,404
+2022,3,14,0,30,351
+2022,3,14,1,30,268
+2022,3,14,2,30,164
+2022,3,14,3,30,59
+2022,3,14,4,30,0
+2022,3,14,5,30,0
+2022,3,14,6,30,0
+2022,3,14,7,30,0
+2022,3,14,8,30,0
+2022,3,14,9,30,0
+2022,3,14,10,30,0
+2022,3,14,11,30,0
+2022,3,14,12,30,0
+2022,3,14,13,30,0
+2022,3,14,14,30,0
+2022,3,14,15,30,0
+2022,3,14,16,30,0
+2022,3,14,17,30,59
+2022,3,14,18,30,164
+2022,3,14,19,30,266
+2022,3,14,20,30,349
+2022,3,14,21,30,402
+2022,3,14,22,30,421
+2022,3,14,23,30,403
+2022,3,15,0,30,350
+2022,3,15,1,30,268
+2022,3,15,2,30,165
+2022,3,15,3,30,61
+2022,3,15,4,30,0
+2022,3,15,5,30,0
+2022,3,15,6,30,0
+2022,3,15,7,30,0
+2022,3,15,8,30,0
+2022,3,15,9,30,0
+2022,3,15,10,30,0
+2022,3,15,11,30,0
+2022,3,15,12,30,0
+2022,3,15,13,30,0
+2022,3,15,14,30,0
+2022,3,15,15,30,0
+2022,3,15,16,30,0
+2022,3,15,17,30,66
+2022,3,15,18,30,172
+2022,3,15,19,30,275
+2022,3,15,20,30,357
+2022,3,15,21,30,410
+2022,3,15,22,30,428
+2022,3,15,23,30,410
+2022,3,16,0,30,358
+2022,3,16,1,30,275
+2022,3,16,2,30,173
+2022,3,16,3,30,42
+2022,3,16,4,30,0
+2022,3,16,5,30,0
+2022,3,16,6,30,0
+2022,3,16,7,30,0
+2022,3,16,8,30,0
+2022,3,16,9,30,0
+2022,3,16,10,30,0
+2022,3,16,11,30,0
+2022,3,16,12,30,0
+2022,3,16,13,30,0
+2022,3,16,14,30,0
+2022,3,16,15,30,0
+2022,3,16,16,30,0
+2022,3,16,17,30,33
+2022,3,16,18,30,160
+2022,3,16,19,30,260
+2022,3,16,20,30,341
+2022,3,16,21,30,265
+2022,3,16,22,30,310
+2022,3,16,23,30,294
+2022,3,17,0,30,249
+2022,3,17,1,30,184
+2022,3,17,2,30,110
+2022,3,17,3,30,66
+2022,3,17,4,30,0
+2022,3,17,5,30,0
+2022,3,17,6,30,0
+2022,3,17,7,30,0
+2022,3,17,8,30,0
+2022,3,17,9,30,0
+2022,3,17,10,30,0
+2022,3,17,11,30,0
+2022,3,17,12,30,0
+2022,3,17,13,30,0
+2022,3,17,14,30,0
+2022,3,17,15,30,0
+2022,3,17,16,30,0
+2022,3,17,17,30,72
+2022,3,17,18,30,128
+2022,3,17,19,30,210
+2022,3,17,20,30,277
+2022,3,17,21,30,323
+2022,3,17,22,30,290
+2022,3,17,23,30,275
+2022,3,18,0,30,330
+2022,3,18,1,30,250
+2022,3,18,2,30,155
+2022,3,18,3,30,70
+2022,3,18,4,30,0
+2022,3,18,5,30,0
+2022,3,18,6,30,0
+2022,3,18,7,30,0
+2022,3,18,8,30,0
+2022,3,18,9,30,0
+2022,3,18,10,30,0
+2022,3,18,11,30,0
+2022,3,18,12,30,0
+2022,3,18,13,30,0
+2022,3,18,14,30,0
+2022,3,18,15,30,0
+2022,3,18,16,30,0
+2022,3,18,17,30,80
+2022,3,18,18,30,186
+2022,3,18,19,30,287
+2022,3,18,20,30,365
+2022,3,18,21,30,417
+2022,3,18,22,30,434
+2022,3,18,23,30,416
+2022,3,19,0,30,364
+2022,3,19,1,30,282
+2022,3,19,2,30,182
+2022,3,19,3,30,74
+2022,3,19,4,30,0
+2022,3,19,5,30,0
+2022,3,19,6,30,0
+2022,3,19,7,30,0
+2022,3,19,8,30,0
+2022,3,19,9,30,0
+2022,3,19,10,30,0
+2022,3,19,11,30,0
+2022,3,19,12,30,0
+2022,3,19,13,30,0
+2022,3,19,14,30,0
+2022,3,19,15,30,0
+2022,3,19,16,30,0
+2022,3,19,17,30,67
+2022,3,19,18,30,157
+2022,3,19,19,30,245
+2022,3,19,20,30,317
+2022,3,19,21,30,364
+2022,3,19,22,30,442
+2022,3,19,23,30,423
+2022,3,20,0,30,371
+2022,3,20,1,30,290
+2022,3,20,2,30,189
+2022,3,20,3,30,84
+2022,3,20,4,30,0
+2022,3,20,5,30,0
+2022,3,20,6,30,0
+2022,3,20,7,30,0
+2022,3,20,8,30,0
+2022,3,20,9,30,0
+2022,3,20,10,30,0
+2022,3,20,11,30,0
+2022,3,20,12,30,0
+2022,3,20,13,30,0
+2022,3,20,14,30,0
+2022,3,20,15,30,0
+2022,3,20,16,30,0
+2022,3,20,17,30,94
+2022,3,20,18,30,203
+2022,3,20,19,30,305
+2022,3,20,20,30,386
+2022,3,20,21,30,443
+2022,3,20,22,30,460
+2022,3,20,23,30,441
+2022,3,21,0,30,387
+2022,3,21,1,30,304
+2022,3,21,2,30,200
+2022,3,21,3,30,93
+2022,3,21,4,30,0
+2022,3,21,5,30,0
+2022,3,21,6,30,0
+2022,3,21,7,30,0
+2022,3,21,8,30,0
+2022,3,21,9,30,0
+2022,3,21,10,30,0
+2022,3,21,11,30,0
+2022,3,21,12,30,0
+2022,3,21,13,30,0
+2022,3,21,14,30,0
+2022,3,21,15,30,0
+2022,3,21,16,30,15
+2022,3,21,17,30,103
+2022,3,21,18,30,215
+2022,3,21,19,30,319
+2022,3,21,20,30,402
+2022,3,21,21,30,455
+2022,3,21,22,30,472
+2022,3,21,23,30,453
+2022,3,22,0,30,399
+2022,3,22,1,30,315
+2022,3,22,2,30,210
+2022,3,22,3,30,98
+2022,3,22,4,30,0
+2022,3,22,5,30,0
+2022,3,22,6,30,0
+2022,3,22,7,30,0
+2022,3,22,8,30,0
+2022,3,22,9,30,0
+2022,3,22,10,30,0
+2022,3,22,11,30,0
+2022,3,22,12,30,0
+2022,3,22,13,30,0
+2022,3,22,14,30,0
+2022,3,22,15,30,0
+2022,3,22,16,30,18
+2022,3,22,17,30,109
+2022,3,22,18,30,220
+2022,3,22,19,30,324
+2022,3,22,20,30,406
+2022,3,22,21,30,453
+2022,3,22,22,30,470
+2022,3,22,23,30,451
+2022,3,23,0,30,398
+2022,3,23,1,30,315
+2022,3,23,2,30,211
+2022,3,23,3,30,102
+2022,3,23,4,30,15
+2022,3,23,5,30,0
+2022,3,23,6,30,0
+2022,3,23,7,30,0
+2022,3,23,8,30,0
+2022,3,23,9,30,0
+2022,3,23,10,30,0
+2022,3,23,11,30,0
+2022,3,23,12,30,0
+2022,3,23,13,30,0
+2022,3,23,14,30,0
+2022,3,23,15,30,0
+2022,3,23,16,30,22
+2022,3,23,17,30,115
+2022,3,23,18,30,226
+2022,3,23,19,30,329
+2022,3,23,20,30,410
+2022,3,23,21,30,457
+2022,3,23,22,30,474
+2022,3,23,23,30,455
+2022,3,24,0,30,401
+2022,3,24,1,30,318
+2022,3,24,2,30,213
+2022,3,24,3,30,103
+2022,3,24,4,30,17
+2022,3,24,5,30,0
+2022,3,24,6,30,0
+2022,3,24,7,30,0
+2022,3,24,8,30,0
+2022,3,24,9,30,0
+2022,3,24,10,30,0
+2022,3,24,11,30,0
+2022,3,24,12,30,0
+2022,3,24,13,30,0
+2022,3,24,14,30,0
+2022,3,24,15,30,0
+2022,3,24,16,30,25
+2022,3,24,17,30,121
+2022,3,24,18,30,207
+2022,3,24,19,30,306
+2022,3,24,20,30,386
+2022,3,24,21,30,437
+2022,3,24,22,30,403
+2022,3,24,23,30,466
+2022,3,25,0,30,412
+2022,3,25,1,30,328
+2022,3,25,2,30,224
+2022,3,25,3,30,104
+2022,3,25,4,30,16
+2022,3,25,5,30,0
+2022,3,25,6,30,0
+2022,3,25,7,30,0
+2022,3,25,8,30,0
+2022,3,25,9,30,0
+2022,3,25,10,30,0
+2022,3,25,11,30,0
+2022,3,25,12,30,0
+2022,3,25,13,30,0
+2022,3,25,14,30,0
+2022,3,25,15,30,0
+2022,3,25,16,30,29
+2022,3,25,17,30,125
+2022,3,25,18,30,201
+2022,3,25,19,30,294
+2022,3,25,20,30,371
+2022,3,25,21,30,466
+2022,3,25,22,30,398
+2022,3,25,23,30,381
+2022,3,26,0,30,323
+2022,3,26,1,30,251
+2022,3,26,2,30,166
+2022,3,26,3,30,110
+2022,3,26,4,30,21
+2022,3,26,5,30,0
+2022,3,26,6,30,0
+2022,3,26,7,30,0
+2022,3,26,8,30,0
+2022,3,26,9,30,0
+2022,3,26,10,30,0
+2022,3,26,11,30,0
+2022,3,26,12,30,0
+2022,3,26,13,30,0
+2022,3,26,14,30,0
+2022,3,26,15,30,0
+2022,3,26,16,30,25
+2022,3,26,17,30,106
+2022,3,26,18,30,237
+2022,3,26,19,30,338
+2022,3,26,20,30,417
+2022,3,26,21,30,467
+2022,3,26,22,30,486
+2022,3,26,23,30,466
+2022,3,27,0,30,338
+2022,3,27,1,30,263
+2022,3,27,2,30,174
+2022,3,27,3,30,117
+2022,3,27,4,30,25
+2022,3,27,5,30,0
+2022,3,27,6,30,0
+2022,3,27,7,30,0
+2022,3,27,8,30,0
+2022,3,27,9,30,0
+2022,3,27,10,30,0
+2022,3,27,11,30,0
+2022,3,27,12,30,0
+2022,3,27,13,30,0
+2022,3,27,14,30,0
+2022,3,27,15,30,0
+2022,3,27,16,30,37
+2022,3,27,17,30,137
+2022,3,27,18,30,250
+2022,3,27,19,30,353
+2022,3,27,20,30,434
+2022,3,27,21,30,485
+2022,3,27,22,30,501
+2022,3,27,23,30,481
+2022,3,28,0,30,427
+2022,3,28,1,30,344
+2022,3,28,2,30,239
+2022,3,28,3,30,118
+2022,3,28,4,30,27
+2022,3,28,5,30,0
+2022,3,28,6,30,0
+2022,3,28,7,30,0
+2022,3,28,8,30,0
+2022,3,28,9,30,0
+2022,3,28,10,30,0
+2022,3,28,11,30,0
+2022,3,28,12,30,0
+2022,3,28,13,30,0
+2022,3,28,14,30,0
+2022,3,28,15,30,0
+2022,3,28,16,30,35
+2022,3,28,17,30,121
+2022,3,28,18,30,222
+2022,3,28,19,30,319
+2022,3,28,20,30,397
+2022,3,28,21,30,448
+2022,3,28,22,30,481
+2022,3,28,23,30,376
+2022,3,29,0,30,328
+2022,3,29,1,30,255
+2022,3,29,2,30,170
+2022,3,29,3,30,128
+2022,3,29,4,30,32
+2022,3,29,5,30,0
+2022,3,29,6,30,0
+2022,3,29,7,30,0
+2022,3,29,8,30,0
+2022,3,29,9,30,0
+2022,3,29,10,30,0
+2022,3,29,11,30,0
+2022,3,29,12,30,0
+2022,3,29,13,30,0
+2022,3,29,14,30,0
+2022,3,29,15,30,0
+2022,3,29,16,30,46
+2022,3,29,17,30,147
+2022,3,29,18,30,215
+2022,3,29,19,30,290
+2022,3,29,20,30,362
+2022,3,29,21,30,408
+2022,3,29,22,30,426
+2022,3,29,23,30,314
+2022,3,30,0,30,274
+2022,3,30,1,30,210
+2022,3,30,2,30,138
+2022,3,30,3,30,131
+2022,3,30,4,30,35
+2022,3,30,5,30,0
+2022,3,30,6,30,0
+2022,3,30,7,30,0
+2022,3,30,8,30,0
+2022,3,30,9,30,0
+2022,3,30,10,30,0
+2022,3,30,11,30,0
+2022,3,30,12,30,0
+2022,3,30,13,30,0
+2022,3,30,14,30,0
+2022,3,30,15,30,0
+2022,3,30,16,30,52
+2022,3,30,17,30,159
+2022,3,30,18,30,193
+2022,3,30,19,30,282
+2022,3,30,20,30,361
+2022,3,30,21,30,452
+2022,3,30,22,30,534
+2022,3,30,23,30,512
+2022,3,31,0,30,463
+2022,3,31,1,30,376
+2022,3,31,2,30,267
+2022,3,31,3,30,149
+2022,3,31,4,30,43
+2022,3,31,5,30,0
+2022,3,31,6,30,0
+2022,3,31,7,30,0
+2022,3,31,8,30,0
+2022,3,31,9,30,0
+2022,3,31,10,30,0
+2022,3,31,11,30,0
+2022,3,31,12,30,0
+2022,3,31,13,30,0
+2022,3,31,14,30,0
+2022,3,31,15,30,0
+2022,3,31,16,30,61
+2022,3,31,17,30,172
+2022,3,31,18,30,291
+2022,3,31,19,30,397
+2022,3,31,20,30,480
+2022,3,31,21,30,524
+2022,3,31,22,30,476
+2022,3,31,23,30,518
+2015,4,1,0,30,357
+2015,4,1,1,30,283
+2015,4,1,2,30,256
+2015,4,1,3,30,142
+2015,4,1,4,30,42
+2015,4,1,5,30,0
+2015,4,1,6,30,0
+2015,4,1,7,30,0
+2015,4,1,8,30,0
+2015,4,1,9,30,0
+2015,4,1,10,30,0
+2015,4,1,11,30,0
+2015,4,1,12,30,0
+2015,4,1,13,30,0
+2015,4,1,14,30,0
+2015,4,1,15,30,0
+2015,4,1,16,30,61
+2015,4,1,17,30,169
+2015,4,1,18,30,238
+2015,4,1,19,30,341
+2015,4,1,20,30,425
+2015,4,1,21,30,475
+2015,4,1,22,30,471
+2015,4,1,23,30,475
+2015,4,2,0,30,423
+2015,4,2,1,30,340
+2015,4,2,2,30,239
+2015,4,2,3,30,129
+2015,4,2,4,30,41
+2015,4,2,5,30,0
+2015,4,2,6,30,0
+2015,4,2,7,30,0
+2015,4,2,8,30,0
+2015,4,2,9,30,0
+2015,4,2,10,30,0
+2015,4,2,11,30,0
+2015,4,2,12,30,0
+2015,4,2,13,30,0
+2015,4,2,14,30,0
+2015,4,2,15,30,0
+2015,4,2,16,30,60
+2015,4,2,17,30,164
+2015,4,2,18,30,224
+2015,4,2,19,30,315
+2015,4,2,20,30,387
+2015,4,2,21,30,428
+2015,4,2,22,30,421
+2015,4,2,23,30,398
+2015,4,3,0,30,219
+2015,4,3,1,30,168
+2015,4,3,2,30,112
+2015,4,3,3,30,147
+2015,4,3,4,30,48
+2015,4,3,5,30,0
+2015,4,3,6,30,0
+2015,4,3,7,30,0
+2015,4,3,8,30,0
+2015,4,3,9,30,0
+2015,4,3,10,30,0
+2015,4,3,11,30,0
+2015,4,3,12,30,0
+2015,4,3,13,30,0
+2015,4,3,14,30,0
+2015,4,3,15,30,0
+2015,4,3,16,30,70
+2015,4,3,17,30,178
+2015,4,3,18,30,231
+2015,4,3,19,30,323
+2015,4,3,20,30,396
+2015,4,3,21,30,442
+2015,4,3,22,30,434
+2015,4,3,23,30,435
+2015,4,4,0,30,382
+2015,4,4,1,30,303
+2015,4,4,2,30,210
+2015,4,4,3,30,159
+2015,4,4,4,30,55
+2015,4,4,5,30,0
+2015,4,4,6,30,0
+2015,4,4,7,30,0
+2015,4,4,8,30,0
+2015,4,4,9,30,0
+2015,4,4,10,30,0
+2015,4,4,11,30,0
+2015,4,4,12,30,0
+2015,4,4,13,30,0
+2015,4,4,14,30,0
+2015,4,4,15,30,0
+2015,4,4,16,30,63
+2015,4,4,17,30,154
+2015,4,4,18,30,260
+2015,4,4,19,30,330
+2015,4,4,20,30,406
+2015,4,4,21,30,454
+2015,4,4,22,30,468
+2015,4,4,23,30,448
+2015,4,5,0,30,394
+2015,4,5,1,30,314
+2015,4,5,2,30,219
+2015,4,5,3,30,86
+2015,4,5,4,30,28
+2015,4,5,5,30,0
+2015,4,5,6,30,0
+2015,4,5,7,30,0
+2015,4,5,8,30,0
+2015,4,5,9,30,0
+2015,4,5,10,30,0
+2015,4,5,11,30,0
+2015,4,5,12,30,0
+2015,4,5,13,30,0
+2015,4,5,14,30,0
+2015,4,5,15,30,0
+2015,4,5,16,30,86
+2015,4,5,17,30,200
+2015,4,5,18,30,255
+2015,4,5,19,30,352
+2015,4,5,20,30,431
+2015,4,5,21,30,464
+2015,4,5,22,30,479
+2015,4,5,23,30,484
+2015,4,6,0,30,423
+2015,4,6,1,30,338
+2015,4,6,2,30,236
+2015,4,6,3,30,136
+2015,4,6,4,30,61
+2015,4,6,5,30,0
+2015,4,6,6,30,0
+2015,4,6,7,30,0
+2015,4,6,8,30,0
+2015,4,6,9,30,0
+2015,4,6,10,30,0
+2015,4,6,11,30,0
+2015,4,6,12,30,0
+2015,4,6,13,30,0
+2015,4,6,14,30,0
+2015,4,6,15,30,0
+2015,4,6,16,30,62
+2015,4,6,17,30,130
+2015,4,6,18,30,222
+2015,4,6,19,30,310
+2015,4,6,20,30,460
+2015,4,6,21,30,513
+2015,4,6,22,30,529
+2015,4,6,23,30,467
+2015,4,7,0,30,444
+2015,4,7,1,30,363
+2015,4,7,2,30,262
+2015,4,7,3,30,161
+2015,4,7,4,30,62
+2015,4,7,5,30,0
+2015,4,7,6,30,0
+2015,4,7,7,30,0
+2015,4,7,8,30,0
+2015,4,7,9,30,0
+2015,4,7,10,30,0
+2015,4,7,11,30,0
+2015,4,7,12,30,0
+2015,4,7,13,30,0
+2015,4,7,14,30,0
+2015,4,7,15,30,5
+2015,4,7,16,30,61
+2015,4,7,17,30,75
+2015,4,7,18,30,125
+2015,4,7,19,30,178
+2015,4,7,20,30,143
+2015,4,7,21,30,302
+2015,4,7,22,30,311
+2015,4,7,23,30,297
+2015,4,8,0,30,260
+2015,4,8,1,30,202
+2015,4,8,2,30,139
+2015,4,8,3,30,79
+2015,4,8,4,30,76
+2015,4,8,5,30,0
+2015,4,8,6,30,0
+2015,4,8,7,30,0
+2015,4,8,8,30,0
+2015,4,8,9,30,0
+2015,4,8,10,30,0
+2015,4,8,11,30,0
+2015,4,8,12,30,0
+2015,4,8,13,30,0
+2015,4,8,14,30,0
+2015,4,8,15,30,17
+2015,4,8,16,30,102
+2015,4,8,17,30,158
+2015,4,8,18,30,253
+2015,4,8,19,30,343
+2015,4,8,20,30,414
+2015,4,8,21,30,458
+2015,4,8,22,30,470
+2015,4,8,23,30,458
+2015,4,9,0,30,412
+2015,4,9,1,30,336
+2015,4,9,2,30,243
+2015,4,9,3,30,163
+2015,4,9,4,30,68
+2015,4,9,5,30,0
+2015,4,9,6,30,0
+2015,4,9,7,30,0
+2015,4,9,8,30,0
+2015,4,9,9,30,0
+2015,4,9,10,30,0
+2015,4,9,11,30,0
+2015,4,9,12,30,0
+2015,4,9,13,30,0
+2015,4,9,14,30,0
+2015,4,9,15,30,19
+2015,4,9,16,30,105
+2015,4,9,17,30,220
+2015,4,9,18,30,337
+2015,4,9,19,30,412
+2015,4,9,20,30,499
+2015,4,9,21,30,501
+2015,4,9,22,30,533
+2015,4,9,23,30,510
+2015,4,10,0,30,420
+2015,4,10,1,30,342
+2015,4,10,2,30,248
+2015,4,10,3,30,149
+2015,4,10,4,30,82
+2015,4,10,5,30,0
+2015,4,10,6,30,0
+2015,4,10,7,30,0
+2015,4,10,8,30,0
+2015,4,10,9,30,0
+2015,4,10,10,30,0
+2015,4,10,11,30,0
+2015,4,10,12,30,0
+2015,4,10,13,30,0
+2015,4,10,14,30,0
+2015,4,10,15,30,24
+2015,4,10,16,30,115
+2015,4,10,17,30,202
+2015,4,10,18,30,308
+2015,4,10,19,30,405
+2015,4,10,20,30,481
+2015,4,10,21,30,527
+2015,4,10,22,30,454
+2015,4,10,23,30,496
+2015,4,11,0,30,448
+2015,4,11,1,30,368
+2015,4,11,2,30,271
+2015,4,11,3,30,169
+2015,4,11,4,30,88
+2015,4,11,5,30,0
+2015,4,11,6,30,0
+2015,4,11,7,30,0
+2015,4,11,8,30,0
+2015,4,11,9,30,0
+2015,4,11,10,30,0
+2015,4,11,11,30,0
+2015,4,11,12,30,0
+2015,4,11,13,30,0
+2015,4,11,14,30,0
+2015,4,11,15,30,18
+2015,4,11,16,30,82
+2015,4,11,17,30,143
+2015,4,11,18,30,232
+2015,4,11,19,30,318
+2015,4,11,20,30,388
+2015,4,11,21,30,479
+2015,4,11,22,30,290
+2015,4,11,23,30,275
+2015,4,12,0,30,245
+2015,4,12,1,30,176
+2015,4,12,2,30,122
+2015,4,12,3,30,168
+2015,4,12,4,30,74
+2015,4,12,5,30,6
+2015,4,12,6,30,0
+2015,4,12,7,30,0
+2015,4,12,8,30,0
+2015,4,12,9,30,0
+2015,4,12,10,30,0
+2015,4,12,11,30,0
+2015,4,12,12,30,0
+2015,4,12,13,30,0
+2015,4,12,14,30,0
+2015,4,12,15,30,26
+2015,4,12,16,30,111
+2015,4,12,17,30,190
+2015,4,12,18,30,292
+2015,4,12,19,30,381
+2015,4,12,20,30,457
+2015,4,12,21,30,483
+2015,4,12,22,30,452
+2015,4,12,23,30,430
+2015,4,13,0,30,368
+2015,4,13,1,30,294
+2015,4,13,2,30,208
+2015,4,13,3,30,122
+2015,4,13,4,30,59
+2015,4,13,5,30,6
+2015,4,13,6,30,0
+2015,4,13,7,30,0
+2015,4,13,8,30,0
+2015,4,13,9,30,0
+2015,4,13,10,30,0
+2015,4,13,11,30,0
+2015,4,13,12,30,0
+2015,4,13,13,30,0
+2015,4,13,14,30,0
+2015,4,13,15,30,16
+2015,4,13,16,30,68
+2015,4,13,17,30,205
+2015,4,13,18,30,317
+2015,4,13,19,30,73
+2015,4,13,20,30,88
+2015,4,13,21,30,100
+2015,4,13,22,30,102
+2015,4,13,23,30,361
+2015,4,14,0,30,319
+2015,4,14,1,30,254
+2015,4,14,2,30,178
+2015,4,14,3,30,205
+2015,4,14,4,30,107
+2015,4,14,5,30,20
+2015,4,14,6,30,0
+2015,4,14,7,30,0
+2015,4,14,8,30,0
+2015,4,14,9,30,0
+2015,4,14,10,30,0
+2015,4,14,11,30,0
+2015,4,14,12,30,0
+2015,4,14,13,30,0
+2015,4,14,14,30,0
+2015,4,14,15,30,41
+2015,4,14,16,30,140
+2015,4,14,17,30,257
+2015,4,14,18,30,324
+2015,4,14,19,30,431
+2015,4,14,20,30,515
+2015,4,14,21,30,422
+2015,4,14,22,30,552
+2015,4,14,23,30,528
+2015,4,15,0,30,467
+2015,4,15,1,30,384
+2015,4,15,2,30,281
+2015,4,15,3,30,176
+2015,4,15,4,30,111
+2015,4,15,5,30,22
+2015,4,15,6,30,0
+2015,4,15,7,30,0
+2015,4,15,8,30,0
+2015,4,15,9,30,0
+2015,4,15,10,30,0
+2015,4,15,11,30,0
+2015,4,15,12,30,0
+2015,4,15,13,30,0
+2015,4,15,14,30,0
+2015,4,15,15,30,42
+2015,4,15,16,30,137
+2015,4,15,17,30,218
+2015,4,15,18,30,330
+2015,4,15,19,30,435
+2015,4,15,20,30,514
+2015,4,15,21,30,565
+2015,4,15,22,30,533
+2015,4,15,23,30,510
+2015,4,16,0,30,539
+2015,4,16,1,30,451
+2015,4,16,2,30,343
+2015,4,16,3,30,222
+2015,4,16,4,30,49
+2015,4,16,5,30,9
+2015,4,16,6,30,0
+2015,4,16,7,30,0
+2015,4,16,8,30,0
+2015,4,16,9,30,0
+2015,4,16,10,30,0
+2015,4,16,11,30,0
+2015,4,16,12,30,0
+2015,4,16,13,30,0
+2015,4,16,14,30,0
+2015,4,16,15,30,44
+2015,4,16,16,30,133
+2015,4,16,17,30,218
+2015,4,16,18,30,316
+2015,4,16,19,30,406
+2015,4,16,20,30,476
+2015,4,16,21,30,502
+2015,4,16,22,30,504
+2015,4,16,23,30,482
+2015,4,17,0,30,430
+2015,4,17,1,30,354
+2015,4,17,2,30,262
+2015,4,17,3,30,166
+2015,4,17,4,30,102
+2015,4,17,5,30,22
+2015,4,17,6,30,0
+2015,4,17,7,30,0
+2015,4,17,8,30,0
+2015,4,17,9,30,0
+2015,4,17,10,30,0
+2015,4,17,11,30,0
+2015,4,17,12,30,0
+2015,4,17,13,30,0
+2015,4,17,14,30,0
+2015,4,17,15,30,29
+2015,4,17,16,30,129
+2015,4,17,17,30,231
+2015,4,17,18,30,328
+2015,4,17,19,30,428
+2015,4,17,20,30,508
+2015,4,17,21,30,556
+2015,4,17,22,30,573
+2015,4,17,23,30,545
+2015,4,18,0,30,490
+2015,4,18,1,30,409
+2015,4,18,2,30,310
+2015,4,18,3,30,242
+2015,4,18,4,30,125
+2015,4,18,5,30,31
+2015,4,18,6,30,0
+2015,4,18,7,30,0
+2015,4,18,8,30,0
+2015,4,18,9,30,0
+2015,4,18,10,30,0
+2015,4,18,11,30,0
+2015,4,18,12,30,0
+2015,4,18,13,30,0
+2015,4,18,14,30,0
+2015,4,18,15,30,53
+2015,4,18,16,30,143
+2015,4,18,17,30,271
+2015,4,18,18,30,382
+2015,4,18,19,30,475
+2015,4,18,20,30,498
+2015,4,18,21,30,546
+2015,4,18,22,30,569
+2015,4,18,23,30,545
+2015,4,19,0,30,449
+2015,4,19,1,30,369
+2015,4,19,2,30,275
+2015,4,19,3,30,177
+2015,4,19,4,30,81
+2015,4,19,5,30,19
+2015,4,19,6,30,0
+2015,4,19,7,30,0
+2015,4,19,8,30,0
+2015,4,19,9,30,0
+2015,4,19,10,30,0
+2015,4,19,11,30,0
+2015,4,19,12,30,0
+2015,4,19,13,30,0
+2015,4,19,14,30,0
+2015,4,19,15,30,53
+2015,4,19,16,30,115
+2015,4,19,17,30,213
+2015,4,19,18,30,312
+2015,4,19,19,30,406
+2015,4,19,20,30,482
+2015,4,19,21,30,530
+2015,4,19,22,30,273
+2015,4,19,23,30,301
+2015,4,20,0,30,263
+2015,4,20,1,30,211
+2015,4,20,2,30,153
+2015,4,20,3,30,96
+2015,4,20,4,30,133
+2015,4,20,5,30,38
+2015,4,20,6,30,0
+2015,4,20,7,30,0
+2015,4,20,8,30,0
+2015,4,20,9,30,0
+2015,4,20,10,30,0
+2015,4,20,11,30,0
+2015,4,20,12,30,0
+2015,4,20,13,30,0
+2015,4,20,14,30,0
+2015,4,20,15,30,68
+2015,4,20,16,30,172
+2015,4,20,17,30,288
+2015,4,20,18,30,398
+2015,4,20,19,30,492
+2015,4,20,20,30,453
+2015,4,20,21,30,492
+2015,4,20,22,30,501
+2015,4,20,23,30,443
+2015,4,21,0,30,396
+2015,4,21,1,30,328
+2015,4,21,2,30,245
+2015,4,21,3,30,159
+2015,4,21,4,30,68
+2015,4,21,5,30,21
+2015,4,21,6,30,0
+2015,4,21,7,30,0
+2015,4,21,8,30,0
+2015,4,21,9,30,0
+2015,4,21,10,30,0
+2015,4,21,11,30,0
+2015,4,21,12,30,0
+2015,4,21,13,30,0
+2015,4,21,14,30,0
+2015,4,21,15,30,48
+2015,4,21,16,30,128
+2015,4,21,17,30,291
+2015,4,21,18,30,407
+2015,4,21,19,30,504
+2015,4,21,20,30,530
+2015,4,21,21,30,447
+2015,4,21,22,30,453
+2015,4,21,23,30,421
+2015,4,22,0,30,375
+2015,4,22,1,30,308
+2015,4,22,2,30,230
+2015,4,22,3,30,147
+2015,4,22,4,30,140
+2015,4,22,5,30,45
+2015,4,22,6,30,0
+2015,4,22,7,30,0
+2015,4,22,8,30,0
+2015,4,22,9,30,0
+2015,4,22,10,30,0
+2015,4,22,11,30,0
+2015,4,22,12,30,0
+2015,4,22,13,30,0
+2015,4,22,14,30,0
+2015,4,22,15,30,77
+2015,4,22,16,30,185
+2015,4,22,17,30,304
+2015,4,22,18,30,419
+2015,4,22,19,30,411
+2015,4,22,20,30,483
+2015,4,22,21,30,526
+2015,4,22,22,30,533
+2015,4,22,23,30,622
+2015,4,23,0,30,566
+2015,4,23,1,30,483
+2015,4,23,2,30,378
+2015,4,23,3,30,261
+2015,4,23,4,30,147
+2015,4,23,5,30,49
+2015,4,23,6,30,0
+2015,4,23,7,30,0
+2015,4,23,8,30,0
+2015,4,23,9,30,0
+2015,4,23,10,30,0
+2015,4,23,11,30,0
+2015,4,23,12,30,0
+2015,4,23,13,30,0
+2015,4,23,14,30,0
+2015,4,23,15,30,79
+2015,4,23,16,30,93
+2015,4,23,17,30,304
+2015,4,23,18,30,418
+2015,4,23,19,30,517
+2015,4,23,20,30,587
+2015,4,23,21,30,633
+2015,4,23,22,30,538
+2015,4,23,23,30,516
+2015,4,24,0,30,462
+2015,4,24,1,30,384
+2015,4,24,2,30,288
+2015,4,24,3,30,260
+2015,4,24,4,30,145
+2015,4,24,5,30,49
+2015,4,24,6,30,0
+2015,4,24,7,30,0
+2015,4,24,8,30,0
+2015,4,24,9,30,0
+2015,4,24,10,30,0
+2015,4,24,11,30,0
+2015,4,24,12,30,0
+2015,4,24,13,30,0
+2015,4,24,14,30,11
+2015,4,24,15,30,63
+2015,4,24,16,30,150
+2015,4,24,17,30,312
+2015,4,24,18,30,422
+2015,4,24,19,30,520
+2015,4,24,20,30,594
+2015,4,24,21,30,639
+2015,4,24,22,30,651
+2015,4,24,23,30,628
+2015,4,25,0,30,572
+2015,4,25,1,30,489
+2015,4,25,2,30,385
+2015,4,25,3,30,269
+2015,4,25,4,30,153
+2015,4,25,5,30,51
+2015,4,25,6,30,0
+2015,4,25,7,30,0
+2015,4,25,8,30,0
+2015,4,25,9,30,0
+2015,4,25,10,30,0
+2015,4,25,11,30,0
+2015,4,25,12,30,0
+2015,4,25,13,30,0
+2015,4,25,14,30,15
+2015,4,25,15,30,87
+2015,4,25,16,30,194
+2015,4,25,17,30,310
+2015,4,25,18,30,423
+2015,4,25,19,30,520
+2015,4,25,20,30,594
+2015,4,25,21,30,501
+2015,4,25,22,30,471
+2015,4,25,23,30,451
+2015,4,26,0,30,502
+2015,4,26,1,30,418
+2015,4,26,2,30,316
+2015,4,26,3,30,212
+2015,4,26,4,30,154
+2015,4,26,5,30,57
+2015,4,26,6,30,0
+2015,4,26,7,30,0
+2015,4,26,8,30,0
+2015,4,26,9,30,0
+2015,4,26,10,30,0
+2015,4,26,11,30,0
+2015,4,26,12,30,0
+2015,4,26,13,30,0
+2015,4,26,14,30,17
+2015,4,26,15,30,92
+2015,4,26,16,30,199
+2015,4,26,17,30,316
+2015,4,26,18,30,428
+2015,4,26,19,30,526
+2015,4,26,20,30,599
+2015,4,26,21,30,640
+2015,4,26,22,30,651
+2015,4,26,23,30,171
+2015,4,27,0,30,152
+2015,4,27,1,30,124
+2015,4,27,2,30,91
+2015,4,27,3,30,269
+2015,4,27,4,30,156
+2015,4,27,5,30,60
+2015,4,27,6,30,0
+2015,4,27,7,30,0
+2015,4,27,8,30,0
+2015,4,27,9,30,0
+2015,4,27,10,30,0
+2015,4,27,11,30,0
+2015,4,27,12,30,0
+2015,4,27,13,30,0
+2015,4,27,14,30,8
+2015,4,27,15,30,74
+2015,4,27,16,30,166
+2015,4,27,17,30,269
+2015,4,27,18,30,432
+2015,4,27,19,30,529
+2015,4,27,20,30,376
+2015,4,27,21,30,410
+2015,4,27,22,30,408
+2015,4,27,23,30,390
+2015,4,28,0,30,347
+2015,4,28,1,30,496
+2015,4,28,2,30,393
+2015,4,28,3,30,249
+2015,4,28,4,30,146
+2015,4,28,5,30,60
+2015,4,28,6,30,0
+2015,4,28,7,30,0
+2015,4,28,8,30,0
+2015,4,28,9,30,0
+2015,4,28,10,30,0
+2015,4,28,11,30,0
+2015,4,28,12,30,0
+2015,4,28,13,30,0
+2015,4,28,14,30,23
+2015,4,28,15,30,102
+2015,4,28,16,30,210
+2015,4,28,17,30,328
+2015,4,28,18,30,440
+2015,4,28,19,30,537
+2015,4,28,20,30,610
+2015,4,28,21,30,656
+2015,4,28,22,30,667
+2015,4,28,23,30,643
+2015,4,29,0,30,589
+2015,4,29,1,30,505
+2015,4,29,2,30,402
+2015,4,29,3,30,286
+2015,4,29,4,30,170
+2015,4,29,5,30,69
+2015,4,29,6,30,0
+2015,4,29,7,30,0
+2015,4,29,8,30,0
+2015,4,29,9,30,0
+2015,4,29,10,30,0
+2015,4,29,11,30,0
+2015,4,29,12,30,0
+2015,4,29,13,30,0
+2015,4,29,14,30,26
+2015,4,29,15,30,107
+2015,4,29,16,30,216
+2015,4,29,17,30,334
+2015,4,29,18,30,446
+2015,4,29,19,30,542
+2015,4,29,20,30,615
+2015,4,29,21,30,662
+2015,4,29,22,30,669
+2015,4,29,23,30,645
+2015,4,30,0,30,590
+2015,4,30,1,30,507
+2015,4,30,2,30,404
+2015,4,30,3,30,289
+2015,4,30,4,30,174
+2015,4,30,5,30,73
+2015,4,30,6,30,0
+2015,4,30,7,30,0
+2015,4,30,8,30,0
+2015,4,30,9,30,0
+2015,4,30,10,30,0
+2015,4,30,11,30,0
+2015,4,30,12,30,0
+2015,4,30,13,30,0
+2015,4,30,14,30,30
+2015,4,30,15,30,115
+2015,4,30,16,30,225
+2015,4,30,17,30,342
+2015,4,30,18,30,455
+2015,4,30,19,30,551
+2015,4,30,20,30,624
+2015,4,30,21,30,449
+2015,4,30,22,30,458
+2015,4,30,23,30,438
+2023,5,1,0,30,579
+2023,5,1,1,30,490
+2023,5,1,2,30,335
+2023,5,1,3,30,230
+2023,5,1,4,30,132
+2023,5,1,5,30,81
+2023,5,1,6,30,13
+2023,5,1,7,30,0
+2023,5,1,8,30,0
+2023,5,1,9,30,0
+2023,5,1,10,30,0
+2023,5,1,11,30,0
+2023,5,1,12,30,0
+2023,5,1,13,30,0
+2023,5,1,14,30,35
+2023,5,1,15,30,121
+2023,5,1,16,30,172
+2023,5,1,17,30,276
+2023,5,1,18,30,381
+2023,5,1,19,30,476
+2023,5,1,20,30,547
+2023,5,1,21,30,564
+2023,5,1,22,30,507
+2023,5,1,23,30,566
+2023,5,2,0,30,510
+2023,5,2,1,30,429
+2023,5,2,2,30,332
+2023,5,2,3,30,229
+2023,5,2,4,30,73
+2023,5,2,5,30,26
+2023,5,2,6,30,4
+2023,5,2,7,30,0
+2023,5,2,8,30,0
+2023,5,2,9,30,0
+2023,5,2,10,30,0
+2023,5,2,11,30,0
+2023,5,2,12,30,0
+2023,5,2,13,30,0
+2023,5,2,14,30,9
+2023,5,2,15,30,27
+2023,5,2,16,30,56
+2023,5,2,17,30,93
+2023,5,2,18,30,371
+2023,5,2,19,30,464
+2023,5,2,20,30,532
+2023,5,2,21,30,576
+2023,5,2,22,30,586
+2023,5,2,23,30,562
+2023,5,3,0,30,547
+2023,5,3,1,30,460
+2023,5,3,2,30,356
+2023,5,3,3,30,248
+2023,5,3,4,30,113
+2023,5,3,5,30,47
+2023,5,3,6,30,7
+2023,5,3,7,30,0
+2023,5,3,8,30,0
+2023,5,3,9,30,0
+2023,5,3,10,30,0
+2023,5,3,11,30,0
+2023,5,3,12,30,0
+2023,5,3,13,30,0
+2023,5,3,14,30,34
+2023,5,3,15,30,110
+2023,5,3,16,30,208
+2023,5,3,17,30,319
+2023,5,3,18,30,438
+2023,5,3,19,30,548
+2023,5,3,20,30,629
+2023,5,3,21,30,637
+2023,5,3,22,30,645
+2023,5,3,23,30,634
+2023,5,4,0,30,570
+2023,5,4,1,30,481
+2023,5,4,2,30,373
+2023,5,4,3,30,261
+2023,5,4,4,30,131
+2023,5,4,5,30,62
+2023,5,4,6,30,13
+2023,5,4,7,30,0
+2023,5,4,8,30,0
+2023,5,4,9,30,0
+2023,5,4,10,30,0
+2023,5,4,11,30,0
+2023,5,4,12,30,0
+2023,5,4,13,30,0
+2023,5,4,14,30,36
+2023,5,4,15,30,117
+2023,5,4,16,30,231
+2023,5,4,17,30,304
+2023,5,4,18,30,415
+2023,5,4,19,30,516
+2023,5,4,20,30,594
+2023,5,4,21,30,638
+2023,5,4,22,30,653
+2023,5,4,23,30,627
+2023,5,5,0,30,581
+2023,5,5,1,30,491
+2023,5,5,2,30,381
+2023,5,5,3,30,267
+2023,5,5,4,30,66
+2023,5,5,5,30,29
+2023,5,5,6,30,6
+2023,5,5,7,30,0
+2023,5,5,8,30,0
+2023,5,5,9,30,0
+2023,5,5,10,30,0
+2023,5,5,11,30,0
+2023,5,5,12,30,0
+2023,5,5,13,30,0
+2023,5,5,14,30,48
+2023,5,5,15,30,138
+2023,5,5,16,30,252
+2023,5,5,17,30,369
+2023,5,5,18,30,436
+2023,5,5,19,30,540
+2023,5,5,20,30,581
+2023,5,5,21,30,627
+2023,5,5,22,30,658
+2023,5,5,23,30,632
+2023,5,6,0,30,569
+2023,5,6,1,30,481
+2023,5,6,2,30,375
+2023,5,6,3,30,264
+2023,5,6,4,30,142
+2023,5,6,5,30,67
+2023,5,6,6,30,16
+2023,5,6,7,30,0
+2023,5,6,8,30,0
+2023,5,6,9,30,0
+2023,5,6,10,30,0
+2023,5,6,11,30,0
+2023,5,6,12,30,0
+2023,5,6,13,30,0
+2023,5,6,14,30,4
+2023,5,6,15,30,8
+2023,5,6,16,30,15
+2023,5,6,17,30,308
+2023,5,6,18,30,418
+2023,5,6,19,30,517
+2023,5,6,20,30,594
+2023,5,6,21,30,525
+2023,5,6,22,30,534
+2023,5,6,23,30,611
+2023,5,7,0,30,444
+2023,5,7,1,30,370
+2023,5,7,2,30,283
+2023,5,7,3,30,193
+2023,5,7,4,30,112
+2023,5,7,5,30,102
+2023,5,7,6,30,26
+2023,5,7,7,30,0
+2023,5,7,8,30,0
+2023,5,7,9,30,0
+2023,5,7,10,30,0
+2023,5,7,11,30,0
+2023,5,7,12,30,0
+2023,5,7,13,30,0
+2023,5,7,14,30,44
+2023,5,7,15,30,123
+2023,5,7,16,30,231
+2023,5,7,17,30,301
+2023,5,7,18,30,407
+2023,5,7,19,30,502
+2023,5,7,20,30,577
+2023,5,7,21,30,623
+2023,5,7,22,30,462
+2023,5,7,23,30,439
+2023,5,8,0,30,393
+2023,5,8,1,30,327
+2023,5,8,2,30,249
+2023,5,8,3,30,170
+2023,5,8,4,30,177
+2023,5,8,5,30,87
+2023,5,8,6,30,23
+2023,5,8,7,30,0
+2023,5,8,8,30,0
+2023,5,8,9,30,0
+2023,5,8,10,30,0
+2023,5,8,11,30,0
+2023,5,8,12,30,0
+2023,5,8,13,30,0
+2023,5,8,14,30,53
+2023,5,8,15,30,108
+2023,5,8,16,30,199
+2023,5,8,17,30,301
+2023,5,8,18,30,417
+2023,5,8,19,30,514
+2023,5,8,20,30,589
+2023,5,8,21,30,694
+2023,5,8,22,30,706
+2023,5,8,23,30,684
+2023,5,9,0,30,630
+2023,5,9,1,30,548
+2023,5,9,2,30,445
+2023,5,9,3,30,332
+2023,5,9,4,30,172
+2023,5,9,5,30,84
+2023,5,9,6,30,21
+2023,5,9,7,30,0
+2023,5,9,8,30,0
+2023,5,9,9,30,0
+2023,5,9,10,30,0
+2023,5,9,11,30,0
+2023,5,9,12,30,0
+2023,5,9,13,30,0
+2023,5,9,14,30,45
+2023,5,9,15,30,115
+2023,5,9,16,30,206
+2023,5,9,17,30,180
+2023,5,9,18,30,253
+2023,5,9,19,30,320
+2023,5,9,20,30,377
+2023,5,9,21,30,412
+2023,5,9,22,30,431
+2023,5,9,23,30,510
+2023,5,10,0,30,385
+2023,5,10,1,30,350
+2023,5,10,2,30,272
+2023,5,10,3,30,192
+2023,5,10,4,30,117
+2023,5,10,5,30,111
+2023,5,10,6,30,33
+2023,5,10,7,30,0
+2023,5,10,8,30,0
+2023,5,10,9,30,0
+2023,5,10,10,30,0
+2023,5,10,11,30,0
+2023,5,10,12,30,0
+2023,5,10,13,30,0
+2023,5,10,14,30,48
+2023,5,10,15,30,121
+2023,5,10,16,30,218
+2023,5,10,17,30,258
+2023,5,10,18,30,346
+2023,5,10,19,30,421
+2023,5,10,20,30,480
+2023,5,10,21,30,443
+2023,5,10,22,30,539
+2023,5,10,23,30,561
+2023,5,11,0,30,510
+2023,5,11,1,30,434
+2023,5,11,2,30,342
+2023,5,11,3,30,246
+2023,5,11,4,30,219
+2023,5,11,5,30,115
+2023,5,11,6,30,37
+2023,5,11,7,30,0
+2023,5,11,8,30,0
+2023,5,11,9,30,0
+2023,5,11,10,30,0
+2023,5,11,11,30,0
+2023,5,11,12,30,0
+2023,5,11,13,30,0
+2023,5,11,14,30,40
+2023,5,11,15,30,98
+2023,5,11,16,30,175
+2023,5,11,17,30,182
+2023,5,11,18,30,250
+2023,5,11,19,30,313
+2023,5,11,20,30,362
+2023,5,11,21,30,392
+2023,5,11,22,30,351
+2023,5,11,23,30,277
+2023,5,12,0,30,359
+2023,5,12,1,30,301
+2023,5,12,2,30,233
+2023,5,12,3,30,162
+2023,5,12,4,30,98
+2023,5,12,5,30,42
+2023,5,12,6,30,13
+2023,5,12,7,30,0
+2023,5,12,8,30,0
+2023,5,12,9,30,0
+2023,5,12,10,30,0
+2023,5,12,11,30,0
+2023,5,12,12,30,0
+2023,5,12,13,30,12
+2023,5,12,14,30,67
+2023,5,12,15,30,159
+2023,5,12,16,30,268
+2023,5,12,17,30,383
+2023,5,12,18,30,492
+2023,5,12,19,30,586
+2023,5,12,20,30,656
+2023,5,12,21,30,700
+2023,5,12,22,30,710
+2023,5,12,23,30,687
+2023,5,13,0,30,634
+2023,5,13,1,30,553
+2023,5,13,2,30,452
+2023,5,13,3,30,340
+2023,5,13,4,30,118
+2023,5,13,5,30,58
+2023,5,13,6,30,18
+2023,5,13,7,30,0
+2023,5,13,8,30,0
+2023,5,13,9,30,0
+2023,5,13,10,30,0
+2023,5,13,11,30,0
+2023,5,13,12,30,0
+2023,5,13,13,30,7
+2023,5,13,14,30,50
+2023,5,13,15,30,120
+2023,5,13,16,30,272
+2023,5,13,17,30,386
+2023,5,13,18,30,396
+2023,5,13,19,30,484
+2023,5,13,20,30,554
+2023,5,13,21,30,700
+2023,5,13,22,30,710
+2023,5,13,23,30,686
+2023,5,14,0,30,633
+2023,5,14,1,30,552
+2023,5,14,2,30,452
+2023,5,14,3,30,340
+2023,5,14,4,30,227
+2023,5,14,5,30,124
+2023,5,14,6,30,43
+2023,5,14,7,30,0
+2023,5,14,8,30,0
+2023,5,14,9,30,0
+2023,5,14,10,30,0
+2023,5,14,11,30,0
+2023,5,14,12,30,0
+2023,5,14,13,30,5
+2023,5,14,14,30,27
+2023,5,14,15,30,65
+2023,5,14,16,30,119
+2023,5,14,17,30,402
+2023,5,14,18,30,513
+2023,5,14,19,30,607
+2023,5,14,20,30,675
+2023,5,14,21,30,717
+2023,5,14,22,30,724
+2023,5,14,23,30,699
+2023,5,15,0,30,646
+2023,5,15,1,30,421
+2023,5,15,2,30,336
+2023,5,15,3,30,352
+2023,5,15,4,30,235
+2023,5,15,5,30,129
+2023,5,15,6,30,47
+2023,5,15,7,30,0
+2023,5,15,8,30,0
+2023,5,15,9,30,0
+2023,5,15,10,30,0
+2023,5,15,11,30,0
+2023,5,15,12,30,0
+2023,5,15,13,30,18
+2023,5,15,14,30,81
+2023,5,15,15,30,176
+2023,5,15,16,30,287
+2023,5,15,17,30,401
+2023,5,15,18,30,510
+2023,5,15,19,30,599
+2023,5,15,20,30,661
+2023,5,15,21,30,698
+2023,5,15,22,30,467
+2023,5,15,23,30,475
+2023,5,16,0,30,431
+2023,5,16,1,30,366
+2023,5,16,2,30,287
+2023,5,16,3,30,205
+2023,5,16,4,30,68
+2023,5,16,5,30,35
+2023,5,16,6,30,13
+2023,5,16,7,30,0
+2023,5,16,8,30,0
+2023,5,16,9,30,0
+2023,5,16,10,30,0
+2023,5,16,11,30,0
+2023,5,16,12,30,0
+2023,5,16,13,30,16
+2023,5,16,14,30,66
+2023,5,16,15,30,147
+2023,5,16,16,30,286
+2023,5,16,17,30,275
+2023,5,16,18,30,361
+2023,5,16,19,30,437
+2023,5,16,20,30,493
+2023,5,16,21,30,526
+2023,5,16,22,30,543
+2023,5,16,23,30,550
+2023,5,17,0,30,504
+2023,5,17,1,30,348
+2023,5,17,2,30,274
+2023,5,17,3,30,345
+2023,5,17,4,30,234
+2023,5,17,5,30,131
+2023,5,17,6,30,52
+2023,5,17,7,30,0
+2023,5,17,8,30,0
+2023,5,17,9,30,0
+2023,5,17,10,30,0
+2023,5,17,11,30,0
+2023,5,17,12,30,0
+2023,5,17,13,30,10
+2023,5,17,14,30,43
+2023,5,17,15,30,59
+2023,5,17,16,30,124
+2023,5,17,17,30,188
+2023,5,17,18,30,511
+2023,5,17,19,30,604
+2023,5,17,20,30,675
+2023,5,17,21,30,720
+2023,5,17,22,30,727
+2023,5,17,23,30,485
+2023,5,18,0,30,438
+2023,5,18,1,30,373
+2023,5,18,2,30,294
+2023,5,18,3,30,211
+2023,5,18,4,30,115
+2023,5,18,5,30,59
+2023,5,18,6,30,22
+2023,5,18,7,30,0
+2023,5,18,8,30,0
+2023,5,18,9,30,0
+2023,5,18,10,30,0
+2023,5,18,11,30,0
+2023,5,18,12,30,0
+2023,5,18,13,30,23
+2023,5,18,14,30,70
+2023,5,18,15,30,150
+2023,5,18,16,30,281
+2023,5,18,17,30,406
+2023,5,18,18,30,522
+2023,5,18,19,30,613
+2023,5,18,20,30,684
+2023,5,18,21,30,726
+2023,5,18,22,30,736
+2023,5,18,23,30,713
+2023,5,19,0,30,641
+2023,5,19,1,30,558
+2023,5,19,2,30,452
+2023,5,19,3,30,333
+2023,5,19,4,30,249
+2023,5,19,5,30,143
+2023,5,19,6,30,58
+2023,5,19,7,30,0
+2023,5,19,8,30,0
+2023,5,19,9,30,0
+2023,5,19,10,30,0
+2023,5,19,11,30,0
+2023,5,19,12,30,0
+2023,5,19,13,30,20
+2023,5,19,14,30,79
+2023,5,19,15,30,184
+2023,5,19,16,30,293
+2023,5,19,17,30,404
+2023,5,19,18,30,454
+2023,5,19,19,30,546
+2023,5,19,20,30,615
+2023,5,19,21,30,657
+2023,5,19,22,30,719
+2023,5,19,23,30,696
+2023,5,20,0,30,643
+2023,5,20,1,30,565
+2023,5,20,2,30,467
+2023,5,20,3,30,325
+2023,5,20,4,30,212
+2023,5,20,5,30,116
+2023,5,20,6,30,47
+2023,5,20,7,30,0
+2023,5,20,8,30,0
+2023,5,20,9,30,0
+2023,5,20,10,30,0
+2023,5,20,11,30,0
+2023,5,20,12,30,0
+2023,5,20,13,30,6
+2023,5,20,14,30,21
+2023,5,20,15,30,83
+2023,5,20,16,30,145
+2023,5,20,17,30,265
+2023,5,20,18,30,349
+2023,5,20,19,30,424
+2023,5,20,20,30,482
+2023,5,20,21,30,709
+2023,5,20,22,30,559
+2023,5,20,23,30,536
+2023,5,21,0,30,638
+2023,5,21,1,30,559
+2023,5,21,2,30,456
+2023,5,21,3,30,340
+2023,5,21,4,30,246
+2023,5,21,5,30,144
+2023,5,21,6,30,62
+2023,5,21,7,30,13
+2023,5,21,8,30,0
+2023,5,21,9,30,0
+2023,5,21,10,30,0
+2023,5,21,11,30,0
+2023,5,21,12,30,0
+2023,5,21,13,30,29
+2023,5,21,14,30,94
+2023,5,21,15,30,188
+2023,5,21,16,30,297
+2023,5,21,17,30,409
+2023,5,21,18,30,511
+2023,5,21,19,30,602
+2023,5,21,20,30,668
+2023,5,21,21,30,716
+2023,5,21,22,30,725
+2023,5,21,23,30,490
+2023,5,22,0,30,446
+2023,5,22,1,30,556
+2023,5,22,2,30,369
+2023,5,22,3,30,29
+2023,5,22,4,30,18
+2023,5,22,5,30,10
+2023,5,22,6,30,5
+2023,5,22,7,30,1
+2023,5,22,8,30,0
+2023,5,22,9,30,0
+2023,5,22,10,30,0
+2023,5,22,11,30,0
+2023,5,22,12,30,0
+2023,5,22,13,30,2
+2023,5,22,14,30,5
+2023,5,22,15,30,9
+2023,5,22,16,30,11
+2023,5,22,17,30,17
+2023,5,22,18,30,181
+2023,5,22,19,30,229
+2023,5,22,20,30,267
+2023,5,22,21,30,470
+2023,5,22,22,30,478
+2023,5,22,23,30,638
+2023,5,23,0,30,585
+2023,5,23,1,30,507
+2023,5,23,2,30,408
+2023,5,23,3,30,302
+2023,5,23,4,30,105
+2023,5,23,5,30,57
+2023,5,23,6,30,24
+2023,5,23,7,30,5
+2023,5,23,8,30,0
+2023,5,23,9,30,0
+2023,5,23,10,30,0
+2023,5,23,11,30,0
+2023,5,23,12,30,0
+2023,5,23,13,30,34
+2023,5,23,14,30,103
+2023,5,23,15,30,199
+2023,5,23,16,30,313
+2023,5,23,17,30,404
+2023,5,23,18,30,520
+2023,5,23,19,30,618
+2023,5,23,20,30,686
+2023,5,23,21,30,727
+2023,5,23,22,30,750
+2023,5,23,23,30,724
+2023,5,24,0,30,669
+2023,5,24,1,30,589
+2023,5,24,2,30,488
+2023,5,24,3,30,377
+2023,5,24,4,30,262
+2023,5,24,5,30,157
+2023,5,24,6,30,71
+2023,5,24,7,30,18
+2023,5,24,8,30,0
+2023,5,24,9,30,0
+2023,5,24,10,30,0
+2023,5,24,11,30,0
+2023,5,24,12,30,0
+2023,5,24,13,30,11
+2023,5,24,14,30,52
+2023,5,24,15,30,137
+2023,5,24,16,30,139
+2023,5,24,17,30,207
+2023,5,24,18,30,486
+2023,5,24,19,30,564
+2023,5,24,20,30,634
+2023,5,24,21,30,675
+2023,5,24,22,30,572
+2023,5,24,23,30,472
+2023,5,25,0,30,429
+2023,5,25,1,30,367
+2023,5,25,2,30,292
+2023,5,25,3,30,277
+2023,5,25,4,30,186
+2023,5,25,5,30,107
+2023,5,25,6,30,46
+2023,5,25,7,30,10
+2023,5,25,8,30,0
+2023,5,25,9,30,0
+2023,5,25,10,30,0
+2023,5,25,11,30,0
+2023,5,25,12,30,0
+2023,5,25,13,30,36
+2023,5,25,14,30,104
+2023,5,25,15,30,199
+2023,5,25,16,30,310
+2023,5,25,17,30,423
+2023,5,25,18,30,531
+2023,5,25,19,30,624
+2023,5,25,20,30,693
+2023,5,25,21,30,466
+2023,5,25,22,30,596
+2023,5,25,23,30,575
+2023,5,26,0,30,551
+2023,5,26,1,30,481
+2023,5,26,2,30,396
+2023,5,26,3,30,303
+2023,5,26,4,30,63
+2023,5,26,5,30,37
+2023,5,26,6,30,19
+2023,5,26,7,30,6
+2023,5,26,8,30,0
+2023,5,26,9,30,0
+2023,5,26,10,30,0
+2023,5,26,11,30,0
+2023,5,26,12,30,0
+2023,5,26,13,30,18
+2023,5,26,14,30,12
+2023,5,26,15,30,19
+2023,5,26,16,30,6
+2023,5,26,17,30,85
+2023,5,26,18,30,117
+2023,5,26,19,30,148
+2023,5,26,20,30,174
+2023,5,26,21,30,191
+2023,5,26,22,30,377
+2023,5,26,23,30,479
+2023,5,27,0,30,435
+2023,5,27,1,30,372
+2023,5,27,2,30,296
+2023,5,27,3,30,368
+2023,5,27,4,30,248
+2023,5,27,5,30,142
+2023,5,27,6,30,65
+2023,5,27,7,30,16
+2023,5,27,8,30,0
+2023,5,27,9,30,0
+2023,5,27,10,30,0
+2023,5,27,11,30,0
+2023,5,27,12,30,0
+2023,5,27,13,30,43
+2023,5,27,14,30,115
+2023,5,27,15,30,212
+2023,5,27,16,30,325
+2023,5,27,17,30,441
+2023,5,27,18,30,549
+2023,5,27,19,30,641
+2023,5,27,20,30,711
+2023,5,27,21,30,562
+2023,5,27,22,30,571
+2023,5,27,23,30,739
+2023,5,28,0,30,686
+2023,5,28,1,30,605
+2023,5,28,2,30,505
+2023,5,28,3,30,392
+2023,5,28,4,30,199
+2023,5,28,5,30,117
+2023,5,28,6,30,53
+2023,5,28,7,30,13
+2023,5,28,8,30,0
+2023,5,28,9,30,0
+2023,5,28,10,30,0
+2023,5,28,11,30,0
+2023,5,28,12,30,0
+2023,5,28,13,30,11
+2023,5,28,14,30,88
+2023,5,28,15,30,165
+2023,5,28,16,30,61
+2023,5,28,17,30,248
+2023,5,28,18,30,327
+2023,5,28,19,30,396
+2023,5,28,20,30,451
+2023,5,28,21,30,483
+2023,5,28,22,30,369
+2023,5,28,23,30,353
+2023,5,29,0,30,318
+2023,5,29,1,30,267
+2023,5,29,2,30,168
+2023,5,29,3,30,222
+2023,5,29,4,30,147
+2023,5,29,5,30,86
+2023,5,29,6,30,34
+2023,5,29,7,30,11
+2023,5,29,8,30,0
+2023,5,29,9,30,0
+2023,5,29,10,30,0
+2023,5,29,11,30,0
+2023,5,29,12,30,0
+2023,5,29,13,30,15
+2023,5,29,14,30,28
+2023,5,29,15,30,43
+2023,5,29,16,30,53
+2023,5,29,17,30,78
+2023,5,29,18,30,91
+2023,5,29,19,30,116
+2023,5,29,20,30,125
+2023,5,29,21,30,137
+2023,5,29,22,30,140
+2023,5,29,23,30,127
+2023,5,30,0,30,113
+2023,5,30,1,30,93
+2023,5,30,2,30,71
+2023,5,30,3,30,248
+2023,5,30,4,30,167
+2023,5,30,5,30,98
+2023,5,30,6,30,47
+2023,5,30,7,30,15
+2023,5,30,8,30,0
+2023,5,30,9,30,0
+2023,5,30,10,30,0
+2023,5,30,11,30,0
+2023,5,30,12,30,0
+2023,5,30,13,30,46
+2023,5,30,14,30,116
+2023,5,30,15,30,212
+2023,5,30,16,30,322
+2023,5,30,17,30,92
+2023,5,30,18,30,122
+2023,5,30,19,30,150
+2023,5,30,20,30,171
+2023,5,30,21,30,183
+2023,5,30,22,30,142
+2023,5,30,23,30,132
+2023,5,31,0,30,120
+2023,5,31,1,30,149
+2023,5,31,2,30,114
+2023,5,31,3,30,81
+2023,5,31,4,30,164
+2023,5,31,5,30,96
+2023,5,31,6,30,47
+2023,5,31,7,30,16
+2023,5,31,8,30,0
+2023,5,31,9,30,0
+2023,5,31,10,30,0
+2023,5,31,11,30,0
+2023,5,31,12,30,0
+2023,5,31,13,30,8
+2023,5,31,14,30,19
+2023,5,31,15,30,97
+2023,5,31,16,30,160
+2023,5,31,17,30,64
+2023,5,31,18,30,549
+2023,5,31,19,30,642
+2023,5,31,20,30,714
+2023,5,31,21,30,755
+2023,5,31,22,30,592
+2023,5,31,23,30,629
+2021,6,1,0,30,414
+2021,6,1,1,30,360
+2021,6,1,2,30,379
+2021,6,1,3,30,250
+2021,6,1,4,30,169
+2021,6,1,5,30,100
+2021,6,1,6,30,50
+2021,6,1,7,30,17
+2021,6,1,8,30,0
+2021,6,1,9,30,0
+2021,6,1,10,30,0
+2021,6,1,11,30,0
+2021,6,1,12,30,0
+2021,6,1,13,30,36
+2021,6,1,14,30,119
+2021,6,1,15,30,214
+2021,6,1,16,30,59
+2021,6,1,17,30,87
+2021,6,1,18,30,311
+2021,6,1,19,30,379
+2021,6,1,20,30,433
+2021,6,1,21,30,428
+2021,6,1,22,30,252
+2021,6,1,23,30,241
+2021,6,2,0,30,217
+2021,6,2,1,30,181
+2021,6,2,2,30,140
+2021,6,2,3,30,101
+2021,6,2,4,30,94
+2021,6,2,5,30,56
+2021,6,2,6,30,30
+2021,6,2,7,30,12
+2021,6,2,8,30,0
+2021,6,2,9,30,0
+2021,6,2,10,30,0
+2021,6,2,11,30,0
+2021,6,2,12,30,4
+2021,6,2,13,30,9
+2021,6,2,14,30,21
+2021,6,2,15,30,51
+2021,6,2,16,30,85
+2021,6,2,17,30,124
+2021,6,2,18,30,554
+2021,6,2,19,30,646
+2021,6,2,20,30,713
+2021,6,2,21,30,754
+2021,6,2,22,30,188
+2021,6,2,23,30,181
+2021,6,3,0,30,690
+2021,6,3,1,30,612
+2021,6,3,2,30,514
+2021,6,3,3,30,402
+2021,6,3,4,30,289
+2021,6,3,5,30,120
+2021,6,3,6,30,60
+2021,6,3,7,30,22
+2021,6,3,8,30,0
+2021,6,3,9,30,0
+2021,6,3,10,30,0
+2021,6,3,11,30,0
+2021,6,3,12,30,13
+2021,6,3,13,30,54
+2021,6,3,14,30,127
+2021,6,3,15,30,158
+2021,6,3,16,30,226
+2021,6,3,17,30,316
+2021,6,3,18,30,396
+2021,6,3,19,30,475
+2021,6,3,20,30,536
+2021,6,3,21,30,753
+2021,6,3,22,30,447
+2021,6,3,23,30,431
+2021,6,4,0,30,392
+2021,6,4,1,30,337
+2021,6,4,2,30,269
+2021,6,4,3,30,198
+2021,6,4,4,30,203
+2021,6,4,5,30,122
+2021,6,4,6,30,60
+2021,6,4,7,30,20
+2021,6,4,8,30,0
+2021,6,4,9,30,0
+2021,6,4,10,30,0
+2021,6,4,11,30,0
+2021,6,4,12,30,6
+2021,6,4,13,30,32
+2021,6,4,14,30,60
+2021,6,4,15,30,115
+2021,6,4,16,30,34
+2021,6,4,17,30,49
+2021,6,4,18,30,402
+2021,6,4,19,30,482
+2021,6,4,20,30,543
+2021,6,4,21,30,581
+2021,6,4,22,30,93
+2021,6,4,23,30,90
+2021,6,5,0,30,94
+2021,6,5,1,30,82
+2021,6,5,2,30,66
+2021,6,5,3,30,48
+2021,6,5,4,30,295
+2021,6,5,5,30,189
+2021,6,5,6,30,101
+2021,6,5,7,30,38
+2021,6,5,8,30,0
+2021,6,5,9,30,0
+2021,6,5,10,30,0
+2021,6,5,11,30,0
+2021,6,5,12,30,15
+2021,6,5,13,30,57
+2021,6,5,14,30,132
+2021,6,5,15,30,229
+2021,6,5,16,30,340
+2021,6,5,17,30,453
+2021,6,5,18,30,560
+2021,6,5,19,30,651
+2021,6,5,20,30,720
+2021,6,5,21,30,759
+2021,6,5,22,30,769
+2021,6,5,23,30,747
+2021,6,6,0,30,693
+2021,6,6,1,30,616
+2021,6,6,2,30,517
+2021,6,6,3,30,409
+2021,6,6,4,30,225
+2021,6,6,5,30,158
+2021,6,6,6,30,84
+2021,6,6,7,30,32
+2021,6,6,8,30,0
+2021,6,6,9,30,0
+2021,6,6,10,30,0
+2021,6,6,11,30,0
+2021,6,6,12,30,4
+2021,6,6,13,30,20
+2021,6,6,14,30,75
+2021,6,6,15,30,140
+2021,6,6,16,30,232
+2021,6,6,17,30,323
+2021,6,6,18,30,552
+2021,6,6,19,30,643
+2021,6,6,20,30,711
+2021,6,6,21,30,30
+2021,6,6,22,30,31
+2021,6,6,23,30,25
+2021,6,7,0,30,21
+2021,6,7,1,30,17
+2021,6,7,2,30,13
+2021,6,7,3,30,9
+2021,6,7,4,30,296
+2021,6,7,5,30,192
+2021,6,7,6,30,103
+2021,6,7,7,30,40
+2021,6,7,8,30,0
+2021,6,7,9,30,0
+2021,6,7,10,30,0
+2021,6,7,11,30,0
+2021,6,7,12,30,17
+2021,6,7,13,30,59
+2021,6,7,14,30,132
+2021,6,7,15,30,229
+2021,6,7,16,30,338
+2021,6,7,17,30,450
+2021,6,7,18,30,555
+2021,6,7,19,30,645
+2021,6,7,20,30,714
+2021,6,7,21,30,753
+2021,6,7,22,30,763
+2021,6,7,23,30,739
+2021,6,8,0,30,690
+2021,6,8,1,30,613
+2021,6,8,2,30,516
+2021,6,8,3,30,406
+2021,6,8,4,30,295
+2021,6,8,5,30,136
+2021,6,8,6,30,69
+2021,6,8,7,30,25
+2021,6,8,8,30,0
+2021,6,8,9,30,0
+2021,6,8,10,30,0
+2021,6,8,11,30,0
+2021,6,8,12,30,6
+2021,6,8,13,30,28
+2021,6,8,14,30,68
+2021,6,8,15,30,225
+2021,6,8,16,30,263
+2021,6,8,17,30,365
+2021,6,8,18,30,358
+2021,6,8,19,30,432
+2021,6,8,20,30,489
+2021,6,8,21,30,208
+2021,6,8,22,30,211
+2021,6,8,23,30,593
+2021,6,9,0,30,545
+2021,6,9,1,30,473
+2021,6,9,2,30,388
+2021,6,9,3,30,296
+2021,6,9,4,30,119
+2021,6,9,5,30,72
+2021,6,9,6,30,38
+2021,6,9,7,30,17
+2021,6,9,8,30,0
+2021,6,9,9,30,0
+2021,6,9,10,30,0
+2021,6,9,11,30,0
+2021,6,9,12,30,5
+2021,6,9,13,30,17
+2021,6,9,14,30,81
+2021,6,9,15,30,149
+2021,6,9,16,30,253
+2021,6,9,17,30,347
+2021,6,9,18,30,332
+2021,6,9,19,30,403
+2021,6,9,20,30,458
+2021,6,9,21,30,491
+2021,6,9,22,30,498
+2021,6,9,23,30,478
+2021,6,10,0,30,437
+2021,6,10,1,30,486
+2021,6,10,2,30,405
+2021,6,10,3,30,315
+2021,6,10,4,30,225
+2021,6,10,5,30,188
+2021,6,10,6,30,99
+2021,6,10,7,30,36
+2021,6,10,8,30,0
+2021,6,10,9,30,0
+2021,6,10,10,30,0
+2021,6,10,11,30,0
+2021,6,10,12,30,13
+2021,6,10,13,30,59
+2021,6,10,14,30,131
+2021,6,10,15,30,183
+2021,6,10,16,30,283
+2021,6,10,17,30,393
+2021,6,10,18,30,416
+2021,6,10,19,30,494
+2021,6,10,20,30,544
+2021,6,10,21,30,582
+2021,6,10,22,30,592
+2021,6,10,23,30,573
+2021,6,11,0,30,527
+2021,6,11,1,30,459
+2021,6,11,2,30,376
+2021,6,11,3,30,286
+2021,6,11,4,30,173
+2021,6,11,5,30,104
+2021,6,11,6,30,52
+2021,6,11,7,30,20
+2021,6,11,8,30,0
+2021,6,11,9,30,0
+2021,6,11,10,30,0
+2021,6,11,11,30,0
+2021,6,11,12,30,15
+2021,6,11,13,30,56
+2021,6,11,14,30,122
+2021,6,11,15,30,192
+2021,6,11,16,30,238
+2021,6,11,17,30,330
+2021,6,11,18,30,329
+2021,6,11,19,30,398
+2021,6,11,20,30,452
+2021,6,11,21,30,485
+2021,6,11,22,30,763
+2021,6,11,23,30,329
+2021,6,12,0,30,478
+2021,6,12,1,30,414
+2021,6,12,2,30,337
+2021,6,12,3,30,254
+2021,6,12,4,30,302
+2021,6,12,5,30,196
+2021,6,12,6,30,107
+2021,6,12,7,30,44
+2021,6,12,8,30,0
+2021,6,12,9,30,0
+2021,6,12,10,30,0
+2021,6,12,11,30,0
+2021,6,12,12,30,6
+2021,6,12,13,30,21
+2021,6,12,14,30,134
+2021,6,12,15,30,230
+2021,6,12,16,30,340
+2021,6,12,17,30,452
+2021,6,12,18,30,556
+2021,6,12,19,30,647
+2021,6,12,20,30,200
+2021,6,12,21,30,215
+2021,6,12,22,30,389
+2021,6,12,23,30,376
+2021,6,13,0,30,247
+2021,6,13,1,30,294
+2021,6,13,2,30,162
+2021,6,13,3,30,118
+2021,6,13,4,30,137
+2021,6,13,5,30,200
+2021,6,13,6,30,110
+2021,6,13,7,30,46
+2021,6,13,8,30,12
+2021,6,13,9,30,0
+2021,6,13,10,30,0
+2021,6,13,11,30,0
+2021,6,13,12,30,6
+2021,6,13,13,30,21
+2021,6,13,14,30,66
+2021,6,13,15,30,52
+2021,6,13,16,30,153
+2021,6,13,17,30,219
+2021,6,13,18,30,414
+2021,6,13,19,30,494
+2021,6,13,20,30,557
+2021,6,13,21,30,594
+2021,6,13,22,30,762
+2021,6,13,23,30,742
+2021,6,14,0,30,691
+2021,6,14,1,30,616
+2021,6,14,2,30,521
+2021,6,14,3,30,413
+2021,6,14,4,30,231
+2021,6,14,5,30,146
+2021,6,14,6,30,77
+2021,6,14,7,30,30
+2021,6,14,8,30,5
+2021,6,14,9,30,0
+2021,6,14,10,30,0
+2021,6,14,11,30,0
+2021,6,14,12,30,19
+2021,6,14,13,30,62
+2021,6,14,14,30,135
+2021,6,14,15,30,230
+2021,6,14,16,30,338
+2021,6,14,17,30,451
+2021,6,14,18,30,556
+2021,6,14,19,30,647
+2021,6,14,20,30,715
+2021,6,14,21,30,757
+2021,6,14,22,30,768
+2021,6,14,23,30,748
+2021,6,15,0,30,698
+2021,6,15,1,30,622
+2021,6,15,2,30,524
+2021,6,15,3,30,416
+2021,6,15,4,30,305
+2021,6,15,5,30,200
+2021,6,15,6,30,110
+2021,6,15,7,30,46
+2021,6,15,8,30,12
+2021,6,15,9,30,0
+2021,6,15,10,30,0
+2021,6,15,11,30,0
+2021,6,15,12,30,17
+2021,6,15,13,30,56
+2021,6,15,14,30,123
+2021,6,15,15,30,216
+2021,6,15,16,30,317
+2021,6,15,17,30,421
+2021,6,15,18,30,508
+2021,6,15,19,30,606
+2021,6,15,20,30,668
+2021,6,15,21,30,735
+2021,6,15,22,30,744
+2021,6,15,23,30,722
+2021,6,16,0,30,682
+2021,6,16,1,30,604
+2021,6,16,2,30,508
+2021,6,16,3,30,400
+2021,6,16,4,30,179
+2021,6,16,5,30,109
+2021,6,16,6,30,56
+2021,6,16,7,30,22
+2021,6,16,8,30,4
+2021,6,16,9,30,0
+2021,6,16,10,30,0
+2021,6,16,11,30,0
+2021,6,16,12,30,9
+2021,6,16,13,30,33
+2021,6,16,14,30,78
+2021,6,16,15,30,177
+2021,6,16,16,30,299
+2021,6,16,17,30,412
+2021,6,16,18,30,431
+2021,6,16,19,30,514
+2021,6,16,20,30,579
+2021,6,16,21,30,618
+2021,6,16,22,30,580
+2021,6,16,23,30,562
+2021,6,17,0,30,670
+2021,6,17,1,30,596
+2021,6,17,2,30,502
+2021,6,17,3,30,396
+2021,6,17,4,30,286
+2021,6,17,5,30,86
+2021,6,17,6,30,44
+2021,6,17,7,30,18
+2021,6,17,8,30,3
+2021,6,17,9,30,0
+2021,6,17,10,30,0
+2021,6,17,11,30,0
+2021,6,17,12,30,6
+2021,6,17,13,30,16
+2021,6,17,14,30,72
+2021,6,17,15,30,128
+2021,6,17,16,30,219
+2021,6,17,17,30,304
+2021,6,17,18,30,57
+2021,6,17,19,30,69
+2021,6,17,20,30,78
+2021,6,17,21,30,173
+2021,6,17,22,30,186
+2021,6,17,23,30,181
+2021,6,18,0,30,166
+2021,6,18,1,30,144
+2021,6,18,2,30,116
+2021,6,18,3,30,86
+2021,6,18,4,30,132
+2021,6,18,5,30,79
+2021,6,18,6,30,41
+2021,6,18,7,30,16
+2021,6,18,8,30,3
+2021,6,18,9,30,0
+2021,6,18,10,30,0
+2021,6,18,11,30,0
+2021,6,18,12,30,19
+2021,6,18,13,30,61
+2021,6,18,14,30,132
+2021,6,18,15,30,227
+2021,6,18,16,30,333
+2021,6,18,17,30,444
+2021,6,18,18,30,500
+2021,6,18,19,30,593
+2021,6,18,20,30,661
+2021,6,18,21,30,702
+2021,6,18,22,30,560
+2021,6,18,23,30,541
+2021,6,19,0,30,687
+2021,6,19,1,30,613
+2021,6,19,2,30,517
+2021,6,19,3,30,411
+2021,6,19,4,30,301
+2021,6,19,5,30,189
+2021,6,19,6,30,98
+2021,6,19,7,30,39
+2021,6,19,8,30,8
+2021,6,19,9,30,0
+2021,6,19,10,30,0
+2021,6,19,11,30,0
+2021,6,19,12,30,11
+2021,6,19,13,30,39
+2021,6,19,14,30,84
+2021,6,19,15,30,81
+2021,6,19,16,30,187
+2021,6,19,17,30,265
+2021,6,19,18,30,320
+2021,6,19,19,30,389
+2021,6,19,20,30,557
+2021,6,19,21,30,740
+2021,6,19,22,30,754
+2021,6,19,23,30,735
+2021,6,20,0,30,688
+2021,6,20,1,30,614
+2021,6,20,2,30,520
+2021,6,20,3,30,414
+2021,6,20,4,30,165
+2021,6,20,5,30,91
+2021,6,20,6,30,50
+2021,6,20,7,30,22
+2021,6,20,8,30,5
+2021,6,20,9,30,0
+2021,6,20,10,30,0
+2021,6,20,11,30,0
+2021,6,20,12,30,20
+2021,6,20,13,30,64
+2021,6,20,14,30,137
+2021,6,20,15,30,233
+2021,6,20,16,30,341
+2021,6,20,17,30,452
+2021,6,20,18,30,390
+2021,6,20,19,30,468
+2021,6,20,20,30,529
+2021,6,20,21,30,567
+2021,6,20,22,30,767
+2021,6,20,23,30,748
+2021,6,21,0,30,698
+2021,6,21,1,30,621
+2021,6,21,2,30,526
+2021,6,21,3,30,418
+2021,6,21,4,30,120
+2021,6,21,5,30,74
+2021,6,21,6,30,40
+2021,6,21,7,30,19
+2021,6,21,8,30,4
+2021,6,21,9,30,0
+2021,6,21,10,30,0
+2021,6,21,11,30,0
+2021,6,21,12,30,8
+2021,6,21,13,30,13
+2021,6,21,14,30,30
+2021,6,21,15,30,155
+2021,6,21,16,30,238
+2021,6,21,17,30,330
+2021,6,21,18,30,451
+2021,6,21,19,30,241
+2021,6,21,20,30,275
+2021,6,21,21,30,251
+2021,6,21,22,30,236
+2021,6,21,23,30,226
+2021,6,22,0,30,488
+2021,6,22,1,30,427
+2021,6,22,2,30,351
+2021,6,22,3,30,267
+2021,6,22,4,30,113
+2021,6,22,5,30,200
+2021,6,22,6,30,112
+2021,6,22,7,30,48
+2021,6,22,8,30,11
+2021,6,22,9,30,0
+2021,6,22,10,30,0
+2021,6,22,11,30,0
+2021,6,22,12,30,10
+2021,6,22,13,30,41
+2021,6,22,14,30,93
+2021,6,22,15,30,167
+2021,6,22,16,30,255
+2021,6,22,17,30,327
+2021,6,22,18,30,418
+2021,6,22,19,30,498
+2021,6,22,20,30,562
+2021,6,22,21,30,748
+2021,6,22,22,30,759
+2021,6,22,23,30,738
+2021,6,23,0,30,689
+2021,6,23,1,30,613
+2021,6,23,2,30,519
+2021,6,23,3,30,411
+2021,6,23,4,30,124
+2021,6,23,5,30,75
+2021,6,23,6,30,38
+2021,6,23,7,30,16
+2021,6,23,8,30,3
+2021,6,23,9,30,0
+2021,6,23,10,30,0
+2021,6,23,11,30,0
+2021,6,23,12,30,16
+2021,6,23,13,30,54
+2021,6,23,14,30,95
+2021,6,23,15,30,169
+2021,6,23,16,30,316
+2021,6,23,17,30,426
+2021,6,23,18,30,534
+2021,6,23,19,30,628
+2021,6,23,20,30,700
+2021,6,23,21,30,750
+2021,6,23,22,30,763
+2021,6,23,23,30,719
+2021,6,24,0,30,673
+2021,6,24,1,30,627
+2021,6,24,2,30,534
+2021,6,24,3,30,389
+2021,6,24,4,30,316
+2021,6,24,5,30,198
+2021,6,24,6,30,110
+2021,6,24,7,30,48
+2021,6,24,8,30,10
+2021,6,24,9,30,0
+2021,6,24,10,30,0
+2021,6,24,11,30,0
+2021,6,24,12,30,2
+2021,6,24,13,30,7
+2021,6,24,14,30,13
+2021,6,24,15,30,151
+2021,6,24,16,30,337
+2021,6,24,17,30,447
+2021,6,24,18,30,551
+2021,6,24,19,30,637
+2021,6,24,20,30,704
+2021,6,24,21,30,554
+2021,6,24,22,30,566
+2021,6,24,23,30,516
+2021,6,25,0,30,477
+2021,6,25,1,30,415
+2021,6,25,2,30,339
+2021,6,25,3,30,257
+2021,6,25,4,30,77
+2021,6,25,5,30,48
+2021,6,25,6,30,27
+2021,6,25,7,30,14
+2021,6,25,8,30,3
+2021,6,25,9,30,0
+2021,6,25,10,30,0
+2021,6,25,11,30,0
+2021,6,25,12,30,9
+2021,6,25,13,30,30
+2021,6,25,14,30,65
+2021,6,25,15,30,154
+2021,6,25,16,30,275
+2021,6,25,17,30,381
+2021,6,25,18,30,392
+2021,6,25,19,30,466
+2021,6,25,20,30,523
+2021,6,25,21,30,559
+2021,6,25,22,30,570
+2021,6,25,23,30,574
+2021,6,26,0,30,530
+2021,6,26,1,30,367
+2021,6,26,2,30,297
+2021,6,26,3,30,223
+2021,6,26,4,30,133
+2021,6,26,5,30,80
+2021,6,26,6,30,41
+2021,6,26,7,30,17
+2021,6,26,8,30,3
+2021,6,26,9,30,0
+2021,6,26,10,30,0
+2021,6,26,11,30,0
+2021,6,26,12,30,7
+2021,6,26,13,30,19
+2021,6,26,14,30,44
+2021,6,26,15,30,176
+2021,6,26,16,30,265
+2021,6,26,17,30,360
+2021,6,26,18,30,277
+2021,6,26,19,30,338
+2021,6,26,20,30,386
+2021,6,26,21,30,364
+2021,6,26,22,30,762
+2021,6,26,23,30,743
+2021,6,27,0,30,695
+2021,6,27,1,30,621
+2021,6,27,2,30,527
+2021,6,27,3,30,420
+2021,6,27,4,30,310
+2021,6,27,5,30,80
+2021,6,27,6,30,41
+2021,6,27,7,30,17
+2021,6,27,8,30,3
+2021,6,27,9,30,0
+2021,6,27,10,30,0
+2021,6,27,11,30,0
+2021,6,27,12,30,18
+2021,6,27,13,30,18
+2021,6,27,14,30,41
+2021,6,27,15,30,162
+2021,6,27,16,30,334
+2021,6,27,17,30,445
+2021,6,27,18,30,551
+2021,6,27,19,30,642
+2021,6,27,20,30,711
+2021,6,27,21,30,753
+2021,6,27,22,30,766
+2021,6,27,23,30,747
+2021,6,28,0,30,245
+2021,6,28,1,30,211
+2021,6,28,2,30,170
+2021,6,28,3,30,126
+2021,6,28,4,30,135
+2021,6,28,5,30,81
+2021,6,28,6,30,41
+2021,6,28,7,30,17
+2021,6,28,8,30,3
+2021,6,28,9,30,0
+2021,6,28,10,30,0
+2021,6,28,11,30,0
+2021,6,28,12,30,5
+2021,6,28,13,30,20
+2021,6,28,14,30,129
+2021,6,28,15,30,223
+2021,6,28,16,30,329
+2021,6,28,17,30,440
+2021,6,28,18,30,432
+2021,6,28,19,30,371
+2021,6,28,20,30,419
+2021,6,28,21,30,451
+2021,6,28,22,30,503
+2021,6,28,23,30,488
+2021,6,29,0,30,248
+2021,6,29,1,30,214
+2021,6,29,2,30,172
+2021,6,29,3,30,128
+2021,6,29,4,30,150
+2021,6,29,5,30,80
+2021,6,29,6,30,41
+2021,6,29,7,30,16
+2021,6,29,8,30,3
+2021,6,29,9,30,0
+2021,6,29,10,30,0
+2021,6,29,11,30,0
+2021,6,29,12,30,17
+2021,6,29,13,30,18
+2021,6,29,14,30,42
+2021,6,29,15,30,122
+2021,6,29,16,30,332
+2021,6,29,17,30,443
+2021,6,29,18,30,204
+2021,6,29,19,30,250
+2021,6,29,20,30,286
+2021,6,29,21,30,308
+2021,6,29,22,30,438
+2021,6,29,23,30,412
+2021,6,30,0,30,376
+2021,6,30,1,30,321
+2021,6,30,2,30,257
+2021,6,30,3,30,190
+2021,6,30,4,30,228
+2021,6,30,5,30,144
+2021,6,30,6,30,76
+2021,6,30,7,30,29
+2021,6,30,8,30,5
+2021,6,30,9,30,0
+2021,6,30,10,30,0
+2021,6,30,11,30,0
+2021,6,30,12,30,4
+2021,6,30,13,30,15
+2021,6,30,14,30,78
+2021,6,30,15,30,185
+2021,6,30,16,30,226
+2021,6,30,17,30,316
+2021,6,30,18,30,545
+2021,6,30,19,30,603
+2021,6,30,20,30,706
+2021,6,30,21,30,744
+2021,6,30,22,30,756
+2021,6,30,23,30,730
+2016,7,1,0,30,23
+2016,7,1,1,30,18
+2016,7,1,2,30,245
+2016,7,1,3,30,327
+2016,7,1,4,30,21
+2016,7,1,5,30,13
+2016,7,1,6,30,9
+2016,7,1,7,30,6
+2016,7,1,8,30,1
+2016,7,1,9,30,0
+2016,7,1,10,30,0
+2016,7,1,11,30,0
+2016,7,1,12,30,5
+2016,7,1,13,30,9
+2016,7,1,14,30,16
+2016,7,1,15,30,32
+2016,7,1,16,30,52
+2016,7,1,17,30,76
+2016,7,1,18,30,284
+2016,7,1,19,30,349
+2016,7,1,20,30,402
+2016,7,1,21,30,435
+2016,7,1,22,30,529
+2016,7,1,23,30,732
+2016,7,2,0,30,684
+2016,7,2,1,30,611
+2016,7,2,2,30,519
+2016,7,2,3,30,368
+2016,7,2,4,30,258
+2016,7,2,5,30,77
+2016,7,2,6,30,39
+2016,7,2,7,30,15
+2016,7,2,8,30,0
+2016,7,2,9,30,0
+2016,7,2,10,30,0
+2016,7,2,11,30,0
+2016,7,2,12,30,4
+2016,7,2,13,30,17
+2016,7,2,14,30,19
+2016,7,2,15,30,8
+2016,7,2,16,30,13
+2016,7,2,17,30,19
+2016,7,2,18,30,226
+2016,7,2,19,30,281
+2016,7,2,20,30,110
+2016,7,2,21,30,118
+2016,7,2,22,30,108
+2016,7,2,23,30,105
+2016,7,3,0,30,119
+2016,7,3,1,30,103
+2016,7,3,2,30,84
+2016,7,3,3,30,275
+2016,7,3,4,30,192
+2016,7,3,5,30,119
+2016,7,3,6,30,38
+2016,7,3,7,30,15
+2016,7,3,8,30,0
+2016,7,3,9,30,0
+2016,7,3,10,30,0
+2016,7,3,11,30,0
+2016,7,3,12,30,3
+2016,7,3,13,30,12
+2016,7,3,14,30,20
+2016,7,3,15,30,37
+2016,7,3,16,30,61
+2016,7,3,17,30,89
+2016,7,3,18,30,162
+2016,7,3,19,30,199
+2016,7,3,20,30,217
+2016,7,3,21,30,280
+2016,7,3,22,30,499
+2016,7,3,23,30,484
+2016,7,4,0,30,446
+2016,7,4,1,30,387
+2016,7,4,2,30,315
+2016,7,4,3,30,306
+2016,7,4,4,30,216
+2016,7,4,5,30,136
+2016,7,4,6,30,71
+2016,7,4,7,30,26
+2016,7,4,8,30,0
+2016,7,4,9,30,0
+2016,7,4,10,30,0
+2016,7,4,11,30,0
+2016,7,4,12,30,4
+2016,7,4,13,30,21
+2016,7,4,14,30,25
+2016,7,4,15,30,48
+2016,7,4,16,30,79
+2016,7,4,17,30,115
+2016,7,4,18,30,29
+2016,7,4,19,30,35
+2016,7,4,20,30,99
+2016,7,4,21,30,106
+2016,7,4,22,30,108
+2016,7,4,23,30,427
+2016,7,5,0,30,392
+2016,7,5,1,30,320
+2016,7,5,2,30,344
+2016,7,5,3,30,379
+2016,7,5,4,30,266
+2016,7,5,5,30,191
+2016,7,5,6,30,104
+2016,7,5,7,30,41
+2016,7,5,8,30,0
+2016,7,5,9,30,0
+2016,7,5,10,30,0
+2016,7,5,11,30,0
+2016,7,5,12,30,3
+2016,7,5,13,30,17
+2016,7,5,14,30,43
+2016,7,5,15,30,84
+2016,7,5,16,30,138
+2016,7,5,17,30,167
+2016,7,5,18,30,370
+2016,7,5,19,30,620
+2016,7,5,20,30,689
+2016,7,5,21,30,730
+2016,7,5,22,30,743
+2016,7,5,23,30,726
+2016,7,6,0,30,679
+2016,7,6,1,30,606
+2016,7,6,2,30,513
+2016,7,6,3,30,243
+2016,7,6,4,30,166
+2016,7,6,5,30,100
+2016,7,6,6,30,49
+2016,7,6,7,30,15
+2016,7,6,8,30,0
+2016,7,6,9,30,0
+2016,7,6,10,30,0
+2016,7,6,11,30,0
+2016,7,6,12,30,3
+2016,7,6,13,30,3
+2016,7,6,14,30,5
+2016,7,6,15,30,6
+2016,7,6,16,30,9
+2016,7,6,17,30,301
+2016,7,6,18,30,337
+2016,7,6,19,30,409
+2016,7,6,20,30,466
+2016,7,6,21,30,503
+2016,7,6,22,30,635
+2016,7,6,23,30,619
+2016,7,7,0,30,522
+2016,7,7,1,30,467
+2016,7,7,2,30,384
+2016,7,7,3,30,409
+2016,7,7,4,30,299
+2016,7,7,5,30,194
+2016,7,7,6,30,105
+2016,7,7,7,30,41
+2016,7,7,8,30,0
+2016,7,7,9,30,0
+2016,7,7,10,30,0
+2016,7,7,11,30,0
+2016,7,7,12,30,0
+2016,7,7,13,30,16
+2016,7,7,14,30,117
+2016,7,7,15,30,209
+2016,7,7,16,30,316
+2016,7,7,17,30,426
+2016,7,7,18,30,532
+2016,7,7,19,30,624
+2016,7,7,20,30,695
+2016,7,7,21,30,736
+2016,7,7,22,30,750
+2016,7,7,23,30,733
+2016,7,8,0,30,685
+2016,7,8,1,30,612
+2016,7,8,2,30,518
+2016,7,8,3,30,300
+2016,7,8,4,30,210
+2016,7,8,5,30,129
+2016,7,8,6,30,37
+2016,7,8,7,30,13
+2016,7,8,8,30,0
+2016,7,8,9,30,0
+2016,7,8,10,30,0
+2016,7,8,11,30,0
+2016,7,8,12,30,0
+2016,7,8,13,30,47
+2016,7,8,14,30,115
+2016,7,8,15,30,208
+2016,7,8,16,30,314
+2016,7,8,17,30,425
+2016,7,8,18,30,529
+2016,7,8,19,30,620
+2016,7,8,20,30,689
+2016,7,8,21,30,732
+2016,7,8,22,30,745
+2016,7,8,23,30,614
+2016,7,9,0,30,568
+2016,7,9,1,30,497
+2016,7,9,2,30,408
+2016,7,9,3,30,364
+2016,7,9,4,30,253
+2016,7,9,5,30,155
+2016,7,9,6,30,100
+2016,7,9,7,30,17
+2016,7,9,8,30,0
+2016,7,9,9,30,0
+2016,7,9,10,30,0
+2016,7,9,11,30,0
+2016,7,9,12,30,0
+2016,7,9,13,30,42
+2016,7,9,14,30,107
+2016,7,9,15,30,196
+2016,7,9,16,30,267
+2016,7,9,17,30,379
+2016,7,9,18,30,518
+2016,7,9,19,30,610
+2016,7,9,20,30,681
+2016,7,9,21,30,725
+2016,7,9,22,30,739
+2016,7,9,23,30,719
+2016,7,10,0,30,451
+2016,7,10,1,30,392
+2016,7,10,2,30,317
+2016,7,10,3,30,311
+2016,7,10,4,30,220
+2016,7,10,5,30,33
+2016,7,10,6,30,16
+2016,7,10,7,30,6
+2016,7,10,8,30,0
+2016,7,10,9,30,0
+2016,7,10,10,30,0
+2016,7,10,11,30,0
+2016,7,10,12,30,0
+2016,7,10,13,30,31
+2016,7,10,14,30,9
+2016,7,10,15,30,16
+2016,7,10,16,30,122
+2016,7,10,17,30,181
+2016,7,10,18,30,514
+2016,7,10,19,30,604
+2016,7,10,20,30,673
+2016,7,10,21,30,715
+2016,7,10,22,30,315
+2016,7,10,23,30,27
+2016,7,11,0,30,24
+2016,7,11,1,30,369
+2016,7,11,2,30,299
+2016,7,11,3,30,367
+2016,7,11,4,30,98
+2016,7,11,5,30,57
+2016,7,11,6,30,28
+2016,7,11,7,30,19
+2016,7,11,8,30,0
+2016,7,11,9,30,0
+2016,7,11,10,30,0
+2016,7,11,11,30,0
+2016,7,11,12,30,0
+2016,7,11,13,30,17
+2016,7,11,14,30,41
+2016,7,11,15,30,53
+2016,7,11,16,30,90
+2016,7,11,17,30,134
+2016,7,11,18,30,224
+2016,7,11,19,30,609
+2016,7,11,20,30,680
+2016,7,11,21,30,720
+2016,7,11,22,30,733
+2016,7,11,23,30,274
+2016,7,12,0,30,251
+2016,7,12,1,30,216
+2016,7,12,2,30,427
+2016,7,12,3,30,310
+2016,7,12,4,30,216
+2016,7,12,5,30,132
+2016,7,12,6,30,95
+2016,7,12,7,30,34
+2016,7,12,8,30,0
+2016,7,12,9,30,0
+2016,7,12,10,30,0
+2016,7,12,11,30,0
+2016,7,12,12,30,0
+2016,7,12,13,30,39
+2016,7,12,14,30,104
+2016,7,12,15,30,195
+2016,7,12,16,30,300
+2016,7,12,17,30,409
+2016,7,12,18,30,513
+2016,7,12,19,30,604
+2016,7,12,20,30,674
+2016,7,12,21,30,718
+2016,7,12,22,30,732
+2016,7,12,23,30,715
+2016,7,13,0,30,547
+2016,7,13,1,30,478
+2016,7,13,2,30,501
+2016,7,13,3,30,396
+2016,7,13,4,30,287
+2016,7,13,5,30,183
+2016,7,13,6,30,33
+2016,7,13,7,30,11
+2016,7,13,8,30,0
+2016,7,13,9,30,0
+2016,7,13,10,30,0
+2016,7,13,11,30,0
+2016,7,13,12,30,0
+2016,7,13,13,30,38
+2016,7,13,14,30,103
+2016,7,13,15,30,194
+2016,7,13,16,30,300
+2016,7,13,17,30,410
+2016,7,13,18,30,516
+2016,7,13,19,30,608
+2016,7,13,20,30,678
+2016,7,13,21,30,722
+2016,7,13,22,30,736
+2016,7,13,23,30,719
+2016,7,14,0,30,670
+2016,7,14,1,30,596
+2016,7,14,2,30,503
+2016,7,14,3,30,396
+2016,7,14,4,30,286
+2016,7,14,5,30,181
+2016,7,14,6,30,92
+2016,7,14,7,30,31
+2016,7,14,8,30,0
+2016,7,14,9,30,0
+2016,7,14,10,30,0
+2016,7,14,11,30,0
+2016,7,14,12,30,0
+2016,7,14,13,30,36
+2016,7,14,14,30,101
+2016,7,14,15,30,192
+2016,7,14,16,30,297
+2016,7,14,17,30,407
+2016,7,14,18,30,513
+2016,7,14,19,30,603
+2016,7,14,20,30,674
+2016,7,14,21,30,713
+2016,7,14,22,30,656
+2016,7,14,23,30,637
+2016,7,15,0,30,589
+2016,7,15,1,30,515
+2016,7,15,2,30,272
+2016,7,15,3,30,326
+2016,7,15,4,30,230
+2016,7,15,5,30,174
+2016,7,15,6,30,87
+2016,7,15,7,30,28
+2016,7,15,8,30,0
+2016,7,15,9,30,0
+2016,7,15,10,30,0
+2016,7,15,11,30,0
+2016,7,15,12,30,0
+2016,7,15,13,30,32
+2016,7,15,14,30,94
+2016,7,15,15,30,180
+2016,7,15,16,30,283
+2016,7,15,17,30,390
+2016,7,15,18,30,494
+2016,7,15,19,30,585
+2016,7,15,20,30,655
+2016,7,15,21,30,698
+2016,7,15,22,30,713
+2016,7,15,23,30,601
+2016,7,16,0,30,506
+2016,7,16,1,30,478
+2016,7,16,2,30,398
+2016,7,16,3,30,323
+2016,7,16,4,30,268
+2016,7,16,5,30,165
+2016,7,16,6,30,81
+2016,7,16,7,30,25
+2016,7,16,8,30,0
+2016,7,16,9,30,0
+2016,7,16,10,30,0
+2016,7,16,11,30,0
+2016,7,16,12,30,0
+2016,7,16,13,30,5
+2016,7,16,14,30,13
+2016,7,16,15,30,27
+2016,7,16,16,30,47
+2016,7,16,17,30,150
+2016,7,16,18,30,204
+2016,7,16,19,30,476
+2016,7,16,20,30,544
+2016,7,16,21,30,388
+2016,7,16,22,30,708
+2016,7,16,23,30,694
+2016,7,17,0,30,462
+2016,7,17,1,30,429
+2016,7,17,2,30,350
+2016,7,17,3,30,358
+2016,7,17,4,30,163
+2016,7,17,5,30,94
+2016,7,17,6,30,43
+2016,7,17,7,30,12
+2016,7,17,8,30,0
+2016,7,17,9,30,0
+2016,7,17,10,30,0
+2016,7,17,11,30,0
+2016,7,17,12,30,0
+2016,7,17,13,30,15
+2016,7,17,14,30,42
+2016,7,17,15,30,55
+2016,7,17,16,30,93
+2016,7,17,17,30,140
+2016,7,17,18,30,50
+2016,7,17,19,30,64
+2016,7,17,20,30,77
+2016,7,17,21,30,86
+2016,7,17,22,30,114
+2016,7,17,23,30,116
+2016,7,18,0,30,106
+2016,7,18,1,30,92
+2016,7,18,2,30,73
+2016,7,18,3,30,234
+2016,7,18,4,30,157
+2016,7,18,5,30,92
+2016,7,18,6,30,44
+2016,7,18,7,30,11
+2016,7,18,8,30,0
+2016,7,18,9,30,0
+2016,7,18,10,30,0
+2016,7,18,11,30,0
+2016,7,18,12,30,0
+2016,7,18,13,30,11
+2016,7,18,14,30,30
+2016,7,18,15,30,33
+2016,7,18,16,30,55
+2016,7,18,17,30,83
+2016,7,18,18,30,100
+2016,7,18,19,30,128
+2016,7,18,20,30,153
+2016,7,18,21,30,63
+2016,7,18,22,30,98
+2016,7,18,23,30,94
+2016,7,19,0,30,119
+2016,7,19,1,30,99
+2016,7,19,2,30,76
+2016,7,19,3,30,291
+2016,7,19,4,30,201
+2016,7,19,5,30,6
+2016,7,19,6,30,3
+2016,7,19,7,30,2
+2016,7,19,8,30,0
+2016,7,19,9,30,0
+2016,7,19,10,30,0
+2016,7,19,11,30,0
+2016,7,19,12,30,0
+2016,7,19,13,30,27
+2016,7,19,14,30,88
+2016,7,19,15,30,52
+2016,7,19,16,30,92
+2016,7,19,17,30,140
+2016,7,19,18,30,149
+2016,7,19,19,30,224
+2016,7,19,20,30,259
+2016,7,19,21,30,313
+2016,7,19,22,30,565
+2016,7,19,23,30,550
+2016,7,20,0,30,510
+2016,7,20,1,30,417
+2016,7,20,2,30,336
+2016,7,20,3,30,325
+2016,7,20,4,30,226
+2016,7,20,5,30,58
+2016,7,20,6,30,25
+2016,7,20,7,30,6
+2016,7,20,8,30,0
+2016,7,20,9,30,0
+2016,7,20,10,30,0
+2016,7,20,11,30,0
+2016,7,20,12,30,0
+2016,7,20,13,30,9
+2016,7,20,14,30,34
+2016,7,20,15,30,76
+2016,7,20,16,30,134
+2016,7,20,17,30,95
+2016,7,20,18,30,190
+2016,7,20,19,30,373
+2016,7,20,20,30,430
+2016,7,20,21,30,466
+2016,7,20,22,30,476
+2016,7,20,23,30,381
+2016,7,21,0,30,345
+2016,7,21,1,30,304
+2016,7,21,2,30,304
+2016,7,21,3,30,273
+2016,7,21,4,30,122
+2016,7,21,5,30,70
+2016,7,21,6,30,33
+2016,7,21,7,30,9
+2016,7,21,8,30,0
+2016,7,21,9,30,0
+2016,7,21,10,30,0
+2016,7,21,11,30,0
+2016,7,21,12,30,0
+2016,7,21,13,30,3
+2016,7,21,14,30,6
+2016,7,21,15,30,12
+2016,7,21,16,30,21
+2016,7,21,17,30,32
+2016,7,21,18,30,89
+2016,7,21,19,30,115
+2016,7,21,20,30,138
+2016,7,21,21,30,139
+2016,7,21,22,30,159
+2016,7,21,23,30,153
+2016,7,22,0,30,137
+2016,7,22,1,30,113
+2016,7,22,2,30,87
+2016,7,22,3,30,28
+2016,7,22,4,30,18
+2016,7,22,5,30,10
+2016,7,22,6,30,5
+2016,7,22,7,30,2
+2016,7,22,8,30,0
+2016,7,22,9,30,0
+2016,7,22,10,30,0
+2016,7,22,11,30,0
+2016,7,22,12,30,0
+2016,7,22,13,30,5
+2016,7,22,14,30,18
+2016,7,22,15,30,41
+2016,7,22,16,30,73
+2016,7,22,17,30,182
+2016,7,22,18,30,222
+2016,7,22,19,30,278
+2016,7,22,20,30,323
+2016,7,22,21,30,353
+2016,7,22,22,30,197
+2016,7,22,23,30,191
+2016,7,23,0,30,353
+2016,7,23,1,30,302
+2016,7,23,2,30,207
+2016,7,23,3,30,186
+2016,7,23,4,30,120
+2016,7,23,5,30,65
+2016,7,23,6,30,28
+2016,7,23,7,30,5
+2016,7,23,8,30,0
+2016,7,23,9,30,0
+2016,7,23,10,30,0
+2016,7,23,11,30,0
+2016,7,23,12,30,0
+2016,7,23,13,30,5
+2016,7,23,14,30,19
+2016,7,23,15,30,44
+2016,7,23,16,30,201
+2016,7,23,17,30,264
+2016,7,23,18,30,348
+2016,7,23,19,30,427
+2016,7,23,20,30,490
+2016,7,23,21,30,113
+2016,7,23,22,30,66
+2016,7,23,23,30,63
+2016,7,24,0,30,56
+2016,7,24,1,30,574
+2016,7,24,2,30,478
+2016,7,24,3,30,97
+2016,7,24,4,30,62
+2016,7,24,5,30,36
+2016,7,24,6,30,18
+2016,7,24,7,30,4
+2016,7,24,8,30,0
+2016,7,24,9,30,0
+2016,7,24,10,30,0
+2016,7,24,11,30,0
+2016,7,24,12,30,0
+2016,7,24,13,30,7
+2016,7,24,14,30,37
+2016,7,24,15,30,93
+2016,7,24,16,30,204
+2016,7,24,17,30,300
+2016,7,24,18,30,489
+2016,7,24,19,30,446
+2016,7,24,20,30,512
+2016,7,24,21,30,554
+2016,7,24,22,30,528
+2016,7,24,23,30,698
+2016,7,25,0,30,650
+2016,7,25,1,30,184
+2016,7,25,2,30,144
+2016,7,25,3,30,270
+2016,7,25,4,30,180
+2016,7,25,5,30,69
+2016,7,25,6,30,28
+2016,7,25,7,30,4
+2016,7,25,8,30,0
+2016,7,25,9,30,0
+2016,7,25,10,30,0
+2016,7,25,11,30,0
+2016,7,25,12,30,0
+2016,7,25,13,30,17
+2016,7,25,14,30,75
+2016,7,25,15,30,163
+2016,7,25,16,30,168
+2016,7,25,17,30,253
+2016,7,25,18,30,490
+2016,7,25,19,30,583
+2016,7,25,20,30,655
+2016,7,25,21,30,700
+2016,7,25,22,30,715
+2016,7,25,23,30,695
+2016,7,26,0,30,648
+2016,7,26,1,30,573
+2016,7,26,2,30,478
+2016,7,26,3,30,340
+2016,7,26,4,30,235
+2016,7,26,5,30,122
+2016,7,26,6,30,50
+2016,7,26,7,30,6
+2016,7,26,8,30,0
+2016,7,26,9,30,0
+2016,7,26,10,30,0
+2016,7,26,11,30,0
+2016,7,26,12,30,0
+2016,7,26,13,30,3
+2016,7,26,14,30,17
+2016,7,26,15,30,110
+2016,7,26,16,30,192
+2016,7,26,17,30,285
+2016,7,26,18,30,481
+2016,7,26,19,30,573
+2016,7,26,20,30,643
+2016,7,26,21,30,686
+2016,7,26,22,30,346
+2016,7,26,23,30,335
+2016,7,27,0,30,304
+2016,7,27,1,30,259
+2016,7,27,2,30,204
+2016,7,27,3,30,191
+2016,7,27,4,30,121
+2016,7,27,5,30,64
+2016,7,27,6,30,25
+2016,7,27,7,30,0
+2016,7,27,8,30,0
+2016,7,27,9,30,0
+2016,7,27,10,30,0
+2016,7,27,11,30,0
+2016,7,27,12,30,0
+2016,7,27,13,30,3
+2016,7,27,14,30,24
+2016,7,27,15,30,60
+2016,7,27,16,30,112
+2016,7,27,17,30,370
+2016,7,27,18,30,476
+2016,7,27,19,30,569
+2016,7,27,20,30,640
+2016,7,27,21,30,685
+2016,7,27,22,30,698
+2016,7,27,23,30,680
+2016,7,28,0,30,633
+2016,7,28,1,30,559
+2016,7,28,2,30,464
+2016,7,28,3,30,357
+2016,7,28,4,30,247
+2016,7,28,5,30,143
+2016,7,28,6,30,20
+2016,7,28,7,30,0
+2016,7,28,8,30,0
+2016,7,28,9,30,0
+2016,7,28,10,30,0
+2016,7,28,11,30,0
+2016,7,28,12,30,0
+2016,7,28,13,30,0
+2016,7,28,14,30,53
+2016,7,28,15,30,124
+2016,7,28,16,30,214
+2016,7,28,17,30,315
+2016,7,28,18,30,271
+2016,7,28,19,30,339
+2016,7,28,20,30,191
+2016,7,28,21,30,504
+2016,7,28,22,30,518
+2016,7,28,23,30,578
+2016,7,29,0,30,531
+2016,7,29,1,30,552
+2016,7,29,2,30,456
+2016,7,29,3,30,185
+2016,7,29,4,30,116
+2016,7,29,5,30,60
+2016,7,29,6,30,22
+2016,7,29,7,30,0
+2016,7,29,8,30,0
+2016,7,29,9,30,0
+2016,7,29,10,30,0
+2016,7,29,11,30,0
+2016,7,29,12,30,0
+2016,7,29,13,30,0
+2016,7,29,14,30,3
+2016,7,29,15,30,4
+2016,7,29,16,30,6
+2016,7,29,17,30,31
+2016,7,29,18,30,118
+2016,7,29,19,30,160
+2016,7,29,20,30,192
+2016,7,29,21,30,213
+2016,7,29,22,30,220
+2016,7,29,23,30,192
+2016,7,30,0,30,75
+2016,7,30,1,30,61
+2016,7,30,2,30,80
+2016,7,30,3,30,249
+2016,7,30,4,30,163
+2016,7,30,5,30,54
+2016,7,30,6,30,3
+2016,7,30,7,30,0
+2016,7,30,8,30,0
+2016,7,30,9,30,0
+2016,7,30,10,30,0
+2016,7,30,11,30,0
+2016,7,30,12,30,0
+2016,7,30,13,30,0
+2016,7,30,14,30,3
+2016,7,30,15,30,4
+2016,7,30,16,30,5
+2016,7,30,17,30,102
+2016,7,30,18,30,150
+2016,7,30,19,30,198
+2016,7,30,20,30,230
+2016,7,30,21,30,255
+2016,7,30,22,30,81
+2016,7,30,23,30,77
+2016,7,31,0,30,68
+2016,7,31,1,30,56
+2016,7,31,2,30,208
+2016,7,31,3,30,249
+2016,7,31,4,30,127
+2016,7,31,5,30,67
+2016,7,31,6,30,26
+2016,7,31,7,30,0
+2016,7,31,8,30,0
+2016,7,31,9,30,0
+2016,7,31,10,30,0
+2016,7,31,11,30,0
+2016,7,31,12,30,0
+2016,7,31,13,30,0
+2016,7,31,14,30,28
+2016,7,31,15,30,71
+2016,7,31,16,30,101
+2016,7,31,17,30,159
+2016,7,31,18,30,119
+2016,7,31,19,30,152
+2016,7,31,20,30,179
+2016,7,31,21,30,196
+2016,7,31,22,30,202
+2016,7,31,23,30,423
+2019,8,1,0,30,583
+2019,8,1,1,30,504
+2019,8,1,2,30,243
+2019,8,1,3,30,172
+2019,8,1,4,30,108
+2019,8,1,5,30,57
+2019,8,1,6,30,22
+2019,8,1,7,30,0
+2019,8,1,8,30,0
+2019,8,1,9,30,0
+2019,8,1,10,30,0
+2019,8,1,11,30,0
+2019,8,1,12,30,0
+2019,8,1,13,30,0
+2019,8,1,14,30,18
+2019,8,1,15,30,6
+2019,8,1,16,30,11
+2019,8,1,17,30,17
+2019,8,1,18,30,101
+2019,8,1,19,30,327
+2019,8,1,20,30,388
+2019,8,1,21,30,519
+2019,8,1,22,30,572
+2019,8,1,23,30,557
+2019,8,2,0,30,510
+2019,8,2,1,30,439
+2019,8,2,2,30,351
+2019,8,2,3,30,257
+2019,8,2,4,30,195
+2019,8,2,5,30,108
+2019,8,2,6,30,37
+2019,8,2,7,30,0
+2019,8,2,8,30,0
+2019,8,2,9,30,0
+2019,8,2,10,30,0
+2019,8,2,11,30,0
+2019,8,2,12,30,0
+2019,8,2,13,30,0
+2019,8,2,14,30,30
+2019,8,2,15,30,81
+2019,8,2,16,30,149
+2019,8,2,17,30,230
+2019,8,2,18,30,102
+2019,8,2,19,30,133
+2019,8,2,20,30,160
+2019,8,2,21,30,177
+2019,8,2,22,30,81
+2019,8,2,23,30,77
+2019,8,3,0,30,69
+2019,8,3,1,30,56
+2019,8,3,2,30,42
+2019,8,3,3,30,29
+2019,8,3,4,30,12
+2019,8,3,5,30,61
+2019,8,3,6,30,22
+2019,8,3,7,30,0
+2019,8,3,8,30,0
+2019,8,3,9,30,0
+2019,8,3,10,30,0
+2019,8,3,11,30,0
+2019,8,3,12,30,0
+2019,8,3,13,30,0
+2019,8,3,14,30,11
+2019,8,3,15,30,32
+2019,8,3,16,30,63
+2019,8,3,17,30,91
+2019,8,3,18,30,131
+2019,8,3,19,30,41
+2019,8,3,20,30,50
+2019,8,3,21,30,168
+2019,8,3,22,30,83
+2019,8,3,23,30,80
+2019,8,4,0,30,72
+2019,8,4,1,30,61
+2019,8,4,2,30,48
+2019,8,4,3,30,34
+2019,8,4,4,30,63
+2019,8,4,5,30,31
+2019,8,4,6,30,10
+2019,8,4,7,30,0
+2019,8,4,8,30,0
+2019,8,4,9,30,0
+2019,8,4,10,30,0
+2019,8,4,11,30,0
+2019,8,4,12,30,0
+2019,8,4,13,30,0
+2019,8,4,14,30,22
+2019,8,4,15,30,61
+2019,8,4,16,30,117
+2019,8,4,17,30,186
+2019,8,4,18,30,335
+2019,8,4,19,30,417
+2019,8,4,20,30,484
+2019,8,4,21,30,318
+2019,8,4,22,30,328
+2019,8,4,23,30,649
+2019,8,5,0,30,599
+2019,8,5,1,30,525
+2019,8,5,2,30,429
+2019,8,5,3,30,320
+2019,8,5,4,30,209
+2019,8,5,5,30,85
+2019,8,5,6,30,20
+2019,8,5,7,30,0
+2019,8,5,8,30,0
+2019,8,5,9,30,0
+2019,8,5,10,30,0
+2019,8,5,11,30,0
+2019,8,5,12,30,0
+2019,8,5,13,30,0
+2019,8,5,14,30,3
+2019,8,5,15,30,8
+2019,8,5,16,30,14
+2019,8,5,17,30,23
+2019,8,5,18,30,330
+2019,8,5,19,30,411
+2019,8,5,20,30,475
+2019,8,5,21,30,516
+2019,8,5,22,30,529
+2019,8,5,23,30,366
+2019,8,6,0,30,331
+2019,8,6,1,30,279
+2019,8,6,2,30,203
+2019,8,6,3,30,150
+2019,8,6,4,30,53
+2019,8,6,5,30,25
+2019,8,6,6,30,8
+2019,8,6,7,30,0
+2019,8,6,8,30,0
+2019,8,6,9,30,0
+2019,8,6,10,30,0
+2019,8,6,11,30,0
+2019,8,6,12,30,0
+2019,8,6,13,30,0
+2019,8,6,14,30,18
+2019,8,6,15,30,61
+2019,8,6,16,30,120
+2019,8,6,17,30,193
+2019,8,6,18,30,432
+2019,8,6,19,30,526
+2019,8,6,20,30,599
+2019,8,6,21,30,646
+2019,8,6,22,30,661
+2019,8,6,23,30,643
+2019,8,7,0,30,587
+2019,8,7,1,30,510
+2019,8,7,2,30,413
+2019,8,7,3,30,308
+2019,8,7,4,30,8
+2019,8,7,5,30,67
+2019,8,7,6,30,19
+2019,8,7,7,30,0
+2019,8,7,8,30,0
+2019,8,7,9,30,0
+2019,8,7,10,30,0
+2019,8,7,11,30,0
+2019,8,7,12,30,0
+2019,8,7,13,30,0
+2019,8,7,14,30,3
+2019,8,7,15,30,7
+2019,8,7,16,30,14
+2019,8,7,17,30,23
+2019,8,7,18,30,308
+2019,8,7,19,30,388
+2019,8,7,20,30,451
+2019,8,7,21,30,491
+2019,8,7,22,30,506
+2019,8,7,23,30,68
+2019,8,8,0,30,62
+2019,8,8,1,30,120
+2019,8,8,2,30,92
+2019,8,8,3,30,28
+2019,8,8,4,30,72
+2019,8,8,5,30,33
+2019,8,8,6,30,8
+2019,8,8,7,30,0
+2019,8,8,8,30,0
+2019,8,8,9,30,0
+2019,8,8,10,30,0
+2019,8,8,11,30,0
+2019,8,8,12,30,0
+2019,8,8,13,30,0
+2019,8,8,14,30,14
+2019,8,8,15,30,51
+2019,8,8,16,30,109
+2019,8,8,17,30,313
+2019,8,8,18,30,419
+2019,8,8,19,30,512
+2019,8,8,20,30,583
+2019,8,8,21,30,629
+2019,8,8,22,30,641
+2019,8,8,23,30,622
+2019,8,9,0,30,573
+2019,8,9,1,30,494
+2019,8,9,2,30,396
+2019,8,9,3,30,287
+2019,8,9,4,30,145
+2019,8,9,5,30,58
+2019,8,9,6,30,14
+2019,8,9,7,30,0
+2019,8,9,8,30,0
+2019,8,9,9,30,0
+2019,8,9,10,30,0
+2019,8,9,11,30,0
+2019,8,9,12,30,0
+2019,8,9,13,30,0
+2019,8,9,14,30,13
+2019,8,9,15,30,39
+2019,8,9,16,30,79
+2019,8,9,17,30,130
+2019,8,9,18,30,56
+2019,8,9,19,30,73
+2019,8,9,20,30,86
+2019,8,9,21,30,94
+2019,8,9,22,30,247
+2019,8,9,23,30,620
+2019,8,10,0,30,449
+2019,8,10,1,30,382
+2019,8,10,2,30,299
+2019,8,10,3,30,211
+2019,8,10,4,30,113
+2019,8,10,5,30,50
+2019,8,10,6,30,10
+2019,8,10,7,30,0
+2019,8,10,8,30,0
+2019,8,10,9,30,0
+2019,8,10,10,30,0
+2019,8,10,11,30,0
+2019,8,10,12,30,0
+2019,8,10,13,30,0
+2019,8,10,14,30,7
+2019,8,10,15,30,28
+2019,8,10,16,30,60
+2019,8,10,17,30,118
+2019,8,10,18,30,172
+2019,8,10,19,30,48
+2019,8,10,20,30,580
+2019,8,10,21,30,631
+2019,8,10,22,30,644
+2019,8,10,23,30,626
+2019,8,11,0,30,173
+2019,8,11,1,30,144
+2019,8,11,2,30,109
+2019,8,11,3,30,73
+2019,8,11,4,30,83
+2019,8,11,5,30,51
+2019,8,11,6,30,9
+2019,8,11,7,30,0
+2019,8,11,8,30,0
+2019,8,11,9,30,0
+2019,8,11,10,30,0
+2019,8,11,11,30,0
+2019,8,11,12,30,0
+2019,8,11,13,30,0
+2019,8,11,14,30,24
+2019,8,11,15,30,79
+2019,8,11,16,30,167
+2019,8,11,17,30,272
+2019,8,11,18,30,418
+2019,8,11,19,30,512
+2019,8,11,20,30,585
+2019,8,11,21,30,624
+2019,8,11,22,30,260
+2019,8,11,23,30,423
+2019,8,12,0,30,382
+2019,8,12,1,30,321
+2019,8,12,2,30,247
+2019,8,12,3,30,169
+2019,8,12,4,30,136
+2019,8,12,5,30,82
+2019,8,12,6,30,16
+2019,8,12,7,30,0
+2019,8,12,8,30,0
+2019,8,12,9,30,0
+2019,8,12,10,30,0
+2019,8,12,11,30,0
+2019,8,12,12,30,0
+2019,8,12,13,30,0
+2019,8,12,14,30,6
+2019,8,12,15,30,25
+2019,8,12,16,30,50
+2019,8,12,17,30,84
+2019,8,12,18,30,370
+2019,8,12,19,30,435
+2019,8,12,20,30,506
+2019,8,12,21,30,548
+2019,8,12,22,30,620
+2019,8,12,23,30,599
+2019,8,13,0,30,554
+2019,8,13,1,30,450
+2019,8,13,2,30,351
+2019,8,13,3,30,243
+2019,8,13,4,30,104
+2019,8,13,5,30,45
+2019,8,13,6,30,7
+2019,8,13,7,30,0
+2019,8,13,8,30,0
+2019,8,13,9,30,0
+2019,8,13,10,30,0
+2019,8,13,11,30,0
+2019,8,13,12,30,0
+2019,8,13,13,30,0
+2019,8,13,14,30,9
+2019,8,13,15,30,78
+2019,8,13,16,30,162
+2019,8,13,17,30,59
+2019,8,13,18,30,87
+2019,8,13,19,30,116
+2019,8,13,20,30,141
+2019,8,13,21,30,146
+2019,8,13,22,30,106
+2019,8,13,23,30,19
+2019,8,14,0,30,16
+2019,8,14,1,30,13
+2019,8,14,2,30,10
+2019,8,14,3,30,7
+2019,8,14,4,30,174
+2019,8,14,5,30,76
+2019,8,14,6,30,10
+2019,8,14,7,30,0
+2019,8,14,8,30,0
+2019,8,14,9,30,0
+2019,8,14,10,30,0
+2019,8,14,11,30,0
+2019,8,14,12,30,0
+2019,8,14,13,30,0
+2019,8,14,14,30,13
+2019,8,14,15,30,63
+2019,8,14,16,30,141
+2019,8,14,17,30,232
+2019,8,14,18,30,205
+2019,8,14,19,30,267
+2019,8,14,20,30,317
+2019,8,14,21,30,350
+2019,8,14,22,30,259
+2019,8,14,23,30,253
+2019,8,15,0,30,226
+2019,8,15,1,30,264
+2019,8,15,2,30,199
+2019,8,15,3,30,132
+2019,8,15,4,30,65
+2019,8,15,5,30,25
+2019,8,15,6,30,0
+2019,8,15,7,30,0
+2019,8,15,8,30,0
+2019,8,15,9,30,0
+2019,8,15,10,30,0
+2019,8,15,11,30,0
+2019,8,15,12,30,0
+2019,8,15,13,30,0
+2019,8,15,14,30,2
+2019,8,15,15,30,65
+2019,8,15,16,30,144
+2019,8,15,17,30,74
+2019,8,15,18,30,83
+2019,8,15,19,30,111
+2019,8,15,20,30,135
+2019,8,15,21,30,167
+2019,8,15,22,30,173
+2019,8,15,23,30,166
+2019,8,16,0,30,148
+2019,8,16,1,30,122
+2019,8,16,2,30,91
+2019,8,16,3,30,59
+2019,8,16,4,30,78
+2019,8,16,5,30,33
+2019,8,16,6,30,0
+2019,8,16,7,30,0
+2019,8,16,8,30,0
+2019,8,16,9,30,0
+2019,8,16,10,30,0
+2019,8,16,11,30,0
+2019,8,16,12,30,0
+2019,8,16,13,30,0
+2019,8,16,14,30,6
+2019,8,16,15,30,47
+2019,8,16,16,30,108
+2019,8,16,17,30,15
+2019,8,16,18,30,22
+2019,8,16,19,30,30
+2019,8,16,20,30,37
+2019,8,16,21,30,42
+2019,8,16,22,30,153
+2019,8,16,23,30,146
+2019,8,17,0,30,142
+2019,8,17,1,30,115
+2019,8,17,2,30,84
+2019,8,17,3,30,56
+2019,8,17,4,30,32
+2019,8,17,5,30,19
+2019,8,17,6,30,0
+2019,8,17,7,30,0
+2019,8,17,8,30,0
+2019,8,17,9,30,0
+2019,8,17,10,30,0
+2019,8,17,11,30,0
+2019,8,17,12,30,0
+2019,8,17,13,30,0
+2019,8,17,14,30,4
+2019,8,17,15,30,77
+2019,8,17,16,30,178
+2019,8,17,17,30,292
+2019,8,17,18,30,403
+2019,8,17,19,30,422
+2019,8,17,20,30,568
+2019,8,17,21,30,607
+2019,8,17,22,30,618
+2019,8,17,23,30,596
+2019,8,18,0,30,538
+2019,8,18,1,30,456
+2019,8,18,2,30,354
+2019,8,18,3,30,245
+2019,8,18,4,30,23
+2019,8,18,5,30,9
+2019,8,18,6,30,0
+2019,8,18,7,30,0
+2019,8,18,8,30,0
+2019,8,18,9,30,0
+2019,8,18,10,30,0
+2019,8,18,11,30,0
+2019,8,18,12,30,0
+2019,8,18,13,30,0
+2019,8,18,14,30,0
+2019,8,18,15,30,71
+2019,8,18,16,30,170
+2019,8,18,17,30,99
+2019,8,18,18,30,149
+2019,8,18,19,30,198
+2019,8,18,20,30,238
+2019,8,18,21,30,262
+2019,8,18,22,30,626
+2019,8,18,23,30,606
+2019,8,19,0,30,555
+2019,8,19,1,30,475
+2019,8,19,2,30,376
+2019,8,19,3,30,264
+2019,8,19,4,30,125
+2019,8,19,5,30,47
+2019,8,19,6,30,0
+2019,8,19,7,30,0
+2019,8,19,8,30,0
+2019,8,19,9,30,0
+2019,8,19,10,30,0
+2019,8,19,11,30,0
+2019,8,19,12,30,0
+2019,8,19,13,30,0
+2019,8,19,14,30,0
+2019,8,19,15,30,65
+2019,8,19,16,30,162
+2019,8,19,17,30,272
+2019,8,19,18,30,380
+2019,8,19,19,30,475
+2019,8,19,20,30,549
+2019,8,19,21,30,512
+2019,8,19,22,30,527
+2019,8,19,23,30,508
+2019,8,20,0,30,542
+2019,8,20,1,30,464
+2019,8,20,2,30,366
+2019,8,20,3,30,256
+2019,8,20,4,30,146
+2019,8,20,5,30,52
+2019,8,20,6,30,0
+2019,8,20,7,30,0
+2019,8,20,8,30,0
+2019,8,20,9,30,0
+2019,8,20,10,30,0
+2019,8,20,11,30,0
+2019,8,20,12,30,0
+2019,8,20,13,30,0
+2019,8,20,14,30,0
+2019,8,20,15,30,68
+2019,8,20,16,30,167
+2019,8,20,17,30,278
+2019,8,20,18,30,388
+2019,8,20,19,30,484
+2019,8,20,20,30,559
+2019,8,20,21,30,600
+2019,8,20,22,30,614
+2019,8,20,23,30,593
+2019,8,21,0,30,539
+2019,8,21,1,30,459
+2019,8,21,2,30,358
+2019,8,21,3,30,248
+2019,8,21,4,30,66
+2019,8,21,5,30,24
+2019,8,21,6,30,0
+2019,8,21,7,30,0
+2019,8,21,8,30,0
+2019,8,21,9,30,0
+2019,8,21,10,30,0
+2019,8,21,11,30,0
+2019,8,21,12,30,0
+2019,8,21,13,30,0
+2019,8,21,14,30,0
+2019,8,21,15,30,17
+2019,8,21,16,30,38
+2019,8,21,17,30,255
+2019,8,21,18,30,368
+2019,8,21,19,30,467
+2019,8,21,20,30,547
+2019,8,21,21,30,596
+2019,8,21,22,30,611
+2019,8,21,23,30,593
+2019,8,22,0,30,539
+2019,8,22,1,30,459
+2019,8,22,2,30,359
+2019,8,22,3,30,247
+2019,8,22,4,30,136
+2019,8,22,5,30,43
+2019,8,22,6,30,0
+2019,8,22,7,30,0
+2019,8,22,8,30,0
+2019,8,22,9,30,0
+2019,8,22,10,30,0
+2019,8,22,11,30,0
+2019,8,22,12,30,0
+2019,8,22,13,30,0
+2019,8,22,14,30,0
+2019,8,22,15,30,40
+2019,8,22,16,30,64
+2019,8,22,17,30,247
+2019,8,22,18,30,353
+2019,8,22,19,30,447
+2019,8,22,20,30,522
+2019,8,22,21,30,481
+2019,8,22,22,30,494
+2019,8,22,23,30,494
+2019,8,23,0,30,444
+2019,8,23,1,30,368
+2019,8,23,2,30,277
+2019,8,23,3,30,183
+2019,8,23,4,30,43
+2019,8,23,5,30,12
+2019,8,23,6,30,0
+2019,8,23,7,30,0
+2019,8,23,8,30,0
+2019,8,23,9,30,0
+2019,8,23,10,30,0
+2019,8,23,11,30,0
+2019,8,23,12,30,0
+2019,8,23,13,30,0
+2019,8,23,14,30,0
+2019,8,23,15,30,29
+2019,8,23,16,30,87
+2019,8,23,17,30,89
+2019,8,23,18,30,138
+2019,8,23,19,30,185
+2019,8,23,20,30,224
+2019,8,23,21,30,249
+2019,8,23,22,30,256
+2019,8,23,23,30,316
+2019,8,24,0,30,279
+2019,8,24,1,30,215
+2019,8,24,2,30,156
+2019,8,24,3,30,97
+2019,8,24,4,30,63
+2019,8,24,5,30,19
+2019,8,24,6,30,0
+2019,8,24,7,30,0
+2019,8,24,8,30,0
+2019,8,24,9,30,0
+2019,8,24,10,30,0
+2019,8,24,11,30,0
+2019,8,24,12,30,0
+2019,8,24,13,30,0
+2019,8,24,14,30,0
+2019,8,24,15,30,53
+2019,8,24,16,30,150
+2019,8,24,17,30,262
+2019,8,24,18,30,372
+2019,8,24,19,30,469
+2019,8,24,20,30,543
+2019,8,24,21,30,588
+2019,8,24,22,30,601
+2019,8,24,23,30,579
+2019,8,25,0,30,526
+2019,8,25,1,30,446
+2019,8,25,2,30,346
+2019,8,25,3,30,235
+2019,8,25,4,30,125
+2019,8,25,5,30,34
+2019,8,25,6,30,0
+2019,8,25,7,30,0
+2019,8,25,8,30,0
+2019,8,25,9,30,0
+2019,8,25,10,30,0
+2019,8,25,11,30,0
+2019,8,25,12,30,0
+2019,8,25,13,30,0
+2019,8,25,14,30,0
+2019,8,25,15,30,49
+2019,8,25,16,30,143
+2019,8,25,17,30,206
+2019,8,25,18,30,309
+2019,8,25,19,30,404
+2019,8,25,20,30,479
+2019,8,25,21,30,523
+2019,8,25,22,30,577
+2019,8,25,23,30,431
+2019,8,26,0,30,415
+2019,8,26,1,30,342
+2019,8,26,2,30,255
+2019,8,26,3,30,164
+2019,8,26,4,30,107
+2019,8,26,5,30,27
+2019,8,26,6,30,0
+2019,8,26,7,30,0
+2019,8,26,8,30,0
+2019,8,26,9,30,0
+2019,8,26,10,30,0
+2019,8,26,11,30,0
+2019,8,26,12,30,0
+2019,8,26,13,30,0
+2019,8,26,14,30,0
+2019,8,26,15,30,43
+2019,8,26,16,30,134
+2019,8,26,17,30,242
+2019,8,26,18,30,349
+2019,8,26,19,30,334
+2019,8,26,20,30,516
+2019,8,26,21,30,561
+2019,8,26,22,30,574
+2019,8,26,23,30,553
+2019,8,27,0,30,176
+2019,8,27,1,30,141
+2019,8,27,2,30,100
+2019,8,27,3,30,60
+2019,8,27,4,30,52
+2019,8,27,5,30,11
+2019,8,27,6,30,0
+2019,8,27,7,30,0
+2019,8,27,8,30,0
+2019,8,27,9,30,0
+2019,8,27,10,30,0
+2019,8,27,11,30,0
+2019,8,27,12,30,0
+2019,8,27,13,30,0
+2019,8,27,14,30,0
+2019,8,27,15,30,21
+2019,8,27,16,30,70
+2019,8,27,17,30,54
+2019,8,27,18,30,85
+2019,8,27,19,30,116
+2019,8,27,20,30,141
+2019,8,27,21,30,157
+2019,8,27,22,30,220
+2019,8,27,23,30,176
+2019,8,28,0,30,155
+2019,8,28,1,30,123
+2019,8,28,2,30,87
+2019,8,28,3,30,52
+2019,8,28,4,30,15
+2019,8,28,5,30,4
+2019,8,28,6,30,0
+2019,8,28,7,30,0
+2019,8,28,8,30,0
+2019,8,28,9,30,0
+2019,8,28,10,30,0
+2019,8,28,11,30,0
+2019,8,28,12,30,0
+2019,8,28,13,30,0
+2019,8,28,14,30,0
+2019,8,28,15,30,18
+2019,8,28,16,30,69
+2019,8,28,17,30,88
+2019,8,28,18,30,140
+2019,8,28,19,30,86
+2019,8,28,20,30,105
+2019,8,28,21,30,117
+2019,8,28,22,30,230
+2019,8,28,23,30,194
+2019,8,29,0,30,170
+2019,8,29,1,30,135
+2019,8,29,2,30,95
+2019,8,29,3,30,108
+2019,8,29,4,30,47
+2019,8,29,5,30,7
+2019,8,29,6,30,0
+2019,8,29,7,30,0
+2019,8,29,8,30,0
+2019,8,29,9,30,0
+2019,8,29,10,30,0
+2019,8,29,11,30,0
+2019,8,29,12,30,0
+2019,8,29,13,30,0
+2019,8,29,14,30,0
+2019,8,29,15,30,15
+2019,8,29,16,30,60
+2019,8,29,17,30,133
+2019,8,29,18,30,210
+2019,8,29,19,30,281
+2019,8,29,20,30,339
+2019,8,29,21,30,370
+2019,8,29,22,30,549
+2019,8,29,23,30,434
+2019,8,30,0,30,385
+2019,8,30,1,30,314
+2019,8,30,2,30,229
+2019,8,30,3,30,142
+2019,8,30,4,30,90
+2019,8,30,5,30,15
+2019,8,30,6,30,0
+2019,8,30,7,30,0
+2019,8,30,8,30,0
+2019,8,30,9,30,0
+2019,8,30,10,30,0
+2019,8,30,11,30,0
+2019,8,30,12,30,0
+2019,8,30,13,30,0
+2019,8,30,14,30,0
+2019,8,30,15,30,30
+2019,8,30,16,30,116
+2019,8,30,17,30,222
+2019,8,30,18,30,329
+2019,8,30,19,30,423
+2019,8,30,20,30,494
+2019,8,30,21,30,540
+2019,8,30,22,30,551
+2019,8,30,23,30,528
+2019,8,31,0,30,474
+2019,8,31,1,30,394
+2019,8,31,2,30,295
+2019,8,31,3,30,176
+2019,8,31,4,30,81
+2019,8,31,5,30,9
+2019,8,31,6,30,0
+2019,8,31,7,30,0
+2019,8,31,8,30,0
+2019,8,31,9,30,0
+2019,8,31,10,30,0
+2019,8,31,11,30,0
+2019,8,31,12,30,0
+2019,8,31,13,30,0
+2019,8,31,14,30,0
+2019,8,31,15,30,20
+2019,8,31,16,30,97
+2019,8,31,17,30,165
+2019,8,31,18,30,258
+2019,8,31,19,30,337
+2019,8,31,20,30,397
+2019,8,31,21,30,449
+2019,8,31,22,30,462
+2019,8,31,23,30,443
+2017,9,1,0,30,399
+2017,9,1,1,30,256
+2017,9,1,2,30,182
+2017,9,1,3,30,108
+2017,9,1,4,30,65
+2017,9,1,5,30,0
+2017,9,1,6,30,0
+2017,9,1,7,30,0
+2017,9,1,8,30,0
+2017,9,1,9,30,0
+2017,9,1,10,30,0
+2017,9,1,11,30,0
+2017,9,1,12,30,0
+2017,9,1,13,30,0
+2017,9,1,14,30,0
+2017,9,1,15,30,18
+2017,9,1,16,30,68
+2017,9,1,17,30,141
+2017,9,1,18,30,210
+2017,9,1,19,30,281
+2017,9,1,20,30,339
+2017,9,1,21,30,410
+2017,9,1,22,30,421
+2017,9,1,23,30,300
+2017,9,2,0,30,262
+2017,9,2,1,30,177
+2017,9,2,2,30,122
+2017,9,2,3,30,69
+2017,9,2,4,30,48
+2017,9,2,5,30,0
+2017,9,2,6,30,0
+2017,9,2,7,30,0
+2017,9,2,8,30,0
+2017,9,2,9,30,0
+2017,9,2,10,30,0
+2017,9,2,11,30,0
+2017,9,2,12,30,0
+2017,9,2,13,30,0
+2017,9,2,14,30,0
+2017,9,2,15,30,22
+2017,9,2,16,30,91
+2017,9,2,17,30,215
+2017,9,2,18,30,323
+2017,9,2,19,30,418
+2017,9,2,20,30,490
+2017,9,2,21,30,535
+2017,9,2,22,30,546
+2017,9,2,23,30,524
+2017,9,3,0,30,469
+2017,9,3,1,30,388
+2017,9,3,2,30,288
+2017,9,3,3,30,177
+2017,9,3,4,30,73
+2017,9,3,5,30,0
+2017,9,3,6,30,0
+2017,9,3,7,30,0
+2017,9,3,8,30,0
+2017,9,3,9,30,0
+2017,9,3,10,30,0
+2017,9,3,11,30,0
+2017,9,3,12,30,0
+2017,9,3,13,30,0
+2017,9,3,14,30,0
+2017,9,3,15,30,20
+2017,9,3,16,30,104
+2017,9,3,17,30,212
+2017,9,3,18,30,320
+2017,9,3,19,30,415
+2017,9,3,20,30,349
+2017,9,3,21,30,385
+2017,9,3,22,30,355
+2017,9,3,23,30,335
+2017,9,4,0,30,280
+2017,9,4,1,30,221
+2017,9,4,2,30,152
+2017,9,4,3,30,131
+2017,9,4,4,30,43
+2017,9,4,5,30,0
+2017,9,4,6,30,0
+2017,9,4,7,30,0
+2017,9,4,8,30,0
+2017,9,4,9,30,0
+2017,9,4,10,30,0
+2017,9,4,11,30,0
+2017,9,4,12,30,0
+2017,9,4,13,30,0
+2017,9,4,14,30,0
+2017,9,4,15,30,10
+2017,9,4,16,30,75
+2017,9,4,17,30,162
+2017,9,4,18,30,308
+2017,9,4,19,30,401
+2017,9,4,20,30,473
+2017,9,4,21,30,517
+2017,9,4,22,30,529
+2017,9,4,23,30,507
+2017,9,5,0,30,355
+2017,9,5,1,30,282
+2017,9,5,2,30,183
+2017,9,5,3,30,103
+2017,9,5,4,30,61
+2017,9,5,5,30,0
+2017,9,5,6,30,0
+2017,9,5,7,30,0
+2017,9,5,8,30,0
+2017,9,5,9,30,0
+2017,9,5,10,30,0
+2017,9,5,11,30,0
+2017,9,5,12,30,0
+2017,9,5,13,30,0
+2017,9,5,14,30,0
+2017,9,5,15,30,6
+2017,9,5,16,30,60
+2017,9,5,17,30,142
+2017,9,5,18,30,200
+2017,9,5,19,30,211
+2017,9,5,20,30,260
+2017,9,5,21,30,158
+2017,9,5,22,30,180
+2017,9,5,23,30,168
+2017,9,6,0,30,188
+2017,9,6,1,30,144
+2017,9,6,2,30,79
+2017,9,6,3,30,44
+2017,9,6,4,30,19
+2017,9,6,5,30,0
+2017,9,6,6,30,0
+2017,9,6,7,30,0
+2017,9,6,8,30,0
+2017,9,6,9,30,0
+2017,9,6,10,30,0
+2017,9,6,11,30,0
+2017,9,6,12,30,0
+2017,9,6,13,30,0
+2017,9,6,14,30,0
+2017,9,6,15,30,0
+2017,9,6,16,30,52
+2017,9,6,17,30,119
+2017,9,6,18,30,195
+2017,9,6,19,30,267
+2017,9,6,20,30,324
+2017,9,6,21,30,358
+2017,9,6,22,30,252
+2017,9,6,23,30,251
+2017,9,7,0,30,216
+2017,9,7,1,30,95
+2017,9,7,2,30,63
+2017,9,7,3,30,36
+2017,9,7,4,30,29
+2017,9,7,5,30,0
+2017,9,7,6,30,0
+2017,9,7,7,30,0
+2017,9,7,8,30,0
+2017,9,7,9,30,0
+2017,9,7,10,30,0
+2017,9,7,11,30,0
+2017,9,7,12,30,0
+2017,9,7,13,30,0
+2017,9,7,14,30,0
+2017,9,7,15,30,0
+2017,9,7,16,30,56
+2017,9,7,17,30,136
+2017,9,7,18,30,290
+2017,9,7,19,30,384
+2017,9,7,20,30,456
+2017,9,7,21,30,308
+2017,9,7,22,30,269
+2017,9,7,23,30,253
+2017,9,8,0,30,218
+2017,9,8,1,30,353
+2017,9,8,2,30,253
+2017,9,8,3,30,145
+2017,9,8,4,30,47
+2017,9,8,5,30,0
+2017,9,8,6,30,0
+2017,9,8,7,30,0
+2017,9,8,8,30,0
+2017,9,8,9,30,0
+2017,9,8,10,30,0
+2017,9,8,11,30,0
+2017,9,8,12,30,0
+2017,9,8,13,30,0
+2017,9,8,14,30,0
+2017,9,8,15,30,0
+2017,9,8,16,30,79
+2017,9,8,17,30,183
+2017,9,8,18,30,289
+2017,9,8,19,30,383
+2017,9,8,20,30,455
+2017,9,8,21,30,497
+2017,9,8,22,30,507
+2017,9,8,23,30,483
+2017,9,9,0,30,428
+2017,9,9,1,30,347
+2017,9,9,2,30,246
+2017,9,9,3,30,138
+2017,9,9,4,30,25
+2017,9,9,5,30,0
+2017,9,9,6,30,0
+2017,9,9,7,30,0
+2017,9,9,8,30,0
+2017,9,9,9,30,0
+2017,9,9,10,30,0
+2017,9,9,11,30,0
+2017,9,9,12,30,0
+2017,9,9,13,30,0
+2017,9,9,14,30,0
+2017,9,9,15,30,0
+2017,9,9,16,30,32
+2017,9,9,17,30,77
+2017,9,9,18,30,241
+2017,9,9,19,30,373
+2017,9,9,20,30,442
+2017,9,9,21,30,484
+2017,9,9,22,30,493
+2017,9,9,23,30,470
+2017,9,10,0,30,286
+2017,9,10,1,30,222
+2017,9,10,2,30,147
+2017,9,10,3,30,75
+2017,9,10,4,30,25
+2017,9,10,5,30,0
+2017,9,10,6,30,0
+2017,9,10,7,30,0
+2017,9,10,8,30,0
+2017,9,10,9,30,0
+2017,9,10,10,30,0
+2017,9,10,11,30,0
+2017,9,10,12,30,0
+2017,9,10,13,30,0
+2017,9,10,14,30,0
+2017,9,10,15,30,0
+2017,9,10,16,30,27
+2017,9,10,17,30,74
+2017,9,10,18,30,163
+2017,9,10,19,30,231
+2017,9,10,20,30,285
+2017,9,10,21,30,263
+2017,9,10,22,30,270
+2017,9,10,23,30,253
+2017,9,11,0,30,216
+2017,9,11,1,30,164
+2017,9,11,2,30,105
+2017,9,11,3,30,54
+2017,9,11,4,30,12
+2017,9,11,5,30,0
+2017,9,11,6,30,0
+2017,9,11,7,30,0
+2017,9,11,8,30,0
+2017,9,11,9,30,0
+2017,9,11,10,30,0
+2017,9,11,11,30,0
+2017,9,11,12,30,0
+2017,9,11,13,30,0
+2017,9,11,14,30,0
+2017,9,11,15,30,0
+2017,9,11,16,30,55
+2017,9,11,17,30,64
+2017,9,11,18,30,142
+2017,9,11,19,30,139
+2017,9,11,20,30,175
+2017,9,11,21,30,198
+2017,9,11,22,30,223
+2017,9,11,23,30,209
+2017,9,12,0,30,152
+2017,9,12,1,30,114
+2017,9,12,2,30,72
+2017,9,12,3,30,34
+2017,9,12,4,30,17
+2017,9,12,5,30,0
+2017,9,12,6,30,0
+2017,9,12,7,30,0
+2017,9,12,8,30,0
+2017,9,12,9,30,0
+2017,9,12,10,30,0
+2017,9,12,11,30,0
+2017,9,12,12,30,0
+2017,9,12,13,30,0
+2017,9,12,14,30,0
+2017,9,12,15,30,0
+2017,9,12,16,30,23
+2017,9,12,17,30,10
+2017,9,12,18,30,171
+2017,9,12,19,30,241
+2017,9,12,20,30,296
+2017,9,12,21,30,245
+2017,9,12,22,30,199
+2017,9,12,23,30,186
+2017,9,13,0,30,136
+2017,9,13,1,30,102
+2017,9,13,2,30,65
+2017,9,13,3,30,32
+2017,9,13,4,30,8
+2017,9,13,5,30,0
+2017,9,13,6,30,0
+2017,9,13,7,30,0
+2017,9,13,8,30,0
+2017,9,13,9,30,0
+2017,9,13,10,30,0
+2017,9,13,11,30,0
+2017,9,13,12,30,0
+2017,9,13,13,30,0
+2017,9,13,14,30,0
+2017,9,13,15,30,0
+2017,9,13,16,30,53
+2017,9,13,17,30,98
+2017,9,13,18,30,125
+2017,9,13,19,30,180
+2017,9,13,20,30,225
+2017,9,13,21,30,254
+2017,9,13,22,30,348
+2017,9,13,23,30,278
+2017,9,14,0,30,354
+2017,9,14,1,30,275
+2017,9,14,2,30,97
+2017,9,14,3,30,47
+2017,9,14,4,30,21
+2017,9,14,5,30,0
+2017,9,14,6,30,0
+2017,9,14,7,30,0
+2017,9,14,8,30,0
+2017,9,14,9,30,0
+2017,9,14,10,30,0
+2017,9,14,11,30,0
+2017,9,14,12,30,0
+2017,9,14,13,30,0
+2017,9,14,14,30,0
+2017,9,14,15,30,0
+2017,9,14,16,30,52
+2017,9,14,17,30,150
+2017,9,14,18,30,254
+2017,9,14,19,30,346
+2017,9,14,20,30,416
+2017,9,14,21,30,457
+2017,9,14,22,30,466
+2017,9,14,23,30,441
+2017,9,15,0,30,309
+2017,9,15,1,30,235
+2017,9,15,2,30,152
+2017,9,15,3,30,53
+2017,9,15,4,30,8
+2017,9,15,5,30,0
+2017,9,15,6,30,0
+2017,9,15,7,30,0
+2017,9,15,8,30,0
+2017,9,15,9,30,0
+2017,9,15,10,30,0
+2017,9,15,11,30,0
+2017,9,15,12,30,0
+2017,9,15,13,30,0
+2017,9,15,14,30,0
+2017,9,15,15,30,0
+2017,9,15,16,30,39
+2017,9,15,17,30,11
+2017,9,15,18,30,249
+2017,9,15,19,30,341
+2017,9,15,20,30,410
+2017,9,15,21,30,453
+2017,9,15,22,30,461
+2017,9,15,23,30,436
+2017,9,16,0,30,381
+2017,9,16,1,30,299
+2017,9,16,2,30,200
+2017,9,16,3,30,96
+2017,9,16,4,30,15
+2017,9,16,5,30,0
+2017,9,16,6,30,0
+2017,9,16,7,30,0
+2017,9,16,8,30,0
+2017,9,16,9,30,0
+2017,9,16,10,30,0
+2017,9,16,11,30,0
+2017,9,16,12,30,0
+2017,9,16,13,30,0
+2017,9,16,14,30,0
+2017,9,16,15,30,0
+2017,9,16,16,30,46
+2017,9,16,17,30,95
+2017,9,16,18,30,174
+2017,9,16,19,30,249
+2017,9,16,20,30,280
+2017,9,16,21,30,312
+2017,9,16,22,30,318
+2017,9,16,23,30,282
+2017,9,17,0,30,238
+2017,9,17,1,30,251
+2017,9,17,2,30,156
+2017,9,17,3,30,68
+2017,9,17,4,30,0
+2017,9,17,5,30,0
+2017,9,17,6,30,0
+2017,9,17,7,30,0
+2017,9,17,8,30,0
+2017,9,17,9,30,0
+2017,9,17,10,30,0
+2017,9,17,11,30,0
+2017,9,17,12,30,0
+2017,9,17,13,30,0
+2017,9,17,14,30,0
+2017,9,17,15,30,0
+2017,9,17,16,30,42
+2017,9,17,17,30,136
+2017,9,17,18,30,239
+2017,9,17,19,30,329
+2017,9,17,20,30,398
+2017,9,17,21,30,438
+2017,9,17,22,30,446
+2017,9,17,23,30,420
+2017,9,18,0,30,365
+2017,9,18,1,30,208
+2017,9,18,2,30,131
+2017,9,18,3,30,57
+2017,9,18,4,30,0
+2017,9,18,5,30,0
+2017,9,18,6,30,0
+2017,9,18,7,30,0
+2017,9,18,8,30,0
+2017,9,18,9,30,0
+2017,9,18,10,30,0
+2017,9,18,11,30,0
+2017,9,18,12,30,0
+2017,9,18,13,30,0
+2017,9,18,14,30,0
+2017,9,18,15,30,0
+2017,9,18,16,30,13
+2017,9,18,17,30,52
+2017,9,18,18,30,94
+2017,9,18,19,30,149
+2017,9,18,20,30,191
+2017,9,18,21,30,216
+2017,9,18,22,30,221
+2017,9,18,23,30,205
+2017,9,19,0,30,279
+2017,9,19,1,30,212
+2017,9,19,2,30,134
+2017,9,19,3,30,57
+2017,9,19,4,30,0
+2017,9,19,5,30,0
+2017,9,19,6,30,0
+2017,9,19,7,30,0
+2017,9,19,8,30,0
+2017,9,19,9,30,0
+2017,9,19,10,30,0
+2017,9,19,11,30,0
+2017,9,19,12,30,0
+2017,9,19,13,30,0
+2017,9,19,14,30,0
+2017,9,19,15,30,0
+2017,9,19,16,30,15
+2017,9,19,17,30,53
+2017,9,19,18,30,64
+2017,9,19,19,30,85
+2017,9,19,20,30,107
+2017,9,19,21,30,121
+2017,9,19,22,30,321
+2017,9,19,23,30,301
+2017,9,20,0,30,240
+2017,9,20,1,30,178
+2017,9,20,2,30,108
+2017,9,20,3,30,44
+2017,9,20,4,30,0
+2017,9,20,5,30,0
+2017,9,20,6,30,0
+2017,9,20,7,30,0
+2017,9,20,8,30,0
+2017,9,20,9,30,0
+2017,9,20,10,30,0
+2017,9,20,11,30,0
+2017,9,20,12,30,0
+2017,9,20,13,30,0
+2017,9,20,14,30,0
+2017,9,20,15,30,0
+2017,9,20,16,30,27
+2017,9,20,17,30,4
+2017,9,20,18,30,39
+2017,9,20,19,30,57
+2017,9,20,20,30,74
+2017,9,20,21,30,84
+2017,9,20,22,30,86
+2017,9,20,23,30,142
+2017,9,21,0,30,149
+2017,9,21,1,30,107
+2017,9,21,2,30,63
+2017,9,21,3,30,26
+2017,9,21,4,30,0
+2017,9,21,5,30,0
+2017,9,21,6,30,0
+2017,9,21,7,30,0
+2017,9,21,8,30,0
+2017,9,21,9,30,0
+2017,9,21,10,30,0
+2017,9,21,11,30,0
+2017,9,21,12,30,0
+2017,9,21,13,30,0
+2017,9,21,14,30,0
+2017,9,21,15,30,0
+2017,9,21,16,30,28
+2017,9,21,17,30,54
+2017,9,21,18,30,107
+2017,9,21,19,30,161
+2017,9,21,20,30,206
+2017,9,21,21,30,301
+2017,9,21,22,30,253
+2017,9,21,23,30,233
+2017,9,22,0,30,126
+2017,9,22,1,30,90
+2017,9,22,2,30,33
+2017,9,22,3,30,15
+2017,9,22,4,30,0
+2017,9,22,5,30,0
+2017,9,22,6,30,0
+2017,9,22,7,30,0
+2017,9,22,8,30,0
+2017,9,22,9,30,0
+2017,9,22,10,30,0
+2017,9,22,11,30,0
+2017,9,22,12,30,0
+2017,9,22,13,30,0
+2017,9,22,14,30,0
+2017,9,22,15,30,0
+2017,9,22,16,30,16
+2017,9,22,17,30,84
+2017,9,22,18,30,80
+2017,9,22,19,30,53
+2017,9,22,20,30,69
+2017,9,22,21,30,79
+2017,9,22,22,30,201
+2017,9,22,23,30,92
+2017,9,23,0,30,74
+2017,9,23,1,30,53
+2017,9,23,2,30,32
+2017,9,23,3,30,25
+2017,9,23,4,30,0
+2017,9,23,5,30,0
+2017,9,23,6,30,0
+2017,9,23,7,30,0
+2017,9,23,8,30,0
+2017,9,23,9,30,0
+2017,9,23,10,30,0
+2017,9,23,11,30,0
+2017,9,23,12,30,0
+2017,9,23,13,30,0
+2017,9,23,14,30,0
+2017,9,23,15,30,0
+2017,9,23,16,30,17
+2017,9,23,17,30,95
+2017,9,23,18,30,166
+2017,9,23,19,30,243
+2017,9,23,20,30,289
+2017,9,23,21,30,322
+2017,9,23,22,30,334
+2017,9,23,23,30,311
+2017,9,24,0,30,288
+2017,9,24,1,30,222
+2017,9,24,2,30,123
+2017,9,24,3,30,39
+2017,9,24,4,30,0
+2017,9,24,5,30,0
+2017,9,24,6,30,0
+2017,9,24,7,30,0
+2017,9,24,8,30,0
+2017,9,24,9,30,0
+2017,9,24,10,30,0
+2017,9,24,11,30,0
+2017,9,24,12,30,0
+2017,9,24,13,30,0
+2017,9,24,14,30,0
+2017,9,24,15,30,0
+2017,9,24,16,30,12
+2017,9,24,17,30,85
+2017,9,24,18,30,144
+2017,9,24,19,30,213
+2017,9,24,20,30,268
+2017,9,24,21,30,166
+2017,9,24,22,30,236
+2017,9,24,23,30,216
+2017,9,25,0,30,177
+2017,9,25,1,30,132
+2017,9,25,2,30,74
+2017,9,25,3,30,24
+2017,9,25,4,30,0
+2017,9,25,5,30,0
+2017,9,25,6,30,0
+2017,9,25,7,30,0
+2017,9,25,8,30,0
+2017,9,25,9,30,0
+2017,9,25,10,30,0
+2017,9,25,11,30,0
+2017,9,25,12,30,0
+2017,9,25,13,30,0
+2017,9,25,14,30,0
+2017,9,25,15,30,0
+2017,9,25,16,30,6
+2017,9,25,17,30,49
+2017,9,25,18,30,15
+2017,9,25,19,30,23
+2017,9,25,20,30,116
+2017,9,25,21,30,133
+2017,9,25,22,30,136
+2017,9,25,23,30,68
+2017,9,26,0,30,54
+2017,9,26,1,30,45
+2017,9,26,2,30,26
+2017,9,26,3,30,10
+2017,9,26,4,30,0
+2017,9,26,5,30,0
+2017,9,26,6,30,0
+2017,9,26,7,30,0
+2017,9,26,8,30,0
+2017,9,26,9,30,0
+2017,9,26,10,30,0
+2017,9,26,11,30,0
+2017,9,26,12,30,0
+2017,9,26,13,30,0
+2017,9,26,14,30,0
+2017,9,26,15,30,0
+2017,9,26,16,30,0
+2017,9,26,17,30,91
+2017,9,26,18,30,189
+2017,9,26,19,30,277
+2017,9,26,20,30,345
+2017,9,26,21,30,383
+2017,9,26,22,30,391
+2017,9,26,23,30,364
+2017,9,27,0,30,307
+2017,9,27,1,30,187
+2017,9,27,2,30,100
+2017,9,27,3,30,25
+2017,9,27,4,30,0
+2017,9,27,5,30,0
+2017,9,27,6,30,0
+2017,9,27,7,30,0
+2017,9,27,8,30,0
+2017,9,27,9,30,0
+2017,9,27,10,30,0
+2017,9,27,11,30,0
+2017,9,27,12,30,0
+2017,9,27,13,30,0
+2017,9,27,14,30,0
+2017,9,27,15,30,0
+2017,9,27,16,30,0
+2017,9,27,17,30,81
+2017,9,27,18,30,129
+2017,9,27,19,30,260
+2017,9,27,20,30,326
+2017,9,27,21,30,365
+2017,9,27,22,30,372
+2017,9,27,23,30,346
+2017,9,28,0,30,246
+2017,9,28,1,30,170
+2017,9,28,2,30,90
+2017,9,28,3,30,20
+2017,9,28,4,30,0
+2017,9,28,5,30,0
+2017,9,28,6,30,0
+2017,9,28,7,30,0
+2017,9,28,8,30,0
+2017,9,28,9,30,0
+2017,9,28,10,30,0
+2017,9,28,11,30,0
+2017,9,28,12,30,0
+2017,9,28,13,30,0
+2017,9,28,14,30,0
+2017,9,28,15,30,0
+2017,9,28,16,30,0
+2017,9,28,17,30,33
+2017,9,28,18,30,61
+2017,9,28,19,30,96
+2017,9,28,20,30,7
+2017,9,28,21,30,48
+2017,9,28,22,30,90
+2017,9,28,23,30,81
+2017,9,29,0,30,44
+2017,9,29,1,30,31
+2017,9,29,2,30,18
+2017,9,29,3,30,13
+2017,9,29,4,30,0
+2017,9,29,5,30,0
+2017,9,29,6,30,0
+2017,9,29,7,30,0
+2017,9,29,8,30,0
+2017,9,29,9,30,0
+2017,9,29,10,30,0
+2017,9,29,11,30,0
+2017,9,29,12,30,0
+2017,9,29,13,30,0
+2017,9,29,14,30,0
+2017,9,29,15,30,0
+2017,9,29,16,30,0
+2017,9,29,17,30,62
+2017,9,29,18,30,64
+2017,9,29,19,30,107
+2017,9,29,20,30,142
+2017,9,29,21,30,164
+2017,9,29,22,30,168
+2017,9,29,23,30,198
+2017,9,30,0,30,108
+2017,9,30,1,30,71
+2017,9,30,2,30,34
+2017,9,30,3,30,25
+2017,9,30,4,30,0
+2017,9,30,5,30,0
+2017,9,30,6,30,0
+2017,9,30,7,30,0
+2017,9,30,8,30,0
+2017,9,30,9,30,0
+2017,9,30,10,30,0
+2017,9,30,11,30,0
+2017,9,30,12,30,0
+2017,9,30,13,30,0
+2017,9,30,14,30,0
+2017,9,30,15,30,0
+2017,9,30,16,30,0
+2017,9,30,17,30,41
+2017,9,30,18,30,24
+2017,9,30,19,30,39
+2017,9,30,20,30,52
+2017,9,30,21,30,139
+2017,9,30,22,30,139
+2017,9,30,23,30,126
+2022,10,1,0,30,179
+2022,10,1,1,30,120
+2022,10,1,2,30,100
+2022,10,1,3,30,17
+2022,10,1,4,30,0
+2022,10,1,5,30,0
+2022,10,1,6,30,0
+2022,10,1,7,30,0
+2022,10,1,8,30,0
+2022,10,1,9,30,0
+2022,10,1,10,30,0
+2022,10,1,11,30,0
+2022,10,1,12,30,0
+2022,10,1,13,30,0
+2022,10,1,14,30,0
+2022,10,1,15,30,0
+2022,10,1,16,30,0
+2022,10,1,17,30,42
+2022,10,1,18,30,110
+2022,10,1,19,30,177
+2022,10,1,20,30,230
+2022,10,1,21,30,222
+2022,10,1,22,30,226
+2022,10,1,23,30,206
+2022,10,2,0,30,90
+2022,10,2,1,30,104
+2022,10,2,2,30,48
+2022,10,2,3,30,4
+2022,10,2,4,30,0
+2022,10,2,5,30,0
+2022,10,2,6,30,0
+2022,10,2,7,30,0
+2022,10,2,8,30,0
+2022,10,2,9,30,0
+2022,10,2,10,30,0
+2022,10,2,11,30,0
+2022,10,2,12,30,0
+2022,10,2,13,30,0
+2022,10,2,14,30,0
+2022,10,2,15,30,0
+2022,10,2,16,30,0
+2022,10,2,17,30,62
+2022,10,2,18,30,83
+2022,10,2,19,30,135
+2022,10,2,20,30,180
+2022,10,2,21,30,206
+2022,10,2,22,30,120
+2022,10,2,23,30,134
+2022,10,3,0,30,105
+2022,10,3,1,30,70
+2022,10,3,2,30,34
+2022,10,3,3,30,4
+2022,10,3,4,30,0
+2022,10,3,5,30,0
+2022,10,3,6,30,0
+2022,10,3,7,30,0
+2022,10,3,8,30,0
+2022,10,3,9,30,0
+2022,10,3,10,30,0
+2022,10,3,11,30,0
+2022,10,3,12,30,0
+2022,10,3,13,30,0
+2022,10,3,14,30,0
+2022,10,3,15,30,0
+2022,10,3,16,30,0
+2022,10,3,17,30,31
+2022,10,3,18,30,71
+2022,10,3,19,30,122
+2022,10,3,20,30,164
+2022,10,3,21,30,336
+2022,10,3,22,30,341
+2022,10,3,23,30,314
+2022,10,4,0,30,256
+2022,10,4,1,30,176
+2022,10,4,2,30,85
+2022,10,4,3,30,0
+2022,10,4,4,30,0
+2022,10,4,5,30,0
+2022,10,4,6,30,0
+2022,10,4,7,30,0
+2022,10,4,8,30,0
+2022,10,4,9,30,0
+2022,10,4,10,30,0
+2022,10,4,11,30,0
+2022,10,4,12,30,0
+2022,10,4,13,30,0
+2022,10,4,14,30,0
+2022,10,4,15,30,0
+2022,10,4,16,30,0
+2022,10,4,17,30,48
+2022,10,4,18,30,130
+2022,10,4,19,30,213
+2022,10,4,20,30,279
+2022,10,4,21,30,317
+2022,10,4,22,30,309
+2022,10,4,23,30,238
+2022,10,5,0,30,192
+2022,10,5,1,30,127
+2022,10,5,2,30,58
+2022,10,5,3,30,0
+2022,10,5,4,30,0
+2022,10,5,5,30,0
+2022,10,5,6,30,0
+2022,10,5,7,30,0
+2022,10,5,8,30,0
+2022,10,5,9,30,0
+2022,10,5,10,30,0
+2022,10,5,11,30,0
+2022,10,5,12,30,0
+2022,10,5,13,30,0
+2022,10,5,14,30,0
+2022,10,5,15,30,0
+2022,10,5,16,30,0
+2022,10,5,17,30,48
+2022,10,5,18,30,75
+2022,10,5,19,30,130
+2022,10,5,20,30,280
+2022,10,5,21,30,317
+2022,10,5,22,30,322
+2022,10,5,23,30,295
+2022,10,6,0,30,238
+2022,10,6,1,30,159
+2022,10,6,2,30,71
+2022,10,6,3,30,0
+2022,10,6,4,30,0
+2022,10,6,5,30,0
+2022,10,6,6,30,0
+2022,10,6,7,30,0
+2022,10,6,8,30,0
+2022,10,6,9,30,0
+2022,10,6,10,30,0
+2022,10,6,11,30,0
+2022,10,6,12,30,0
+2022,10,6,13,30,0
+2022,10,6,14,30,0
+2022,10,6,15,30,0
+2022,10,6,16,30,0
+2022,10,6,17,30,12
+2022,10,6,18,30,39
+2022,10,6,19,30,69
+2022,10,6,20,30,95
+2022,10,6,21,30,111
+2022,10,6,22,30,168
+2022,10,6,23,30,150
+2022,10,7,0,30,115
+2022,10,7,1,30,70
+2022,10,7,2,30,27
+2022,10,7,3,30,0
+2022,10,7,4,30,0
+2022,10,7,5,30,0
+2022,10,7,6,30,0
+2022,10,7,7,30,0
+2022,10,7,8,30,0
+2022,10,7,9,30,0
+2022,10,7,10,30,0
+2022,10,7,11,30,0
+2022,10,7,12,30,0
+2022,10,7,13,30,0
+2022,10,7,14,30,0
+2022,10,7,15,30,0
+2022,10,7,16,30,0
+2022,10,7,17,30,16
+2022,10,7,18,30,16
+2022,10,7,19,30,9
+2022,10,7,20,30,12
+2022,10,7,21,30,14
+2022,10,7,22,30,66
+2022,10,7,23,30,68
+2022,10,8,0,30,52
+2022,10,8,1,30,31
+2022,10,8,2,30,13
+2022,10,8,3,30,0
+2022,10,8,4,30,0
+2022,10,8,5,30,0
+2022,10,8,6,30,0
+2022,10,8,7,30,0
+2022,10,8,8,30,0
+2022,10,8,9,30,0
+2022,10,8,10,30,0
+2022,10,8,11,30,0
+2022,10,8,12,30,0
+2022,10,8,13,30,0
+2022,10,8,14,30,0
+2022,10,8,15,30,0
+2022,10,8,16,30,0
+2022,10,8,17,30,14
+2022,10,8,18,30,39
+2022,10,8,19,30,67
+2022,10,8,20,30,91
+2022,10,8,21,30,150
+2022,10,8,22,30,47
+2022,10,8,23,30,66
+2022,10,9,0,30,49
+2022,10,9,1,30,30
+2022,10,9,2,30,10
+2022,10,9,3,30,0
+2022,10,9,4,30,0
+2022,10,9,5,30,0
+2022,10,9,6,30,0
+2022,10,9,7,30,0
+2022,10,9,8,30,0
+2022,10,9,9,30,0
+2022,10,9,10,30,0
+2022,10,9,11,30,0
+2022,10,9,12,30,0
+2022,10,9,13,30,0
+2022,10,9,14,30,0
+2022,10,9,15,30,0
+2022,10,9,16,30,0
+2022,10,9,17,30,14
+2022,10,9,18,30,7
+2022,10,9,19,30,11
+2022,10,9,20,30,14
+2022,10,9,21,30,15
+2022,10,9,22,30,26
+2022,10,9,23,30,17
+2022,10,10,0,30,14
+2022,10,10,1,30,10
+2022,10,10,2,30,6
+2022,10,10,3,30,0
+2022,10,10,4,30,0
+2022,10,10,5,30,0
+2022,10,10,6,30,0
+2022,10,10,7,30,0
+2022,10,10,8,30,0
+2022,10,10,9,30,0
+2022,10,10,10,30,0
+2022,10,10,11,30,0
+2022,10,10,12,30,0
+2022,10,10,13,30,0
+2022,10,10,14,30,0
+2022,10,10,15,30,0
+2022,10,10,16,30,0
+2022,10,10,17,30,11
+2022,10,10,18,30,63
+2022,10,10,19,30,124
+2022,10,10,20,30,161
+2022,10,10,21,30,188
+2022,10,10,22,30,191
+2022,10,10,23,30,129
+2022,10,11,0,30,96
+2022,10,11,1,30,66
+2022,10,11,2,30,21
+2022,10,11,3,30,0
+2022,10,11,4,30,0
+2022,10,11,5,30,0
+2022,10,11,6,30,0
+2022,10,11,7,30,0
+2022,10,11,8,30,0
+2022,10,11,9,30,0
+2022,10,11,10,30,0
+2022,10,11,11,30,0
+2022,10,11,12,30,0
+2022,10,11,13,30,0
+2022,10,11,14,30,0
+2022,10,11,15,30,0
+2022,10,11,16,30,0
+2022,10,11,17,30,17
+2022,10,11,18,30,39
+2022,10,11,19,30,76
+2022,10,11,20,30,108
+2022,10,11,21,30,127
+2022,10,11,22,30,171
+2022,10,11,23,30,179
+2022,10,12,0,30,136
+2022,10,12,1,30,81
+2022,10,12,2,30,27
+2022,10,12,3,30,0
+2022,10,12,4,30,0
+2022,10,12,5,30,0
+2022,10,12,6,30,0
+2022,10,12,7,30,0
+2022,10,12,8,30,0
+2022,10,12,9,30,0
+2022,10,12,10,30,0
+2022,10,12,11,30,0
+2022,10,12,12,30,0
+2022,10,12,13,30,0
+2022,10,12,14,30,0
+2022,10,12,15,30,0
+2022,10,12,16,30,0
+2022,10,12,17,30,11
+2022,10,12,18,30,93
+2022,10,12,19,30,108
+2022,10,12,20,30,150
+2022,10,12,21,30,206
+2022,10,12,22,30,209
+2022,10,12,23,30,182
+2022,10,13,0,30,142
+2022,10,13,1,30,83
+2022,10,13,2,30,26
+2022,10,13,3,30,0
+2022,10,13,4,30,0
+2022,10,13,5,30,0
+2022,10,13,6,30,0
+2022,10,13,7,30,0
+2022,10,13,8,30,0
+2022,10,13,9,30,0
+2022,10,13,10,30,0
+2022,10,13,11,30,0
+2022,10,13,12,30,0
+2022,10,13,13,30,0
+2022,10,13,14,30,0
+2022,10,13,15,30,0
+2022,10,13,16,30,0
+2022,10,13,17,30,10
+2022,10,13,18,30,31
+2022,10,13,19,30,71
+2022,10,13,20,30,103
+2022,10,13,21,30,122
+2022,10,13,22,30,136
+2022,10,13,23,30,118
+2022,10,14,0,30,86
+2022,10,14,1,30,47
+2022,10,14,2,30,12
+2022,10,14,3,30,0
+2022,10,14,4,30,0
+2022,10,14,5,30,0
+2022,10,14,6,30,0
+2022,10,14,7,30,0
+2022,10,14,8,30,0
+2022,10,14,9,30,0
+2022,10,14,10,30,0
+2022,10,14,11,30,0
+2022,10,14,12,30,0
+2022,10,14,13,30,0
+2022,10,14,14,30,0
+2022,10,14,15,30,0
+2022,10,14,16,30,0
+2022,10,14,17,30,19
+2022,10,14,18,30,95
+2022,10,14,19,30,176
+2022,10,14,20,30,240
+2022,10,14,21,30,275
+2022,10,14,22,30,213
+2022,10,14,23,30,175
+2022,10,15,0,30,130
+2022,10,15,1,30,71
+2022,10,15,2,30,16
+2022,10,15,3,30,0
+2022,10,15,4,30,0
+2022,10,15,5,30,0
+2022,10,15,6,30,0
+2022,10,15,7,30,0
+2022,10,15,8,30,0
+2022,10,15,9,30,0
+2022,10,15,10,30,0
+2022,10,15,11,30,0
+2022,10,15,12,30,0
+2022,10,15,13,30,0
+2022,10,15,14,30,0
+2022,10,15,15,30,0
+2022,10,15,16,30,0
+2022,10,15,17,30,7
+2022,10,15,18,30,24
+2022,10,15,19,30,54
+2022,10,15,20,30,20
+2022,10,15,21,30,23
+2022,10,15,22,30,136
+2022,10,15,23,30,35
+2022,10,16,0,30,27
+2022,10,16,1,30,17
+2022,10,16,2,30,6
+2022,10,16,3,30,0
+2022,10,16,4,30,0
+2022,10,16,5,30,0
+2022,10,16,6,30,0
+2022,10,16,7,30,0
+2022,10,16,8,30,0
+2022,10,16,9,30,0
+2022,10,16,10,30,0
+2022,10,16,11,30,0
+2022,10,16,12,30,0
+2022,10,16,13,30,0
+2022,10,16,14,30,0
+2022,10,16,15,30,0
+2022,10,16,16,30,0
+2022,10,16,17,30,0
+2022,10,16,18,30,39
+2022,10,16,19,30,154
+2022,10,16,20,30,214
+2022,10,16,21,30,248
+2022,10,16,22,30,253
+2022,10,16,23,30,224
+2022,10,17,0,30,168
+2022,10,17,1,30,94
+2022,10,17,2,30,21
+2022,10,17,3,30,0
+2022,10,17,4,30,0
+2022,10,17,5,30,0
+2022,10,17,6,30,0
+2022,10,17,7,30,0
+2022,10,17,8,30,0
+2022,10,17,9,30,0
+2022,10,17,10,30,0
+2022,10,17,11,30,0
+2022,10,17,12,30,0
+2022,10,17,13,30,0
+2022,10,17,14,30,0
+2022,10,17,15,30,0
+2022,10,17,16,30,0
+2022,10,17,17,30,0
+2022,10,17,18,30,25
+2022,10,17,19,30,125
+2022,10,17,20,30,183
+2022,10,17,21,30,245
+2022,10,17,22,30,248
+2022,10,17,23,30,220
+2022,10,18,0,30,163
+2022,10,18,1,30,81
+2022,10,18,2,30,14
+2022,10,18,3,30,0
+2022,10,18,4,30,0
+2022,10,18,5,30,0
+2022,10,18,6,30,0
+2022,10,18,7,30,0
+2022,10,18,8,30,0
+2022,10,18,9,30,0
+2022,10,18,10,30,0
+2022,10,18,11,30,0
+2022,10,18,12,30,0
+2022,10,18,13,30,0
+2022,10,18,14,30,0
+2022,10,18,15,30,0
+2022,10,18,16,30,0
+2022,10,18,17,30,0
+2022,10,18,18,30,62
+2022,10,18,19,30,123
+2022,10,18,20,30,179
+2022,10,18,21,30,210
+2022,10,18,22,30,213
+2022,10,18,23,30,174
+2022,10,19,0,30,127
+2022,10,19,1,30,67
+2022,10,19,2,30,8
+2022,10,19,3,30,0
+2022,10,19,4,30,0
+2022,10,19,5,30,0
+2022,10,19,6,30,0
+2022,10,19,7,30,0
+2022,10,19,8,30,0
+2022,10,19,9,30,0
+2022,10,19,10,30,0
+2022,10,19,11,30,0
+2022,10,19,12,30,0
+2022,10,19,13,30,0
+2022,10,19,14,30,0
+2022,10,19,15,30,0
+2022,10,19,16,30,0
+2022,10,19,17,30,0
+2022,10,19,18,30,11
+2022,10,19,19,30,53
+2022,10,19,20,30,80
+2022,10,19,21,30,97
+2022,10,19,22,30,111
+2022,10,19,23,30,95
+2022,10,20,0,30,63
+2022,10,20,1,30,30
+2022,10,20,2,30,0
+2022,10,20,3,30,0
+2022,10,20,4,30,0
+2022,10,20,5,30,0
+2022,10,20,6,30,0
+2022,10,20,7,30,0
+2022,10,20,8,30,0
+2022,10,20,9,30,0
+2022,10,20,10,30,0
+2022,10,20,11,30,0
+2022,10,20,12,30,0
+2022,10,20,13,30,0
+2022,10,20,14,30,0
+2022,10,20,15,30,0
+2022,10,20,16,30,0
+2022,10,20,17,30,0
+2022,10,20,18,30,51
+2022,10,20,19,30,80
+2022,10,20,20,30,121
+2022,10,20,21,30,194
+2022,10,20,22,30,133
+2022,10,20,23,30,114
+2022,10,21,0,30,79
+2022,10,21,1,30,36
+2022,10,21,2,30,0
+2022,10,21,3,30,0
+2022,10,21,4,30,0
+2022,10,21,5,30,0
+2022,10,21,6,30,0
+2022,10,21,7,30,0
+2022,10,21,8,30,0
+2022,10,21,9,30,0
+2022,10,21,10,30,0
+2022,10,21,11,30,0
+2022,10,21,12,30,0
+2022,10,21,13,30,0
+2022,10,21,14,30,0
+2022,10,21,15,30,0
+2022,10,21,16,30,0
+2022,10,21,17,30,0
+2022,10,21,18,30,3
+2022,10,21,19,30,79
+2022,10,21,20,30,56
+2022,10,21,21,30,67
+2022,10,21,22,30,134
+2022,10,21,23,30,116
+2022,10,22,0,30,46
+2022,10,22,1,30,23
+2022,10,22,2,30,0
+2022,10,22,3,30,0
+2022,10,22,4,30,0
+2022,10,22,5,30,0
+2022,10,22,6,30,0
+2022,10,22,7,30,0
+2022,10,22,8,30,0
+2022,10,22,9,30,0
+2022,10,22,10,30,0
+2022,10,22,11,30,0
+2022,10,22,12,30,0
+2022,10,22,13,30,0
+2022,10,22,14,30,0
+2022,10,22,15,30,0
+2022,10,22,16,30,0
+2022,10,22,17,30,0
+2022,10,22,18,30,8
+2022,10,22,19,30,18
+2022,10,22,20,30,27
+2022,10,22,21,30,33
+2022,10,22,22,30,33
+2022,10,22,23,30,28
+2022,10,23,0,30,10
+2022,10,23,1,30,5
+2022,10,23,2,30,0
+2022,10,23,3,30,0
+2022,10,23,4,30,0
+2022,10,23,5,30,0
+2022,10,23,6,30,0
+2022,10,23,7,30,0
+2022,10,23,8,30,0
+2022,10,23,9,30,0
+2022,10,23,10,30,0
+2022,10,23,11,30,0
+2022,10,23,12,30,0
+2022,10,23,13,30,0
+2022,10,23,14,30,0
+2022,10,23,15,30,0
+2022,10,23,16,30,0
+2022,10,23,17,30,0
+2022,10,23,18,30,8
+2022,10,23,19,30,18
+2022,10,23,20,30,28
+2022,10,23,21,30,47
+2022,10,23,22,30,48
+2022,10,23,23,30,34
+2022,10,24,0,30,23
+2022,10,24,1,30,10
+2022,10,24,2,30,0
+2022,10,24,3,30,0
+2022,10,24,4,30,0
+2022,10,24,5,30,0
+2022,10,24,6,30,0
+2022,10,24,7,30,0
+2022,10,24,8,30,0
+2022,10,24,9,30,0
+2022,10,24,10,30,0
+2022,10,24,11,30,0
+2022,10,24,12,30,0
+2022,10,24,13,30,0
+2022,10,24,14,30,0
+2022,10,24,15,30,0
+2022,10,24,16,30,0
+2022,10,24,17,30,0
+2022,10,24,18,30,45
+2022,10,24,19,30,116
+2022,10,24,20,30,174
+2022,10,24,21,30,207
+2022,10,24,22,30,209
+2022,10,24,23,30,180
+2022,10,25,0,30,128
+2022,10,25,1,30,56
+2022,10,25,2,30,0
+2022,10,25,3,30,0
+2022,10,25,4,30,0
+2022,10,25,5,30,0
+2022,10,25,6,30,0
+2022,10,25,7,30,0
+2022,10,25,8,30,0
+2022,10,25,9,30,0
+2022,10,25,10,30,0
+2022,10,25,11,30,0
+2022,10,25,12,30,0
+2022,10,25,13,30,0
+2022,10,25,14,30,0
+2022,10,25,15,30,0
+2022,10,25,16,30,0
+2022,10,25,17,30,0
+2022,10,25,18,30,43
+2022,10,25,19,30,114
+2022,10,25,20,30,173
+2022,10,25,21,30,206
+2022,10,25,22,30,209
+2022,10,25,23,30,180
+2022,10,26,0,30,124
+2022,10,26,1,30,53
+2022,10,26,2,30,0
+2022,10,26,3,30,0
+2022,10,26,4,30,0
+2022,10,26,5,30,0
+2022,10,26,6,30,0
+2022,10,26,7,30,0
+2022,10,26,8,30,0
+2022,10,26,9,30,0
+2022,10,26,10,30,0
+2022,10,26,11,30,0
+2022,10,26,12,30,0
+2022,10,26,13,30,0
+2022,10,26,14,30,0
+2022,10,26,15,30,0
+2022,10,26,16,30,0
+2022,10,26,17,30,0
+2022,10,26,18,30,21
+2022,10,26,19,30,69
+2022,10,26,20,30,165
+2022,10,26,21,30,201
+2022,10,26,22,30,203
+2022,10,26,23,30,174
+2022,10,27,0,30,118
+2022,10,27,1,30,49
+2022,10,27,2,30,0
+2022,10,27,3,30,0
+2022,10,27,4,30,0
+2022,10,27,5,30,0
+2022,10,27,6,30,0
+2022,10,27,7,30,0
+2022,10,27,8,30,0
+2022,10,27,9,30,0
+2022,10,27,10,30,0
+2022,10,27,11,30,0
+2022,10,27,12,30,0
+2022,10,27,13,30,0
+2022,10,27,14,30,0
+2022,10,27,15,30,0
+2022,10,27,16,30,0
+2022,10,27,17,30,0
+2022,10,27,18,30,16
+2022,10,27,19,30,54
+2022,10,27,20,30,91
+2022,10,27,21,30,113
+2022,10,27,22,30,101
+2022,10,27,23,30,86
+2022,10,28,0,30,54
+2022,10,28,1,30,19
+2022,10,28,2,30,0
+2022,10,28,3,30,0
+2022,10,28,4,30,0
+2022,10,28,5,30,0
+2022,10,28,6,30,0
+2022,10,28,7,30,0
+2022,10,28,8,30,0
+2022,10,28,9,30,0
+2022,10,28,10,30,0
+2022,10,28,11,30,0
+2022,10,28,12,30,0
+2022,10,28,13,30,0
+2022,10,28,14,30,0
+2022,10,28,15,30,0
+2022,10,28,16,30,0
+2022,10,28,17,30,0
+2022,10,28,18,30,32
+2022,10,28,19,30,100
+2022,10,28,20,30,158
+2022,10,28,21,30,191
+2022,10,28,22,30,194
+2022,10,28,23,30,162
+2022,10,29,0,30,107
+2022,10,29,1,30,39
+2022,10,29,2,30,0
+2022,10,29,3,30,0
+2022,10,29,4,30,0
+2022,10,29,5,30,0
+2022,10,29,6,30,0
+2022,10,29,7,30,0
+2022,10,29,8,30,0
+2022,10,29,9,30,0
+2022,10,29,10,30,0
+2022,10,29,11,30,0
+2022,10,29,12,30,0
+2022,10,29,13,30,0
+2022,10,29,14,30,0
+2022,10,29,15,30,0
+2022,10,29,16,30,0
+2022,10,29,17,30,0
+2022,10,29,18,30,22
+2022,10,29,19,30,84
+2022,10,29,20,30,140
+2022,10,29,21,30,149
+2022,10,29,22,30,143
+2022,10,29,23,30,119
+2022,10,30,0,30,75
+2022,10,30,1,30,25
+2022,10,30,2,30,0
+2022,10,30,3,30,0
+2022,10,30,4,30,0
+2022,10,30,5,30,0
+2022,10,30,6,30,0
+2022,10,30,7,30,0
+2022,10,30,8,30,0
+2022,10,30,9,30,0
+2022,10,30,10,30,0
+2022,10,30,11,30,0
+2022,10,30,12,30,0
+2022,10,30,13,30,0
+2022,10,30,14,30,0
+2022,10,30,15,30,0
+2022,10,30,16,30,0
+2022,10,30,17,30,0
+2022,10,30,18,30,15
+2022,10,30,19,30,69
+2022,10,30,20,30,120
+2022,10,30,21,30,151
+2022,10,30,22,30,138
+2022,10,30,23,30,152
+2022,10,31,0,30,98
+2022,10,31,1,30,32
+2022,10,31,2,30,0
+2022,10,31,3,30,0
+2022,10,31,4,30,0
+2022,10,31,5,30,0
+2022,10,31,6,30,0
+2022,10,31,7,30,0
+2022,10,31,8,30,0
+2022,10,31,9,30,0
+2022,10,31,10,30,0
+2022,10,31,11,30,0
+2022,10,31,12,30,0
+2022,10,31,13,30,0
+2022,10,31,14,30,0
+2022,10,31,15,30,0
+2022,10,31,16,30,0
+2022,10,31,17,30,0
+2022,10,31,18,30,7
+2022,10,31,19,30,29
+2022,10,31,20,30,52
+2022,10,31,21,30,73
+2022,10,31,22,30,84
+2022,10,31,23,30,71
+2013,11,1,0,30,36
+2013,11,1,1,30,11
+2013,11,1,2,30,0
+2013,11,1,3,30,0
+2013,11,1,4,30,0
+2013,11,1,5,30,0
+2013,11,1,6,30,0
+2013,11,1,7,30,0
+2013,11,1,8,30,0
+2013,11,1,9,30,0
+2013,11,1,10,30,0
+2013,11,1,11,30,0
+2013,11,1,12,30,0
+2013,11,1,13,30,0
+2013,11,1,14,30,0
+2013,11,1,15,30,0
+2013,11,1,16,30,0
+2013,11,1,17,30,0
+2013,11,1,18,30,2
+2013,11,1,19,30,9
+2013,11,1,20,30,15
+2013,11,1,21,30,19
+2013,11,1,22,30,19
+2013,11,1,23,30,130
+2013,11,2,0,30,81
+2013,11,2,1,30,23
+2013,11,2,2,30,0
+2013,11,2,3,30,0
+2013,11,2,4,30,0
+2013,11,2,5,30,0
+2013,11,2,6,30,0
+2013,11,2,7,30,0
+2013,11,2,8,30,0
+2013,11,2,9,30,0
+2013,11,2,10,30,0
+2013,11,2,11,30,0
+2013,11,2,12,30,0
+2013,11,2,13,30,0
+2013,11,2,14,30,0
+2013,11,2,15,30,0
+2013,11,2,16,30,0
+2013,11,2,17,30,0
+2013,11,2,18,30,0
+2013,11,2,19,30,65
+2013,11,2,20,30,117
+2013,11,2,21,30,150
+2013,11,2,22,30,152
+2013,11,2,23,30,126
+2013,11,3,0,30,76
+2013,11,3,1,30,20
+2013,11,3,2,30,0
+2013,11,3,3,30,0
+2013,11,3,4,30,0
+2013,11,3,5,30,0
+2013,11,3,6,30,0
+2013,11,3,7,30,0
+2013,11,3,8,30,0
+2013,11,3,9,30,0
+2013,11,3,10,30,0
+2013,11,3,11,30,0
+2013,11,3,12,30,0
+2013,11,3,13,30,0
+2013,11,3,14,30,0
+2013,11,3,15,30,0
+2013,11,3,16,30,0
+2013,11,3,17,30,0
+2013,11,3,18,30,0
+2013,11,3,19,30,62
+2013,11,3,20,30,114
+2013,11,3,21,30,145
+2013,11,3,22,30,75
+2013,11,3,23,30,61
+2013,11,4,0,30,37
+2013,11,4,1,30,7
+2013,11,4,2,30,0
+2013,11,4,3,30,0
+2013,11,4,4,30,0
+2013,11,4,5,30,0
+2013,11,4,6,30,0
+2013,11,4,7,30,0
+2013,11,4,8,30,0
+2013,11,4,9,30,0
+2013,11,4,10,30,0
+2013,11,4,11,30,0
+2013,11,4,12,30,0
+2013,11,4,13,30,0
+2013,11,4,14,30,0
+2013,11,4,15,30,0
+2013,11,4,16,30,0
+2013,11,4,17,30,0
+2013,11,4,18,30,0
+2013,11,4,19,30,31
+2013,11,4,20,30,39
+2013,11,4,21,30,50
+2013,11,4,22,30,58
+2013,11,4,23,30,46
+2013,11,5,0,30,25
+2013,11,5,1,30,3
+2013,11,5,2,30,0
+2013,11,5,3,30,0
+2013,11,5,4,30,0
+2013,11,5,5,30,0
+2013,11,5,6,30,0
+2013,11,5,7,30,0
+2013,11,5,8,30,0
+2013,11,5,9,30,0
+2013,11,5,10,30,0
+2013,11,5,11,30,0
+2013,11,5,12,30,0
+2013,11,5,13,30,0
+2013,11,5,14,30,0
+2013,11,5,15,30,0
+2013,11,5,16,30,0
+2013,11,5,17,30,0
+2013,11,5,18,30,0
+2013,11,5,19,30,25
+2013,11,5,20,30,44
+2013,11,5,21,30,55
+2013,11,5,22,30,62
+2013,11,5,23,30,49
+2013,11,6,0,30,29
+2013,11,6,1,30,0
+2013,11,6,2,30,0
+2013,11,6,3,30,0
+2013,11,6,4,30,0
+2013,11,6,5,30,0
+2013,11,6,6,30,0
+2013,11,6,7,30,0
+2013,11,6,8,30,0
+2013,11,6,9,30,0
+2013,11,6,10,30,0
+2013,11,6,11,30,0
+2013,11,6,12,30,0
+2013,11,6,13,30,0
+2013,11,6,14,30,0
+2013,11,6,15,30,0
+2013,11,6,16,30,0
+2013,11,6,17,30,0
+2013,11,6,18,30,0
+2013,11,6,19,30,21
+2013,11,6,20,30,42
+2013,11,6,21,30,141
+2013,11,6,22,30,143
+2013,11,6,23,30,116
+2013,11,7,0,30,65
+2013,11,7,1,30,0
+2013,11,7,2,30,0
+2013,11,7,3,30,0
+2013,11,7,4,30,0
+2013,11,7,5,30,0
+2013,11,7,6,30,0
+2013,11,7,7,30,0
+2013,11,7,8,30,0
+2013,11,7,9,30,0
+2013,11,7,10,30,0
+2013,11,7,11,30,0
+2013,11,7,12,30,0
+2013,11,7,13,30,0
+2013,11,7,14,30,0
+2013,11,7,15,30,0
+2013,11,7,16,30,0
+2013,11,7,17,30,0
+2013,11,7,18,30,0
+2013,11,7,19,30,53
+2013,11,7,20,30,105
+2013,11,7,21,30,136
+2013,11,7,22,30,138
+2013,11,7,23,30,37
+2013,11,8,0,30,22
+2013,11,8,1,30,0
+2013,11,8,2,30,0
+2013,11,8,3,30,0
+2013,11,8,4,30,0
+2013,11,8,5,30,0
+2013,11,8,6,30,0
+2013,11,8,7,30,0
+2013,11,8,8,30,0
+2013,11,8,9,30,0
+2013,11,8,10,30,0
+2013,11,8,11,30,0
+2013,11,8,12,30,0
+2013,11,8,13,30,0
+2013,11,8,14,30,0
+2013,11,8,15,30,0
+2013,11,8,16,30,0
+2013,11,8,17,30,0
+2013,11,8,18,30,0
+2013,11,8,19,30,15
+2013,11,8,20,30,31
+2013,11,8,21,30,40
+2013,11,8,22,30,40
+2013,11,8,23,30,37
+2013,11,9,0,30,21
+2013,11,9,1,30,0
+2013,11,9,2,30,0
+2013,11,9,3,30,0
+2013,11,9,4,30,0
+2013,11,9,5,30,0
+2013,11,9,6,30,0
+2013,11,9,7,30,0
+2013,11,9,8,30,0
+2013,11,9,9,30,0
+2013,11,9,10,30,0
+2013,11,9,11,30,0
+2013,11,9,12,30,0
+2013,11,9,13,30,0
+2013,11,9,14,30,0
+2013,11,9,15,30,0
+2013,11,9,16,30,0
+2013,11,9,17,30,0
+2013,11,9,18,30,0
+2013,11,9,19,30,20
+2013,11,9,20,30,46
+2013,11,9,21,30,81
+2013,11,9,22,30,82
+2013,11,9,23,30,54
+2013,11,10,0,30,27
+2013,11,10,1,30,0
+2013,11,10,2,30,0
+2013,11,10,3,30,0
+2013,11,10,4,30,0
+2013,11,10,5,30,0
+2013,11,10,6,30,0
+2013,11,10,7,30,0
+2013,11,10,8,30,0
+2013,11,10,9,30,0
+2013,11,10,10,30,0
+2013,11,10,11,30,0
+2013,11,10,12,30,0
+2013,11,10,13,30,0
+2013,11,10,14,30,0
+2013,11,10,15,30,0
+2013,11,10,16,30,0
+2013,11,10,17,30,0
+2013,11,10,18,30,0
+2013,11,10,19,30,15
+2013,11,10,20,30,31
+2013,11,10,21,30,40
+2013,11,10,22,30,41
+2013,11,10,23,30,51
+2013,11,11,0,30,26
+2013,11,11,1,30,0
+2013,11,11,2,30,0
+2013,11,11,3,30,0
+2013,11,11,4,30,0
+2013,11,11,5,30,0
+2013,11,11,6,30,0
+2013,11,11,7,30,0
+2013,11,11,8,30,0
+2013,11,11,9,30,0
+2013,11,11,10,30,0
+2013,11,11,11,30,0
+2013,11,11,12,30,0
+2013,11,11,13,30,0
+2013,11,11,14,30,0
+2013,11,11,15,30,0
+2013,11,11,16,30,0
+2013,11,11,17,30,0
+2013,11,11,18,30,0
+2013,11,11,19,30,35
+2013,11,11,20,30,81
+2013,11,11,21,30,110
+2013,11,11,22,30,112
+2013,11,11,23,30,87
+2013,11,12,0,30,42
+2013,11,12,1,30,0
+2013,11,12,2,30,0
+2013,11,12,3,30,0
+2013,11,12,4,30,0
+2013,11,12,5,30,0
+2013,11,12,6,30,0
+2013,11,12,7,30,0
+2013,11,12,8,30,0
+2013,11,12,9,30,0
+2013,11,12,10,30,0
+2013,11,12,11,30,0
+2013,11,12,12,30,0
+2013,11,12,13,30,0
+2013,11,12,14,30,0
+2013,11,12,15,30,0
+2013,11,12,16,30,0
+2013,11,12,17,30,0
+2013,11,12,18,30,0
+2013,11,12,19,30,15
+2013,11,12,20,30,33
+2013,11,12,21,30,44
+2013,11,12,22,30,45
+2013,11,12,23,30,53
+2013,11,13,0,30,22
+2013,11,13,1,30,0
+2013,11,13,2,30,0
+2013,11,13,3,30,0
+2013,11,13,4,30,0
+2013,11,13,5,30,0
+2013,11,13,6,30,0
+2013,11,13,7,30,0
+2013,11,13,8,30,0
+2013,11,13,9,30,0
+2013,11,13,10,30,0
+2013,11,13,11,30,0
+2013,11,13,12,30,0
+2013,11,13,13,30,0
+2013,11,13,14,30,0
+2013,11,13,15,30,0
+2013,11,13,16,30,0
+2013,11,13,17,30,0
+2013,11,13,18,30,0
+2013,11,13,19,30,19
+2013,11,13,20,30,53
+2013,11,13,21,30,63
+2013,11,13,22,30,62
+2013,11,13,23,30,47
+2013,11,14,0,30,22
+2013,11,14,1,30,0
+2013,11,14,2,30,0
+2013,11,14,3,30,0
+2013,11,14,4,30,0
+2013,11,14,5,30,0
+2013,11,14,6,30,0
+2013,11,14,7,30,0
+2013,11,14,8,30,0
+2013,11,14,9,30,0
+2013,11,14,10,30,0
+2013,11,14,11,30,0
+2013,11,14,12,30,0
+2013,11,14,13,30,0
+2013,11,14,14,30,0
+2013,11,14,15,30,0
+2013,11,14,16,30,0
+2013,11,14,17,30,0
+2013,11,14,18,30,0
+2013,11,14,19,30,14
+2013,11,14,20,30,41
+2013,11,14,21,30,58
+2013,11,14,22,30,56
+2013,11,14,23,30,42
+2013,11,15,0,30,19
+2013,11,15,1,30,0
+2013,11,15,2,30,0
+2013,11,15,3,30,0
+2013,11,15,4,30,0
+2013,11,15,5,30,0
+2013,11,15,6,30,0
+2013,11,15,7,30,0
+2013,11,15,8,30,0
+2013,11,15,9,30,0
+2013,11,15,10,30,0
+2013,11,15,11,30,0
+2013,11,15,12,30,0
+2013,11,15,13,30,0
+2013,11,15,14,30,0
+2013,11,15,15,30,0
+2013,11,15,16,30,0
+2013,11,15,17,30,0
+2013,11,15,18,30,0
+2013,11,15,19,30,9
+2013,11,15,20,30,27
+2013,11,15,21,30,35
+2013,11,15,22,30,37
+2013,11,15,23,30,28
+2013,11,16,0,30,13
+2013,11,16,1,30,0
+2013,11,16,2,30,0
+2013,11,16,3,30,0
+2013,11,16,4,30,0
+2013,11,16,5,30,0
+2013,11,16,6,30,0
+2013,11,16,7,30,0
+2013,11,16,8,30,0
+2013,11,16,9,30,0
+2013,11,16,10,30,0
+2013,11,16,11,30,0
+2013,11,16,12,30,0
+2013,11,16,13,30,0
+2013,11,16,14,30,0
+2013,11,16,15,30,0
+2013,11,16,16,30,0
+2013,11,16,17,30,0
+2013,11,16,18,30,0
+2013,11,16,19,30,7
+2013,11,16,20,30,25
+2013,11,16,21,30,38
+2013,11,16,22,30,39
+2013,11,16,23,30,27
+2013,11,17,0,30,12
+2013,11,17,1,30,0
+2013,11,17,2,30,0
+2013,11,17,3,30,0
+2013,11,17,4,30,0
+2013,11,17,5,30,0
+2013,11,17,6,30,0
+2013,11,17,7,30,0
+2013,11,17,8,30,0
+2013,11,17,9,30,0
+2013,11,17,10,30,0
+2013,11,17,11,30,0
+2013,11,17,12,30,0
+2013,11,17,13,30,0
+2013,11,17,14,30,0
+2013,11,17,15,30,0
+2013,11,17,16,30,0
+2013,11,17,17,30,0
+2013,11,17,18,30,0
+2013,11,17,19,30,7
+2013,11,17,20,30,29
+2013,11,17,21,30,41
+2013,11,17,22,30,42
+2013,11,17,23,30,32
+2013,11,18,0,30,12
+2013,11,18,1,30,0
+2013,11,18,2,30,0
+2013,11,18,3,30,0
+2013,11,18,4,30,0
+2013,11,18,5,30,0
+2013,11,18,6,30,0
+2013,11,18,7,30,0
+2013,11,18,8,30,0
+2013,11,18,9,30,0
+2013,11,18,10,30,0
+2013,11,18,11,30,0
+2013,11,18,12,30,0
+2013,11,18,13,30,0
+2013,11,18,14,30,0
+2013,11,18,15,30,0
+2013,11,18,16,30,0
+2013,11,18,17,30,0
+2013,11,18,18,30,0
+2013,11,18,19,30,4
+2013,11,18,20,30,23
+2013,11,18,21,30,33
+2013,11,18,22,30,41
+2013,11,18,23,30,31
+2013,11,19,0,30,11
+2013,11,19,1,30,0
+2013,11,19,2,30,0
+2013,11,19,3,30,0
+2013,11,19,4,30,0
+2013,11,19,5,30,0
+2013,11,19,6,30,0
+2013,11,19,7,30,0
+2013,11,19,8,30,0
+2013,11,19,9,30,0
+2013,11,19,10,30,0
+2013,11,19,11,30,0
+2013,11,19,12,30,0
+2013,11,19,13,30,0
+2013,11,19,14,30,0
+2013,11,19,15,30,0
+2013,11,19,16,30,0
+2013,11,19,17,30,0
+2013,11,19,18,30,0
+2013,11,19,19,30,0
+2013,11,19,20,30,25
+2013,11,19,21,30,36
+2013,11,19,22,30,79
+2013,11,19,23,30,57
+2013,11,20,0,30,21
+2013,11,20,1,30,0
+2013,11,20,2,30,0
+2013,11,20,3,30,0
+2013,11,20,4,30,0
+2013,11,20,5,30,0
+2013,11,20,6,30,0
+2013,11,20,7,30,0
+2013,11,20,8,30,0
+2013,11,20,9,30,0
+2013,11,20,10,30,0
+2013,11,20,11,30,0
+2013,11,20,12,30,0
+2013,11,20,13,30,0
+2013,11,20,14,30,0
+2013,11,20,15,30,0
+2013,11,20,16,30,0
+2013,11,20,17,30,0
+2013,11,20,18,30,0
+2013,11,20,19,30,0
+2013,11,20,20,30,51
+2013,11,20,21,30,79
+2013,11,20,22,30,82
+2013,11,20,23,30,59
+2013,11,21,0,30,20
+2013,11,21,1,30,0
+2013,11,21,2,30,0
+2013,11,21,3,30,0
+2013,11,21,4,30,0
+2013,11,21,5,30,0
+2013,11,21,6,30,0
+2013,11,21,7,30,0
+2013,11,21,8,30,0
+2013,11,21,9,30,0
+2013,11,21,10,30,0
+2013,11,21,11,30,0
+2013,11,21,12,30,0
+2013,11,21,13,30,0
+2013,11,21,14,30,0
+2013,11,21,15,30,0
+2013,11,21,16,30,0
+2013,11,21,17,30,0
+2013,11,21,18,30,0
+2013,11,21,19,30,0
+2013,11,21,20,30,48
+2013,11,21,21,30,75
+2013,11,21,22,30,78
+2013,11,21,23,30,56
+2013,11,22,0,30,18
+2013,11,22,1,30,0
+2013,11,22,2,30,0
+2013,11,22,3,30,0
+2013,11,22,4,30,0
+2013,11,22,5,30,0
+2013,11,22,6,30,0
+2013,11,22,7,30,0
+2013,11,22,8,30,0
+2013,11,22,9,30,0
+2013,11,22,10,30,0
+2013,11,22,11,30,0
+2013,11,22,12,30,0
+2013,11,22,13,30,0
+2013,11,22,14,30,0
+2013,11,22,15,30,0
+2013,11,22,16,30,0
+2013,11,22,17,30,0
+2013,11,22,18,30,0
+2013,11,22,19,30,0
+2013,11,22,20,30,22
+2013,11,22,21,30,32
+2013,11,22,22,30,36
+2013,11,22,23,30,25
+2013,11,23,0,30,0
+2013,11,23,1,30,0
+2013,11,23,2,30,0
+2013,11,23,3,30,0
+2013,11,23,4,30,0
+2013,11,23,5,30,0
+2013,11,23,6,30,0
+2013,11,23,7,30,0
+2013,11,23,8,30,0
+2013,11,23,9,30,0
+2013,11,23,10,30,0
+2013,11,23,11,30,0
+2013,11,23,12,30,0
+2013,11,23,13,30,0
+2013,11,23,14,30,0
+2013,11,23,15,30,0
+2013,11,23,16,30,0
+2013,11,23,17,30,0
+2013,11,23,18,30,0
+2013,11,23,19,30,0
+2013,11,23,20,30,19
+2013,11,23,21,30,30
+2013,11,23,22,30,68
+2013,11,23,23,30,47
+2013,11,24,0,30,0
+2013,11,24,1,30,0
+2013,11,24,2,30,0
+2013,11,24,3,30,0
+2013,11,24,4,30,0
+2013,11,24,5,30,0
+2013,11,24,6,30,0
+2013,11,24,7,30,0
+2013,11,24,8,30,0
+2013,11,24,9,30,0
+2013,11,24,10,30,0
+2013,11,24,11,30,0
+2013,11,24,12,30,0
+2013,11,24,13,30,0
+2013,11,24,14,30,0
+2013,11,24,15,30,0
+2013,11,24,16,30,0
+2013,11,24,17,30,0
+2013,11,24,18,30,0
+2013,11,24,19,30,0
+2013,11,24,20,30,19
+2013,11,24,21,30,33
+2013,11,24,22,30,35
+2013,11,24,23,30,40
+2013,11,25,0,30,0
+2013,11,25,1,30,0
+2013,11,25,2,30,0
+2013,11,25,3,30,0
+2013,11,25,4,30,0
+2013,11,25,5,30,0
+2013,11,25,6,30,0
+2013,11,25,7,30,0
+2013,11,25,8,30,0
+2013,11,25,9,30,0
+2013,11,25,10,30,0
+2013,11,25,11,30,0
+2013,11,25,12,30,0
+2013,11,25,13,30,0
+2013,11,25,14,30,0
+2013,11,25,15,30,0
+2013,11,25,16,30,0
+2013,11,25,17,30,0
+2013,11,25,18,30,0
+2013,11,25,19,30,0
+2013,11,25,20,30,11
+2013,11,25,21,30,20
+2013,11,25,22,30,21
+2013,11,25,23,30,14
+2013,11,26,0,30,0
+2013,11,26,1,30,0
+2013,11,26,2,30,0
+2013,11,26,3,30,0
+2013,11,26,4,30,0
+2013,11,26,5,30,0
+2013,11,26,6,30,0
+2013,11,26,7,30,0
+2013,11,26,8,30,0
+2013,11,26,9,30,0
+2013,11,26,10,30,0
+2013,11,26,11,30,0
+2013,11,26,12,30,0
+2013,11,26,13,30,0
+2013,11,26,14,30,0
+2013,11,26,15,30,0
+2013,11,26,16,30,0
+2013,11,26,17,30,0
+2013,11,26,18,30,0
+2013,11,26,19,30,0
+2013,11,26,20,30,14
+2013,11,26,21,30,24
+2013,11,26,22,30,25
+2013,11,26,23,30,21
+2013,11,27,0,30,0
+2013,11,27,1,30,0
+2013,11,27,2,30,0
+2013,11,27,3,30,0
+2013,11,27,4,30,0
+2013,11,27,5,30,0
+2013,11,27,6,30,0
+2013,11,27,7,30,0
+2013,11,27,8,30,0
+2013,11,27,9,30,0
+2013,11,27,10,30,0
+2013,11,27,11,30,0
+2013,11,27,12,30,0
+2013,11,27,13,30,0
+2013,11,27,14,30,0
+2013,11,27,15,30,0
+2013,11,27,16,30,0
+2013,11,27,17,30,0
+2013,11,27,18,30,0
+2013,11,27,19,30,0
+2013,11,27,20,30,13
+2013,11,27,21,30,23
+2013,11,27,22,30,27
+2013,11,27,23,30,18
+2013,11,28,0,30,0
+2013,11,28,1,30,0
+2013,11,28,2,30,0
+2013,11,28,3,30,0
+2013,11,28,4,30,0
+2013,11,28,5,30,0
+2013,11,28,6,30,0
+2013,11,28,7,30,0
+2013,11,28,8,30,0
+2013,11,28,9,30,0
+2013,11,28,10,30,0
+2013,11,28,11,30,0
+2013,11,28,12,30,0
+2013,11,28,13,30,0
+2013,11,28,14,30,0
+2013,11,28,15,30,0
+2013,11,28,16,30,0
+2013,11,28,17,30,0
+2013,11,28,18,30,0
+2013,11,28,19,30,0
+2013,11,28,20,30,13
+2013,11,28,21,30,25
+2013,11,28,22,30,26
+2013,11,28,23,30,35
+2013,11,29,0,30,0
+2013,11,29,1,30,0
+2013,11,29,2,30,0
+2013,11,29,3,30,0
+2013,11,29,4,30,0
+2013,11,29,5,30,0
+2013,11,29,6,30,0
+2013,11,29,7,30,0
+2013,11,29,8,30,0
+2013,11,29,9,30,0
+2013,11,29,10,30,0
+2013,11,29,11,30,0
+2013,11,29,12,30,0
+2013,11,29,13,30,0
+2013,11,29,14,30,0
+2013,11,29,15,30,0
+2013,11,29,16,30,0
+2013,11,29,17,30,0
+2013,11,29,18,30,0
+2013,11,29,19,30,0
+2013,11,29,20,30,10
+2013,11,29,21,30,19
+2013,11,29,22,30,24
+2013,11,29,23,30,16
+2013,11,30,0,30,0
+2013,11,30,1,30,0
+2013,11,30,2,30,0
+2013,11,30,3,30,0
+2013,11,30,4,30,0
+2013,11,30,5,30,0
+2013,11,30,6,30,0
+2013,11,30,7,30,0
+2013,11,30,8,30,0
+2013,11,30,9,30,0
+2013,11,30,10,30,0
+2013,11,30,11,30,0
+2013,11,30,12,30,0
+2013,11,30,13,30,0
+2013,11,30,14,30,0
+2013,11,30,15,30,0
+2013,11,30,16,30,0
+2013,11,30,17,30,0
+2013,11,30,18,30,0
+2013,11,30,19,30,0
+2013,11,30,20,30,10
+2013,11,30,21,30,21
+2013,11,30,22,30,50
+2013,11,30,23,30,32
+2018,12,1,0,30,0
+2018,12,1,1,30,0
+2018,12,1,2,30,0
+2018,12,1,3,30,0
+2018,12,1,4,30,0
+2018,12,1,5,30,0
+2018,12,1,6,30,0
+2018,12,1,7,30,0
+2018,12,1,8,30,0
+2018,12,1,9,30,0
+2018,12,1,10,30,0
+2018,12,1,11,30,0
+2018,12,1,12,30,0
+2018,12,1,13,30,0
+2018,12,1,14,30,0
+2018,12,1,15,30,0
+2018,12,1,16,30,0
+2018,12,1,17,30,0
+2018,12,1,18,30,0
+2018,12,1,19,30,0
+2018,12,1,20,30,8
+2018,12,1,21,30,18
+2018,12,1,22,30,23
+2018,12,1,23,30,13
+2018,12,2,0,30,0
+2018,12,2,1,30,0
+2018,12,2,2,30,0
+2018,12,2,3,30,0
+2018,12,2,4,30,0
+2018,12,2,5,30,0
+2018,12,2,6,30,0
+2018,12,2,7,30,0
+2018,12,2,8,30,0
+2018,12,2,9,30,0
+2018,12,2,10,30,0
+2018,12,2,11,30,0
+2018,12,2,12,30,0
+2018,12,2,13,30,0
+2018,12,2,14,30,0
+2018,12,2,15,30,0
+2018,12,2,16,30,0
+2018,12,2,17,30,0
+2018,12,2,18,30,0
+2018,12,2,19,30,0
+2018,12,2,20,30,11
+2018,12,2,21,30,29
+2018,12,2,22,30,31
+2018,12,2,23,30,12
+2018,12,3,0,30,0
+2018,12,3,1,30,0
+2018,12,3,2,30,0
+2018,12,3,3,30,0
+2018,12,3,4,30,0
+2018,12,3,5,30,0
+2018,12,3,6,30,0
+2018,12,3,7,30,0
+2018,12,3,8,30,0
+2018,12,3,9,30,0
+2018,12,3,10,30,0
+2018,12,3,11,30,0
+2018,12,3,12,30,0
+2018,12,3,13,30,0
+2018,12,3,14,30,0
+2018,12,3,15,30,0
+2018,12,3,16,30,0
+2018,12,3,17,30,0
+2018,12,3,18,30,0
+2018,12,3,19,30,0
+2018,12,3,20,30,5
+2018,12,3,21,30,16
+2018,12,3,22,30,40
+2018,12,3,23,30,24
+2018,12,4,0,30,0
+2018,12,4,1,30,0
+2018,12,4,2,30,0
+2018,12,4,3,30,0
+2018,12,4,4,30,0
+2018,12,4,5,30,0
+2018,12,4,6,30,0
+2018,12,4,7,30,0
+2018,12,4,8,30,0
+2018,12,4,9,30,0
+2018,12,4,10,30,0
+2018,12,4,11,30,0
+2018,12,4,12,30,0
+2018,12,4,13,30,0
+2018,12,4,14,30,0
+2018,12,4,15,30,0
+2018,12,4,16,30,0
+2018,12,4,17,30,0
+2018,12,4,18,30,0
+2018,12,4,19,30,0
+2018,12,4,20,30,8
+2018,12,4,21,30,31
+2018,12,4,22,30,29
+2018,12,4,23,30,16
+2018,12,5,0,30,0
+2018,12,5,1,30,0
+2018,12,5,2,30,0
+2018,12,5,3,30,0
+2018,12,5,4,30,0
+2018,12,5,5,30,0
+2018,12,5,6,30,0
+2018,12,5,7,30,0
+2018,12,5,8,30,0
+2018,12,5,9,30,0
+2018,12,5,10,30,0
+2018,12,5,11,30,0
+2018,12,5,12,30,0
+2018,12,5,13,30,0
+2018,12,5,14,30,0
+2018,12,5,15,30,0
+2018,12,5,16,30,0
+2018,12,5,17,30,0
+2018,12,5,18,30,0
+2018,12,5,19,30,0
+2018,12,5,20,30,0
+2018,12,5,21,30,20
+2018,12,5,22,30,22
+2018,12,5,23,30,12
+2018,12,6,0,30,0
+2018,12,6,1,30,0
+2018,12,6,2,30,0
+2018,12,6,3,30,0
+2018,12,6,4,30,0
+2018,12,6,5,30,0
+2018,12,6,6,30,0
+2018,12,6,7,30,0
+2018,12,6,8,30,0
+2018,12,6,9,30,0
+2018,12,6,10,30,0
+2018,12,6,11,30,0
+2018,12,6,12,30,0
+2018,12,6,13,30,0
+2018,12,6,14,30,0
+2018,12,6,15,30,0
+2018,12,6,16,30,0
+2018,12,6,17,30,0
+2018,12,6,18,30,0
+2018,12,6,19,30,0
+2018,12,6,20,30,0
+2018,12,6,21,30,13
+2018,12,6,22,30,30
+2018,12,6,23,30,15
+2018,12,7,0,30,0
+2018,12,7,1,30,0
+2018,12,7,2,30,0
+2018,12,7,3,30,0
+2018,12,7,4,30,0
+2018,12,7,5,30,0
+2018,12,7,6,30,0
+2018,12,7,7,30,0
+2018,12,7,8,30,0
+2018,12,7,9,30,0
+2018,12,7,10,30,0
+2018,12,7,11,30,0
+2018,12,7,12,30,0
+2018,12,7,13,30,0
+2018,12,7,14,30,0
+2018,12,7,15,30,0
+2018,12,7,16,30,0
+2018,12,7,17,30,0
+2018,12,7,18,30,0
+2018,12,7,19,30,0
+2018,12,7,20,30,0
+2018,12,7,21,30,14
+2018,12,7,22,30,16
+2018,12,7,23,30,8
+2018,12,8,0,30,0
+2018,12,8,1,30,0
+2018,12,8,2,30,0
+2018,12,8,3,30,0
+2018,12,8,4,30,0
+2018,12,8,5,30,0
+2018,12,8,6,30,0
+2018,12,8,7,30,0
+2018,12,8,8,30,0
+2018,12,8,9,30,0
+2018,12,8,10,30,0
+2018,12,8,11,30,0
+2018,12,8,12,30,0
+2018,12,8,13,30,0
+2018,12,8,14,30,0
+2018,12,8,15,30,0
+2018,12,8,16,30,0
+2018,12,8,17,30,0
+2018,12,8,18,30,0
+2018,12,8,19,30,0
+2018,12,8,20,30,0
+2018,12,8,21,30,22
+2018,12,8,22,30,26
+2018,12,8,23,30,14
+2018,12,9,0,30,0
+2018,12,9,1,30,0
+2018,12,9,2,30,0
+2018,12,9,3,30,0
+2018,12,9,4,30,0
+2018,12,9,5,30,0
+2018,12,9,6,30,0
+2018,12,9,7,30,0
+2018,12,9,8,30,0
+2018,12,9,9,30,0
+2018,12,9,10,30,0
+2018,12,9,11,30,0
+2018,12,9,12,30,0
+2018,12,9,13,30,0
+2018,12,9,14,30,0
+2018,12,9,15,30,0
+2018,12,9,16,30,0
+2018,12,9,17,30,0
+2018,12,9,18,30,0
+2018,12,9,19,30,0
+2018,12,9,20,30,0
+2018,12,9,21,30,28
+2018,12,9,22,30,32
+2018,12,9,23,30,19
+2018,12,10,0,30,0
+2018,12,10,1,30,0
+2018,12,10,2,30,0
+2018,12,10,3,30,0
+2018,12,10,4,30,0
+2018,12,10,5,30,0
+2018,12,10,6,30,0
+2018,12,10,7,30,0
+2018,12,10,8,30,0
+2018,12,10,9,30,0
+2018,12,10,10,30,0
+2018,12,10,11,30,0
+2018,12,10,12,30,0
+2018,12,10,13,30,0
+2018,12,10,14,30,0
+2018,12,10,15,30,0
+2018,12,10,16,30,0
+2018,12,10,17,30,0
+2018,12,10,18,30,0
+2018,12,10,19,30,0
+2018,12,10,20,30,0
+2018,12,10,21,30,27
+2018,12,10,22,30,30
+2018,12,10,23,30,18
+2018,12,11,0,30,0
+2018,12,11,1,30,0
+2018,12,11,2,30,0
+2018,12,11,3,30,0
+2018,12,11,4,30,0
+2018,12,11,5,30,0
+2018,12,11,6,30,0
+2018,12,11,7,30,0
+2018,12,11,8,30,0
+2018,12,11,9,30,0
+2018,12,11,10,30,0
+2018,12,11,11,30,0
+2018,12,11,12,30,0
+2018,12,11,13,30,0
+2018,12,11,14,30,0
+2018,12,11,15,30,0
+2018,12,11,16,30,0
+2018,12,11,17,30,0
+2018,12,11,18,30,0
+2018,12,11,19,30,0
+2018,12,11,20,30,0
+2018,12,11,21,30,19
+2018,12,11,22,30,24
+2018,12,11,23,30,11
+2018,12,12,0,30,0
+2018,12,12,1,30,0
+2018,12,12,2,30,0
+2018,12,12,3,30,0
+2018,12,12,4,30,0
+2018,12,12,5,30,0
+2018,12,12,6,30,0
+2018,12,12,7,30,0
+2018,12,12,8,30,0
+2018,12,12,9,30,0
+2018,12,12,10,30,0
+2018,12,12,11,30,0
+2018,12,12,12,30,0
+2018,12,12,13,30,0
+2018,12,12,14,30,0
+2018,12,12,15,30,0
+2018,12,12,16,30,0
+2018,12,12,17,30,0
+2018,12,12,18,30,0
+2018,12,12,19,30,0
+2018,12,12,20,30,0
+2018,12,12,21,30,25
+2018,12,12,22,30,29
+2018,12,12,23,30,17
+2018,12,13,0,30,0
+2018,12,13,1,30,0
+2018,12,13,2,30,0
+2018,12,13,3,30,0
+2018,12,13,4,30,0
+2018,12,13,5,30,0
+2018,12,13,6,30,0
+2018,12,13,7,30,0
+2018,12,13,8,30,0
+2018,12,13,9,30,0
+2018,12,13,10,30,0
+2018,12,13,11,30,0
+2018,12,13,12,30,0
+2018,12,13,13,30,0
+2018,12,13,14,30,0
+2018,12,13,15,30,0
+2018,12,13,16,30,0
+2018,12,13,17,30,0
+2018,12,13,18,30,0
+2018,12,13,19,30,0
+2018,12,13,20,30,0
+2018,12,13,21,30,17
+2018,12,13,22,30,21
+2018,12,13,23,30,9
+2018,12,14,0,30,0
+2018,12,14,1,30,0
+2018,12,14,2,30,0
+2018,12,14,3,30,0
+2018,12,14,4,30,0
+2018,12,14,5,30,0
+2018,12,14,6,30,0
+2018,12,14,7,30,0
+2018,12,14,8,30,0
+2018,12,14,9,30,0
+2018,12,14,10,30,0
+2018,12,14,11,30,0
+2018,12,14,12,30,0
+2018,12,14,13,30,0
+2018,12,14,14,30,0
+2018,12,14,15,30,0
+2018,12,14,16,30,0
+2018,12,14,17,30,0
+2018,12,14,18,30,0
+2018,12,14,19,30,0
+2018,12,14,20,30,0
+2018,12,14,21,30,24
+2018,12,14,22,30,23
+2018,12,14,23,30,10
+2018,12,15,0,30,0
+2018,12,15,1,30,0
+2018,12,15,2,30,0
+2018,12,15,3,30,0
+2018,12,15,4,30,0
+2018,12,15,5,30,0
+2018,12,15,6,30,0
+2018,12,15,7,30,0
+2018,12,15,8,30,0
+2018,12,15,9,30,0
+2018,12,15,10,30,0
+2018,12,15,11,30,0
+2018,12,15,12,30,0
+2018,12,15,13,30,0
+2018,12,15,14,30,0
+2018,12,15,15,30,0
+2018,12,15,16,30,0
+2018,12,15,17,30,0
+2018,12,15,18,30,0
+2018,12,15,19,30,0
+2018,12,15,20,30,0
+2018,12,15,21,30,15
+2018,12,15,22,30,18
+2018,12,15,23,30,7
+2018,12,16,0,30,0
+2018,12,16,1,30,0
+2018,12,16,2,30,0
+2018,12,16,3,30,0
+2018,12,16,4,30,0
+2018,12,16,5,30,0
+2018,12,16,6,30,0
+2018,12,16,7,30,0
+2018,12,16,8,30,0
+2018,12,16,9,30,0
+2018,12,16,10,30,0
+2018,12,16,11,30,0
+2018,12,16,12,30,0
+2018,12,16,13,30,0
+2018,12,16,14,30,0
+2018,12,16,15,30,0
+2018,12,16,16,30,0
+2018,12,16,17,30,0
+2018,12,16,18,30,0
+2018,12,16,19,30,0
+2018,12,16,20,30,0
+2018,12,16,21,30,23
+2018,12,16,22,30,28
+2018,12,16,23,30,17
+2018,12,17,0,30,0
+2018,12,17,1,30,0
+2018,12,17,2,30,0
+2018,12,17,3,30,0
+2018,12,17,4,30,0
+2018,12,17,5,30,0
+2018,12,17,6,30,0
+2018,12,17,7,30,0
+2018,12,17,8,30,0
+2018,12,17,9,30,0
+2018,12,17,10,30,0
+2018,12,17,11,30,0
+2018,12,17,12,30,0
+2018,12,17,13,30,0
+2018,12,17,14,30,0
+2018,12,17,15,30,0
+2018,12,17,16,30,0
+2018,12,17,17,30,0
+2018,12,17,18,30,0
+2018,12,17,19,30,0
+2018,12,17,20,30,0
+2018,12,17,21,30,18
+2018,12,17,22,30,26
+2018,12,17,23,30,8
+2018,12,18,0,30,0
+2018,12,18,1,30,0
+2018,12,18,2,30,0
+2018,12,18,3,30,0
+2018,12,18,4,30,0
+2018,12,18,5,30,0
+2018,12,18,6,30,0
+2018,12,18,7,30,0
+2018,12,18,8,30,0
+2018,12,18,9,30,0
+2018,12,18,10,30,0
+2018,12,18,11,30,0
+2018,12,18,12,30,0
+2018,12,18,13,30,0
+2018,12,18,14,30,0
+2018,12,18,15,30,0
+2018,12,18,16,30,0
+2018,12,18,17,30,0
+2018,12,18,18,30,0
+2018,12,18,19,30,0
+2018,12,18,20,30,0
+2018,12,18,21,30,15
+2018,12,18,22,30,26
+2018,12,18,23,30,16
+2018,12,19,0,30,0
+2018,12,19,1,30,0
+2018,12,19,2,30,0
+2018,12,19,3,30,0
+2018,12,19,4,30,0
+2018,12,19,5,30,0
+2018,12,19,6,30,0
+2018,12,19,7,30,0
+2018,12,19,8,30,0
+2018,12,19,9,30,0
+2018,12,19,10,30,0
+2018,12,19,11,30,0
+2018,12,19,12,30,0
+2018,12,19,13,30,0
+2018,12,19,14,30,0
+2018,12,19,15,30,0
+2018,12,19,16,30,0
+2018,12,19,17,30,0
+2018,12,19,18,30,0
+2018,12,19,19,30,0
+2018,12,19,20,30,0
+2018,12,19,21,30,21
+2018,12,19,22,30,20
+2018,12,19,23,30,9
+2018,12,20,0,30,0
+2018,12,20,1,30,0
+2018,12,20,2,30,0
+2018,12,20,3,30,0
+2018,12,20,4,30,0
+2018,12,20,5,30,0
+2018,12,20,6,30,0
+2018,12,20,7,30,0
+2018,12,20,8,30,0
+2018,12,20,9,30,0
+2018,12,20,10,30,0
+2018,12,20,11,30,0
+2018,12,20,12,30,0
+2018,12,20,13,30,0
+2018,12,20,14,30,0
+2018,12,20,15,30,0
+2018,12,20,16,30,0
+2018,12,20,17,30,0
+2018,12,20,18,30,0
+2018,12,20,19,30,0
+2018,12,20,20,30,0
+2018,12,20,21,30,21
+2018,12,20,22,30,26
+2018,12,20,23,30,16
+2018,12,21,0,30,0
+2018,12,21,1,30,0
+2018,12,21,2,30,0
+2018,12,21,3,30,0
+2018,12,21,4,30,0
+2018,12,21,5,30,0
+2018,12,21,6,30,0
+2018,12,21,7,30,0
+2018,12,21,8,30,0
+2018,12,21,9,30,0
+2018,12,21,10,30,0
+2018,12,21,11,30,0
+2018,12,21,12,30,0
+2018,12,21,13,30,0
+2018,12,21,14,30,0
+2018,12,21,15,30,0
+2018,12,21,16,30,0
+2018,12,21,17,30,0
+2018,12,21,18,30,0
+2018,12,21,19,30,0
+2018,12,21,20,30,0
+2018,12,21,21,30,22
+2018,12,21,22,30,21
+2018,12,21,23,30,9
+2018,12,22,0,30,0
+2018,12,22,1,30,0
+2018,12,22,2,30,0
+2018,12,22,3,30,0
+2018,12,22,4,30,0
+2018,12,22,5,30,0
+2018,12,22,6,30,0
+2018,12,22,7,30,0
+2018,12,22,8,30,0
+2018,12,22,9,30,0
+2018,12,22,10,30,0
+2018,12,22,11,30,0
+2018,12,22,12,30,0
+2018,12,22,13,30,0
+2018,12,22,14,30,0
+2018,12,22,15,30,0
+2018,12,22,16,30,0
+2018,12,22,17,30,0
+2018,12,22,18,30,0
+2018,12,22,19,30,0
+2018,12,22,20,30,0
+2018,12,22,21,30,21
+2018,12,22,22,30,26
+2018,12,22,23,30,16
+2018,12,23,0,30,0
+2018,12,23,1,30,0
+2018,12,23,2,30,0
+2018,12,23,3,30,0
+2018,12,23,4,30,0
+2018,12,23,5,30,0
+2018,12,23,6,30,0
+2018,12,23,7,30,0
+2018,12,23,8,30,0
+2018,12,23,9,30,0
+2018,12,23,10,30,0
+2018,12,23,11,30,0
+2018,12,23,12,30,0
+2018,12,23,13,30,0
+2018,12,23,14,30,0
+2018,12,23,15,30,0
+2018,12,23,16,30,0
+2018,12,23,17,30,0
+2018,12,23,18,30,0
+2018,12,23,19,30,0
+2018,12,23,20,30,0
+2018,12,23,21,30,22
+2018,12,23,22,30,27
+2018,12,23,23,30,17
+2018,12,24,0,30,0
+2018,12,24,1,30,0
+2018,12,24,2,30,0
+2018,12,24,3,30,0
+2018,12,24,4,30,0
+2018,12,24,5,30,0
+2018,12,24,6,30,0
+2018,12,24,7,30,0
+2018,12,24,8,30,0
+2018,12,24,9,30,0
+2018,12,24,10,30,0
+2018,12,24,11,30,0
+2018,12,24,12,30,0
+2018,12,24,13,30,0
+2018,12,24,14,30,0
+2018,12,24,15,30,0
+2018,12,24,16,30,0
+2018,12,24,17,30,0
+2018,12,24,18,30,0
+2018,12,24,19,30,0
+2018,12,24,20,30,0
+2018,12,24,21,30,22
+2018,12,24,22,30,28
+2018,12,24,23,30,18
+2018,12,25,0,30,0
+2018,12,25,1,30,0
+2018,12,25,2,30,0
+2018,12,25,3,30,0
+2018,12,25,4,30,0
+2018,12,25,5,30,0
+2018,12,25,6,30,0
+2018,12,25,7,30,0
+2018,12,25,8,30,0
+2018,12,25,9,30,0
+2018,12,25,10,30,0
+2018,12,25,11,30,0
+2018,12,25,12,30,0
+2018,12,25,13,30,0
+2018,12,25,14,30,0
+2018,12,25,15,30,0
+2018,12,25,16,30,0
+2018,12,25,17,30,0
+2018,12,25,18,30,0
+2018,12,25,19,30,0
+2018,12,25,20,30,0
+2018,12,25,21,30,22
+2018,12,25,22,30,28
+2018,12,25,23,30,18
+2018,12,26,0,30,0
+2018,12,26,1,30,0
+2018,12,26,2,30,0
+2018,12,26,3,30,0
+2018,12,26,4,30,0
+2018,12,26,5,30,0
+2018,12,26,6,30,0
+2018,12,26,7,30,0
+2018,12,26,8,30,0
+2018,12,26,9,30,0
+2018,12,26,10,30,0
+2018,12,26,11,30,0
+2018,12,26,12,30,0
+2018,12,26,13,30,0
+2018,12,26,14,30,0
+2018,12,26,15,30,0
+2018,12,26,16,30,0
+2018,12,26,17,30,0
+2018,12,26,18,30,0
+2018,12,26,19,30,0
+2018,12,26,20,30,0
+2018,12,26,21,30,14
+2018,12,26,22,30,20
+2018,12,26,23,30,9
+2018,12,27,0,30,0
+2018,12,27,1,30,0
+2018,12,27,2,30,0
+2018,12,27,3,30,0
+2018,12,27,4,30,0
+2018,12,27,5,30,0
+2018,12,27,6,30,0
+2018,12,27,7,30,0
+2018,12,27,8,30,0
+2018,12,27,9,30,0
+2018,12,27,10,30,0
+2018,12,27,11,30,0
+2018,12,27,12,30,0
+2018,12,27,13,30,0
+2018,12,27,14,30,0
+2018,12,27,15,30,0
+2018,12,27,16,30,0
+2018,12,27,17,30,0
+2018,12,27,18,30,0
+2018,12,27,19,30,0
+2018,12,27,20,30,0
+2018,12,27,21,30,22
+2018,12,27,22,30,28
+2018,12,27,23,30,18
+2018,12,28,0,30,0
+2018,12,28,1,30,0
+2018,12,28,2,30,0
+2018,12,28,3,30,0
+2018,12,28,4,30,0
+2018,12,28,5,30,0
+2018,12,28,6,30,0
+2018,12,28,7,30,0
+2018,12,28,8,30,0
+2018,12,28,9,30,0
+2018,12,28,10,30,0
+2018,12,28,11,30,0
+2018,12,28,12,30,0
+2018,12,28,13,30,0
+2018,12,28,14,30,0
+2018,12,28,15,30,0
+2018,12,28,16,30,0
+2018,12,28,17,30,0
+2018,12,28,18,30,0
+2018,12,28,19,30,0
+2018,12,28,20,30,0
+2018,12,28,21,30,22
+2018,12,28,22,30,28
+2018,12,28,23,30,18
+2018,12,29,0,30,0
+2018,12,29,1,30,0
+2018,12,29,2,30,0
+2018,12,29,3,30,0
+2018,12,29,4,30,0
+2018,12,29,5,30,0
+2018,12,29,6,30,0
+2018,12,29,7,30,0
+2018,12,29,8,30,0
+2018,12,29,9,30,0
+2018,12,29,10,30,0
+2018,12,29,11,30,0
+2018,12,29,12,30,0
+2018,12,29,13,30,0
+2018,12,29,14,30,0
+2018,12,29,15,30,0
+2018,12,29,16,30,0
+2018,12,29,17,30,0
+2018,12,29,18,30,0
+2018,12,29,19,30,0
+2018,12,29,20,30,0
+2018,12,29,21,30,12
+2018,12,29,22,30,12
+2018,12,29,23,30,7
+2018,12,30,0,30,0
+2018,12,30,1,30,0
+2018,12,30,2,30,0
+2018,12,30,3,30,0
+2018,12,30,4,30,0
+2018,12,30,5,30,0
+2018,12,30,6,30,0
+2018,12,30,7,30,0
+2018,12,30,8,30,0
+2018,12,30,9,30,0
+2018,12,30,10,30,0
+2018,12,30,11,30,0
+2018,12,30,12,30,0
+2018,12,30,13,30,0
+2018,12,30,14,30,0
+2018,12,30,15,30,0
+2018,12,30,16,30,0
+2018,12,30,17,30,0
+2018,12,30,18,30,0
+2018,12,30,19,30,0
+2018,12,30,20,30,0
+2018,12,30,21,30,14
+2018,12,30,22,30,20
+2018,12,30,23,30,11
+2018,12,31,0,30,0
+2018,12,31,1,30,0
+2018,12,31,2,30,0
+2018,12,31,3,30,0
+2018,12,31,4,30,0
+2018,12,31,5,30,0
+2018,12,31,6,30,0
+2018,12,31,7,30,0
+2018,12,31,8,30,0
+2018,12,31,9,30,0
+2018,12,31,10,30,0
+2018,12,31,11,30,0
+2018,12,31,12,30,0
+2018,12,31,13,30,0
+2018,12,31,14,30,0
+2018,12,31,15,30,0
+2018,12,31,16,30,0
+2018,12,31,17,30,0
+2018,12,31,18,30,0
+2018,12,31,19,30,0
+2018,12,31,20,30,0
+2018,12,31,21,30,12
+2018,12,31,22,30,17
+2018,12,31,23,30,10
diff --git a/tests/iotools/test_psm4.py b/tests/iotools/test_psm4.py
index c16a714aa3..4e275e58ae 100644
--- a/tests/iotools/test_psm4.py
+++ b/tests/iotools/test_psm4.py
@@ -14,10 +14,13 @@
TMY_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_tmy-2023.csv'
FULL_DISC_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_full_disc_2023.csv'
+POLAR_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_polar_2023.csv'
+POLAR_TMY_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_polar_tmy_2023.csv'
YEAR_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_2023.csv'
YEAR_TEST_DATA_5MIN = TESTS_DATA_DIR / 'test_psm4_2023_5min.csv'
MANUAL_TEST_DATA = TESTS_DATA_DIR / 'test_read_psm4.csv'
LATITUDE, LONGITUDE = 40.5137, -108.5449
+LATITUDE_POLAR, LONGITUDE_POLAR = 64.84, -147.70
METADATA_FIELDS = [
'Source', 'Location ID', 'City', 'State', 'Country', 'Latitude',
'Longitude', 'Time Zone', 'Elevation', 'Local Time Zone',
@@ -78,6 +81,39 @@ def test_get_nsrdb_psm4_full_disc(nlr_api_key):
assert_psm4_equal(data, metadata, expected)
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_nsrdb_psm4_polar(nlr_api_key):
+ """test get_nsrdb_psm4_polar with a single year"""
+ data, metadata = psm4.get_nsrdb_psm4_polar(
+ LATITUDE_POLAR, LONGITUDE_POLAR,
+ nlr_api_key, PVLIB_EMAIL,
+ year=2023,
+ leap_day=False,
+ parameters=["ghi"],
+ utc=True,
+ map_variables=False)
+ expected, _ = psm4.read_nsrdb_psm4(POLAR_TEST_DATA, map_variables=False)
+ pd.testing.assert_frame_equal(data, expected)
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_nsrdb_psm4_polar_tmy(nlr_api_key):
+ """test get_nsrdb_psm4_polar_tmy with a single year"""
+ data, metadata = psm4.get_nsrdb_psm4_polar_tmy(
+ LATITUDE_POLAR, LONGITUDE_POLAR,
+ nlr_api_key, PVLIB_EMAIL,
+ year="tmy-2023",
+ leap_day=False,
+ parameters=["ghi"],
+ utc=True,
+ map_variables=False)
+ expected, _ = psm4.read_nsrdb_psm4(
+ POLAR_TMY_TEST_DATA, map_variables=False)
+ pd.testing.assert_frame_equal(data, expected)
+
+
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
def test_get_nsrdb_psm4_conus_singleyear(nlr_api_key):