From ad727cdf167cd4f32d2a2427f82f7ed84c925940 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Thu, 14 May 2026 13:13:13 +1000 Subject: [PATCH 01/25] Rough draft and tests for esm1.6 style output filenames --- splitnc/splitnc.py | 119 ++++++++++++++++-- splitnc/test/common.py | 4 +- splitnc/test/data/aiihca.pe-234501_dai.cdl | 40 ++++++ .../test/data/iceh-1daily-mean_2345-01.cdl | 41 ++++++ splitnc/test/test_splitnc.py | 116 ++++++++++++++++- 5 files changed, 305 insertions(+), 15 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index e039dda..862578a 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -232,6 +232,91 @@ def update_history_attr(ds, new_history): ds.attrs["history"] = old_history + new_history +def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_file_freq="1yr"): + """ + Build the filename used for the output. + + If esm1p6_filename=False then _ will be used. + + Otherwise a filename that follows the ESM1.6 naming scheme will be used: + {model}.{component}.{dimensions}.{field}.{freq}.{time_cell_method}.{datestamp}.nc + More info here: https://access-om3-configs.access-hive.org.au/configurations/Ocean_diagnostics/ + Elements of this schema will be deduced from the Dataset, the original filename, + and the given output file frequency. + + TODO: Consider moving some of these deductions into global attributes + TODO: Cover more cases (e.g. what do hourly outputs look like from esm1.6?) + """ + if not esm1p6_filename: + return f"{field_name}_{input_filepath.name}" + + template = "{model}.{component}.{dimensions}.{field}.{freq}{time_cell_method}{datestamp}.nc" + + # Model is always access-esm1p6 + d = {"model": "access-esm1p6"} + + # Component: either CICE5 or UM7.3 + source = ds.attrs["source"] + if "Los Alamos Sea Ice Model (CICE) Version 5" in source: + d["component"] = "cice5" + elif "Data from Met Office Unified Model" in source and \ + ds.attrs['um_version'] == "7.3": + d["component"] = "um7p3" + else: + raise ValueError(f"Unknown source, {source}, while building output filename for field {field_name} and {input_filepath}") + + # Dimensions: Don't count time when seeing if field is 2d or 3d + ndims = len([d for d in ds[field_name].dims if d!='time']) + if ndims == 2: + d["dimensions"] = "2d" + elif ndims == 3: + d["dimensions"] = "3d" + else: + raise ValueError(f"Unexpected number for dimensions, {ndims}, while building output filename for field {field_name} and {input_filepath}") + + # Field name is already known + d["field"] = field_name + + # Frequency: use fx if no time dim + if 'time' not in ds[field_name].dims: + d["freq"] = "fx" + else: + # Attempt to parse from expected filenames + if "iceh-1daily-" in input_filepath.name or "_dai.nc" in input_filepath.name: + d["freq"] = "1day" + elif "iceh-1monthly-" in input_filepath.name or "_mon.nc" in input_filepath.name: + d["freq"] = "1mon" + else: + raise ValueError(f"Unable to deduce frequency from filename while building output filename for {input_filepath}") + + # Time cell_method: Should be able to deduce from the cell_method + cell_method_regx = r"time: (\w+)" + try: + if m:= re.search(cell_method_regx, ds[field_name].attrs["cell_methods"]): + # Since this element is optional add the . here + d["time_cell_method"] = "." + m[1] + except KeyError: + # If there are no cell_method omit this element + d["time_cell_method"] = "" + + # Datestamp + if 'time' not in ds[field_name].dims: + # No datetime for fixed files + d["datestamp"] = "" + else: + # Truncate average time val by output file frequency + if re.match(r'\d+(yr|dec)', output_file_freq): + fmt = '%Y' + elif re.match(r'\d+mon', output_file_freq): + fmt = '%Y-%m' + else: + fmt = '%Y-%m-%d' + # Get the appropriately truncated datetime for the average time + d['datestamp'] = "." + ds['time'].mean().dt.strftime(fmt).data.flatten()[0] + + return template.format(**d) + + def process_file( filepath, field_vars=None, @@ -241,6 +326,7 @@ def process_file( output_dir=None, overwrite=False, update_history=True, + esm1p6_filename=True, ): logging.debug(f"Processing {filepath}") filepath = Path(filepath) @@ -342,18 +428,26 @@ def process_file( else: output_dir = filepath.parent - output_filename = output_dir / f"{v}_{filepath.name}" - logging.debug(f"Output filepath is {output_filename}") - - if not overwrite and output_filename.exists(): - logging.error(f"Output file already exists - {output_filename}") + # Build the output filepath + filename = build_filename( + ds=ds_v, + field_name=v, + input_filepath=filepath, + esm1p6_filename=esm1p6_filename, + ) + output_filepath = output_dir / filename + logging.debug(f"Output filepath is {output_filepath}") + + # Write to file + if not overwrite and output_filepath.exists(): + logging.error(f"Output file already exists - {output_filepath}") logging.error("Use --overwrite to overwrite existing files") - raise FileExistsError(f"{output_filename} already exists") + raise FileExistsError(f"{output_filepath} already exists") logging.debug("Creating parent directory and writing to output file") - output_filename.parent.mkdir(parents=True, exist_ok=True) - ds_v.to_netcdf(output_filename) + output_filepath.parent.mkdir(parents=True, exist_ok=True) + ds_v.to_netcdf(output_filepath) #### Main @@ -425,6 +519,14 @@ def globbable_string_list(string_list): 'regex. E.g. "(?P.*)_\\d+" will match "time_0" and ' 'rename it to "time".', ) + parser.add_argument( + "--use-esm1p6-filenames", + action="store_true", + help="Use the ESM1.6 filename pattern for the output files: " + "access-esm1p6.{component}.{dimensions}.{field}.{freq}.{time_cell_method}.{datestamp}.nc" + " splitnc will attempt to deduce all the components of the filename. " + "If this option is not given {field}_{original_filename} will be used." + ) parser.add_argument( "--output-dir", help="Output directory for the processed files. If not given output " @@ -496,6 +598,7 @@ def main(): output_dir=args.output_dir, overwrite=args.overwrite, update_history=not args.dont_update_history, + esm1p6_filename=args.use_esm1p6_filenames, ) diff --git a/splitnc/test/common.py b/splitnc/test/common.py index 4cd6d1d..aadc19f 100644 --- a/splitnc/test/common.py +++ b/splitnc/test/common.py @@ -18,8 +18,8 @@ def runcmd(cmd, wd=None, env=None): ) -def make_nc(tmp_path, cdl_file, filename="test.nc"): - filepath = f"{tmp_path}/{filename}" +def make_nc(tmp_path, cdl_file): + filepath = f"{tmp_path}/{cdl_file.replace(".cdl", ".nc")}" cmd = f"ncgen -o {filepath} {cdl_file}" runcmd(cmd) diff --git a/splitnc/test/data/aiihca.pe-234501_dai.cdl b/splitnc/test/data/aiihca.pe-234501_dai.cdl index fd887fd..0019f69 100644 --- a/splitnc/test/data/aiihca.pe-234501_dai.cdl +++ b/splitnc/test/data/aiihca.pe-234501_dai.cdl @@ -403,4 +403,44 @@ variables: :Conventions = "CF-1.6" ; :source = "Data from Met Office Unified Model" ; :um_version = "7.3" ; +data: + + time = 856128.5, 856129.5, 856130.5, 856131.5, 856132.5, 856133.5, 856134.5, + 856135.5, 856136.5, 856137.5, 856138.5, 856139.5, 856140.5, 856141.5, + 856142.5, 856143.5, 856144.5, 856145.5, 856146.5, 856147.5, 856148.5, + 856149.5, 856150.5, 856151.5, 856152.5, 856153.5, 856154.5, 856155.5, + 856156.5, 856157.5, 856158.5 ; + + time_bnds = + 856128, 856129, + 856129, 856130, + 856130, 856131, + 856131, 856132, + 856132, 856133, + 856133, 856134, + 856134, 856135, + 856135, 856136, + 856136, 856137, + 856137, 856138, + 856138, 856139, + 856139, 856140, + 856140, 856141, + 856141, 856142, + 856142, 856143, + 856143, 856144, + 856144, 856145, + 856145, 856146, + 856146, 856147, + 856147, 856148, + 856148, 856149, + 856149, 856150, + 856150, 856151, + 856151, 856152, + 856152, 856153, + 856153, 856154, + 856154, 856155, + 856155, 856156, + 856156, 856157, + 856157, 856158, + 856158, 856159 ; } diff --git a/splitnc/test/data/iceh-1daily-mean_2345-01.cdl b/splitnc/test/data/iceh-1daily-mean_2345-01.cdl index cf90e08..1a35c97 100644 --- a/splitnc/test/data/iceh-1daily-mean_2345-01.cdl +++ b/splitnc/test/data/iceh-1daily-mean_2345-01.cdl @@ -323,4 +323,45 @@ variables: :comment2 = "File started on model date 23450102" ; :history = "This dataset was created on 2025-12-04 at 19:02:58.4" ; :io_flavor = "io_netcdf" ; +data: + + time = 856128.5, 856129.5, 856130.5, 856131.5, 856132.5, 856133.5, 856134.5, + 856135.5, 856136.5, 856137.5, 856138.5, 856139.5, 856140.5, 856141.5, + 856142.5, 856143.5, 856144.5, 856145.5, 856146.5, 856147.5, 856148.5, + 856149.5, 856150.5, 856151.5, 856152.5, 856153.5, 856154.5, 856155.5, + 856156.5, 856157.5, 856158.5 ; + + time_bounds = + 856128, 856129, + 856129, 856130, + 856130, 856131, + 856131, 856132, + 856132, 856133, + 856133, 856134, + 856134, 856135, + 856135, 856136, + 856136, 856137, + 856137, 856138, + 856138, 856139, + 856139, 856140, + 856140, 856141, + 856141, 856142, + 856142, 856143, + 856143, 856144, + 856144, 856145, + 856145, 856146, + 856146, 856147, + 856147, 856148, + 856148, 856149, + 856149, 856150, + 856150, 856151, + 856151, 856152, + 856152, 856153, + 856153, 856154, + 856154, 856155, + 856155, 856156, + 856156, 856157, + 856157, 856158, + 856158, 856159 ; } + diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 2cc0584..03a8d91 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -1,10 +1,11 @@ +from pathlib import Path import pytest import re import xarray as xr from common import runcmd, make_nc -from splitnc import determine_field_vars +from splitnc import determine_field_vars, build_filename @pytest.mark.parametrize( @@ -19,6 +20,15 @@ "fld_.+", 217, ), + ( + # Test a monthly atmosphere file with esm1.6 filenames + "aiihca.pa-234501_mon.cdl", + "--shared-vars latitude_longitude --rename-regex {rename_regex} --use-esm1p6-filenames", + r"(?P.+)_\d+", + None, + "fld_.+", + 217, + ), ( # Test a daily atmosphere file "aiihca.pe-234501_dai.cdl", @@ -28,6 +38,15 @@ "fld_.+", 36, ), + ( + # Test a daily atmosphere file with esm1.6 filenames + "aiihca.pe-234501_dai.cdl", + "--shared-vars latitude_longitude --rename-regex {rename_regex} --use-esm1p6-filenames", + r"(?P.+)_\d+", + None, + "fld_.+", + 36, + ), ( # Test a monthly ice file "iceh-1monthly-mean_2345-01.cdl", @@ -37,6 +56,15 @@ "(ai|dv|si).+", 53, ), + ( + # Test a monthly ice file with esm1.6 filenames + "iceh-1monthly-mean_2345-01.cdl", + "--shared-vars uarea,tmask,tarea --excluded-vars VGRDb,VGRDi,VGRDs --use-esm1p6-filenames", + None, + ["VGRDb", "VGRDi", "VGRDs"], + "(ai|dv|si).+", + 53, + ), ( # Test a daily ice file (use a regex for exluded-vars here) "iceh-1daily-mean_2345-01.cdl", @@ -46,6 +74,15 @@ "(ai|dv|si).+", 25, ), + ( + # Test a daily ice file (use a regex for exluded-vars here) with esm1.6 filenames + "iceh-1daily-mean_2345-01.cdl", + "--shared-vars uarea,tmask,tarea --excluded-vars VGRD. --use-esm1p6-filenames", + None, + ["VGRD."], + "(ai|dv|si).+", + 25, + ), ( # Test a monthly atmosphere file with a regex for shared-vars # Previously when shared-var regex were resolved after field-var, this failed @@ -111,10 +148,11 @@ def test_splitnc(tmp_path, cdl_file, cmd_options, rename_regex, excluded_vars, output_dir = tmp_path / "single_field" + cmd_options += f" --output-dir {output_dir} {ncfile}" + # Are we using a cmdlinefile? if use_cmdline_file: - cmd_options = cmd_options.format(rename_regex=rename_regex) + \ - f" --output-dir {output_dir} {ncfile}" + cmd_options = cmd_options.format(rename_regex=rename_regex) cmdline_file_path = tmp_path / "cmdline_file" with open(cmdline_file_path, 'w') as f: @@ -124,8 +162,7 @@ def test_splitnc(tmp_path, cdl_file, cmd_options, rename_regex, excluded_vars, else: # Need to mess about with quotes around the regex rename_regex = f"'{rename_regex}'" - cmd_options = cmd_options.format(rename_regex=rename_regex) + \ - f" --output-dir {output_dir} {ncfile}" + cmd_options = cmd_options.format(rename_regex=rename_regex) cmd = f"python splitnc.py {cmd_options}" @@ -248,3 +285,72 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): # Check all the discovered fields match the regex assert all([re.match(field_regex, v) for v in field_list]) + + +@pytest.mark.parametrize("use_esm1p6", [True, False]) +@pytest.mark.parametrize( + "cdl_file,field,output_freq,expected_filename", + [ + ( + # Test a monthly atmos 2D field + "aiihca.pa-234501_mon.cdl", + "fld_s00i023", + "1yr", + "access-esm1p6.um7p3.2d.fld_s00i023.1mon.mean.2345.nc", + ), + ( + # Test a monthly atmos 2D field but monthly output + "aiihca.pa-234501_mon.cdl", + "fld_s00i023", + "1mon", + "access-esm1p6.um7p3.2d.fld_s00i023.1mon.mean.2345-01.nc", + ), + ( + # Test a monthly atmos 3D field + "aiihca.pa-234501_mon.cdl", + "fld_s00i407", + "1yr", + "access-esm1p6.um7p3.3d.fld_s00i407.1mon.mean.2345.nc", + ), + ( + # Test a daily atmos 3D field + "aiihca.pe-234501_dai.cdl", + "fld_s30i207", + "1yr", + "access-esm1p6.um7p3.3d.fld_s30i207.1day.mean.2345.nc", + ), + ( + # Test a daily ice 3D field + "iceh-1daily-mean_2345-01.cdl", + "aice", + "1yr", + "access-esm1p6.cice5.2d.aice.1day.mean.2345.nc", + ), + ( + # Test a daily ice fx field + "iceh-1daily-mean_2345-01.cdl", + "tarea", + "1yr", + "access-esm1p6.cice5.2d.tarea.fx.nc", + ), + ] +) +def test_build_filenames(tmp_path, use_esm1p6, cdl_file, field, output_freq, expected_filename): + # Create a file to test on + ncfile = make_nc(tmp_path, f"test/data/{cdl_file}") + + decoder = xr.coders.CFDatetimeCoder(time_unit='us') + with xr.open_dataset(ncfile, decode_times=decoder) as ds: + actual_filename = build_filename( + ds, + field, + Path(cdl_file.replace('.cdl', '.nc')), + esm1p6_filename=use_esm1p6, + output_file_freq=output_freq, + ) + + if not use_esm1p6: + # If we're not using the ESM1.6 filepattern we expect field_file.nc + expected_filename = f"{field}_{Path(cdl_file.replace('.cdl', '.nc'))}" + + assert actual_filename == expected_filename From 2cc52a80feaf70c7cbf2dd5e3c83246bf83ebc6d Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Thu, 14 May 2026 14:14:23 +1000 Subject: [PATCH 02/25] Fixed bug in tests --- splitnc/test/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/splitnc/test/common.py b/splitnc/test/common.py index aadc19f..c8a5715 100644 --- a/splitnc/test/common.py +++ b/splitnc/test/common.py @@ -19,7 +19,8 @@ def runcmd(cmd, wd=None, env=None): def make_nc(tmp_path, cdl_file): - filepath = f"{tmp_path}/{cdl_file.replace(".cdl", ".nc")}" + nc_filename = Path(cdl_file).with_suffix(".nc").name + filepath = f"{tmp_path}/{nc_filename}" cmd = f"ncgen -o {filepath} {cdl_file}" runcmd(cmd) From fea12ca53b0c4916a123a4fc4af1038d4ed5d455 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Thu, 14 May 2026 14:23:41 +1000 Subject: [PATCH 03/25] Need to add time values to one more cdl file --- splitnc/test/data/iceh-1monthly-mean_2345-01.cdl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/splitnc/test/data/iceh-1monthly-mean_2345-01.cdl b/splitnc/test/data/iceh-1monthly-mean_2345-01.cdl index 087a740..e364886 100644 --- a/splitnc/test/data/iceh-1monthly-mean_2345-01.cdl +++ b/splitnc/test/data/iceh-1monthly-mean_2345-01.cdl @@ -601,4 +601,10 @@ variables: :comment2 = "File started on model date 23450201" ; :history = "This dataset was created on 2025-12-04 at 19:07:59.0" ; :io_flavor = "io_netcdf" ; +data: + + time = 856143.5 ; + + time_bounds = + 856128, 856159 ; } From 518bfc68cb69f76d264c7ea84cb87c2c9bc30cb3 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Fri, 15 May 2026 11:02:33 +1000 Subject: [PATCH 04/25] Removed unnecessary double space --- splitnc/test/test_splitnc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 03a8d91..9201935 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -77,7 +77,7 @@ ( # Test a daily ice file (use a regex for exluded-vars here) with esm1.6 filenames "iceh-1daily-mean_2345-01.cdl", - "--shared-vars uarea,tmask,tarea --excluded-vars VGRD. --use-esm1p6-filenames", + "--shared-vars uarea,tmask,tarea --excluded-vars VGRD. --use-esm1p6-filenames", None, ["VGRD."], "(ai|dv|si).+", From b0216ac94c8eecc7f70a1e4e6f5c15c8ab4a6254 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Fri, 15 May 2026 11:06:53 +1000 Subject: [PATCH 05/25] Removed an excess newline --- splitnc/test/data/iceh-1daily-mean_2345-01.cdl | 1 - 1 file changed, 1 deletion(-) diff --git a/splitnc/test/data/iceh-1daily-mean_2345-01.cdl b/splitnc/test/data/iceh-1daily-mean_2345-01.cdl index 1a35c97..1bca647 100644 --- a/splitnc/test/data/iceh-1daily-mean_2345-01.cdl +++ b/splitnc/test/data/iceh-1daily-mean_2345-01.cdl @@ -364,4 +364,3 @@ data: 856157, 856158, 856158, 856159 ; } - From ebdd2841ad7384e21914d6f548ece1a3a10dc306 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Fri, 15 May 2026 11:09:17 +1000 Subject: [PATCH 06/25] Moved a TODO --- splitnc/splitnc.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index 862578a..c2046a2 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -243,9 +243,6 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ More info here: https://access-om3-configs.access-hive.org.au/configurations/Ocean_diagnostics/ Elements of this schema will be deduced from the Dataset, the original filename, and the given output file frequency. - - TODO: Consider moving some of these deductions into global attributes - TODO: Cover more cases (e.g. what do hourly outputs look like from esm1.6?) """ if not esm1p6_filename: return f"{field_name}_{input_filepath.name}" @@ -282,6 +279,7 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ d["freq"] = "fx" else: # Attempt to parse from expected filenames + # TODO: what do hourly filenames look like? What about Xhr? Yearly outputs? subhourly? if "iceh-1daily-" in input_filepath.name or "_dai.nc" in input_filepath.name: d["freq"] = "1day" elif "iceh-1monthly-" in input_filepath.name or "_mon.nc" in input_filepath.name: From dc4aa8a6a477f2a81b98f7ce6f1b8b92656a3e97 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Fri, 15 May 2026 11:36:06 +1000 Subject: [PATCH 07/25] Added a sub-daily datestamp format --- splitnc/splitnc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index c2046a2..5c571e4 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -307,8 +307,10 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ fmt = '%Y' elif re.match(r'\d+mon', output_file_freq): fmt = '%Y-%m' - else: + elif re.match(r'\d+day', output_file_freq): fmt = '%Y-%m-%d' + else: + fmt = '%Y-%m-%dT%H:%M:%S' # Get the appropriately truncated datetime for the average time d['datestamp'] = "." + ds['time'].mean().dt.strftime(fmt).data.flatten()[0] From 747c84cb9710e637eecc073a1d712df9cf77dc6c Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Tue, 19 May 2026 13:32:18 +1000 Subject: [PATCH 08/25] Added cases to the frequency identification, explicit 4 digit years, tests --- splitnc/splitnc.py | 26 +- splitnc/test/data/aiihca.pc-010101.cdl | 980 ++ splitnc/test/data/aiihca.pi-010101_3hr.cdl | 476 + splitnc/test/data/aiihca.pj-010101_6hr.cdl | 274 + splitnc/test/data/iceh-1-mean_0272.cdl | 11073 +++++++++++++++++ splitnc/test/data/iceh-1hourly-mean_0272.cdl | 11073 +++++++++++++++++ splitnc/test/data/iceh-1yearly-mean_0001.cdl | 97 + splitnc/test/data/iceh-1yearly-mean_0272.cdl | 97 + splitnc/test/test_splitnc.py | 51 + 9 files changed, 24139 insertions(+), 8 deletions(-) create mode 100644 splitnc/test/data/aiihca.pc-010101.cdl create mode 100644 splitnc/test/data/aiihca.pi-010101_3hr.cdl create mode 100644 splitnc/test/data/aiihca.pj-010101_6hr.cdl create mode 100644 splitnc/test/data/iceh-1-mean_0272.cdl create mode 100644 splitnc/test/data/iceh-1hourly-mean_0272.cdl create mode 100644 splitnc/test/data/iceh-1yearly-mean_0001.cdl create mode 100644 splitnc/test/data/iceh-1yearly-mean_0272.cdl diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index 5c571e4..a3ee50f 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -279,11 +279,20 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ d["freq"] = "fx" else: # Attempt to parse from expected filenames - # TODO: what do hourly filenames look like? What about Xhr? Yearly outputs? subhourly? - if "iceh-1daily-" in input_filepath.name or "_dai.nc" in input_filepath.name: - d["freq"] = "1day" - elif "iceh-1monthly-" in input_filepath.name or "_mon.nc" in input_filepath.name: + # TODO: what do yearly filenames look like for atmos? + # What about subhourly for ice/atmos? + filename = input_filepath.name + if "iceh-1yearly-" in filename: + d["freq"] = "1yr" + elif "iceh-1monthly-" in filename or "_mon.nc" in filename: d["freq"] = "1mon" + elif "iceh-1daily-" in filename or "_dai.nc" in filename: + d["freq"] = "1day" + elif match:=re.match(".+_(\d+hr).nc", filename): + # Get the frequency from the atmosphere regex match for Xhr + d["freq"] = match[1] + elif "iceh-1hourly-" in filename or "iceh-1-" in filename or "aiihca.pc" in filename: + d["freq"] = "1hr" else: raise ValueError(f"Unable to deduce frequency from filename while building output filename for {input_filepath}") @@ -303,14 +312,15 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ d["datestamp"] = "" else: # Truncate average time val by output file frequency + # datetimes do not correctly zero-pad so need to use %4Y if re.match(r'\d+(yr|dec)', output_file_freq): - fmt = '%Y' + fmt = '%4Y' elif re.match(r'\d+mon', output_file_freq): - fmt = '%Y-%m' + fmt = '%4Y-%m' elif re.match(r'\d+day', output_file_freq): - fmt = '%Y-%m-%d' + fmt = '%4Y-%m-%d' else: - fmt = '%Y-%m-%dT%H:%M:%S' + fmt = '%4Y-%m-%dT%H:%M:%S' # Get the appropriately truncated datetime for the average time d['datestamp'] = "." + ds['time'].mean().dt.strftime(fmt).data.flatten()[0] diff --git a/splitnc/test/data/aiihca.pc-010101.cdl b/splitnc/test/data/aiihca.pc-010101.cdl new file mode 100644 index 0000000..5773ff4 --- /dev/null +++ b/splitnc/test/data/aiihca.pc-010101.cdl @@ -0,0 +1,980 @@ +netcdf aiihca.pc-010101 { +dimensions: + time = UNLIMITED ; // (744 currently) + lat = 145 ; + lon = 192 ; + bnds = 2 ; +variables: + float fld_s05i216(time, lat, lon) ; + fld_s05i216:_FillValue = 1.e+20f ; + fld_s05i216:standard_name = "precipitation_flux" ; + fld_s05i216:long_name = "TOTAL PRECIPITATION RATE KG/M2/S" ; + fld_s05i216:units = "kg m-2 s-1" ; + fld_s05i216:um_stash_source = "m01s05i216" ; + fld_s05i216:missing_value = 1.e+20f ; + fld_s05i216:cell_methods = "time: mean" ; + fld_s05i216:grid_mapping = "latitude_longitude" ; + int latitude_longitude ; + latitude_longitude:grid_mapping_name = "latitude_longitude" ; + latitude_longitude:longitude_of_prime_meridian = 0. ; + latitude_longitude:earth_radius = 6371229. ; + double time(time) ; + time:axis = "T" ; + time:bounds = "time_bnds" ; + time:units = "days since 0001-01-01 00:00" ; + time:standard_name = "time" ; + time:calendar = "proleptic_gregorian" ; + double time_bnds(time, bnds) ; + double lat(lat) ; + lat:axis = "Y" ; + lat:bounds = "lat_bnds" ; + lat:units = "degrees_north" ; + lat:standard_name = "latitude" ; + double lat_bnds(lat, bnds) ; + double lon(lon) ; + lon:axis = "X" ; + lon:bounds = "lon_bnds" ; + lon:units = "degrees_east" ; + lon:standard_name = "longitude" ; + double lon_bnds(lon, bnds) ; + +// global attributes: + :history = "File /scratch/p66/jxs599/access-esm/archive/Ndep2-PI-CNP-concentrations-Ndep2-PI-CNP-concentrations-e523e199/output000/atmosphere/aiihca.pca1jan converted with /g/data/vk83/apps/base_conda/envs/payu-1.2.1/lib/python3.10/site-packages/um2nc/um2netcdf.py 1.1.0 at 2026-04-07 16:00:46" ; + :Conventions = "CF-1.6" ; + :source = "Data from Met Office Unified Model" ; + :um_version = "7.3" ; +data: + + time = 36524.0208333333, 36524.0625, 36524.1041666667, 36524.1458333333, + 36524.1875, 36524.2291666667, 36524.2708333333, 36524.3125, + 36524.3541666667, 36524.3958333333, 36524.4375, 36524.4791666667, + 36524.5208333333, 36524.5625, 36524.6041666667, 36524.6458333333, + 36524.6875, 36524.7291666667, 36524.7708333333, 36524.8125, + 36524.8541666667, 36524.8958333333, 36524.9375, 36524.9791666667, + 36525.0208333333, 36525.0625, 36525.1041666667, 36525.1458333333, + 36525.1875, 36525.2291666667, 36525.2708333333, 36525.3125, + 36525.3541666667, 36525.3958333333, 36525.4375, 36525.4791666667, + 36525.5208333333, 36525.5625, 36525.6041666667, 36525.6458333333, + 36525.6875, 36525.7291666667, 36525.7708333333, 36525.8125, + 36525.8541666667, 36525.8958333333, 36525.9375, 36525.9791666667, + 36526.0208333333, 36526.0625, 36526.1041666667, 36526.1458333333, + 36526.1875, 36526.2291666667, 36526.2708333333, 36526.3125, + 36526.3541666667, 36526.3958333333, 36526.4375, 36526.4791666667, + 36526.5208333333, 36526.5625, 36526.6041666667, 36526.6458333333, + 36526.6875, 36526.7291666667, 36526.7708333333, 36526.8125, + 36526.8541666667, 36526.8958333333, 36526.9375, 36526.9791666667, + 36527.0208333333, 36527.0625, 36527.1041666667, 36527.1458333333, + 36527.1875, 36527.2291666667, 36527.2708333333, 36527.3125, + 36527.3541666667, 36527.3958333333, 36527.4375, 36527.4791666667, + 36527.5208333333, 36527.5625, 36527.6041666667, 36527.6458333333, + 36527.6875, 36527.7291666667, 36527.7708333333, 36527.8125, + 36527.8541666667, 36527.8958333333, 36527.9375, 36527.9791666667, + 36528.0208333333, 36528.0625, 36528.1041666667, 36528.1458333333, + 36528.1875, 36528.2291666667, 36528.2708333333, 36528.3125, + 36528.3541666667, 36528.3958333333, 36528.4375, 36528.4791666667, + 36528.5208333333, 36528.5625, 36528.6041666667, 36528.6458333333, + 36528.6875, 36528.7291666667, 36528.7708333333, 36528.8125, + 36528.8541666667, 36528.8958333333, 36528.9375, 36528.9791666667, + 36529.0208333333, 36529.0625, 36529.1041666667, 36529.1458333333, + 36529.1875, 36529.2291666667, 36529.2708333333, 36529.3125, + 36529.3541666667, 36529.3958333333, 36529.4375, 36529.4791666667, + 36529.5208333333, 36529.5625, 36529.6041666667, 36529.6458333333, + 36529.6875, 36529.7291666667, 36529.7708333333, 36529.8125, + 36529.8541666667, 36529.8958333333, 36529.9375, 36529.9791666667, + 36530.0208333333, 36530.0625, 36530.1041666667, 36530.1458333333, + 36530.1875, 36530.2291666667, 36530.2708333333, 36530.3125, + 36530.3541666667, 36530.3958333333, 36530.4375, 36530.4791666667, + 36530.5208333333, 36530.5625, 36530.6041666667, 36530.6458333333, + 36530.6875, 36530.7291666667, 36530.7708333333, 36530.8125, + 36530.8541666667, 36530.8958333333, 36530.9375, 36530.9791666667, + 36531.0208333333, 36531.0625, 36531.1041666667, 36531.1458333333, + 36531.1875, 36531.2291666667, 36531.2708333333, 36531.3125, + 36531.3541666667, 36531.3958333333, 36531.4375, 36531.4791666667, + 36531.5208333333, 36531.5625, 36531.6041666667, 36531.6458333333, + 36531.6875, 36531.7291666667, 36531.7708333333, 36531.8125, + 36531.8541666667, 36531.8958333333, 36531.9375, 36531.9791666667, + 36532.0208333333, 36532.0625, 36532.1041666667, 36532.1458333333, + 36532.1875, 36532.2291666667, 36532.2708333333, 36532.3125, + 36532.3541666667, 36532.3958333333, 36532.4375, 36532.4791666667, + 36532.5208333333, 36532.5625, 36532.6041666667, 36532.6458333333, + 36532.6875, 36532.7291666667, 36532.7708333333, 36532.8125, + 36532.8541666667, 36532.8958333333, 36532.9375, 36532.9791666667, + 36533.0208333333, 36533.0625, 36533.1041666667, 36533.1458333333, + 36533.1875, 36533.2291666667, 36533.2708333333, 36533.3125, + 36533.3541666667, 36533.3958333333, 36533.4375, 36533.4791666667, + 36533.5208333333, 36533.5625, 36533.6041666667, 36533.6458333333, + 36533.6875, 36533.7291666667, 36533.7708333333, 36533.8125, + 36533.8541666667, 36533.8958333333, 36533.9375, 36533.9791666667, + 36534.0208333333, 36534.0625, 36534.1041666667, 36534.1458333333, + 36534.1875, 36534.2291666667, 36534.2708333333, 36534.3125, + 36534.3541666667, 36534.3958333333, 36534.4375, 36534.4791666667, + 36534.5208333333, 36534.5625, 36534.6041666667, 36534.6458333333, + 36534.6875, 36534.7291666667, 36534.7708333333, 36534.8125, + 36534.8541666667, 36534.8958333333, 36534.9375, 36534.9791666667, + 36535.0208333333, 36535.0625, 36535.1041666667, 36535.1458333333, + 36535.1875, 36535.2291666667, 36535.2708333333, 36535.3125, + 36535.3541666667, 36535.3958333333, 36535.4375, 36535.4791666667, + 36535.5208333333, 36535.5625, 36535.6041666667, 36535.6458333333, + 36535.6875, 36535.7291666667, 36535.7708333333, 36535.8125, + 36535.8541666667, 36535.8958333333, 36535.9375, 36535.9791666667, + 36536.0208333333, 36536.0625, 36536.1041666667, 36536.1458333333, + 36536.1875, 36536.2291666667, 36536.2708333333, 36536.3125, + 36536.3541666667, 36536.3958333333, 36536.4375, 36536.4791666667, + 36536.5208333333, 36536.5625, 36536.6041666667, 36536.6458333333, + 36536.6875, 36536.7291666667, 36536.7708333333, 36536.8125, + 36536.8541666667, 36536.8958333333, 36536.9375, 36536.9791666667, + 36537.0208333333, 36537.0625, 36537.1041666667, 36537.1458333333, + 36537.1875, 36537.2291666667, 36537.2708333333, 36537.3125, + 36537.3541666667, 36537.3958333333, 36537.4375, 36537.4791666667, + 36537.5208333333, 36537.5625, 36537.6041666667, 36537.6458333333, + 36537.6875, 36537.7291666667, 36537.7708333333, 36537.8125, + 36537.8541666667, 36537.8958333333, 36537.9375, 36537.9791666667, + 36538.0208333333, 36538.0625, 36538.1041666667, 36538.1458333333, + 36538.1875, 36538.2291666667, 36538.2708333333, 36538.3125, + 36538.3541666667, 36538.3958333333, 36538.4375, 36538.4791666667, + 36538.5208333333, 36538.5625, 36538.6041666667, 36538.6458333333, + 36538.6875, 36538.7291666667, 36538.7708333333, 36538.8125, + 36538.8541666667, 36538.8958333333, 36538.9375, 36538.9791666667, + 36539.0208333333, 36539.0625, 36539.1041666667, 36539.1458333333, + 36539.1875, 36539.2291666667, 36539.2708333333, 36539.3125, + 36539.3541666667, 36539.3958333333, 36539.4375, 36539.4791666667, + 36539.5208333333, 36539.5625, 36539.6041666667, 36539.6458333333, + 36539.6875, 36539.7291666667, 36539.7708333333, 36539.8125, + 36539.8541666667, 36539.8958333333, 36539.9375, 36539.9791666667, + 36540.0208333333, 36540.0625, 36540.1041666667, 36540.1458333333, + 36540.1875, 36540.2291666667, 36540.2708333333, 36540.3125, + 36540.3541666667, 36540.3958333333, 36540.4375, 36540.4791666667, + 36540.5208333333, 36540.5625, 36540.6041666667, 36540.6458333333, + 36540.6875, 36540.7291666667, 36540.7708333333, 36540.8125, + 36540.8541666667, 36540.8958333333, 36540.9375, 36540.9791666667, + 36541.0208333333, 36541.0625, 36541.1041666667, 36541.1458333333, + 36541.1875, 36541.2291666667, 36541.2708333333, 36541.3125, + 36541.3541666667, 36541.3958333333, 36541.4375, 36541.4791666667, + 36541.5208333333, 36541.5625, 36541.6041666667, 36541.6458333333, + 36541.6875, 36541.7291666667, 36541.7708333333, 36541.8125, + 36541.8541666667, 36541.8958333333, 36541.9375, 36541.9791666667, + 36542.0208333333, 36542.0625, 36542.1041666667, 36542.1458333333, + 36542.1875, 36542.2291666667, 36542.2708333333, 36542.3125, + 36542.3541666667, 36542.3958333333, 36542.4375, 36542.4791666667, + 36542.5208333333, 36542.5625, 36542.6041666667, 36542.6458333333, + 36542.6875, 36542.7291666667, 36542.7708333333, 36542.8125, + 36542.8541666667, 36542.8958333333, 36542.9375, 36542.9791666667, + 36543.0208333333, 36543.0625, 36543.1041666667, 36543.1458333333, + 36543.1875, 36543.2291666667, 36543.2708333333, 36543.3125, + 36543.3541666667, 36543.3958333333, 36543.4375, 36543.4791666667, + 36543.5208333333, 36543.5625, 36543.6041666667, 36543.6458333333, + 36543.6875, 36543.7291666667, 36543.7708333333, 36543.8125, + 36543.8541666667, 36543.8958333333, 36543.9375, 36543.9791666667, + 36544.0208333333, 36544.0625, 36544.1041666667, 36544.1458333333, + 36544.1875, 36544.2291666667, 36544.2708333333, 36544.3125, + 36544.3541666667, 36544.3958333333, 36544.4375, 36544.4791666667, + 36544.5208333333, 36544.5625, 36544.6041666667, 36544.6458333333, + 36544.6875, 36544.7291666667, 36544.7708333333, 36544.8125, + 36544.8541666667, 36544.8958333333, 36544.9375, 36544.9791666667, + 36545.0208333333, 36545.0625, 36545.1041666667, 36545.1458333333, + 36545.1875, 36545.2291666667, 36545.2708333333, 36545.3125, + 36545.3541666667, 36545.3958333333, 36545.4375, 36545.4791666667, + 36545.5208333333, 36545.5625, 36545.6041666667, 36545.6458333333, + 36545.6875, 36545.7291666667, 36545.7708333333, 36545.8125, + 36545.8541666667, 36545.8958333333, 36545.9375, 36545.9791666667, + 36546.0208333333, 36546.0625, 36546.1041666667, 36546.1458333333, + 36546.1875, 36546.2291666667, 36546.2708333333, 36546.3125, + 36546.3541666667, 36546.3958333333, 36546.4375, 36546.4791666667, + 36546.5208333333, 36546.5625, 36546.6041666667, 36546.6458333333, + 36546.6875, 36546.7291666667, 36546.7708333333, 36546.8125, + 36546.8541666667, 36546.8958333333, 36546.9375, 36546.9791666667, + 36547.0208333333, 36547.0625, 36547.1041666667, 36547.1458333333, + 36547.1875, 36547.2291666667, 36547.2708333333, 36547.3125, + 36547.3541666667, 36547.3958333333, 36547.4375, 36547.4791666667, + 36547.5208333333, 36547.5625, 36547.6041666667, 36547.6458333333, + 36547.6875, 36547.7291666667, 36547.7708333333, 36547.8125, + 36547.8541666667, 36547.8958333333, 36547.9375, 36547.9791666667, + 36548.0208333333, 36548.0625, 36548.1041666667, 36548.1458333333, + 36548.1875, 36548.2291666667, 36548.2708333333, 36548.3125, + 36548.3541666667, 36548.3958333333, 36548.4375, 36548.4791666667, + 36548.5208333333, 36548.5625, 36548.6041666667, 36548.6458333333, + 36548.6875, 36548.7291666667, 36548.7708333333, 36548.8125, + 36548.8541666667, 36548.8958333333, 36548.9375, 36548.9791666667, + 36549.0208333333, 36549.0625, 36549.1041666667, 36549.1458333333, + 36549.1875, 36549.2291666667, 36549.2708333333, 36549.3125, + 36549.3541666667, 36549.3958333333, 36549.4375, 36549.4791666667, + 36549.5208333333, 36549.5625, 36549.6041666667, 36549.6458333333, + 36549.6875, 36549.7291666667, 36549.7708333333, 36549.8125, + 36549.8541666667, 36549.8958333333, 36549.9375, 36549.9791666667, + 36550.0208333333, 36550.0625, 36550.1041666667, 36550.1458333333, + 36550.1875, 36550.2291666667, 36550.2708333333, 36550.3125, + 36550.3541666667, 36550.3958333333, 36550.4375, 36550.4791666667, + 36550.5208333333, 36550.5625, 36550.6041666667, 36550.6458333333, + 36550.6875, 36550.7291666667, 36550.7708333333, 36550.8125, + 36550.8541666667, 36550.8958333333, 36550.9375, 36550.9791666667, + 36551.0208333333, 36551.0625, 36551.1041666667, 36551.1458333333, + 36551.1875, 36551.2291666667, 36551.2708333333, 36551.3125, + 36551.3541666667, 36551.3958333333, 36551.4375, 36551.4791666667, + 36551.5208333333, 36551.5625, 36551.6041666667, 36551.6458333333, + 36551.6875, 36551.7291666667, 36551.7708333333, 36551.8125, + 36551.8541666667, 36551.8958333333, 36551.9375, 36551.9791666667, + 36552.0208333333, 36552.0625, 36552.1041666667, 36552.1458333333, + 36552.1875, 36552.2291666667, 36552.2708333333, 36552.3125, + 36552.3541666667, 36552.3958333333, 36552.4375, 36552.4791666667, + 36552.5208333333, 36552.5625, 36552.6041666667, 36552.6458333333, + 36552.6875, 36552.7291666667, 36552.7708333333, 36552.8125, + 36552.8541666667, 36552.8958333333, 36552.9375, 36552.9791666667, + 36553.0208333333, 36553.0625, 36553.1041666667, 36553.1458333333, + 36553.1875, 36553.2291666667, 36553.2708333333, 36553.3125, + 36553.3541666667, 36553.3958333333, 36553.4375, 36553.4791666667, + 36553.5208333333, 36553.5625, 36553.6041666667, 36553.6458333333, + 36553.6875, 36553.7291666667, 36553.7708333333, 36553.8125, + 36553.8541666667, 36553.8958333333, 36553.9375, 36553.9791666667, + 36554.0208333333, 36554.0625, 36554.1041666667, 36554.1458333333, + 36554.1875, 36554.2291666667, 36554.2708333333, 36554.3125, + 36554.3541666667, 36554.3958333333, 36554.4375, 36554.4791666667, + 36554.5208333333, 36554.5625, 36554.6041666667, 36554.6458333333, + 36554.6875, 36554.7291666667, 36554.7708333333, 36554.8125, + 36554.8541666667, 36554.8958333333, 36554.9375, 36554.9791666667 ; + + time_bnds = + 36524, 36524.0416666667, + 36524.0416666667, 36524.0833333333, + 36524.0833333333, 36524.125, + 36524.125, 36524.1666666667, + 36524.1666666667, 36524.2083333333, + 36524.2083333333, 36524.25, + 36524.25, 36524.2916666667, + 36524.2916666667, 36524.3333333333, + 36524.3333333333, 36524.375, + 36524.375, 36524.4166666667, + 36524.4166666667, 36524.4583333333, + 36524.4583333333, 36524.5, + 36524.5, 36524.5416666667, + 36524.5416666667, 36524.5833333333, + 36524.5833333333, 36524.625, + 36524.625, 36524.6666666667, + 36524.6666666667, 36524.7083333333, + 36524.7083333333, 36524.75, + 36524.75, 36524.7916666667, + 36524.7916666667, 36524.8333333333, + 36524.8333333333, 36524.875, + 36524.875, 36524.9166666667, + 36524.9166666667, 36524.9583333333, + 36524.9583333333, 36525, + 36525, 36525.0416666667, + 36525.0416666667, 36525.0833333333, + 36525.0833333333, 36525.125, + 36525.125, 36525.1666666667, + 36525.1666666667, 36525.2083333333, + 36525.2083333333, 36525.25, + 36525.25, 36525.2916666667, + 36525.2916666667, 36525.3333333333, + 36525.3333333333, 36525.375, + 36525.375, 36525.4166666667, + 36525.4166666667, 36525.4583333333, + 36525.4583333333, 36525.5, + 36525.5, 36525.5416666667, + 36525.5416666667, 36525.5833333333, + 36525.5833333333, 36525.625, + 36525.625, 36525.6666666667, + 36525.6666666667, 36525.7083333333, + 36525.7083333333, 36525.75, + 36525.75, 36525.7916666667, + 36525.7916666667, 36525.8333333333, + 36525.8333333333, 36525.875, + 36525.875, 36525.9166666667, + 36525.9166666667, 36525.9583333333, + 36525.9583333333, 36526, + 36526, 36526.0416666667, + 36526.0416666667, 36526.0833333333, + 36526.0833333333, 36526.125, + 36526.125, 36526.1666666667, + 36526.1666666667, 36526.2083333333, + 36526.2083333333, 36526.25, + 36526.25, 36526.2916666667, + 36526.2916666667, 36526.3333333333, + 36526.3333333333, 36526.375, + 36526.375, 36526.4166666667, + 36526.4166666667, 36526.4583333333, + 36526.4583333333, 36526.5, + 36526.5, 36526.5416666667, + 36526.5416666667, 36526.5833333333, + 36526.5833333333, 36526.625, + 36526.625, 36526.6666666667, + 36526.6666666667, 36526.7083333333, + 36526.7083333333, 36526.75, + 36526.75, 36526.7916666667, + 36526.7916666667, 36526.8333333333, + 36526.8333333333, 36526.875, + 36526.875, 36526.9166666667, + 36526.9166666667, 36526.9583333333, + 36526.9583333333, 36527, + 36527, 36527.0416666667, + 36527.0416666667, 36527.0833333333, + 36527.0833333333, 36527.125, + 36527.125, 36527.1666666667, + 36527.1666666667, 36527.2083333333, + 36527.2083333333, 36527.25, + 36527.25, 36527.2916666667, + 36527.2916666667, 36527.3333333333, + 36527.3333333333, 36527.375, + 36527.375, 36527.4166666667, + 36527.4166666667, 36527.4583333333, + 36527.4583333333, 36527.5, + 36527.5, 36527.5416666667, + 36527.5416666667, 36527.5833333333, + 36527.5833333333, 36527.625, + 36527.625, 36527.6666666667, + 36527.6666666667, 36527.7083333333, + 36527.7083333333, 36527.75, + 36527.75, 36527.7916666667, + 36527.7916666667, 36527.8333333333, + 36527.8333333333, 36527.875, + 36527.875, 36527.9166666667, + 36527.9166666667, 36527.9583333333, + 36527.9583333333, 36528, + 36528, 36528.0416666667, + 36528.0416666667, 36528.0833333333, + 36528.0833333333, 36528.125, + 36528.125, 36528.1666666667, + 36528.1666666667, 36528.2083333333, + 36528.2083333333, 36528.25, + 36528.25, 36528.2916666667, + 36528.2916666667, 36528.3333333333, + 36528.3333333333, 36528.375, + 36528.375, 36528.4166666667, + 36528.4166666667, 36528.4583333333, + 36528.4583333333, 36528.5, + 36528.5, 36528.5416666667, + 36528.5416666667, 36528.5833333333, + 36528.5833333333, 36528.625, + 36528.625, 36528.6666666667, + 36528.6666666667, 36528.7083333333, + 36528.7083333333, 36528.75, + 36528.75, 36528.7916666667, + 36528.7916666667, 36528.8333333333, + 36528.8333333333, 36528.875, + 36528.875, 36528.9166666667, + 36528.9166666667, 36528.9583333333, + 36528.9583333333, 36529, + 36529, 36529.0416666667, + 36529.0416666667, 36529.0833333333, + 36529.0833333333, 36529.125, + 36529.125, 36529.1666666667, + 36529.1666666667, 36529.2083333333, + 36529.2083333333, 36529.25, + 36529.25, 36529.2916666667, + 36529.2916666667, 36529.3333333333, + 36529.3333333333, 36529.375, + 36529.375, 36529.4166666667, + 36529.4166666667, 36529.4583333333, + 36529.4583333333, 36529.5, + 36529.5, 36529.5416666667, + 36529.5416666667, 36529.5833333333, + 36529.5833333333, 36529.625, + 36529.625, 36529.6666666667, + 36529.6666666667, 36529.7083333333, + 36529.7083333333, 36529.75, + 36529.75, 36529.7916666667, + 36529.7916666667, 36529.8333333333, + 36529.8333333333, 36529.875, + 36529.875, 36529.9166666667, + 36529.9166666667, 36529.9583333333, + 36529.9583333333, 36530, + 36530, 36530.0416666667, + 36530.0416666667, 36530.0833333333, + 36530.0833333333, 36530.125, + 36530.125, 36530.1666666667, + 36530.1666666667, 36530.2083333333, + 36530.2083333333, 36530.25, + 36530.25, 36530.2916666667, + 36530.2916666667, 36530.3333333333, + 36530.3333333333, 36530.375, + 36530.375, 36530.4166666667, + 36530.4166666667, 36530.4583333333, + 36530.4583333333, 36530.5, + 36530.5, 36530.5416666667, + 36530.5416666667, 36530.5833333333, + 36530.5833333333, 36530.625, + 36530.625, 36530.6666666667, + 36530.6666666667, 36530.7083333333, + 36530.7083333333, 36530.75, + 36530.75, 36530.7916666667, + 36530.7916666667, 36530.8333333333, + 36530.8333333333, 36530.875, + 36530.875, 36530.9166666667, + 36530.9166666667, 36530.9583333333, + 36530.9583333333, 36531, + 36531, 36531.0416666667, + 36531.0416666667, 36531.0833333333, + 36531.0833333333, 36531.125, + 36531.125, 36531.1666666667, + 36531.1666666667, 36531.2083333333, + 36531.2083333333, 36531.25, + 36531.25, 36531.2916666667, + 36531.2916666667, 36531.3333333333, + 36531.3333333333, 36531.375, + 36531.375, 36531.4166666667, + 36531.4166666667, 36531.4583333333, + 36531.4583333333, 36531.5, + 36531.5, 36531.5416666667, + 36531.5416666667, 36531.5833333333, + 36531.5833333333, 36531.625, + 36531.625, 36531.6666666667, + 36531.6666666667, 36531.7083333333, + 36531.7083333333, 36531.75, + 36531.75, 36531.7916666667, + 36531.7916666667, 36531.8333333333, + 36531.8333333333, 36531.875, + 36531.875, 36531.9166666667, + 36531.9166666667, 36531.9583333333, + 36531.9583333333, 36532, + 36532, 36532.0416666667, + 36532.0416666667, 36532.0833333333, + 36532.0833333333, 36532.125, + 36532.125, 36532.1666666667, + 36532.1666666667, 36532.2083333333, + 36532.2083333333, 36532.25, + 36532.25, 36532.2916666667, + 36532.2916666667, 36532.3333333333, + 36532.3333333333, 36532.375, + 36532.375, 36532.4166666667, + 36532.4166666667, 36532.4583333333, + 36532.4583333333, 36532.5, + 36532.5, 36532.5416666667, + 36532.5416666667, 36532.5833333333, + 36532.5833333333, 36532.625, + 36532.625, 36532.6666666667, + 36532.6666666667, 36532.7083333333, + 36532.7083333333, 36532.75, + 36532.75, 36532.7916666667, + 36532.7916666667, 36532.8333333333, + 36532.8333333333, 36532.875, + 36532.875, 36532.9166666667, + 36532.9166666667, 36532.9583333333, + 36532.9583333333, 36533, + 36533, 36533.0416666667, + 36533.0416666667, 36533.0833333333, + 36533.0833333333, 36533.125, + 36533.125, 36533.1666666667, + 36533.1666666667, 36533.2083333333, + 36533.2083333333, 36533.25, + 36533.25, 36533.2916666667, + 36533.2916666667, 36533.3333333333, + 36533.3333333333, 36533.375, + 36533.375, 36533.4166666667, + 36533.4166666667, 36533.4583333333, + 36533.4583333333, 36533.5, + 36533.5, 36533.5416666667, + 36533.5416666667, 36533.5833333333, + 36533.5833333333, 36533.625, + 36533.625, 36533.6666666667, + 36533.6666666667, 36533.7083333333, + 36533.7083333333, 36533.75, + 36533.75, 36533.7916666667, + 36533.7916666667, 36533.8333333333, + 36533.8333333333, 36533.875, + 36533.875, 36533.9166666667, + 36533.9166666667, 36533.9583333333, + 36533.9583333333, 36534, + 36534, 36534.0416666667, + 36534.0416666667, 36534.0833333333, + 36534.0833333333, 36534.125, + 36534.125, 36534.1666666667, + 36534.1666666667, 36534.2083333333, + 36534.2083333333, 36534.25, + 36534.25, 36534.2916666667, + 36534.2916666667, 36534.3333333333, + 36534.3333333333, 36534.375, + 36534.375, 36534.4166666667, + 36534.4166666667, 36534.4583333333, + 36534.4583333333, 36534.5, + 36534.5, 36534.5416666667, + 36534.5416666667, 36534.5833333333, + 36534.5833333333, 36534.625, + 36534.625, 36534.6666666667, + 36534.6666666667, 36534.7083333333, + 36534.7083333333, 36534.75, + 36534.75, 36534.7916666667, + 36534.7916666667, 36534.8333333333, + 36534.8333333333, 36534.875, + 36534.875, 36534.9166666667, + 36534.9166666667, 36534.9583333333, + 36534.9583333333, 36535, + 36535, 36535.0416666667, + 36535.0416666667, 36535.0833333333, + 36535.0833333333, 36535.125, + 36535.125, 36535.1666666667, + 36535.1666666667, 36535.2083333333, + 36535.2083333333, 36535.25, + 36535.25, 36535.2916666667, + 36535.2916666667, 36535.3333333333, + 36535.3333333333, 36535.375, + 36535.375, 36535.4166666667, + 36535.4166666667, 36535.4583333333, + 36535.4583333333, 36535.5, + 36535.5, 36535.5416666667, + 36535.5416666667, 36535.5833333333, + 36535.5833333333, 36535.625, + 36535.625, 36535.6666666667, + 36535.6666666667, 36535.7083333333, + 36535.7083333333, 36535.75, + 36535.75, 36535.7916666667, + 36535.7916666667, 36535.8333333333, + 36535.8333333333, 36535.875, + 36535.875, 36535.9166666667, + 36535.9166666667, 36535.9583333333, + 36535.9583333333, 36536, + 36536, 36536.0416666667, + 36536.0416666667, 36536.0833333333, + 36536.0833333333, 36536.125, + 36536.125, 36536.1666666667, + 36536.1666666667, 36536.2083333333, + 36536.2083333333, 36536.25, + 36536.25, 36536.2916666667, + 36536.2916666667, 36536.3333333333, + 36536.3333333333, 36536.375, + 36536.375, 36536.4166666667, + 36536.4166666667, 36536.4583333333, + 36536.4583333333, 36536.5, + 36536.5, 36536.5416666667, + 36536.5416666667, 36536.5833333333, + 36536.5833333333, 36536.625, + 36536.625, 36536.6666666667, + 36536.6666666667, 36536.7083333333, + 36536.7083333333, 36536.75, + 36536.75, 36536.7916666667, + 36536.7916666667, 36536.8333333333, + 36536.8333333333, 36536.875, + 36536.875, 36536.9166666667, + 36536.9166666667, 36536.9583333333, + 36536.9583333333, 36537, + 36537, 36537.0416666667, + 36537.0416666667, 36537.0833333333, + 36537.0833333333, 36537.125, + 36537.125, 36537.1666666667, + 36537.1666666667, 36537.2083333333, + 36537.2083333333, 36537.25, + 36537.25, 36537.2916666667, + 36537.2916666667, 36537.3333333333, + 36537.3333333333, 36537.375, + 36537.375, 36537.4166666667, + 36537.4166666667, 36537.4583333333, + 36537.4583333333, 36537.5, + 36537.5, 36537.5416666667, + 36537.5416666667, 36537.5833333333, + 36537.5833333333, 36537.625, + 36537.625, 36537.6666666667, + 36537.6666666667, 36537.7083333333, + 36537.7083333333, 36537.75, + 36537.75, 36537.7916666667, + 36537.7916666667, 36537.8333333333, + 36537.8333333333, 36537.875, + 36537.875, 36537.9166666667, + 36537.9166666667, 36537.9583333333, + 36537.9583333333, 36538, + 36538, 36538.0416666667, + 36538.0416666667, 36538.0833333333, + 36538.0833333333, 36538.125, + 36538.125, 36538.1666666667, + 36538.1666666667, 36538.2083333333, + 36538.2083333333, 36538.25, + 36538.25, 36538.2916666667, + 36538.2916666667, 36538.3333333333, + 36538.3333333333, 36538.375, + 36538.375, 36538.4166666667, + 36538.4166666667, 36538.4583333333, + 36538.4583333333, 36538.5, + 36538.5, 36538.5416666667, + 36538.5416666667, 36538.5833333333, + 36538.5833333333, 36538.625, + 36538.625, 36538.6666666667, + 36538.6666666667, 36538.7083333333, + 36538.7083333333, 36538.75, + 36538.75, 36538.7916666667, + 36538.7916666667, 36538.8333333333, + 36538.8333333333, 36538.875, + 36538.875, 36538.9166666667, + 36538.9166666667, 36538.9583333333, + 36538.9583333333, 36539, + 36539, 36539.0416666667, + 36539.0416666667, 36539.0833333333, + 36539.0833333333, 36539.125, + 36539.125, 36539.1666666667, + 36539.1666666667, 36539.2083333333, + 36539.2083333333, 36539.25, + 36539.25, 36539.2916666667, + 36539.2916666667, 36539.3333333333, + 36539.3333333333, 36539.375, + 36539.375, 36539.4166666667, + 36539.4166666667, 36539.4583333333, + 36539.4583333333, 36539.5, + 36539.5, 36539.5416666667, + 36539.5416666667, 36539.5833333333, + 36539.5833333333, 36539.625, + 36539.625, 36539.6666666667, + 36539.6666666667, 36539.7083333333, + 36539.7083333333, 36539.75, + 36539.75, 36539.7916666667, + 36539.7916666667, 36539.8333333333, + 36539.8333333333, 36539.875, + 36539.875, 36539.9166666667, + 36539.9166666667, 36539.9583333333, + 36539.9583333333, 36540, + 36540, 36540.0416666667, + 36540.0416666667, 36540.0833333333, + 36540.0833333333, 36540.125, + 36540.125, 36540.1666666667, + 36540.1666666667, 36540.2083333333, + 36540.2083333333, 36540.25, + 36540.25, 36540.2916666667, + 36540.2916666667, 36540.3333333333, + 36540.3333333333, 36540.375, + 36540.375, 36540.4166666667, + 36540.4166666667, 36540.4583333333, + 36540.4583333333, 36540.5, + 36540.5, 36540.5416666667, + 36540.5416666667, 36540.5833333333, + 36540.5833333333, 36540.625, + 36540.625, 36540.6666666667, + 36540.6666666667, 36540.7083333333, + 36540.7083333333, 36540.75, + 36540.75, 36540.7916666667, + 36540.7916666667, 36540.8333333333, + 36540.8333333333, 36540.875, + 36540.875, 36540.9166666667, + 36540.9166666667, 36540.9583333333, + 36540.9583333333, 36541, + 36541, 36541.0416666667, + 36541.0416666667, 36541.0833333333, + 36541.0833333333, 36541.125, + 36541.125, 36541.1666666667, + 36541.1666666667, 36541.2083333333, + 36541.2083333333, 36541.25, + 36541.25, 36541.2916666667, + 36541.2916666667, 36541.3333333333, + 36541.3333333333, 36541.375, + 36541.375, 36541.4166666667, + 36541.4166666667, 36541.4583333333, + 36541.4583333333, 36541.5, + 36541.5, 36541.5416666667, + 36541.5416666667, 36541.5833333333, + 36541.5833333333, 36541.625, + 36541.625, 36541.6666666667, + 36541.6666666667, 36541.7083333333, + 36541.7083333333, 36541.75, + 36541.75, 36541.7916666667, + 36541.7916666667, 36541.8333333333, + 36541.8333333333, 36541.875, + 36541.875, 36541.9166666667, + 36541.9166666667, 36541.9583333333, + 36541.9583333333, 36542, + 36542, 36542.0416666667, + 36542.0416666667, 36542.0833333333, + 36542.0833333333, 36542.125, + 36542.125, 36542.1666666667, + 36542.1666666667, 36542.2083333333, + 36542.2083333333, 36542.25, + 36542.25, 36542.2916666667, + 36542.2916666667, 36542.3333333333, + 36542.3333333333, 36542.375, + 36542.375, 36542.4166666667, + 36542.4166666667, 36542.4583333333, + 36542.4583333333, 36542.5, + 36542.5, 36542.5416666667, + 36542.5416666667, 36542.5833333333, + 36542.5833333333, 36542.625, + 36542.625, 36542.6666666667, + 36542.6666666667, 36542.7083333333, + 36542.7083333333, 36542.75, + 36542.75, 36542.7916666667, + 36542.7916666667, 36542.8333333333, + 36542.8333333333, 36542.875, + 36542.875, 36542.9166666667, + 36542.9166666667, 36542.9583333333, + 36542.9583333333, 36543, + 36543, 36543.0416666667, + 36543.0416666667, 36543.0833333333, + 36543.0833333333, 36543.125, + 36543.125, 36543.1666666667, + 36543.1666666667, 36543.2083333333, + 36543.2083333333, 36543.25, + 36543.25, 36543.2916666667, + 36543.2916666667, 36543.3333333333, + 36543.3333333333, 36543.375, + 36543.375, 36543.4166666667, + 36543.4166666667, 36543.4583333333, + 36543.4583333333, 36543.5, + 36543.5, 36543.5416666667, + 36543.5416666667, 36543.5833333333, + 36543.5833333333, 36543.625, + 36543.625, 36543.6666666667, + 36543.6666666667, 36543.7083333333, + 36543.7083333333, 36543.75, + 36543.75, 36543.7916666667, + 36543.7916666667, 36543.8333333333, + 36543.8333333333, 36543.875, + 36543.875, 36543.9166666667, + 36543.9166666667, 36543.9583333333, + 36543.9583333333, 36544, + 36544, 36544.0416666667, + 36544.0416666667, 36544.0833333333, + 36544.0833333333, 36544.125, + 36544.125, 36544.1666666667, + 36544.1666666667, 36544.2083333333, + 36544.2083333333, 36544.25, + 36544.25, 36544.2916666667, + 36544.2916666667, 36544.3333333333, + 36544.3333333333, 36544.375, + 36544.375, 36544.4166666667, + 36544.4166666667, 36544.4583333333, + 36544.4583333333, 36544.5, + 36544.5, 36544.5416666667, + 36544.5416666667, 36544.5833333333, + 36544.5833333333, 36544.625, + 36544.625, 36544.6666666667, + 36544.6666666667, 36544.7083333333, + 36544.7083333333, 36544.75, + 36544.75, 36544.7916666667, + 36544.7916666667, 36544.8333333333, + 36544.8333333333, 36544.875, + 36544.875, 36544.9166666667, + 36544.9166666667, 36544.9583333333, + 36544.9583333333, 36545, + 36545, 36545.0416666667, + 36545.0416666667, 36545.0833333333, + 36545.0833333333, 36545.125, + 36545.125, 36545.1666666667, + 36545.1666666667, 36545.2083333333, + 36545.2083333333, 36545.25, + 36545.25, 36545.2916666667, + 36545.2916666667, 36545.3333333333, + 36545.3333333333, 36545.375, + 36545.375, 36545.4166666667, + 36545.4166666667, 36545.4583333333, + 36545.4583333333, 36545.5, + 36545.5, 36545.5416666667, + 36545.5416666667, 36545.5833333333, + 36545.5833333333, 36545.625, + 36545.625, 36545.6666666667, + 36545.6666666667, 36545.7083333333, + 36545.7083333333, 36545.75, + 36545.75, 36545.7916666667, + 36545.7916666667, 36545.8333333333, + 36545.8333333333, 36545.875, + 36545.875, 36545.9166666667, + 36545.9166666667, 36545.9583333333, + 36545.9583333333, 36546, + 36546, 36546.0416666667, + 36546.0416666667, 36546.0833333333, + 36546.0833333333, 36546.125, + 36546.125, 36546.1666666667, + 36546.1666666667, 36546.2083333333, + 36546.2083333333, 36546.25, + 36546.25, 36546.2916666667, + 36546.2916666667, 36546.3333333333, + 36546.3333333333, 36546.375, + 36546.375, 36546.4166666667, + 36546.4166666667, 36546.4583333333, + 36546.4583333333, 36546.5, + 36546.5, 36546.5416666667, + 36546.5416666667, 36546.5833333333, + 36546.5833333333, 36546.625, + 36546.625, 36546.6666666667, + 36546.6666666667, 36546.7083333333, + 36546.7083333333, 36546.75, + 36546.75, 36546.7916666667, + 36546.7916666667, 36546.8333333333, + 36546.8333333333, 36546.875, + 36546.875, 36546.9166666667, + 36546.9166666667, 36546.9583333333, + 36546.9583333333, 36547, + 36547, 36547.0416666667, + 36547.0416666667, 36547.0833333333, + 36547.0833333333, 36547.125, + 36547.125, 36547.1666666667, + 36547.1666666667, 36547.2083333333, + 36547.2083333333, 36547.25, + 36547.25, 36547.2916666667, + 36547.2916666667, 36547.3333333333, + 36547.3333333333, 36547.375, + 36547.375, 36547.4166666667, + 36547.4166666667, 36547.4583333333, + 36547.4583333333, 36547.5, + 36547.5, 36547.5416666667, + 36547.5416666667, 36547.5833333333, + 36547.5833333333, 36547.625, + 36547.625, 36547.6666666667, + 36547.6666666667, 36547.7083333333, + 36547.7083333333, 36547.75, + 36547.75, 36547.7916666667, + 36547.7916666667, 36547.8333333333, + 36547.8333333333, 36547.875, + 36547.875, 36547.9166666667, + 36547.9166666667, 36547.9583333333, + 36547.9583333333, 36548, + 36548, 36548.0416666667, + 36548.0416666667, 36548.0833333333, + 36548.0833333333, 36548.125, + 36548.125, 36548.1666666667, + 36548.1666666667, 36548.2083333333, + 36548.2083333333, 36548.25, + 36548.25, 36548.2916666667, + 36548.2916666667, 36548.3333333333, + 36548.3333333333, 36548.375, + 36548.375, 36548.4166666667, + 36548.4166666667, 36548.4583333333, + 36548.4583333333, 36548.5, + 36548.5, 36548.5416666667, + 36548.5416666667, 36548.5833333333, + 36548.5833333333, 36548.625, + 36548.625, 36548.6666666667, + 36548.6666666667, 36548.7083333333, + 36548.7083333333, 36548.75, + 36548.75, 36548.7916666667, + 36548.7916666667, 36548.8333333333, + 36548.8333333333, 36548.875, + 36548.875, 36548.9166666667, + 36548.9166666667, 36548.9583333333, + 36548.9583333333, 36549, + 36549, 36549.0416666667, + 36549.0416666667, 36549.0833333333, + 36549.0833333333, 36549.125, + 36549.125, 36549.1666666667, + 36549.1666666667, 36549.2083333333, + 36549.2083333333, 36549.25, + 36549.25, 36549.2916666667, + 36549.2916666667, 36549.3333333333, + 36549.3333333333, 36549.375, + 36549.375, 36549.4166666667, + 36549.4166666667, 36549.4583333333, + 36549.4583333333, 36549.5, + 36549.5, 36549.5416666667, + 36549.5416666667, 36549.5833333333, + 36549.5833333333, 36549.625, + 36549.625, 36549.6666666667, + 36549.6666666667, 36549.7083333333, + 36549.7083333333, 36549.75, + 36549.75, 36549.7916666667, + 36549.7916666667, 36549.8333333333, + 36549.8333333333, 36549.875, + 36549.875, 36549.9166666667, + 36549.9166666667, 36549.9583333333, + 36549.9583333333, 36550, + 36550, 36550.0416666667, + 36550.0416666667, 36550.0833333333, + 36550.0833333333, 36550.125, + 36550.125, 36550.1666666667, + 36550.1666666667, 36550.2083333333, + 36550.2083333333, 36550.25, + 36550.25, 36550.2916666667, + 36550.2916666667, 36550.3333333333, + 36550.3333333333, 36550.375, + 36550.375, 36550.4166666667, + 36550.4166666667, 36550.4583333333, + 36550.4583333333, 36550.5, + 36550.5, 36550.5416666667, + 36550.5416666667, 36550.5833333333, + 36550.5833333333, 36550.625, + 36550.625, 36550.6666666667, + 36550.6666666667, 36550.7083333333, + 36550.7083333333, 36550.75, + 36550.75, 36550.7916666667, + 36550.7916666667, 36550.8333333333, + 36550.8333333333, 36550.875, + 36550.875, 36550.9166666667, + 36550.9166666667, 36550.9583333333, + 36550.9583333333, 36551, + 36551, 36551.0416666667, + 36551.0416666667, 36551.0833333333, + 36551.0833333333, 36551.125, + 36551.125, 36551.1666666667, + 36551.1666666667, 36551.2083333333, + 36551.2083333333, 36551.25, + 36551.25, 36551.2916666667, + 36551.2916666667, 36551.3333333333, + 36551.3333333333, 36551.375, + 36551.375, 36551.4166666667, + 36551.4166666667, 36551.4583333333, + 36551.4583333333, 36551.5, + 36551.5, 36551.5416666667, + 36551.5416666667, 36551.5833333333, + 36551.5833333333, 36551.625, + 36551.625, 36551.6666666667, + 36551.6666666667, 36551.7083333333, + 36551.7083333333, 36551.75, + 36551.75, 36551.7916666667, + 36551.7916666667, 36551.8333333333, + 36551.8333333333, 36551.875, + 36551.875, 36551.9166666667, + 36551.9166666667, 36551.9583333333, + 36551.9583333333, 36552, + 36552, 36552.0416666667, + 36552.0416666667, 36552.0833333333, + 36552.0833333333, 36552.125, + 36552.125, 36552.1666666667, + 36552.1666666667, 36552.2083333333, + 36552.2083333333, 36552.25, + 36552.25, 36552.2916666667, + 36552.2916666667, 36552.3333333333, + 36552.3333333333, 36552.375, + 36552.375, 36552.4166666667, + 36552.4166666667, 36552.4583333333, + 36552.4583333333, 36552.5, + 36552.5, 36552.5416666667, + 36552.5416666667, 36552.5833333333, + 36552.5833333333, 36552.625, + 36552.625, 36552.6666666667, + 36552.6666666667, 36552.7083333333, + 36552.7083333333, 36552.75, + 36552.75, 36552.7916666667, + 36552.7916666667, 36552.8333333333, + 36552.8333333333, 36552.875, + 36552.875, 36552.9166666667, + 36552.9166666667, 36552.9583333333, + 36552.9583333333, 36553, + 36553, 36553.0416666667, + 36553.0416666667, 36553.0833333333, + 36553.0833333333, 36553.125, + 36553.125, 36553.1666666667, + 36553.1666666667, 36553.2083333333, + 36553.2083333333, 36553.25, + 36553.25, 36553.2916666667, + 36553.2916666667, 36553.3333333333, + 36553.3333333333, 36553.375, + 36553.375, 36553.4166666667, + 36553.4166666667, 36553.4583333333, + 36553.4583333333, 36553.5, + 36553.5, 36553.5416666667, + 36553.5416666667, 36553.5833333333, + 36553.5833333333, 36553.625, + 36553.625, 36553.6666666667, + 36553.6666666667, 36553.7083333333, + 36553.7083333333, 36553.75, + 36553.75, 36553.7916666667, + 36553.7916666667, 36553.8333333333, + 36553.8333333333, 36553.875, + 36553.875, 36553.9166666667, + 36553.9166666667, 36553.9583333333, + 36553.9583333333, 36554, + 36554, 36554.0416666667, + 36554.0416666667, 36554.0833333333, + 36554.0833333333, 36554.125, + 36554.125, 36554.1666666667, + 36554.1666666667, 36554.2083333333, + 36554.2083333333, 36554.25, + 36554.25, 36554.2916666667, + 36554.2916666667, 36554.3333333333, + 36554.3333333333, 36554.375, + 36554.375, 36554.4166666667, + 36554.4166666667, 36554.4583333333, + 36554.4583333333, 36554.5, + 36554.5, 36554.5416666667, + 36554.5416666667, 36554.5833333333, + 36554.5833333333, 36554.625, + 36554.625, 36554.6666666667, + 36554.6666666667, 36554.7083333333, + 36554.7083333333, 36554.75, + 36554.75, 36554.7916666667, + 36554.7916666667, 36554.8333333333, + 36554.8333333333, 36554.875, + 36554.875, 36554.9166666667, + 36554.9166666667, 36554.9583333333, + 36554.9583333333, 36555 ; +} diff --git a/splitnc/test/data/aiihca.pi-010101_3hr.cdl b/splitnc/test/data/aiihca.pi-010101_3hr.cdl new file mode 100644 index 0000000..f722c50 --- /dev/null +++ b/splitnc/test/data/aiihca.pi-010101_3hr.cdl @@ -0,0 +1,476 @@ +netcdf aiihca.pi-010101_3hr { +dimensions: + time = UNLIMITED ; // (248 currently) + lat = 145 ; + lon = 192 ; + bnds = 2 ; + time_0 = 248 ; + lon_u = 192 ; + lat_v = 144 ; +variables: + float fld_s00i409(time, lat, lon) ; + fld_s00i409:_FillValue = 1.e+20f ; + fld_s00i409:standard_name = "surface_air_pressure" ; + fld_s00i409:long_name = "SURFACE PRESSURE AFTER TIMESTEP" ; + fld_s00i409:units = "Pa" ; + fld_s00i409:um_stash_source = "m01s00i409" ; + fld_s00i409:missing_value = 1.e+20f ; + fld_s00i409:grid_mapping = "latitude_longitude" ; + int latitude_longitude ; + latitude_longitude:grid_mapping_name = "latitude_longitude" ; + latitude_longitude:longitude_of_prime_meridian = 0. ; + latitude_longitude:earth_radius = 6371229. ; + double time(time) ; + time:axis = "T" ; + time:units = "days since 0001-01-01 00:00" ; + time:standard_name = "time" ; + time:calendar = "proleptic_gregorian" ; + double lat(lat) ; + lat:axis = "Y" ; + lat:bounds = "lat_bnds" ; + lat:units = "degrees_north" ; + lat:standard_name = "latitude" ; + double lat_bnds(lat, bnds) ; + double lon(lon) ; + lon:axis = "X" ; + lon:bounds = "lon_bnds" ; + lon:units = "degrees_east" ; + lon:standard_name = "longitude" ; + double lon_bnds(lon, bnds) ; + float fld_s01i235(time_0, lat, lon) ; + fld_s01i235:_FillValue = 1.e+20f ; + fld_s01i235:standard_name = "surface_downwelling_shortwave_flux_in_air" ; + fld_s01i235:long_name = "TOTAL DOWNWARD SURFACE SW FLUX" ; + fld_s01i235:units = "W m-2" ; + fld_s01i235:um_stash_source = "m01s01i235" ; + fld_s01i235:missing_value = 1.e+20f ; + fld_s01i235:cell_methods = "time_0: mean" ; + fld_s01i235:grid_mapping = "latitude_longitude" ; + double time_0(time_0) ; + time_0:axis = "T" ; + time_0:bounds = "time_0_bnds" ; + time_0:units = "days since 0001-01-01 00:00" ; + time_0:standard_name = "time" ; + time_0:calendar = "proleptic_gregorian" ; + double time_0_bnds(time_0, bnds) ; + float fld_s02i207(time_0, lat, lon) ; + fld_s02i207:_FillValue = 1.e+20f ; + fld_s02i207:standard_name = "surface_downwelling_longwave_flux_in_air" ; + fld_s02i207:long_name = "DOWNWARD LW RAD FLUX: SURFACE" ; + fld_s02i207:units = "W m-2" ; + fld_s02i207:um_stash_source = "m01s02i207" ; + fld_s02i207:missing_value = 1.e+20f ; + fld_s02i207:cell_methods = "time_0: mean" ; + fld_s02i207:grid_mapping = "latitude_longitude" ; + float fld_s03i209(time, lat, lon_u) ; + fld_s03i209:_FillValue = 1.e+20f ; + fld_s03i209:standard_name = "eastward_wind" ; + fld_s03i209:long_name = "10 METRE WIND U-COMP" ; + fld_s03i209:units = "m s-1" ; + fld_s03i209:um_stash_source = "m01s03i209" ; + fld_s03i209:missing_value = 1.e+20f ; + fld_s03i209:grid_mapping = "latitude_longitude" ; + fld_s03i209:coordinates = "height" ; + double lon_u(lon_u) ; + lon_u:axis = "X" ; + lon_u:bounds = "lon_u_bnds" ; + lon_u:units = "degrees_east" ; + lon_u:standard_name = "longitude" ; + double lon_u_bnds(lon_u, bnds) ; + double height ; + height:units = "m" ; + height:standard_name = "height" ; + height:positive = "up" ; + float fld_s03i210(time, lat_v, lon) ; + fld_s03i210:_FillValue = 1.e+20f ; + fld_s03i210:standard_name = "northward_wind" ; + fld_s03i210:long_name = "10 METRE WIND V-COMP" ; + fld_s03i210:units = "m s-1" ; + fld_s03i210:um_stash_source = "m01s03i210" ; + fld_s03i210:missing_value = 1.e+20f ; + fld_s03i210:grid_mapping = "latitude_longitude" ; + fld_s03i210:coordinates = "height" ; + double lat_v(lat_v) ; + lat_v:axis = "Y" ; + lat_v:bounds = "lat_v_bnds" ; + lat_v:units = "degrees_north" ; + lat_v:standard_name = "latitude" ; + double lat_v_bnds(lat_v, bnds) ; + float fld_s03i236(time, lat, lon) ; + fld_s03i236:_FillValue = 1.e+20f ; + fld_s03i236:standard_name = "air_temperature" ; + fld_s03i236:long_name = "TEMPERATURE AT 1.5M" ; + fld_s03i236:units = "K" ; + fld_s03i236:um_stash_source = "m01s03i236" ; + fld_s03i236:missing_value = 1.e+20f ; + fld_s03i236:grid_mapping = "latitude_longitude" ; + fld_s03i236:coordinates = "height_0" ; + double height_0 ; + height_0:units = "m" ; + height_0:standard_name = "height" ; + height_0:positive = "up" ; + float fld_s03i237(time, lat, lon) ; + fld_s03i237:_FillValue = 1.e+20f ; + fld_s03i237:standard_name = "specific_humidity" ; + fld_s03i237:long_name = "SPECIFIC HUMIDITY AT 1.5M" ; + fld_s03i237:units = "1" ; + fld_s03i237:um_stash_source = "m01s03i237" ; + fld_s03i237:missing_value = 1.e+20f ; + fld_s03i237:grid_mapping = "latitude_longitude" ; + fld_s03i237:coordinates = "height_0" ; + float fld_s05i215(time_0, lat, lon) ; + fld_s05i215:_FillValue = 1.e+20f ; + fld_s05i215:standard_name = "snowfall_flux" ; + fld_s05i215:long_name = "TOTAL SNOWFALL RATE: LS+CONV KG/M2/S" ; + fld_s05i215:units = "kg m-2 s-1" ; + fld_s05i215:um_stash_source = "m01s05i215" ; + fld_s05i215:missing_value = 1.e+20f ; + fld_s05i215:cell_methods = "time_0: mean" ; + fld_s05i215:grid_mapping = "latitude_longitude" ; + float fld_s05i216(time_0, lat, lon) ; + fld_s05i216:_FillValue = 1.e+20f ; + fld_s05i216:standard_name = "precipitation_flux" ; + fld_s05i216:long_name = "TOTAL PRECIPITATION RATE KG/M2/S" ; + fld_s05i216:units = "kg m-2 s-1" ; + fld_s05i216:um_stash_source = "m01s05i216" ; + fld_s05i216:missing_value = 1.e+20f ; + fld_s05i216:cell_methods = "time_0: mean" ; + fld_s05i216:grid_mapping = "latitude_longitude" ; + +// global attributes: + :history = "File /scratch/p66/jxs599/access-esm/archive/Ndep2-PI-CNP-concentrations-Ndep2-PI-CNP-concentrations-e523e199/output000/atmosphere/aiihca.pia1jan converted with /g/data/vk83/apps/base_conda/envs/payu-1.2.1/lib/python3.10/site-packages/um2nc/um2netcdf.py 1.1.0 at 2026-04-07 15:58:09" ; + :Conventions = "CF-1.6" ; + :source = "Data from Met Office Unified Model" ; + :um_version = "7.3" ; +data: + + time = 36524.125, 36524.25, 36524.375, 36524.5, 36524.625, 36524.75, + 36524.875, 36525, 36525.125, 36525.25, 36525.375, 36525.5, 36525.625, + 36525.75, 36525.875, 36526, 36526.125, 36526.25, 36526.375, 36526.5, + 36526.625, 36526.75, 36526.875, 36527, 36527.125, 36527.25, 36527.375, + 36527.5, 36527.625, 36527.75, 36527.875, 36528, 36528.125, 36528.25, + 36528.375, 36528.5, 36528.625, 36528.75, 36528.875, 36529, 36529.125, + 36529.25, 36529.375, 36529.5, 36529.625, 36529.75, 36529.875, 36530, + 36530.125, 36530.25, 36530.375, 36530.5, 36530.625, 36530.75, 36530.875, + 36531, 36531.125, 36531.25, 36531.375, 36531.5, 36531.625, 36531.75, + 36531.875, 36532, 36532.125, 36532.25, 36532.375, 36532.5, 36532.625, + 36532.75, 36532.875, 36533, 36533.125, 36533.25, 36533.375, 36533.5, + 36533.625, 36533.75, 36533.875, 36534, 36534.125, 36534.25, 36534.375, + 36534.5, 36534.625, 36534.75, 36534.875, 36535, 36535.125, 36535.25, + 36535.375, 36535.5, 36535.625, 36535.75, 36535.875, 36536, 36536.125, + 36536.25, 36536.375, 36536.5, 36536.625, 36536.75, 36536.875, 36537, + 36537.125, 36537.25, 36537.375, 36537.5, 36537.625, 36537.75, 36537.875, + 36538, 36538.125, 36538.25, 36538.375, 36538.5, 36538.625, 36538.75, + 36538.875, 36539, 36539.125, 36539.25, 36539.375, 36539.5, 36539.625, + 36539.75, 36539.875, 36540, 36540.125, 36540.25, 36540.375, 36540.5, + 36540.625, 36540.75, 36540.875, 36541, 36541.125, 36541.25, 36541.375, + 36541.5, 36541.625, 36541.75, 36541.875, 36542, 36542.125, 36542.25, + 36542.375, 36542.5, 36542.625, 36542.75, 36542.875, 36543, 36543.125, + 36543.25, 36543.375, 36543.5, 36543.625, 36543.75, 36543.875, 36544, + 36544.125, 36544.25, 36544.375, 36544.5, 36544.625, 36544.75, 36544.875, + 36545, 36545.125, 36545.25, 36545.375, 36545.5, 36545.625, 36545.75, + 36545.875, 36546, 36546.125, 36546.25, 36546.375, 36546.5, 36546.625, + 36546.75, 36546.875, 36547, 36547.125, 36547.25, 36547.375, 36547.5, + 36547.625, 36547.75, 36547.875, 36548, 36548.125, 36548.25, 36548.375, + 36548.5, 36548.625, 36548.75, 36548.875, 36549, 36549.125, 36549.25, + 36549.375, 36549.5, 36549.625, 36549.75, 36549.875, 36550, 36550.125, + 36550.25, 36550.375, 36550.5, 36550.625, 36550.75, 36550.875, 36551, + 36551.125, 36551.25, 36551.375, 36551.5, 36551.625, 36551.75, 36551.875, + 36552, 36552.125, 36552.25, 36552.375, 36552.5, 36552.625, 36552.75, + 36552.875, 36553, 36553.125, 36553.25, 36553.375, 36553.5, 36553.625, + 36553.75, 36553.875, 36554, 36554.125, 36554.25, 36554.375, 36554.5, + 36554.625, 36554.75, 36554.875, 36555 ; + + time_0 = 36524.0625, 36524.1875, 36524.3125, 36524.4375, 36524.5625, + 36524.6875, 36524.8125, 36524.9375, 36525.0625, 36525.1875, 36525.3125, + 36525.4375, 36525.5625, 36525.6875, 36525.8125, 36525.9375, 36526.0625, + 36526.1875, 36526.3125, 36526.4375, 36526.5625, 36526.6875, 36526.8125, + 36526.9375, 36527.0625, 36527.1875, 36527.3125, 36527.4375, 36527.5625, + 36527.6875, 36527.8125, 36527.9375, 36528.0625, 36528.1875, 36528.3125, + 36528.4375, 36528.5625, 36528.6875, 36528.8125, 36528.9375, 36529.0625, + 36529.1875, 36529.3125, 36529.4375, 36529.5625, 36529.6875, 36529.8125, + 36529.9375, 36530.0625, 36530.1875, 36530.3125, 36530.4375, 36530.5625, + 36530.6875, 36530.8125, 36530.9375, 36531.0625, 36531.1875, 36531.3125, + 36531.4375, 36531.5625, 36531.6875, 36531.8125, 36531.9375, 36532.0625, + 36532.1875, 36532.3125, 36532.4375, 36532.5625, 36532.6875, 36532.8125, + 36532.9375, 36533.0625, 36533.1875, 36533.3125, 36533.4375, 36533.5625, + 36533.6875, 36533.8125, 36533.9375, 36534.0625, 36534.1875, 36534.3125, + 36534.4375, 36534.5625, 36534.6875, 36534.8125, 36534.9375, 36535.0625, + 36535.1875, 36535.3125, 36535.4375, 36535.5625, 36535.6875, 36535.8125, + 36535.9375, 36536.0625, 36536.1875, 36536.3125, 36536.4375, 36536.5625, + 36536.6875, 36536.8125, 36536.9375, 36537.0625, 36537.1875, 36537.3125, + 36537.4375, 36537.5625, 36537.6875, 36537.8125, 36537.9375, 36538.0625, + 36538.1875, 36538.3125, 36538.4375, 36538.5625, 36538.6875, 36538.8125, + 36538.9375, 36539.0625, 36539.1875, 36539.3125, 36539.4375, 36539.5625, + 36539.6875, 36539.8125, 36539.9375, 36540.0625, 36540.1875, 36540.3125, + 36540.4375, 36540.5625, 36540.6875, 36540.8125, 36540.9375, 36541.0625, + 36541.1875, 36541.3125, 36541.4375, 36541.5625, 36541.6875, 36541.8125, + 36541.9375, 36542.0625, 36542.1875, 36542.3125, 36542.4375, 36542.5625, + 36542.6875, 36542.8125, 36542.9375, 36543.0625, 36543.1875, 36543.3125, + 36543.4375, 36543.5625, 36543.6875, 36543.8125, 36543.9375, 36544.0625, + 36544.1875, 36544.3125, 36544.4375, 36544.5625, 36544.6875, 36544.8125, + 36544.9375, 36545.0625, 36545.1875, 36545.3125, 36545.4375, 36545.5625, + 36545.6875, 36545.8125, 36545.9375, 36546.0625, 36546.1875, 36546.3125, + 36546.4375, 36546.5625, 36546.6875, 36546.8125, 36546.9375, 36547.0625, + 36547.1875, 36547.3125, 36547.4375, 36547.5625, 36547.6875, 36547.8125, + 36547.9375, 36548.0625, 36548.1875, 36548.3125, 36548.4375, 36548.5625, + 36548.6875, 36548.8125, 36548.9375, 36549.0625, 36549.1875, 36549.3125, + 36549.4375, 36549.5625, 36549.6875, 36549.8125, 36549.9375, 36550.0625, + 36550.1875, 36550.3125, 36550.4375, 36550.5625, 36550.6875, 36550.8125, + 36550.9375, 36551.0625, 36551.1875, 36551.3125, 36551.4375, 36551.5625, + 36551.6875, 36551.8125, 36551.9375, 36552.0625, 36552.1875, 36552.3125, + 36552.4375, 36552.5625, 36552.6875, 36552.8125, 36552.9375, 36553.0625, + 36553.1875, 36553.3125, 36553.4375, 36553.5625, 36553.6875, 36553.8125, + 36553.9375, 36554.0625, 36554.1875, 36554.3125, 36554.4375, 36554.5625, + 36554.6875, 36554.8125, 36554.9375 ; + + time_0_bnds = + 36524, 36524.125, + 36524.125, 36524.25, + 36524.25, 36524.375, + 36524.375, 36524.5, + 36524.5, 36524.625, + 36524.625, 36524.75, + 36524.75, 36524.875, + 36524.875, 36525, + 36525, 36525.125, + 36525.125, 36525.25, + 36525.25, 36525.375, + 36525.375, 36525.5, + 36525.5, 36525.625, + 36525.625, 36525.75, + 36525.75, 36525.875, + 36525.875, 36526, + 36526, 36526.125, + 36526.125, 36526.25, + 36526.25, 36526.375, + 36526.375, 36526.5, + 36526.5, 36526.625, + 36526.625, 36526.75, + 36526.75, 36526.875, + 36526.875, 36527, + 36527, 36527.125, + 36527.125, 36527.25, + 36527.25, 36527.375, + 36527.375, 36527.5, + 36527.5, 36527.625, + 36527.625, 36527.75, + 36527.75, 36527.875, + 36527.875, 36528, + 36528, 36528.125, + 36528.125, 36528.25, + 36528.25, 36528.375, + 36528.375, 36528.5, + 36528.5, 36528.625, + 36528.625, 36528.75, + 36528.75, 36528.875, + 36528.875, 36529, + 36529, 36529.125, + 36529.125, 36529.25, + 36529.25, 36529.375, + 36529.375, 36529.5, + 36529.5, 36529.625, + 36529.625, 36529.75, + 36529.75, 36529.875, + 36529.875, 36530, + 36530, 36530.125, + 36530.125, 36530.25, + 36530.25, 36530.375, + 36530.375, 36530.5, + 36530.5, 36530.625, + 36530.625, 36530.75, + 36530.75, 36530.875, + 36530.875, 36531, + 36531, 36531.125, + 36531.125, 36531.25, + 36531.25, 36531.375, + 36531.375, 36531.5, + 36531.5, 36531.625, + 36531.625, 36531.75, + 36531.75, 36531.875, + 36531.875, 36532, + 36532, 36532.125, + 36532.125, 36532.25, + 36532.25, 36532.375, + 36532.375, 36532.5, + 36532.5, 36532.625, + 36532.625, 36532.75, + 36532.75, 36532.875, + 36532.875, 36533, + 36533, 36533.125, + 36533.125, 36533.25, + 36533.25, 36533.375, + 36533.375, 36533.5, + 36533.5, 36533.625, + 36533.625, 36533.75, + 36533.75, 36533.875, + 36533.875, 36534, + 36534, 36534.125, + 36534.125, 36534.25, + 36534.25, 36534.375, + 36534.375, 36534.5, + 36534.5, 36534.625, + 36534.625, 36534.75, + 36534.75, 36534.875, + 36534.875, 36535, + 36535, 36535.125, + 36535.125, 36535.25, + 36535.25, 36535.375, + 36535.375, 36535.5, + 36535.5, 36535.625, + 36535.625, 36535.75, + 36535.75, 36535.875, + 36535.875, 36536, + 36536, 36536.125, + 36536.125, 36536.25, + 36536.25, 36536.375, + 36536.375, 36536.5, + 36536.5, 36536.625, + 36536.625, 36536.75, + 36536.75, 36536.875, + 36536.875, 36537, + 36537, 36537.125, + 36537.125, 36537.25, + 36537.25, 36537.375, + 36537.375, 36537.5, + 36537.5, 36537.625, + 36537.625, 36537.75, + 36537.75, 36537.875, + 36537.875, 36538, + 36538, 36538.125, + 36538.125, 36538.25, + 36538.25, 36538.375, + 36538.375, 36538.5, + 36538.5, 36538.625, + 36538.625, 36538.75, + 36538.75, 36538.875, + 36538.875, 36539, + 36539, 36539.125, + 36539.125, 36539.25, + 36539.25, 36539.375, + 36539.375, 36539.5, + 36539.5, 36539.625, + 36539.625, 36539.75, + 36539.75, 36539.875, + 36539.875, 36540, + 36540, 36540.125, + 36540.125, 36540.25, + 36540.25, 36540.375, + 36540.375, 36540.5, + 36540.5, 36540.625, + 36540.625, 36540.75, + 36540.75, 36540.875, + 36540.875, 36541, + 36541, 36541.125, + 36541.125, 36541.25, + 36541.25, 36541.375, + 36541.375, 36541.5, + 36541.5, 36541.625, + 36541.625, 36541.75, + 36541.75, 36541.875, + 36541.875, 36542, + 36542, 36542.125, + 36542.125, 36542.25, + 36542.25, 36542.375, + 36542.375, 36542.5, + 36542.5, 36542.625, + 36542.625, 36542.75, + 36542.75, 36542.875, + 36542.875, 36543, + 36543, 36543.125, + 36543.125, 36543.25, + 36543.25, 36543.375, + 36543.375, 36543.5, + 36543.5, 36543.625, + 36543.625, 36543.75, + 36543.75, 36543.875, + 36543.875, 36544, + 36544, 36544.125, + 36544.125, 36544.25, + 36544.25, 36544.375, + 36544.375, 36544.5, + 36544.5, 36544.625, + 36544.625, 36544.75, + 36544.75, 36544.875, + 36544.875, 36545, + 36545, 36545.125, + 36545.125, 36545.25, + 36545.25, 36545.375, + 36545.375, 36545.5, + 36545.5, 36545.625, + 36545.625, 36545.75, + 36545.75, 36545.875, + 36545.875, 36546, + 36546, 36546.125, + 36546.125, 36546.25, + 36546.25, 36546.375, + 36546.375, 36546.5, + 36546.5, 36546.625, + 36546.625, 36546.75, + 36546.75, 36546.875, + 36546.875, 36547, + 36547, 36547.125, + 36547.125, 36547.25, + 36547.25, 36547.375, + 36547.375, 36547.5, + 36547.5, 36547.625, + 36547.625, 36547.75, + 36547.75, 36547.875, + 36547.875, 36548, + 36548, 36548.125, + 36548.125, 36548.25, + 36548.25, 36548.375, + 36548.375, 36548.5, + 36548.5, 36548.625, + 36548.625, 36548.75, + 36548.75, 36548.875, + 36548.875, 36549, + 36549, 36549.125, + 36549.125, 36549.25, + 36549.25, 36549.375, + 36549.375, 36549.5, + 36549.5, 36549.625, + 36549.625, 36549.75, + 36549.75, 36549.875, + 36549.875, 36550, + 36550, 36550.125, + 36550.125, 36550.25, + 36550.25, 36550.375, + 36550.375, 36550.5, + 36550.5, 36550.625, + 36550.625, 36550.75, + 36550.75, 36550.875, + 36550.875, 36551, + 36551, 36551.125, + 36551.125, 36551.25, + 36551.25, 36551.375, + 36551.375, 36551.5, + 36551.5, 36551.625, + 36551.625, 36551.75, + 36551.75, 36551.875, + 36551.875, 36552, + 36552, 36552.125, + 36552.125, 36552.25, + 36552.25, 36552.375, + 36552.375, 36552.5, + 36552.5, 36552.625, + 36552.625, 36552.75, + 36552.75, 36552.875, + 36552.875, 36553, + 36553, 36553.125, + 36553.125, 36553.25, + 36553.25, 36553.375, + 36553.375, 36553.5, + 36553.5, 36553.625, + 36553.625, 36553.75, + 36553.75, 36553.875, + 36553.875, 36554, + 36554, 36554.125, + 36554.125, 36554.25, + 36554.25, 36554.375, + 36554.375, 36554.5, + 36554.5, 36554.625, + 36554.625, 36554.75, + 36554.75, 36554.875, + 36554.875, 36555 ; +} diff --git a/splitnc/test/data/aiihca.pj-010101_6hr.cdl b/splitnc/test/data/aiihca.pj-010101_6hr.cdl new file mode 100644 index 0000000..6472d97 --- /dev/null +++ b/splitnc/test/data/aiihca.pj-010101_6hr.cdl @@ -0,0 +1,274 @@ +netcdf aiihca.pj-010101_6hr { +dimensions: + time = UNLIMITED ; // (124 currently) + lat = 145 ; + lon = 192 ; + bnds = 2 ; + time_0 = 124 ; + pressure = 3 ; + lat_v = 144 ; + lon_u = 192 ; +variables: + float fld_s03i245(time, lat, lon) ; + fld_s03i245:_FillValue = 1.e+20f ; + fld_s03i245:standard_name = "relative_humidity" ; + fld_s03i245:long_name = "RELATIVE HUMIDITY AT 1.5M" ; + fld_s03i245:units = "%" ; + fld_s03i245:um_stash_source = "m01s03i245" ; + fld_s03i245:missing_value = 1.e+20f ; + fld_s03i245:cell_methods = "time: mean" ; + fld_s03i245:grid_mapping = "latitude_longitude" ; + fld_s03i245:coordinates = "height" ; + int latitude_longitude ; + latitude_longitude:grid_mapping_name = "latitude_longitude" ; + latitude_longitude:longitude_of_prime_meridian = 0. ; + latitude_longitude:earth_radius = 6371229. ; + double time(time) ; + time:axis = "T" ; + time:bounds = "time_bnds" ; + time:units = "days since 0001-01-01 00:00" ; + time:standard_name = "time" ; + time:calendar = "proleptic_gregorian" ; + double time_bnds(time, bnds) ; + double lat(lat) ; + lat:axis = "Y" ; + lat:bounds = "lat_bnds" ; + lat:units = "degrees_north" ; + lat:standard_name = "latitude" ; + double lat_bnds(lat, bnds) ; + double lon(lon) ; + lon:axis = "X" ; + lon:bounds = "lon_bnds" ; + lon:units = "degrees_east" ; + lon:standard_name = "longitude" ; + double lon_bnds(lon, bnds) ; + double height ; + height:units = "m" ; + height:standard_name = "height" ; + height:positive = "up" ; + float fld_s30i201(time_0, pressure, lat_v, lon_u) ; + fld_s30i201:_FillValue = 1.e+20f ; + fld_s30i201:standard_name = "eastward_wind" ; + fld_s30i201:long_name = "U COMPNT OF WIND ON P LEV/UV GRID" ; + fld_s30i201:units = "m s-1" ; + fld_s30i201:um_stash_source = "m01s30i201" ; + fld_s30i201:missing_value = 1.e+20f ; + fld_s30i201:grid_mapping = "latitude_longitude" ; + double time_0(time_0) ; + time_0:axis = "T" ; + time_0:units = "days since 0001-01-01 00:00" ; + time_0:standard_name = "time" ; + time_0:calendar = "proleptic_gregorian" ; + double pressure(pressure) ; + pressure:axis = "Z" ; + pressure:units = "Pa" ; + pressure:long_name = "pressure" ; + pressure:positive = "down" ; + double lat_v(lat_v) ; + lat_v:axis = "Y" ; + lat_v:bounds = "lat_v_bnds" ; + lat_v:units = "degrees_north" ; + lat_v:standard_name = "latitude" ; + double lat_v_bnds(lat_v, bnds) ; + double lon_u(lon_u) ; + lon_u:axis = "X" ; + lon_u:bounds = "lon_u_bnds" ; + lon_u:units = "degrees_east" ; + lon_u:standard_name = "longitude" ; + double lon_u_bnds(lon_u, bnds) ; + float fld_s30i202(time_0, pressure, lat_v, lon_u) ; + fld_s30i202:_FillValue = 1.e+20f ; + fld_s30i202:standard_name = "northward_wind" ; + fld_s30i202:long_name = "V COMPNT OF WIND ON P LEV/UV GRID" ; + fld_s30i202:units = "m s-1" ; + fld_s30i202:um_stash_source = "m01s30i202" ; + fld_s30i202:missing_value = 1.e+20f ; + fld_s30i202:grid_mapping = "latitude_longitude" ; + float fld_s30i204(time_0, pressure, lat_v, lon_u) ; + fld_s30i204:_FillValue = 1.e+20f ; + fld_s30i204:standard_name = "air_temperature" ; + fld_s30i204:long_name = "TEMPERATURE ON P LEV/UV GRID" ; + fld_s30i204:units = "K" ; + fld_s30i204:um_stash_source = "m01s30i204" ; + fld_s30i204:missing_value = 1.e+20f ; + fld_s30i204:grid_mapping = "latitude_longitude" ; + float fld_s30i301(time_0, pressure, lat_v, lon_u) ; + fld_s30i301:_FillValue = 1.e+20f ; + fld_s30i301:long_name = "Heavyside function on pressure levels" ; + fld_s30i301:units = "1" ; + fld_s30i301:um_stash_source = "m01s30i301" ; + fld_s30i301:missing_value = 1.e+20f ; + fld_s30i301:grid_mapping = "latitude_longitude" ; + +// global attributes: + :history = "File /scratch/p66/jxs599/access-esm/archive/Ndep2-PI-CNP-concentrations-Ndep2-PI-CNP-concentrations-e523e199/output000/atmosphere/aiihca.pja1jan converted with /g/data/vk83/apps/base_conda/envs/payu-1.2.1/lib/python3.10/site-packages/um2nc/um2netcdf.py 1.1.0 at 2026-04-07 15:53:24" ; + :Conventions = "CF-1.6" ; + :source = "Data from Met Office Unified Model" ; + :um_version = "7.3" ; +data: + + time = 36524.125, 36524.375, 36524.625, 36524.875, 36525.125, 36525.375, + 36525.625, 36525.875, 36526.125, 36526.375, 36526.625, 36526.875, + 36527.125, 36527.375, 36527.625, 36527.875, 36528.125, 36528.375, + 36528.625, 36528.875, 36529.125, 36529.375, 36529.625, 36529.875, + 36530.125, 36530.375, 36530.625, 36530.875, 36531.125, 36531.375, + 36531.625, 36531.875, 36532.125, 36532.375, 36532.625, 36532.875, + 36533.125, 36533.375, 36533.625, 36533.875, 36534.125, 36534.375, + 36534.625, 36534.875, 36535.125, 36535.375, 36535.625, 36535.875, + 36536.125, 36536.375, 36536.625, 36536.875, 36537.125, 36537.375, + 36537.625, 36537.875, 36538.125, 36538.375, 36538.625, 36538.875, + 36539.125, 36539.375, 36539.625, 36539.875, 36540.125, 36540.375, + 36540.625, 36540.875, 36541.125, 36541.375, 36541.625, 36541.875, + 36542.125, 36542.375, 36542.625, 36542.875, 36543.125, 36543.375, + 36543.625, 36543.875, 36544.125, 36544.375, 36544.625, 36544.875, + 36545.125, 36545.375, 36545.625, 36545.875, 36546.125, 36546.375, + 36546.625, 36546.875, 36547.125, 36547.375, 36547.625, 36547.875, + 36548.125, 36548.375, 36548.625, 36548.875, 36549.125, 36549.375, + 36549.625, 36549.875, 36550.125, 36550.375, 36550.625, 36550.875, + 36551.125, 36551.375, 36551.625, 36551.875, 36552.125, 36552.375, + 36552.625, 36552.875, 36553.125, 36553.375, 36553.625, 36553.875, + 36554.125, 36554.375, 36554.625, 36554.875 ; + + time_bnds = + 36524, 36524.25, + 36524.25, 36524.5, + 36524.5, 36524.75, + 36524.75, 36525, + 36525, 36525.25, + 36525.25, 36525.5, + 36525.5, 36525.75, + 36525.75, 36526, + 36526, 36526.25, + 36526.25, 36526.5, + 36526.5, 36526.75, + 36526.75, 36527, + 36527, 36527.25, + 36527.25, 36527.5, + 36527.5, 36527.75, + 36527.75, 36528, + 36528, 36528.25, + 36528.25, 36528.5, + 36528.5, 36528.75, + 36528.75, 36529, + 36529, 36529.25, + 36529.25, 36529.5, + 36529.5, 36529.75, + 36529.75, 36530, + 36530, 36530.25, + 36530.25, 36530.5, + 36530.5, 36530.75, + 36530.75, 36531, + 36531, 36531.25, + 36531.25, 36531.5, + 36531.5, 36531.75, + 36531.75, 36532, + 36532, 36532.25, + 36532.25, 36532.5, + 36532.5, 36532.75, + 36532.75, 36533, + 36533, 36533.25, + 36533.25, 36533.5, + 36533.5, 36533.75, + 36533.75, 36534, + 36534, 36534.25, + 36534.25, 36534.5, + 36534.5, 36534.75, + 36534.75, 36535, + 36535, 36535.25, + 36535.25, 36535.5, + 36535.5, 36535.75, + 36535.75, 36536, + 36536, 36536.25, + 36536.25, 36536.5, + 36536.5, 36536.75, + 36536.75, 36537, + 36537, 36537.25, + 36537.25, 36537.5, + 36537.5, 36537.75, + 36537.75, 36538, + 36538, 36538.25, + 36538.25, 36538.5, + 36538.5, 36538.75, + 36538.75, 36539, + 36539, 36539.25, + 36539.25, 36539.5, + 36539.5, 36539.75, + 36539.75, 36540, + 36540, 36540.25, + 36540.25, 36540.5, + 36540.5, 36540.75, + 36540.75, 36541, + 36541, 36541.25, + 36541.25, 36541.5, + 36541.5, 36541.75, + 36541.75, 36542, + 36542, 36542.25, + 36542.25, 36542.5, + 36542.5, 36542.75, + 36542.75, 36543, + 36543, 36543.25, + 36543.25, 36543.5, + 36543.5, 36543.75, + 36543.75, 36544, + 36544, 36544.25, + 36544.25, 36544.5, + 36544.5, 36544.75, + 36544.75, 36545, + 36545, 36545.25, + 36545.25, 36545.5, + 36545.5, 36545.75, + 36545.75, 36546, + 36546, 36546.25, + 36546.25, 36546.5, + 36546.5, 36546.75, + 36546.75, 36547, + 36547, 36547.25, + 36547.25, 36547.5, + 36547.5, 36547.75, + 36547.75, 36548, + 36548, 36548.25, + 36548.25, 36548.5, + 36548.5, 36548.75, + 36548.75, 36549, + 36549, 36549.25, + 36549.25, 36549.5, + 36549.5, 36549.75, + 36549.75, 36550, + 36550, 36550.25, + 36550.25, 36550.5, + 36550.5, 36550.75, + 36550.75, 36551, + 36551, 36551.25, + 36551.25, 36551.5, + 36551.5, 36551.75, + 36551.75, 36552, + 36552, 36552.25, + 36552.25, 36552.5, + 36552.5, 36552.75, + 36552.75, 36553, + 36553, 36553.25, + 36553.25, 36553.5, + 36553.5, 36553.75, + 36553.75, 36554, + 36554, 36554.25, + 36554.25, 36554.5, + 36554.5, 36554.75, + 36554.75, 36555 ; + + time_0 = 36524.25, 36524.5, 36524.75, 36525, 36525.25, 36525.5, 36525.75, + 36526, 36526.25, 36526.5, 36526.75, 36527, 36527.25, 36527.5, 36527.75, + 36528, 36528.25, 36528.5, 36528.75, 36529, 36529.25, 36529.5, 36529.75, + 36530, 36530.25, 36530.5, 36530.75, 36531, 36531.25, 36531.5, 36531.75, + 36532, 36532.25, 36532.5, 36532.75, 36533, 36533.25, 36533.5, 36533.75, + 36534, 36534.25, 36534.5, 36534.75, 36535, 36535.25, 36535.5, 36535.75, + 36536, 36536.25, 36536.5, 36536.75, 36537, 36537.25, 36537.5, 36537.75, + 36538, 36538.25, 36538.5, 36538.75, 36539, 36539.25, 36539.5, 36539.75, + 36540, 36540.25, 36540.5, 36540.75, 36541, 36541.25, 36541.5, 36541.75, + 36542, 36542.25, 36542.5, 36542.75, 36543, 36543.25, 36543.5, 36543.75, + 36544, 36544.25, 36544.5, 36544.75, 36545, 36545.25, 36545.5, 36545.75, + 36546, 36546.25, 36546.5, 36546.75, 36547, 36547.25, 36547.5, 36547.75, + 36548, 36548.25, 36548.5, 36548.75, 36549, 36549.25, 36549.5, 36549.75, + 36550, 36550.25, 36550.5, 36550.75, 36551, 36551.25, 36551.5, 36551.75, + 36552, 36552.25, 36552.5, 36552.75, 36553, 36553.25, 36553.5, 36553.75, + 36554, 36554.25, 36554.5, 36554.75, 36555 ; +} diff --git a/splitnc/test/data/iceh-1-mean_0272.cdl b/splitnc/test/data/iceh-1-mean_0272.cdl new file mode 100644 index 0000000..a8e3591 --- /dev/null +++ b/splitnc/test/data/iceh-1-mean_0272.cdl @@ -0,0 +1,11073 @@ +netcdf iceh-1-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (8783 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:time_rep = "instantaneous" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "step_1" ; + :comment = "This year has 366 days" ; + :comment2 = "File started on model date 02720101" ; + :history = "This dataset was created on 2026-05-15 at 11:36:34.2" ; + :io_flavor = "io_netcdf" ; +data: + + time = 98980.0416666667, 98980.0833333333, 98980.125, 98980.1666666667, + 98980.2083333333, 98980.25, 98980.2916666667, 98980.3333333333, + 98980.375, 98980.4166666667, 98980.4583333333, 98980.5, 98980.5416666667, + 98980.5833333333, 98980.625, 98980.6666666667, 98980.7083333333, + 98980.75, 98980.7916666667, 98980.8333333333, 98980.875, + 98980.9166666667, 98980.9583333333, 98981, 98981.0416666667, + 98981.0833333333, 98981.125, 98981.1666666667, 98981.2083333333, + 98981.25, 98981.2916666667, 98981.3333333333, 98981.375, + 98981.4166666667, 98981.4583333333, 98981.5, 98981.5416666667, + 98981.5833333333, 98981.625, 98981.6666666667, 98981.7083333333, + 98981.75, 98981.7916666667, 98981.8333333333, 98981.875, + 98981.9166666667, 98981.9583333333, 98982, 98982.0416666667, + 98982.0833333333, 98982.125, 98982.1666666667, 98982.2083333333, + 98982.25, 98982.2916666667, 98982.3333333333, 98982.375, + 98982.4166666667, 98982.4583333333, 98982.5, 98982.5416666667, + 98982.5833333333, 98982.625, 98982.6666666667, 98982.7083333333, + 98982.75, 98982.7916666667, 98982.8333333333, 98982.875, + 98982.9166666667, 98982.9583333333, 98983, 98983.0416666667, + 98983.0833333333, 98983.125, 98983.1666666667, 98983.2083333333, + 98983.25, 98983.2916666667, 98983.3333333333, 98983.375, + 98983.4166666667, 98983.4583333333, 98983.5, 98983.5416666667, + 98983.5833333333, 98983.625, 98983.6666666667, 98983.7083333333, + 98983.75, 98983.7916666667, 98983.8333333333, 98983.875, + 98983.9166666667, 98983.9583333333, 98984, 98984.0416666667, + 98984.0833333333, 98984.125, 98984.1666666667, 98984.2083333333, + 98984.25, 98984.2916666667, 98984.3333333333, 98984.375, + 98984.4166666667, 98984.4583333333, 98984.5, 98984.5416666667, + 98984.5833333333, 98984.625, 98984.6666666667, 98984.7083333333, + 98984.75, 98984.7916666667, 98984.8333333333, 98984.875, + 98984.9166666667, 98984.9583333333, 98985, 98985.0416666667, + 98985.0833333333, 98985.125, 98985.1666666667, 98985.2083333333, + 98985.25, 98985.2916666667, 98985.3333333333, 98985.375, + 98985.4166666667, 98985.4583333333, 98985.5, 98985.5416666667, + 98985.5833333333, 98985.625, 98985.6666666667, 98985.7083333333, + 98985.75, 98985.7916666667, 98985.8333333333, 98985.875, + 98985.9166666667, 98985.9583333333, 98986, 98986.0416666667, + 98986.0833333333, 98986.125, 98986.1666666667, 98986.2083333333, + 98986.25, 98986.2916666667, 98986.3333333333, 98986.375, + 98986.4166666667, 98986.4583333333, 98986.5, 98986.5416666667, + 98986.5833333333, 98986.625, 98986.6666666667, 98986.7083333333, + 98986.75, 98986.7916666667, 98986.8333333333, 98986.875, + 98986.9166666667, 98986.9583333333, 98987, 98987.0416666667, + 98987.0833333333, 98987.125, 98987.1666666667, 98987.2083333333, + 98987.25, 98987.2916666667, 98987.3333333333, 98987.375, + 98987.4166666667, 98987.4583333333, 98987.5, 98987.5416666667, + 98987.5833333333, 98987.625, 98987.6666666667, 98987.7083333333, + 98987.75, 98987.7916666667, 98987.8333333333, 98987.875, + 98987.9166666667, 98987.9583333333, 98988, 98988.0416666667, + 98988.0833333333, 98988.125, 98988.1666666667, 98988.2083333333, + 98988.25, 98988.2916666667, 98988.3333333333, 98988.375, + 98988.4166666667, 98988.4583333333, 98988.5, 98988.5416666667, + 98988.5833333333, 98988.625, 98988.6666666667, 98988.7083333333, + 98988.75, 98988.7916666667, 98988.8333333333, 98988.875, + 98988.9166666667, 98988.9583333333, 98989, 98989.0416666667, + 98989.0833333333, 98989.125, 98989.1666666667, 98989.2083333333, + 98989.25, 98989.2916666667, 98989.3333333333, 98989.375, + 98989.4166666667, 98989.4583333333, 98989.5, 98989.5416666667, + 98989.5833333333, 98989.625, 98989.6666666667, 98989.7083333333, + 98989.75, 98989.7916666667, 98989.8333333333, 98989.875, + 98989.9166666667, 98989.9583333333, 98990, 98990.0416666667, + 98990.0833333333, 98990.125, 98990.1666666667, 98990.2083333333, + 98990.25, 98990.2916666667, 98990.3333333333, 98990.375, + 98990.4166666667, 98990.4583333333, 98990.5, 98990.5416666667, + 98990.5833333333, 98990.625, 98990.6666666667, 98990.7083333333, + 98990.75, 98990.7916666667, 98990.8333333333, 98990.875, + 98990.9166666667, 98990.9583333333, 98991, 98991.0416666667, + 98991.0833333333, 98991.125, 98991.1666666667, 98991.2083333333, + 98991.25, 98991.2916666667, 98991.3333333333, 98991.375, + 98991.4166666667, 98991.4583333333, 98991.5, 98991.5416666667, + 98991.5833333333, 98991.625, 98991.6666666667, 98991.7083333333, + 98991.75, 98991.7916666667, 98991.8333333333, 98991.875, + 98991.9166666667, 98991.9583333333, 98992, 98992.0416666667, + 98992.0833333333, 98992.125, 98992.1666666667, 98992.2083333333, + 98992.25, 98992.2916666667, 98992.3333333333, 98992.375, + 98992.4166666667, 98992.4583333333, 98992.5, 98992.5416666667, + 98992.5833333333, 98992.625, 98992.6666666667, 98992.7083333333, + 98992.75, 98992.7916666667, 98992.8333333333, 98992.875, + 98992.9166666667, 98992.9583333333, 98993, 98993.0416666667, + 98993.0833333333, 98993.125, 98993.1666666667, 98993.2083333333, + 98993.25, 98993.2916666667, 98993.3333333333, 98993.375, + 98993.4166666667, 98993.4583333333, 98993.5, 98993.5416666667, + 98993.5833333333, 98993.625, 98993.6666666667, 98993.7083333333, + 98993.75, 98993.7916666667, 98993.8333333333, 98993.875, + 98993.9166666667, 98993.9583333333, 98994, 98994.0416666667, + 98994.0833333333, 98994.125, 98994.1666666667, 98994.2083333333, + 98994.25, 98994.2916666667, 98994.3333333333, 98994.375, + 98994.4166666667, 98994.4583333333, 98994.5, 98994.5416666667, + 98994.5833333333, 98994.625, 98994.6666666667, 98994.7083333333, + 98994.75, 98994.7916666667, 98994.8333333333, 98994.875, + 98994.9166666667, 98994.9583333333, 98995, 98995.0416666667, + 98995.0833333333, 98995.125, 98995.1666666667, 98995.2083333333, + 98995.25, 98995.2916666667, 98995.3333333333, 98995.375, + 98995.4166666667, 98995.4583333333, 98995.5, 98995.5416666667, + 98995.5833333333, 98995.625, 98995.6666666667, 98995.7083333333, + 98995.75, 98995.7916666667, 98995.8333333333, 98995.875, + 98995.9166666667, 98995.9583333333, 98996, 98996.0416666667, + 98996.0833333333, 98996.125, 98996.1666666667, 98996.2083333333, + 98996.25, 98996.2916666667, 98996.3333333333, 98996.375, + 98996.4166666667, 98996.4583333333, 98996.5, 98996.5416666667, + 98996.5833333333, 98996.625, 98996.6666666667, 98996.7083333333, + 98996.75, 98996.7916666667, 98996.8333333333, 98996.875, + 98996.9166666667, 98996.9583333333, 98997, 98997.0416666667, + 98997.0833333333, 98997.125, 98997.1666666667, 98997.2083333333, + 98997.25, 98997.2916666667, 98997.3333333333, 98997.375, + 98997.4166666667, 98997.4583333333, 98997.5, 98997.5416666667, + 98997.5833333333, 98997.625, 98997.6666666667, 98997.7083333333, + 98997.75, 98997.7916666667, 98997.8333333333, 98997.875, + 98997.9166666667, 98997.9583333333, 98998, 98998.0416666667, + 98998.0833333333, 98998.125, 98998.1666666667, 98998.2083333333, + 98998.25, 98998.2916666667, 98998.3333333333, 98998.375, + 98998.4166666667, 98998.4583333333, 98998.5, 98998.5416666667, + 98998.5833333333, 98998.625, 98998.6666666667, 98998.7083333333, + 98998.75, 98998.7916666667, 98998.8333333333, 98998.875, + 98998.9166666667, 98998.9583333333, 98999, 98999.0416666667, + 98999.0833333333, 98999.125, 98999.1666666667, 98999.2083333333, + 98999.25, 98999.2916666667, 98999.3333333333, 98999.375, + 98999.4166666667, 98999.4583333333, 98999.5, 98999.5416666667, + 98999.5833333333, 98999.625, 98999.6666666667, 98999.7083333333, + 98999.75, 98999.7916666667, 98999.8333333333, 98999.875, + 98999.9166666667, 98999.9583333333, 99000, 99000.0416666667, + 99000.0833333333, 99000.125, 99000.1666666667, 99000.2083333333, + 99000.25, 99000.2916666667, 99000.3333333333, 99000.375, + 99000.4166666667, 99000.4583333333, 99000.5, 99000.5416666667, + 99000.5833333333, 99000.625, 99000.6666666667, 99000.7083333333, + 99000.75, 99000.7916666667, 99000.8333333333, 99000.875, + 99000.9166666667, 99000.9583333333, 99001, 99001.0416666667, + 99001.0833333333, 99001.125, 99001.1666666667, 99001.2083333333, + 99001.25, 99001.2916666667, 99001.3333333333, 99001.375, + 99001.4166666667, 99001.4583333333, 99001.5, 99001.5416666667, + 99001.5833333333, 99001.625, 99001.6666666667, 99001.7083333333, + 99001.75, 99001.7916666667, 99001.8333333333, 99001.875, + 99001.9166666667, 99001.9583333333, 99002, 99002.0416666667, + 99002.0833333333, 99002.125, 99002.1666666667, 99002.2083333333, + 99002.25, 99002.2916666667, 99002.3333333333, 99002.375, + 99002.4166666667, 99002.4583333333, 99002.5, 99002.5416666667, + 99002.5833333333, 99002.625, 99002.6666666667, 99002.7083333333, + 99002.75, 99002.7916666667, 99002.8333333333, 99002.875, + 99002.9166666667, 99002.9583333333, 99003, 99003.0416666667, + 99003.0833333333, 99003.125, 99003.1666666667, 99003.2083333333, + 99003.25, 99003.2916666667, 99003.3333333333, 99003.375, + 99003.4166666667, 99003.4583333333, 99003.5, 99003.5416666667, + 99003.5833333333, 99003.625, 99003.6666666667, 99003.7083333333, + 99003.75, 99003.7916666667, 99003.8333333333, 99003.875, + 99003.9166666667, 99003.9583333333, 99004, 99004.0416666667, + 99004.0833333333, 99004.125, 99004.1666666667, 99004.2083333333, + 99004.25, 99004.2916666667, 99004.3333333333, 99004.375, + 99004.4166666667, 99004.4583333333, 99004.5, 99004.5416666667, + 99004.5833333333, 99004.625, 99004.6666666667, 99004.7083333333, + 99004.75, 99004.7916666667, 99004.8333333333, 99004.875, + 99004.9166666667, 99004.9583333333, 99005, 99005.0416666667, + 99005.0833333333, 99005.125, 99005.1666666667, 99005.2083333333, + 99005.25, 99005.2916666667, 99005.3333333333, 99005.375, + 99005.4166666667, 99005.4583333333, 99005.5, 99005.5416666667, + 99005.5833333333, 99005.625, 99005.6666666667, 99005.7083333333, + 99005.75, 99005.7916666667, 99005.8333333333, 99005.875, + 99005.9166666667, 99005.9583333333, 99006, 99006.0416666667, + 99006.0833333333, 99006.125, 99006.1666666667, 99006.2083333333, + 99006.25, 99006.2916666667, 99006.3333333333, 99006.375, + 99006.4166666667, 99006.4583333333, 99006.5, 99006.5416666667, + 99006.5833333333, 99006.625, 99006.6666666667, 99006.7083333333, + 99006.75, 99006.7916666667, 99006.8333333333, 99006.875, + 99006.9166666667, 99006.9583333333, 99007, 99007.0416666667, + 99007.0833333333, 99007.125, 99007.1666666667, 99007.2083333333, + 99007.25, 99007.2916666667, 99007.3333333333, 99007.375, + 99007.4166666667, 99007.4583333333, 99007.5, 99007.5416666667, + 99007.5833333333, 99007.625, 99007.6666666667, 99007.7083333333, + 99007.75, 99007.7916666667, 99007.8333333333, 99007.875, + 99007.9166666667, 99007.9583333333, 99008, 99008.0416666667, + 99008.0833333333, 99008.125, 99008.1666666667, 99008.2083333333, + 99008.25, 99008.2916666667, 99008.3333333333, 99008.375, + 99008.4166666667, 99008.4583333333, 99008.5, 99008.5416666667, + 99008.5833333333, 99008.625, 99008.6666666667, 99008.7083333333, + 99008.75, 99008.7916666667, 99008.8333333333, 99008.875, + 99008.9166666667, 99008.9583333333, 99009, 99009.0416666667, + 99009.0833333333, 99009.125, 99009.1666666667, 99009.2083333333, + 99009.25, 99009.2916666667, 99009.3333333333, 99009.375, + 99009.4166666667, 99009.4583333333, 99009.5, 99009.5416666667, + 99009.5833333333, 99009.625, 99009.6666666667, 99009.7083333333, + 99009.75, 99009.7916666667, 99009.8333333333, 99009.875, + 99009.9166666667, 99009.9583333333, 99010, 99010.0416666667, + 99010.0833333333, 99010.125, 99010.1666666667, 99010.2083333333, + 99010.25, 99010.2916666667, 99010.3333333333, 99010.375, + 99010.4166666667, 99010.4583333333, 99010.5, 99010.5416666667, + 99010.5833333333, 99010.625, 99010.6666666667, 99010.7083333333, + 99010.75, 99010.7916666667, 99010.8333333333, 99010.875, + 99010.9166666667, 99010.9583333333, 99011, 99011.0416666667, + 99011.0833333333, 99011.125, 99011.1666666667, 99011.2083333333, + 99011.25, 99011.2916666667, 99011.3333333333, 99011.375, + 99011.4166666667, 99011.4583333333, 99011.5, 99011.5416666667, + 99011.5833333333, 99011.625, 99011.6666666667, 99011.7083333333, + 99011.75, 99011.7916666667, 99011.8333333333, 99011.875, + 99011.9166666667, 99011.9583333333, 99012, 99012.0416666667, + 99012.0833333333, 99012.125, 99012.1666666667, 99012.2083333333, + 99012.25, 99012.2916666667, 99012.3333333333, 99012.375, + 99012.4166666667, 99012.4583333333, 99012.5, 99012.5416666667, + 99012.5833333333, 99012.625, 99012.6666666667, 99012.7083333333, + 99012.75, 99012.7916666667, 99012.8333333333, 99012.875, + 99012.9166666667, 99012.9583333333, 99013, 99013.0416666667, + 99013.0833333333, 99013.125, 99013.1666666667, 99013.2083333333, + 99013.25, 99013.2916666667, 99013.3333333333, 99013.375, + 99013.4166666667, 99013.4583333333, 99013.5, 99013.5416666667, + 99013.5833333333, 99013.625, 99013.6666666667, 99013.7083333333, + 99013.75, 99013.7916666667, 99013.8333333333, 99013.875, + 99013.9166666667, 99013.9583333333, 99014, 99014.0416666667, + 99014.0833333333, 99014.125, 99014.1666666667, 99014.2083333333, + 99014.25, 99014.2916666667, 99014.3333333333, 99014.375, + 99014.4166666667, 99014.4583333333, 99014.5, 99014.5416666667, + 99014.5833333333, 99014.625, 99014.6666666667, 99014.7083333333, + 99014.75, 99014.7916666667, 99014.8333333333, 99014.875, + 99014.9166666667, 99014.9583333333, 99015, 99015.0416666667, + 99015.0833333333, 99015.125, 99015.1666666667, 99015.2083333333, + 99015.25, 99015.2916666667, 99015.3333333333, 99015.375, + 99015.4166666667, 99015.4583333333, 99015.5, 99015.5416666667, + 99015.5833333333, 99015.625, 99015.6666666667, 99015.7083333333, + 99015.75, 99015.7916666667, 99015.8333333333, 99015.875, + 99015.9166666667, 99015.9583333333, 99016, 99016.0416666667, + 99016.0833333333, 99016.125, 99016.1666666667, 99016.2083333333, + 99016.25, 99016.2916666667, 99016.3333333333, 99016.375, + 99016.4166666667, 99016.4583333333, 99016.5, 99016.5416666667, + 99016.5833333333, 99016.625, 99016.6666666667, 99016.7083333333, + 99016.75, 99016.7916666667, 99016.8333333333, 99016.875, + 99016.9166666667, 99016.9583333333, 99017, 99017.0416666667, + 99017.0833333333, 99017.125, 99017.1666666667, 99017.2083333333, + 99017.25, 99017.2916666667, 99017.3333333333, 99017.375, + 99017.4166666667, 99017.4583333333, 99017.5, 99017.5416666667, + 99017.5833333333, 99017.625, 99017.6666666667, 99017.7083333333, + 99017.75, 99017.7916666667, 99017.8333333333, 99017.875, + 99017.9166666667, 99017.9583333333, 99018, 99018.0416666667, + 99018.0833333333, 99018.125, 99018.1666666667, 99018.2083333333, + 99018.25, 99018.2916666667, 99018.3333333333, 99018.375, + 99018.4166666667, 99018.4583333333, 99018.5, 99018.5416666667, + 99018.5833333333, 99018.625, 99018.6666666667, 99018.7083333333, + 99018.75, 99018.7916666667, 99018.8333333333, 99018.875, + 99018.9166666667, 99018.9583333333, 99019, 99019.0416666667, + 99019.0833333333, 99019.125, 99019.1666666667, 99019.2083333333, + 99019.25, 99019.2916666667, 99019.3333333333, 99019.375, + 99019.4166666667, 99019.4583333333, 99019.5, 99019.5416666667, + 99019.5833333333, 99019.625, 99019.6666666667, 99019.7083333333, + 99019.75, 99019.7916666667, 99019.8333333333, 99019.875, + 99019.9166666667, 99019.9583333333, 99020, 99020.0416666667, + 99020.0833333333, 99020.125, 99020.1666666667, 99020.2083333333, + 99020.25, 99020.2916666667, 99020.3333333333, 99020.375, + 99020.4166666667, 99020.4583333333, 99020.5, 99020.5416666667, + 99020.5833333333, 99020.625, 99020.6666666667, 99020.7083333333, + 99020.75, 99020.7916666667, 99020.8333333333, 99020.875, + 99020.9166666667, 99020.9583333333, 99021, 99021.0416666667, + 99021.0833333333, 99021.125, 99021.1666666667, 99021.2083333333, + 99021.25, 99021.2916666667, 99021.3333333333, 99021.375, + 99021.4166666667, 99021.4583333333, 99021.5, 99021.5416666667, + 99021.5833333333, 99021.625, 99021.6666666667, 99021.7083333333, + 99021.75, 99021.7916666667, 99021.8333333333, 99021.875, + 99021.9166666667, 99021.9583333333, 99022, 99022.0416666667, + 99022.0833333333, 99022.125, 99022.1666666667, 99022.2083333333, + 99022.25, 99022.2916666667, 99022.3333333333, 99022.375, + 99022.4166666667, 99022.4583333333, 99022.5, 99022.5416666667, + 99022.5833333333, 99022.625, 99022.6666666667, 99022.7083333333, + 99022.75, 99022.7916666667, 99022.8333333333, 99022.875, + 99022.9166666667, 99022.9583333333, 99023, 99023.0416666667, + 99023.0833333333, 99023.125, 99023.1666666667, 99023.2083333333, + 99023.25, 99023.2916666667, 99023.3333333333, 99023.375, + 99023.4166666667, 99023.4583333333, 99023.5, 99023.5416666667, + 99023.5833333333, 99023.625, 99023.6666666667, 99023.7083333333, + 99023.75, 99023.7916666667, 99023.8333333333, 99023.875, + 99023.9166666667, 99023.9583333333, 99024, 99024.0416666667, + 99024.0833333333, 99024.125, 99024.1666666667, 99024.2083333333, + 99024.25, 99024.2916666667, 99024.3333333333, 99024.375, + 99024.4166666667, 99024.4583333333, 99024.5, 99024.5416666667, + 99024.5833333333, 99024.625, 99024.6666666667, 99024.7083333333, + 99024.75, 99024.7916666667, 99024.8333333333, 99024.875, + 99024.9166666667, 99024.9583333333, 99025, 99025.0416666667, + 99025.0833333333, 99025.125, 99025.1666666667, 99025.2083333333, + 99025.25, 99025.2916666667, 99025.3333333333, 99025.375, + 99025.4166666667, 99025.4583333333, 99025.5, 99025.5416666667, + 99025.5833333333, 99025.625, 99025.6666666667, 99025.7083333333, + 99025.75, 99025.7916666667, 99025.8333333333, 99025.875, + 99025.9166666667, 99025.9583333333, 99026, 99026.0416666667, + 99026.0833333333, 99026.125, 99026.1666666667, 99026.2083333333, + 99026.25, 99026.2916666667, 99026.3333333333, 99026.375, + 99026.4166666667, 99026.4583333333, 99026.5, 99026.5416666667, + 99026.5833333333, 99026.625, 99026.6666666667, 99026.7083333333, + 99026.75, 99026.7916666667, 99026.8333333333, 99026.875, + 99026.9166666667, 99026.9583333333, 99027, 99027.0416666667, + 99027.0833333333, 99027.125, 99027.1666666667, 99027.2083333333, + 99027.25, 99027.2916666667, 99027.3333333333, 99027.375, + 99027.4166666667, 99027.4583333333, 99027.5, 99027.5416666667, + 99027.5833333333, 99027.625, 99027.6666666667, 99027.7083333333, + 99027.75, 99027.7916666667, 99027.8333333333, 99027.875, + 99027.9166666667, 99027.9583333333, 99028, 99028.0416666667, + 99028.0833333333, 99028.125, 99028.1666666667, 99028.2083333333, + 99028.25, 99028.2916666667, 99028.3333333333, 99028.375, + 99028.4166666667, 99028.4583333333, 99028.5, 99028.5416666667, + 99028.5833333333, 99028.625, 99028.6666666667, 99028.7083333333, + 99028.75, 99028.7916666667, 99028.8333333333, 99028.875, + 99028.9166666667, 99028.9583333333, 99029, 99029.0416666667, + 99029.0833333333, 99029.125, 99029.1666666667, 99029.2083333333, + 99029.25, 99029.2916666667, 99029.3333333333, 99029.375, + 99029.4166666667, 99029.4583333333, 99029.5, 99029.5416666667, + 99029.5833333333, 99029.625, 99029.6666666667, 99029.7083333333, + 99029.75, 99029.7916666667, 99029.8333333333, 99029.875, + 99029.9166666667, 99029.9583333333, 99030, 99030.0416666667, + 99030.0833333333, 99030.125, 99030.1666666667, 99030.2083333333, + 99030.25, 99030.2916666667, 99030.3333333333, 99030.375, + 99030.4166666667, 99030.4583333333, 99030.5, 99030.5416666667, + 99030.5833333333, 99030.625, 99030.6666666667, 99030.7083333333, + 99030.75, 99030.7916666667, 99030.8333333333, 99030.875, + 99030.9166666667, 99030.9583333333, 99031, 99031.0416666667, + 99031.0833333333, 99031.125, 99031.1666666667, 99031.2083333333, + 99031.25, 99031.2916666667, 99031.3333333333, 99031.375, + 99031.4166666667, 99031.4583333333, 99031.5, 99031.5416666667, + 99031.5833333333, 99031.625, 99031.6666666667, 99031.7083333333, + 99031.75, 99031.7916666667, 99031.8333333333, 99031.875, + 99031.9166666667, 99031.9583333333, 99032, 99032.0416666667, + 99032.0833333333, 99032.125, 99032.1666666667, 99032.2083333333, + 99032.25, 99032.2916666667, 99032.3333333333, 99032.375, + 99032.4166666667, 99032.4583333333, 99032.5, 99032.5416666667, + 99032.5833333333, 99032.625, 99032.6666666667, 99032.7083333333, + 99032.75, 99032.7916666667, 99032.8333333333, 99032.875, + 99032.9166666667, 99032.9583333333, 99033, 99033.0416666667, + 99033.0833333333, 99033.125, 99033.1666666667, 99033.2083333333, + 99033.25, 99033.2916666667, 99033.3333333333, 99033.375, + 99033.4166666667, 99033.4583333333, 99033.5, 99033.5416666667, + 99033.5833333333, 99033.625, 99033.6666666667, 99033.7083333333, + 99033.75, 99033.7916666667, 99033.8333333333, 99033.875, + 99033.9166666667, 99033.9583333333, 99034, 99034.0416666667, + 99034.0833333333, 99034.125, 99034.1666666667, 99034.2083333333, + 99034.25, 99034.2916666667, 99034.3333333333, 99034.375, + 99034.4166666667, 99034.4583333333, 99034.5, 99034.5416666667, + 99034.5833333333, 99034.625, 99034.6666666667, 99034.7083333333, + 99034.75, 99034.7916666667, 99034.8333333333, 99034.875, + 99034.9166666667, 99034.9583333333, 99035, 99035.0416666667, + 99035.0833333333, 99035.125, 99035.1666666667, 99035.2083333333, + 99035.25, 99035.2916666667, 99035.3333333333, 99035.375, + 99035.4166666667, 99035.4583333333, 99035.5, 99035.5416666667, + 99035.5833333333, 99035.625, 99035.6666666667, 99035.7083333333, + 99035.75, 99035.7916666667, 99035.8333333333, 99035.875, + 99035.9166666667, 99035.9583333333, 99036, 99036.0416666667, + 99036.0833333333, 99036.125, 99036.1666666667, 99036.2083333333, + 99036.25, 99036.2916666667, 99036.3333333333, 99036.375, + 99036.4166666667, 99036.4583333333, 99036.5, 99036.5416666667, + 99036.5833333333, 99036.625, 99036.6666666667, 99036.7083333333, + 99036.75, 99036.7916666667, 99036.8333333333, 99036.875, + 99036.9166666667, 99036.9583333333, 99037, 99037.0416666667, + 99037.0833333333, 99037.125, 99037.1666666667, 99037.2083333333, + 99037.25, 99037.2916666667, 99037.3333333333, 99037.375, + 99037.4166666667, 99037.4583333333, 99037.5, 99037.5416666667, + 99037.5833333333, 99037.625, 99037.6666666667, 99037.7083333333, + 99037.75, 99037.7916666667, 99037.8333333333, 99037.875, + 99037.9166666667, 99037.9583333333, 99038, 99038.0416666667, + 99038.0833333333, 99038.125, 99038.1666666667, 99038.2083333333, + 99038.25, 99038.2916666667, 99038.3333333333, 99038.375, + 99038.4166666667, 99038.4583333333, 99038.5, 99038.5416666667, + 99038.5833333333, 99038.625, 99038.6666666667, 99038.7083333333, + 99038.75, 99038.7916666667, 99038.8333333333, 99038.875, + 99038.9166666667, 99038.9583333333, 99039, 99039.0416666667, + 99039.0833333333, 99039.125, 99039.1666666667, 99039.2083333333, + 99039.25, 99039.2916666667, 99039.3333333333, 99039.375, + 99039.4166666667, 99039.4583333333, 99039.5, 99039.5416666667, + 99039.5833333333, 99039.625, 99039.6666666667, 99039.7083333333, + 99039.75, 99039.7916666667, 99039.8333333333, 99039.875, + 99039.9166666667, 99039.9583333333, 99040, 99040.0416666667, + 99040.0833333333, 99040.125, 99040.1666666667, 99040.2083333333, + 99040.25, 99040.2916666667, 99040.3333333333, 99040.375, + 99040.4166666667, 99040.4583333333, 99040.5, 99040.5416666667, + 99040.5833333333, 99040.625, 99040.6666666667, 99040.7083333333, + 99040.75, 99040.7916666667, 99040.8333333333, 99040.875, + 99040.9166666667, 99040.9583333333, 99041, 99041.0416666667, + 99041.0833333333, 99041.125, 99041.1666666667, 99041.2083333333, + 99041.25, 99041.2916666667, 99041.3333333333, 99041.375, + 99041.4166666667, 99041.4583333333, 99041.5, 99041.5416666667, + 99041.5833333333, 99041.625, 99041.6666666667, 99041.7083333333, + 99041.75, 99041.7916666667, 99041.8333333333, 99041.875, + 99041.9166666667, 99041.9583333333, 99042, 99042.0416666667, + 99042.0833333333, 99042.125, 99042.1666666667, 99042.2083333333, + 99042.25, 99042.2916666667, 99042.3333333333, 99042.375, + 99042.4166666667, 99042.4583333333, 99042.5, 99042.5416666667, + 99042.5833333333, 99042.625, 99042.6666666667, 99042.7083333333, + 99042.75, 99042.7916666667, 99042.8333333333, 99042.875, + 99042.9166666667, 99042.9583333333, 99043, 99043.0416666667, + 99043.0833333333, 99043.125, 99043.1666666667, 99043.2083333333, + 99043.25, 99043.2916666667, 99043.3333333333, 99043.375, + 99043.4166666667, 99043.4583333333, 99043.5, 99043.5416666667, + 99043.5833333333, 99043.625, 99043.6666666667, 99043.7083333333, + 99043.75, 99043.7916666667, 99043.8333333333, 99043.875, + 99043.9166666667, 99043.9583333333, 99044, 99044.0416666667, + 99044.0833333333, 99044.125, 99044.1666666667, 99044.2083333333, + 99044.25, 99044.2916666667, 99044.3333333333, 99044.375, + 99044.4166666667, 99044.4583333333, 99044.5, 99044.5416666667, + 99044.5833333333, 99044.625, 99044.6666666667, 99044.7083333333, + 99044.75, 99044.7916666667, 99044.8333333333, 99044.875, + 99044.9166666667, 99044.9583333333, 99045, 99045.0416666667, + 99045.0833333333, 99045.125, 99045.1666666667, 99045.2083333333, + 99045.25, 99045.2916666667, 99045.3333333333, 99045.375, + 99045.4166666667, 99045.4583333333, 99045.5, 99045.5416666667, + 99045.5833333333, 99045.625, 99045.6666666667, 99045.7083333333, + 99045.75, 99045.7916666667, 99045.8333333333, 99045.875, + 99045.9166666667, 99045.9583333333, 99046, 99046.0416666667, + 99046.0833333333, 99046.125, 99046.1666666667, 99046.2083333333, + 99046.25, 99046.2916666667, 99046.3333333333, 99046.375, + 99046.4166666667, 99046.4583333333, 99046.5, 99046.5416666667, + 99046.5833333333, 99046.625, 99046.6666666667, 99046.7083333333, + 99046.75, 99046.7916666667, 99046.8333333333, 99046.875, + 99046.9166666667, 99046.9583333333, 99047, 99047.0416666667, + 99047.0833333333, 99047.125, 99047.1666666667, 99047.2083333333, + 99047.25, 99047.2916666667, 99047.3333333333, 99047.375, + 99047.4166666667, 99047.4583333333, 99047.5, 99047.5416666667, + 99047.5833333333, 99047.625, 99047.6666666667, 99047.7083333333, + 99047.75, 99047.7916666667, 99047.8333333333, 99047.875, + 99047.9166666667, 99047.9583333333, 99048, 99048.0416666667, + 99048.0833333333, 99048.125, 99048.1666666667, 99048.2083333333, + 99048.25, 99048.2916666667, 99048.3333333333, 99048.375, + 99048.4166666667, 99048.4583333333, 99048.5, 99048.5416666667, + 99048.5833333333, 99048.625, 99048.6666666667, 99048.7083333333, + 99048.75, 99048.7916666667, 99048.8333333333, 99048.875, + 99048.9166666667, 99048.9583333333, 99049, 99049.0416666667, + 99049.0833333333, 99049.125, 99049.1666666667, 99049.2083333333, + 99049.25, 99049.2916666667, 99049.3333333333, 99049.375, + 99049.4166666667, 99049.4583333333, 99049.5, 99049.5416666667, + 99049.5833333333, 99049.625, 99049.6666666667, 99049.7083333333, + 99049.75, 99049.7916666667, 99049.8333333333, 99049.875, + 99049.9166666667, 99049.9583333333, 99050, 99050.0416666667, + 99050.0833333333, 99050.125, 99050.1666666667, 99050.2083333333, + 99050.25, 99050.2916666667, 99050.3333333333, 99050.375, + 99050.4166666667, 99050.4583333333, 99050.5, 99050.5416666667, + 99050.5833333333, 99050.625, 99050.6666666667, 99050.7083333333, + 99050.75, 99050.7916666667, 99050.8333333333, 99050.875, + 99050.9166666667, 99050.9583333333, 99051, 99051.0416666667, + 99051.0833333333, 99051.125, 99051.1666666667, 99051.2083333333, + 99051.25, 99051.2916666667, 99051.3333333333, 99051.375, + 99051.4166666667, 99051.4583333333, 99051.5, 99051.5416666667, + 99051.5833333333, 99051.625, 99051.6666666667, 99051.7083333333, + 99051.75, 99051.7916666667, 99051.8333333333, 99051.875, + 99051.9166666667, 99051.9583333333, 99052, 99052.0416666667, + 99052.0833333333, 99052.125, 99052.1666666667, 99052.2083333333, + 99052.25, 99052.2916666667, 99052.3333333333, 99052.375, + 99052.4166666667, 99052.4583333333, 99052.5, 99052.5416666667, + 99052.5833333333, 99052.625, 99052.6666666667, 99052.7083333333, + 99052.75, 99052.7916666667, 99052.8333333333, 99052.875, + 99052.9166666667, 99052.9583333333, 99053, 99053.0416666667, + 99053.0833333333, 99053.125, 99053.1666666667, 99053.2083333333, + 99053.25, 99053.2916666667, 99053.3333333333, 99053.375, + 99053.4166666667, 99053.4583333333, 99053.5, 99053.5416666667, + 99053.5833333333, 99053.625, 99053.6666666667, 99053.7083333333, + 99053.75, 99053.7916666667, 99053.8333333333, 99053.875, + 99053.9166666667, 99053.9583333333, 99054, 99054.0416666667, + 99054.0833333333, 99054.125, 99054.1666666667, 99054.2083333333, + 99054.25, 99054.2916666667, 99054.3333333333, 99054.375, + 99054.4166666667, 99054.4583333333, 99054.5, 99054.5416666667, + 99054.5833333333, 99054.625, 99054.6666666667, 99054.7083333333, + 99054.75, 99054.7916666667, 99054.8333333333, 99054.875, + 99054.9166666667, 99054.9583333333, 99055, 99055.0416666667, + 99055.0833333333, 99055.125, 99055.1666666667, 99055.2083333333, + 99055.25, 99055.2916666667, 99055.3333333333, 99055.375, + 99055.4166666667, 99055.4583333333, 99055.5, 99055.5416666667, + 99055.5833333333, 99055.625, 99055.6666666667, 99055.7083333333, + 99055.75, 99055.7916666667, 99055.8333333333, 99055.875, + 99055.9166666667, 99055.9583333333, 99056, 99056.0416666667, + 99056.0833333333, 99056.125, 99056.1666666667, 99056.2083333333, + 99056.25, 99056.2916666667, 99056.3333333333, 99056.375, + 99056.4166666667, 99056.4583333333, 99056.5, 99056.5416666667, + 99056.5833333333, 99056.625, 99056.6666666667, 99056.7083333333, + 99056.75, 99056.7916666667, 99056.8333333333, 99056.875, + 99056.9166666667, 99056.9583333333, 99057, 99057.0416666667, + 99057.0833333333, 99057.125, 99057.1666666667, 99057.2083333333, + 99057.25, 99057.2916666667, 99057.3333333333, 99057.375, + 99057.4166666667, 99057.4583333333, 99057.5, 99057.5416666667, + 99057.5833333333, 99057.625, 99057.6666666667, 99057.7083333333, + 99057.75, 99057.7916666667, 99057.8333333333, 99057.875, + 99057.9166666667, 99057.9583333333, 99058, 99058.0416666667, + 99058.0833333333, 99058.125, 99058.1666666667, 99058.2083333333, + 99058.25, 99058.2916666667, 99058.3333333333, 99058.375, + 99058.4166666667, 99058.4583333333, 99058.5, 99058.5416666667, + 99058.5833333333, 99058.625, 99058.6666666667, 99058.7083333333, + 99058.75, 99058.7916666667, 99058.8333333333, 99058.875, + 99058.9166666667, 99058.9583333333, 99059, 99059.0416666667, + 99059.0833333333, 99059.125, 99059.1666666667, 99059.2083333333, + 99059.25, 99059.2916666667, 99059.3333333333, 99059.375, + 99059.4166666667, 99059.4583333333, 99059.5, 99059.5416666667, + 99059.5833333333, 99059.625, 99059.6666666667, 99059.7083333333, + 99059.75, 99059.7916666667, 99059.8333333333, 99059.875, + 99059.9166666667, 99059.9583333333, 99060, 99060.0416666667, + 99060.0833333333, 99060.125, 99060.1666666667, 99060.2083333333, + 99060.25, 99060.2916666667, 99060.3333333333, 99060.375, + 99060.4166666667, 99060.4583333333, 99060.5, 99060.5416666667, + 99060.5833333333, 99060.625, 99060.6666666667, 99060.7083333333, + 99060.75, 99060.7916666667, 99060.8333333333, 99060.875, + 99060.9166666667, 99060.9583333333, 99061, 99061.0416666667, + 99061.0833333333, 99061.125, 99061.1666666667, 99061.2083333333, + 99061.25, 99061.2916666667, 99061.3333333333, 99061.375, + 99061.4166666667, 99061.4583333333, 99061.5, 99061.5416666667, + 99061.5833333333, 99061.625, 99061.6666666667, 99061.7083333333, + 99061.75, 99061.7916666667, 99061.8333333333, 99061.875, + 99061.9166666667, 99061.9583333333, 99062, 99062.0416666667, + 99062.0833333333, 99062.125, 99062.1666666667, 99062.2083333333, + 99062.25, 99062.2916666667, 99062.3333333333, 99062.375, + 99062.4166666667, 99062.4583333333, 99062.5, 99062.5416666667, + 99062.5833333333, 99062.625, 99062.6666666667, 99062.7083333333, + 99062.75, 99062.7916666667, 99062.8333333333, 99062.875, + 99062.9166666667, 99062.9583333333, 99063, 99063.0416666667, + 99063.0833333333, 99063.125, 99063.1666666667, 99063.2083333333, + 99063.25, 99063.2916666667, 99063.3333333333, 99063.375, + 99063.4166666667, 99063.4583333333, 99063.5, 99063.5416666667, + 99063.5833333333, 99063.625, 99063.6666666667, 99063.7083333333, + 99063.75, 99063.7916666667, 99063.8333333333, 99063.875, + 99063.9166666667, 99063.9583333333, 99064, 99064.0416666667, + 99064.0833333333, 99064.125, 99064.1666666667, 99064.2083333333, + 99064.25, 99064.2916666667, 99064.3333333333, 99064.375, + 99064.4166666667, 99064.4583333333, 99064.5, 99064.5416666667, + 99064.5833333333, 99064.625, 99064.6666666667, 99064.7083333333, + 99064.75, 99064.7916666667, 99064.8333333333, 99064.875, + 99064.9166666667, 99064.9583333333, 99065, 99065.0416666667, + 99065.0833333333, 99065.125, 99065.1666666667, 99065.2083333333, + 99065.25, 99065.2916666667, 99065.3333333333, 99065.375, + 99065.4166666667, 99065.4583333333, 99065.5, 99065.5416666667, + 99065.5833333333, 99065.625, 99065.6666666667, 99065.7083333333, + 99065.75, 99065.7916666667, 99065.8333333333, 99065.875, + 99065.9166666667, 99065.9583333333, 99066, 99066.0416666667, + 99066.0833333333, 99066.125, 99066.1666666667, 99066.2083333333, + 99066.25, 99066.2916666667, 99066.3333333333, 99066.375, + 99066.4166666667, 99066.4583333333, 99066.5, 99066.5416666667, + 99066.5833333333, 99066.625, 99066.6666666667, 99066.7083333333, + 99066.75, 99066.7916666667, 99066.8333333333, 99066.875, + 99066.9166666667, 99066.9583333333, 99067, 99067.0416666667, + 99067.0833333333, 99067.125, 99067.1666666667, 99067.2083333333, + 99067.25, 99067.2916666667, 99067.3333333333, 99067.375, + 99067.4166666667, 99067.4583333333, 99067.5, 99067.5416666667, + 99067.5833333333, 99067.625, 99067.6666666667, 99067.7083333333, + 99067.75, 99067.7916666667, 99067.8333333333, 99067.875, + 99067.9166666667, 99067.9583333333, 99068, 99068.0416666667, + 99068.0833333333, 99068.125, 99068.1666666667, 99068.2083333333, + 99068.25, 99068.2916666667, 99068.3333333333, 99068.375, + 99068.4166666667, 99068.4583333333, 99068.5, 99068.5416666667, + 99068.5833333333, 99068.625, 99068.6666666667, 99068.7083333333, + 99068.75, 99068.7916666667, 99068.8333333333, 99068.875, + 99068.9166666667, 99068.9583333333, 99069, 99069.0416666667, + 99069.0833333333, 99069.125, 99069.1666666667, 99069.2083333333, + 99069.25, 99069.2916666667, 99069.3333333333, 99069.375, + 99069.4166666667, 99069.4583333333, 99069.5, 99069.5416666667, + 99069.5833333333, 99069.625, 99069.6666666667, 99069.7083333333, + 99069.75, 99069.7916666667, 99069.8333333333, 99069.875, + 99069.9166666667, 99069.9583333333, 99070, 99070.0416666667, + 99070.0833333333, 99070.125, 99070.1666666667, 99070.2083333333, + 99070.25, 99070.2916666667, 99070.3333333333, 99070.375, + 99070.4166666667, 99070.4583333333, 99070.5, 99070.5416666667, + 99070.5833333333, 99070.625, 99070.6666666667, 99070.7083333333, + 99070.75, 99070.7916666667, 99070.8333333333, 99070.875, + 99070.9166666667, 99070.9583333333, 99071, 99071.0416666667, + 99071.0833333333, 99071.125, 99071.1666666667, 99071.2083333333, + 99071.25, 99071.2916666667, 99071.3333333333, 99071.375, + 99071.4166666667, 99071.4583333333, 99071.5, 99071.5416666667, + 99071.5833333333, 99071.625, 99071.6666666667, 99071.7083333333, + 99071.75, 99071.7916666667, 99071.8333333333, 99071.875, + 99071.9166666667, 99071.9583333333, 99072, 99072.0416666667, + 99072.0833333333, 99072.125, 99072.1666666667, 99072.2083333333, + 99072.25, 99072.2916666667, 99072.3333333333, 99072.375, + 99072.4166666667, 99072.4583333333, 99072.5, 99072.5416666667, + 99072.5833333333, 99072.625, 99072.6666666667, 99072.7083333333, + 99072.75, 99072.7916666667, 99072.8333333333, 99072.875, + 99072.9166666667, 99072.9583333333, 99073, 99073.0416666667, + 99073.0833333333, 99073.125, 99073.1666666667, 99073.2083333333, + 99073.25, 99073.2916666667, 99073.3333333333, 99073.375, + 99073.4166666667, 99073.4583333333, 99073.5, 99073.5416666667, + 99073.5833333333, 99073.625, 99073.6666666667, 99073.7083333333, + 99073.75, 99073.7916666667, 99073.8333333333, 99073.875, + 99073.9166666667, 99073.9583333333, 99074, 99074.0416666667, + 99074.0833333333, 99074.125, 99074.1666666667, 99074.2083333333, + 99074.25, 99074.2916666667, 99074.3333333333, 99074.375, + 99074.4166666667, 99074.4583333333, 99074.5, 99074.5416666667, + 99074.5833333333, 99074.625, 99074.6666666667, 99074.7083333333, + 99074.75, 99074.7916666667, 99074.8333333333, 99074.875, + 99074.9166666667, 99074.9583333333, 99075, 99075.0416666667, + 99075.0833333333, 99075.125, 99075.1666666667, 99075.2083333333, + 99075.25, 99075.2916666667, 99075.3333333333, 99075.375, + 99075.4166666667, 99075.4583333333, 99075.5, 99075.5416666667, + 99075.5833333333, 99075.625, 99075.6666666667, 99075.7083333333, + 99075.75, 99075.7916666667, 99075.8333333333, 99075.875, + 99075.9166666667, 99075.9583333333, 99076, 99076.0416666667, + 99076.0833333333, 99076.125, 99076.1666666667, 99076.2083333333, + 99076.25, 99076.2916666667, 99076.3333333333, 99076.375, + 99076.4166666667, 99076.4583333333, 99076.5, 99076.5416666667, + 99076.5833333333, 99076.625, 99076.6666666667, 99076.7083333333, + 99076.75, 99076.7916666667, 99076.8333333333, 99076.875, + 99076.9166666667, 99076.9583333333, 99077, 99077.0416666667, + 99077.0833333333, 99077.125, 99077.1666666667, 99077.2083333333, + 99077.25, 99077.2916666667, 99077.3333333333, 99077.375, + 99077.4166666667, 99077.4583333333, 99077.5, 99077.5416666667, + 99077.5833333333, 99077.625, 99077.6666666667, 99077.7083333333, + 99077.75, 99077.7916666667, 99077.8333333333, 99077.875, + 99077.9166666667, 99077.9583333333, 99078, 99078.0416666667, + 99078.0833333333, 99078.125, 99078.1666666667, 99078.2083333333, + 99078.25, 99078.2916666667, 99078.3333333333, 99078.375, + 99078.4166666667, 99078.4583333333, 99078.5, 99078.5416666667, + 99078.5833333333, 99078.625, 99078.6666666667, 99078.7083333333, + 99078.75, 99078.7916666667, 99078.8333333333, 99078.875, + 99078.9166666667, 99078.9583333333, 99079, 99079.0416666667, + 99079.0833333333, 99079.125, 99079.1666666667, 99079.2083333333, + 99079.25, 99079.2916666667, 99079.3333333333, 99079.375, + 99079.4166666667, 99079.4583333333, 99079.5, 99079.5416666667, + 99079.5833333333, 99079.625, 99079.6666666667, 99079.7083333333, + 99079.75, 99079.7916666667, 99079.8333333333, 99079.875, + 99079.9166666667, 99079.9583333333, 99080, 99080.0416666667, + 99080.0833333333, 99080.125, 99080.1666666667, 99080.2083333333, + 99080.25, 99080.2916666667, 99080.3333333333, 99080.375, + 99080.4166666667, 99080.4583333333, 99080.5, 99080.5416666667, + 99080.5833333333, 99080.625, 99080.6666666667, 99080.7083333333, + 99080.75, 99080.7916666667, 99080.8333333333, 99080.875, + 99080.9166666667, 99080.9583333333, 99081, 99081.0416666667, + 99081.0833333333, 99081.125, 99081.1666666667, 99081.2083333333, + 99081.25, 99081.2916666667, 99081.3333333333, 99081.375, + 99081.4166666667, 99081.4583333333, 99081.5, 99081.5416666667, + 99081.5833333333, 99081.625, 99081.6666666667, 99081.7083333333, + 99081.75, 99081.7916666667, 99081.8333333333, 99081.875, + 99081.9166666667, 99081.9583333333, 99082, 99082.0416666667, + 99082.0833333333, 99082.125, 99082.1666666667, 99082.2083333333, + 99082.25, 99082.2916666667, 99082.3333333333, 99082.375, + 99082.4166666667, 99082.4583333333, 99082.5, 99082.5416666667, + 99082.5833333333, 99082.625, 99082.6666666667, 99082.7083333333, + 99082.75, 99082.7916666667, 99082.8333333333, 99082.875, + 99082.9166666667, 99082.9583333333, 99083, 99083.0416666667, + 99083.0833333333, 99083.125, 99083.1666666667, 99083.2083333333, + 99083.25, 99083.2916666667, 99083.3333333333, 99083.375, + 99083.4166666667, 99083.4583333333, 99083.5, 99083.5416666667, + 99083.5833333333, 99083.625, 99083.6666666667, 99083.7083333333, + 99083.75, 99083.7916666667, 99083.8333333333, 99083.875, + 99083.9166666667, 99083.9583333333, 99084, 99084.0416666667, + 99084.0833333333, 99084.125, 99084.1666666667, 99084.2083333333, + 99084.25, 99084.2916666667, 99084.3333333333, 99084.375, + 99084.4166666667, 99084.4583333333, 99084.5, 99084.5416666667, + 99084.5833333333, 99084.625, 99084.6666666667, 99084.7083333333, + 99084.75, 99084.7916666667, 99084.8333333333, 99084.875, + 99084.9166666667, 99084.9583333333, 99085, 99085.0416666667, + 99085.0833333333, 99085.125, 99085.1666666667, 99085.2083333333, + 99085.25, 99085.2916666667, 99085.3333333333, 99085.375, + 99085.4166666667, 99085.4583333333, 99085.5, 99085.5416666667, + 99085.5833333333, 99085.625, 99085.6666666667, 99085.7083333333, + 99085.75, 99085.7916666667, 99085.8333333333, 99085.875, + 99085.9166666667, 99085.9583333333, 99086, 99086.0416666667, + 99086.0833333333, 99086.125, 99086.1666666667, 99086.2083333333, + 99086.25, 99086.2916666667, 99086.3333333333, 99086.375, + 99086.4166666667, 99086.4583333333, 99086.5, 99086.5416666667, + 99086.5833333333, 99086.625, 99086.6666666667, 99086.7083333333, + 99086.75, 99086.7916666667, 99086.8333333333, 99086.875, + 99086.9166666667, 99086.9583333333, 99087, 99087.0416666667, + 99087.0833333333, 99087.125, 99087.1666666667, 99087.2083333333, + 99087.25, 99087.2916666667, 99087.3333333333, 99087.375, + 99087.4166666667, 99087.4583333333, 99087.5, 99087.5416666667, + 99087.5833333333, 99087.625, 99087.6666666667, 99087.7083333333, + 99087.75, 99087.7916666667, 99087.8333333333, 99087.875, + 99087.9166666667, 99087.9583333333, 99088, 99088.0416666667, + 99088.0833333333, 99088.125, 99088.1666666667, 99088.2083333333, + 99088.25, 99088.2916666667, 99088.3333333333, 99088.375, + 99088.4166666667, 99088.4583333333, 99088.5, 99088.5416666667, + 99088.5833333333, 99088.625, 99088.6666666667, 99088.7083333333, + 99088.75, 99088.7916666667, 99088.8333333333, 99088.875, + 99088.9166666667, 99088.9583333333, 99089, 99089.0416666667, + 99089.0833333333, 99089.125, 99089.1666666667, 99089.2083333333, + 99089.25, 99089.2916666667, 99089.3333333333, 99089.375, + 99089.4166666667, 99089.4583333333, 99089.5, 99089.5416666667, + 99089.5833333333, 99089.625, 99089.6666666667, 99089.7083333333, + 99089.75, 99089.7916666667, 99089.8333333333, 99089.875, + 99089.9166666667, 99089.9583333333, 99090, 99090.0416666667, + 99090.0833333333, 99090.125, 99090.1666666667, 99090.2083333333, + 99090.25, 99090.2916666667, 99090.3333333333, 99090.375, + 99090.4166666667, 99090.4583333333, 99090.5, 99090.5416666667, + 99090.5833333333, 99090.625, 99090.6666666667, 99090.7083333333, + 99090.75, 99090.7916666667, 99090.8333333333, 99090.875, + 99090.9166666667, 99090.9583333333, 99091, 99091.0416666667, + 99091.0833333333, 99091.125, 99091.1666666667, 99091.2083333333, + 99091.25, 99091.2916666667, 99091.3333333333, 99091.375, + 99091.4166666667, 99091.4583333333, 99091.5, 99091.5416666667, + 99091.5833333333, 99091.625, 99091.6666666667, 99091.7083333333, + 99091.75, 99091.7916666667, 99091.8333333333, 99091.875, + 99091.9166666667, 99091.9583333333, 99092, 99092.0416666667, + 99092.0833333333, 99092.125, 99092.1666666667, 99092.2083333333, + 99092.25, 99092.2916666667, 99092.3333333333, 99092.375, + 99092.4166666667, 99092.4583333333, 99092.5, 99092.5416666667, + 99092.5833333333, 99092.625, 99092.6666666667, 99092.7083333333, + 99092.75, 99092.7916666667, 99092.8333333333, 99092.875, + 99092.9166666667, 99092.9583333333, 99093, 99093.0416666667, + 99093.0833333333, 99093.125, 99093.1666666667, 99093.2083333333, + 99093.25, 99093.2916666667, 99093.3333333333, 99093.375, + 99093.4166666667, 99093.4583333333, 99093.5, 99093.5416666667, + 99093.5833333333, 99093.625, 99093.6666666667, 99093.7083333333, + 99093.75, 99093.7916666667, 99093.8333333333, 99093.875, + 99093.9166666667, 99093.9583333333, 99094, 99094.0416666667, + 99094.0833333333, 99094.125, 99094.1666666667, 99094.2083333333, + 99094.25, 99094.2916666667, 99094.3333333333, 99094.375, + 99094.4166666667, 99094.4583333333, 99094.5, 99094.5416666667, + 99094.5833333333, 99094.625, 99094.6666666667, 99094.7083333333, + 99094.75, 99094.7916666667, 99094.8333333333, 99094.875, + 99094.9166666667, 99094.9583333333, 99095, 99095.0416666667, + 99095.0833333333, 99095.125, 99095.1666666667, 99095.2083333333, + 99095.25, 99095.2916666667, 99095.3333333333, 99095.375, + 99095.4166666667, 99095.4583333333, 99095.5, 99095.5416666667, + 99095.5833333333, 99095.625, 99095.6666666667, 99095.7083333333, + 99095.75, 99095.7916666667, 99095.8333333333, 99095.875, + 99095.9166666667, 99095.9583333333, 99096, 99096.0416666667, + 99096.0833333333, 99096.125, 99096.1666666667, 99096.2083333333, + 99096.25, 99096.2916666667, 99096.3333333333, 99096.375, + 99096.4166666667, 99096.4583333333, 99096.5, 99096.5416666667, + 99096.5833333333, 99096.625, 99096.6666666667, 99096.7083333333, + 99096.75, 99096.7916666667, 99096.8333333333, 99096.875, + 99096.9166666667, 99096.9583333333, 99097, 99097.0416666667, + 99097.0833333333, 99097.125, 99097.1666666667, 99097.2083333333, + 99097.25, 99097.2916666667, 99097.3333333333, 99097.375, + 99097.4166666667, 99097.4583333333, 99097.5, 99097.5416666667, + 99097.5833333333, 99097.625, 99097.6666666667, 99097.7083333333, + 99097.75, 99097.7916666667, 99097.8333333333, 99097.875, + 99097.9166666667, 99097.9583333333, 99098, 99098.0416666667, + 99098.0833333333, 99098.125, 99098.1666666667, 99098.2083333333, + 99098.25, 99098.2916666667, 99098.3333333333, 99098.375, + 99098.4166666667, 99098.4583333333, 99098.5, 99098.5416666667, + 99098.5833333333, 99098.625, 99098.6666666667, 99098.7083333333, + 99098.75, 99098.7916666667, 99098.8333333333, 99098.875, + 99098.9166666667, 99098.9583333333, 99099, 99099.0416666667, + 99099.0833333333, 99099.125, 99099.1666666667, 99099.2083333333, + 99099.25, 99099.2916666667, 99099.3333333333, 99099.375, + 99099.4166666667, 99099.4583333333, 99099.5, 99099.5416666667, + 99099.5833333333, 99099.625, 99099.6666666667, 99099.7083333333, + 99099.75, 99099.7916666667, 99099.8333333333, 99099.875, + 99099.9166666667, 99099.9583333333, 99100, 99100.0416666667, + 99100.0833333333, 99100.125, 99100.1666666667, 99100.2083333333, + 99100.25, 99100.2916666667, 99100.3333333333, 99100.375, + 99100.4166666667, 99100.4583333333, 99100.5, 99100.5416666667, + 99100.5833333333, 99100.625, 99100.6666666667, 99100.7083333333, + 99100.75, 99100.7916666667, 99100.8333333333, 99100.875, + 99100.9166666667, 99100.9583333333, 99101, 99101.0416666667, + 99101.0833333333, 99101.125, 99101.1666666667, 99101.2083333333, + 99101.25, 99101.2916666667, 99101.3333333333, 99101.375, + 99101.4166666667, 99101.4583333333, 99101.5, 99101.5416666667, + 99101.5833333333, 99101.625, 99101.6666666667, 99101.7083333333, + 99101.75, 99101.7916666667, 99101.8333333333, 99101.875, + 99101.9166666667, 99101.9583333333, 99102, 99102.0416666667, + 99102.0833333333, 99102.125, 99102.1666666667, 99102.2083333333, + 99102.25, 99102.2916666667, 99102.3333333333, 99102.375, + 99102.4166666667, 99102.4583333333, 99102.5, 99102.5416666667, + 99102.5833333333, 99102.625, 99102.6666666667, 99102.7083333333, + 99102.75, 99102.7916666667, 99102.8333333333, 99102.875, + 99102.9166666667, 99102.9583333333, 99103, 99103.0416666667, + 99103.0833333333, 99103.125, 99103.1666666667, 99103.2083333333, + 99103.25, 99103.2916666667, 99103.3333333333, 99103.375, + 99103.4166666667, 99103.4583333333, 99103.5, 99103.5416666667, + 99103.5833333333, 99103.625, 99103.6666666667, 99103.7083333333, + 99103.75, 99103.7916666667, 99103.8333333333, 99103.875, + 99103.9166666667, 99103.9583333333, 99104, 99104.0416666667, + 99104.0833333333, 99104.125, 99104.1666666667, 99104.2083333333, + 99104.25, 99104.2916666667, 99104.3333333333, 99104.375, + 99104.4166666667, 99104.4583333333, 99104.5, 99104.5416666667, + 99104.5833333333, 99104.625, 99104.6666666667, 99104.7083333333, + 99104.75, 99104.7916666667, 99104.8333333333, 99104.875, + 99104.9166666667, 99104.9583333333, 99105, 99105.0416666667, + 99105.0833333333, 99105.125, 99105.1666666667, 99105.2083333333, + 99105.25, 99105.2916666667, 99105.3333333333, 99105.375, + 99105.4166666667, 99105.4583333333, 99105.5, 99105.5416666667, + 99105.5833333333, 99105.625, 99105.6666666667, 99105.7083333333, + 99105.75, 99105.7916666667, 99105.8333333333, 99105.875, + 99105.9166666667, 99105.9583333333, 99106, 99106.0416666667, + 99106.0833333333, 99106.125, 99106.1666666667, 99106.2083333333, + 99106.25, 99106.2916666667, 99106.3333333333, 99106.375, + 99106.4166666667, 99106.4583333333, 99106.5, 99106.5416666667, + 99106.5833333333, 99106.625, 99106.6666666667, 99106.7083333333, + 99106.75, 99106.7916666667, 99106.8333333333, 99106.875, + 99106.9166666667, 99106.9583333333, 99107, 99107.0416666667, + 99107.0833333333, 99107.125, 99107.1666666667, 99107.2083333333, + 99107.25, 99107.2916666667, 99107.3333333333, 99107.375, + 99107.4166666667, 99107.4583333333, 99107.5, 99107.5416666667, + 99107.5833333333, 99107.625, 99107.6666666667, 99107.7083333333, + 99107.75, 99107.7916666667, 99107.8333333333, 99107.875, + 99107.9166666667, 99107.9583333333, 99108, 99108.0416666667, + 99108.0833333333, 99108.125, 99108.1666666667, 99108.2083333333, + 99108.25, 99108.2916666667, 99108.3333333333, 99108.375, + 99108.4166666667, 99108.4583333333, 99108.5, 99108.5416666667, + 99108.5833333333, 99108.625, 99108.6666666667, 99108.7083333333, + 99108.75, 99108.7916666667, 99108.8333333333, 99108.875, + 99108.9166666667, 99108.9583333333, 99109, 99109.0416666667, + 99109.0833333333, 99109.125, 99109.1666666667, 99109.2083333333, + 99109.25, 99109.2916666667, 99109.3333333333, 99109.375, + 99109.4166666667, 99109.4583333333, 99109.5, 99109.5416666667, + 99109.5833333333, 99109.625, 99109.6666666667, 99109.7083333333, + 99109.75, 99109.7916666667, 99109.8333333333, 99109.875, + 99109.9166666667, 99109.9583333333, 99110, 99110.0416666667, + 99110.0833333333, 99110.125, 99110.1666666667, 99110.2083333333, + 99110.25, 99110.2916666667, 99110.3333333333, 99110.375, + 99110.4166666667, 99110.4583333333, 99110.5, 99110.5416666667, + 99110.5833333333, 99110.625, 99110.6666666667, 99110.7083333333, + 99110.75, 99110.7916666667, 99110.8333333333, 99110.875, + 99110.9166666667, 99110.9583333333, 99111, 99111.0416666667, + 99111.0833333333, 99111.125, 99111.1666666667, 99111.2083333333, + 99111.25, 99111.2916666667, 99111.3333333333, 99111.375, + 99111.4166666667, 99111.4583333333, 99111.5, 99111.5416666667, + 99111.5833333333, 99111.625, 99111.6666666667, 99111.7083333333, + 99111.75, 99111.7916666667, 99111.8333333333, 99111.875, + 99111.9166666667, 99111.9583333333, 99112, 99112.0416666667, + 99112.0833333333, 99112.125, 99112.1666666667, 99112.2083333333, + 99112.25, 99112.2916666667, 99112.3333333333, 99112.375, + 99112.4166666667, 99112.4583333333, 99112.5, 99112.5416666667, + 99112.5833333333, 99112.625, 99112.6666666667, 99112.7083333333, + 99112.75, 99112.7916666667, 99112.8333333333, 99112.875, + 99112.9166666667, 99112.9583333333, 99113, 99113.0416666667, + 99113.0833333333, 99113.125, 99113.1666666667, 99113.2083333333, + 99113.25, 99113.2916666667, 99113.3333333333, 99113.375, + 99113.4166666667, 99113.4583333333, 99113.5, 99113.5416666667, + 99113.5833333333, 99113.625, 99113.6666666667, 99113.7083333333, + 99113.75, 99113.7916666667, 99113.8333333333, 99113.875, + 99113.9166666667, 99113.9583333333, 99114, 99114.0416666667, + 99114.0833333333, 99114.125, 99114.1666666667, 99114.2083333333, + 99114.25, 99114.2916666667, 99114.3333333333, 99114.375, + 99114.4166666667, 99114.4583333333, 99114.5, 99114.5416666667, + 99114.5833333333, 99114.625, 99114.6666666667, 99114.7083333333, + 99114.75, 99114.7916666667, 99114.8333333333, 99114.875, + 99114.9166666667, 99114.9583333333, 99115, 99115.0416666667, + 99115.0833333333, 99115.125, 99115.1666666667, 99115.2083333333, + 99115.25, 99115.2916666667, 99115.3333333333, 99115.375, + 99115.4166666667, 99115.4583333333, 99115.5, 99115.5416666667, + 99115.5833333333, 99115.625, 99115.6666666667, 99115.7083333333, + 99115.75, 99115.7916666667, 99115.8333333333, 99115.875, + 99115.9166666667, 99115.9583333333, 99116, 99116.0416666667, + 99116.0833333333, 99116.125, 99116.1666666667, 99116.2083333333, + 99116.25, 99116.2916666667, 99116.3333333333, 99116.375, + 99116.4166666667, 99116.4583333333, 99116.5, 99116.5416666667, + 99116.5833333333, 99116.625, 99116.6666666667, 99116.7083333333, + 99116.75, 99116.7916666667, 99116.8333333333, 99116.875, + 99116.9166666667, 99116.9583333333, 99117, 99117.0416666667, + 99117.0833333333, 99117.125, 99117.1666666667, 99117.2083333333, + 99117.25, 99117.2916666667, 99117.3333333333, 99117.375, + 99117.4166666667, 99117.4583333333, 99117.5, 99117.5416666667, + 99117.5833333333, 99117.625, 99117.6666666667, 99117.7083333333, + 99117.75, 99117.7916666667, 99117.8333333333, 99117.875, + 99117.9166666667, 99117.9583333333, 99118, 99118.0416666667, + 99118.0833333333, 99118.125, 99118.1666666667, 99118.2083333333, + 99118.25, 99118.2916666667, 99118.3333333333, 99118.375, + 99118.4166666667, 99118.4583333333, 99118.5, 99118.5416666667, + 99118.5833333333, 99118.625, 99118.6666666667, 99118.7083333333, + 99118.75, 99118.7916666667, 99118.8333333333, 99118.875, + 99118.9166666667, 99118.9583333333, 99119, 99119.0416666667, + 99119.0833333333, 99119.125, 99119.1666666667, 99119.2083333333, + 99119.25, 99119.2916666667, 99119.3333333333, 99119.375, + 99119.4166666667, 99119.4583333333, 99119.5, 99119.5416666667, + 99119.5833333333, 99119.625, 99119.6666666667, 99119.7083333333, + 99119.75, 99119.7916666667, 99119.8333333333, 99119.875, + 99119.9166666667, 99119.9583333333, 99120, 99120.0416666667, + 99120.0833333333, 99120.125, 99120.1666666667, 99120.2083333333, + 99120.25, 99120.2916666667, 99120.3333333333, 99120.375, + 99120.4166666667, 99120.4583333333, 99120.5, 99120.5416666667, + 99120.5833333333, 99120.625, 99120.6666666667, 99120.7083333333, + 99120.75, 99120.7916666667, 99120.8333333333, 99120.875, + 99120.9166666667, 99120.9583333333, 99121, 99121.0416666667, + 99121.0833333333, 99121.125, 99121.1666666667, 99121.2083333333, + 99121.25, 99121.2916666667, 99121.3333333333, 99121.375, + 99121.4166666667, 99121.4583333333, 99121.5, 99121.5416666667, + 99121.5833333333, 99121.625, 99121.6666666667, 99121.7083333333, + 99121.75, 99121.7916666667, 99121.8333333333, 99121.875, + 99121.9166666667, 99121.9583333333, 99122, 99122.0416666667, + 99122.0833333333, 99122.125, 99122.1666666667, 99122.2083333333, + 99122.25, 99122.2916666667, 99122.3333333333, 99122.375, + 99122.4166666667, 99122.4583333333, 99122.5, 99122.5416666667, + 99122.5833333333, 99122.625, 99122.6666666667, 99122.7083333333, + 99122.75, 99122.7916666667, 99122.8333333333, 99122.875, + 99122.9166666667, 99122.9583333333, 99123, 99123.0416666667, + 99123.0833333333, 99123.125, 99123.1666666667, 99123.2083333333, + 99123.25, 99123.2916666667, 99123.3333333333, 99123.375, + 99123.4166666667, 99123.4583333333, 99123.5, 99123.5416666667, + 99123.5833333333, 99123.625, 99123.6666666667, 99123.7083333333, + 99123.75, 99123.7916666667, 99123.8333333333, 99123.875, + 99123.9166666667, 99123.9583333333, 99124, 99124.0416666667, + 99124.0833333333, 99124.125, 99124.1666666667, 99124.2083333333, + 99124.25, 99124.2916666667, 99124.3333333333, 99124.375, + 99124.4166666667, 99124.4583333333, 99124.5, 99124.5416666667, + 99124.5833333333, 99124.625, 99124.6666666667, 99124.7083333333, + 99124.75, 99124.7916666667, 99124.8333333333, 99124.875, + 99124.9166666667, 99124.9583333333, 99125, 99125.0416666667, + 99125.0833333333, 99125.125, 99125.1666666667, 99125.2083333333, + 99125.25, 99125.2916666667, 99125.3333333333, 99125.375, + 99125.4166666667, 99125.4583333333, 99125.5, 99125.5416666667, + 99125.5833333333, 99125.625, 99125.6666666667, 99125.7083333333, + 99125.75, 99125.7916666667, 99125.8333333333, 99125.875, + 99125.9166666667, 99125.9583333333, 99126, 99126.0416666667, + 99126.0833333333, 99126.125, 99126.1666666667, 99126.2083333333, + 99126.25, 99126.2916666667, 99126.3333333333, 99126.375, + 99126.4166666667, 99126.4583333333, 99126.5, 99126.5416666667, + 99126.5833333333, 99126.625, 99126.6666666667, 99126.7083333333, + 99126.75, 99126.7916666667, 99126.8333333333, 99126.875, + 99126.9166666667, 99126.9583333333, 99127, 99127.0416666667, + 99127.0833333333, 99127.125, 99127.1666666667, 99127.2083333333, + 99127.25, 99127.2916666667, 99127.3333333333, 99127.375, + 99127.4166666667, 99127.4583333333, 99127.5, 99127.5416666667, + 99127.5833333333, 99127.625, 99127.6666666667, 99127.7083333333, + 99127.75, 99127.7916666667, 99127.8333333333, 99127.875, + 99127.9166666667, 99127.9583333333, 99128, 99128.0416666667, + 99128.0833333333, 99128.125, 99128.1666666667, 99128.2083333333, + 99128.25, 99128.2916666667, 99128.3333333333, 99128.375, + 99128.4166666667, 99128.4583333333, 99128.5, 99128.5416666667, + 99128.5833333333, 99128.625, 99128.6666666667, 99128.7083333333, + 99128.75, 99128.7916666667, 99128.8333333333, 99128.875, + 99128.9166666667, 99128.9583333333, 99129, 99129.0416666667, + 99129.0833333333, 99129.125, 99129.1666666667, 99129.2083333333, + 99129.25, 99129.2916666667, 99129.3333333333, 99129.375, + 99129.4166666667, 99129.4583333333, 99129.5, 99129.5416666667, + 99129.5833333333, 99129.625, 99129.6666666667, 99129.7083333333, + 99129.75, 99129.7916666667, 99129.8333333333, 99129.875, + 99129.9166666667, 99129.9583333333, 99130, 99130.0416666667, + 99130.0833333333, 99130.125, 99130.1666666667, 99130.2083333333, + 99130.25, 99130.2916666667, 99130.3333333333, 99130.375, + 99130.4166666667, 99130.4583333333, 99130.5, 99130.5416666667, + 99130.5833333333, 99130.625, 99130.6666666667, 99130.7083333333, + 99130.75, 99130.7916666667, 99130.8333333333, 99130.875, + 99130.9166666667, 99130.9583333333, 99131, 99131.0416666667, + 99131.0833333333, 99131.125, 99131.1666666667, 99131.2083333333, + 99131.25, 99131.2916666667, 99131.3333333333, 99131.375, + 99131.4166666667, 99131.4583333333, 99131.5, 99131.5416666667, + 99131.5833333333, 99131.625, 99131.6666666667, 99131.7083333333, + 99131.75, 99131.7916666667, 99131.8333333333, 99131.875, + 99131.9166666667, 99131.9583333333, 99132, 99132.0416666667, + 99132.0833333333, 99132.125, 99132.1666666667, 99132.2083333333, + 99132.25, 99132.2916666667, 99132.3333333333, 99132.375, + 99132.4166666667, 99132.4583333333, 99132.5, 99132.5416666667, + 99132.5833333333, 99132.625, 99132.6666666667, 99132.7083333333, + 99132.75, 99132.7916666667, 99132.8333333333, 99132.875, + 99132.9166666667, 99132.9583333333, 99133, 99133.0416666667, + 99133.0833333333, 99133.125, 99133.1666666667, 99133.2083333333, + 99133.25, 99133.2916666667, 99133.3333333333, 99133.375, + 99133.4166666667, 99133.4583333333, 99133.5, 99133.5416666667, + 99133.5833333333, 99133.625, 99133.6666666667, 99133.7083333333, + 99133.75, 99133.7916666667, 99133.8333333333, 99133.875, + 99133.9166666667, 99133.9583333333, 99134, 99134.0416666667, + 99134.0833333333, 99134.125, 99134.1666666667, 99134.2083333333, + 99134.25, 99134.2916666667, 99134.3333333333, 99134.375, + 99134.4166666667, 99134.4583333333, 99134.5, 99134.5416666667, + 99134.5833333333, 99134.625, 99134.6666666667, 99134.7083333333, + 99134.75, 99134.7916666667, 99134.8333333333, 99134.875, + 99134.9166666667, 99134.9583333333, 99135, 99135.0416666667, + 99135.0833333333, 99135.125, 99135.1666666667, 99135.2083333333, + 99135.25, 99135.2916666667, 99135.3333333333, 99135.375, + 99135.4166666667, 99135.4583333333, 99135.5, 99135.5416666667, + 99135.5833333333, 99135.625, 99135.6666666667, 99135.7083333333, + 99135.75, 99135.7916666667, 99135.8333333333, 99135.875, + 99135.9166666667, 99135.9583333333, 99136, 99136.0416666667, + 99136.0833333333, 99136.125, 99136.1666666667, 99136.2083333333, + 99136.25, 99136.2916666667, 99136.3333333333, 99136.375, + 99136.4166666667, 99136.4583333333, 99136.5, 99136.5416666667, + 99136.5833333333, 99136.625, 99136.6666666667, 99136.7083333333, + 99136.75, 99136.7916666667, 99136.8333333333, 99136.875, + 99136.9166666667, 99136.9583333333, 99137, 99137.0416666667, + 99137.0833333333, 99137.125, 99137.1666666667, 99137.2083333333, + 99137.25, 99137.2916666667, 99137.3333333333, 99137.375, + 99137.4166666667, 99137.4583333333, 99137.5, 99137.5416666667, + 99137.5833333333, 99137.625, 99137.6666666667, 99137.7083333333, + 99137.75, 99137.7916666667, 99137.8333333333, 99137.875, + 99137.9166666667, 99137.9583333333, 99138, 99138.0416666667, + 99138.0833333333, 99138.125, 99138.1666666667, 99138.2083333333, + 99138.25, 99138.2916666667, 99138.3333333333, 99138.375, + 99138.4166666667, 99138.4583333333, 99138.5, 99138.5416666667, + 99138.5833333333, 99138.625, 99138.6666666667, 99138.7083333333, + 99138.75, 99138.7916666667, 99138.8333333333, 99138.875, + 99138.9166666667, 99138.9583333333, 99139, 99139.0416666667, + 99139.0833333333, 99139.125, 99139.1666666667, 99139.2083333333, + 99139.25, 99139.2916666667, 99139.3333333333, 99139.375, + 99139.4166666667, 99139.4583333333, 99139.5, 99139.5416666667, + 99139.5833333333, 99139.625, 99139.6666666667, 99139.7083333333, + 99139.75, 99139.7916666667, 99139.8333333333, 99139.875, + 99139.9166666667, 99139.9583333333, 99140, 99140.0416666667, + 99140.0833333333, 99140.125, 99140.1666666667, 99140.2083333333, + 99140.25, 99140.2916666667, 99140.3333333333, 99140.375, + 99140.4166666667, 99140.4583333333, 99140.5, 99140.5416666667, + 99140.5833333333, 99140.625, 99140.6666666667, 99140.7083333333, + 99140.75, 99140.7916666667, 99140.8333333333, 99140.875, + 99140.9166666667, 99140.9583333333, 99141, 99141.0416666667, + 99141.0833333333, 99141.125, 99141.1666666667, 99141.2083333333, + 99141.25, 99141.2916666667, 99141.3333333333, 99141.375, + 99141.4166666667, 99141.4583333333, 99141.5, 99141.5416666667, + 99141.5833333333, 99141.625, 99141.6666666667, 99141.7083333333, + 99141.75, 99141.7916666667, 99141.8333333333, 99141.875, + 99141.9166666667, 99141.9583333333, 99142, 99142.0416666667, + 99142.0833333333, 99142.125, 99142.1666666667, 99142.2083333333, + 99142.25, 99142.2916666667, 99142.3333333333, 99142.375, + 99142.4166666667, 99142.4583333333, 99142.5, 99142.5416666667, + 99142.5833333333, 99142.625, 99142.6666666667, 99142.7083333333, + 99142.75, 99142.7916666667, 99142.8333333333, 99142.875, + 99142.9166666667, 99142.9583333333, 99143, 99143.0416666667, + 99143.0833333333, 99143.125, 99143.1666666667, 99143.2083333333, + 99143.25, 99143.2916666667, 99143.3333333333, 99143.375, + 99143.4166666667, 99143.4583333333, 99143.5, 99143.5416666667, + 99143.5833333333, 99143.625, 99143.6666666667, 99143.7083333333, + 99143.75, 99143.7916666667, 99143.8333333333, 99143.875, + 99143.9166666667, 99143.9583333333, 99144, 99144.0416666667, + 99144.0833333333, 99144.125, 99144.1666666667, 99144.2083333333, + 99144.25, 99144.2916666667, 99144.3333333333, 99144.375, + 99144.4166666667, 99144.4583333333, 99144.5, 99144.5416666667, + 99144.5833333333, 99144.625, 99144.6666666667, 99144.7083333333, + 99144.75, 99144.7916666667, 99144.8333333333, 99144.875, + 99144.9166666667, 99144.9583333333, 99145, 99145.0416666667, + 99145.0833333333, 99145.125, 99145.1666666667, 99145.2083333333, + 99145.25, 99145.2916666667, 99145.3333333333, 99145.375, + 99145.4166666667, 99145.4583333333, 99145.5, 99145.5416666667, + 99145.5833333333, 99145.625, 99145.6666666667, 99145.7083333333, + 99145.75, 99145.7916666667, 99145.8333333333, 99145.875, + 99145.9166666667, 99145.9583333333, 99146, 99146.0416666667, + 99146.0833333333, 99146.125, 99146.1666666667, 99146.2083333333, + 99146.25, 99146.2916666667, 99146.3333333333, 99146.375, + 99146.4166666667, 99146.4583333333, 99146.5, 99146.5416666667, + 99146.5833333333, 99146.625, 99146.6666666667, 99146.7083333333, + 99146.75, 99146.7916666667, 99146.8333333333, 99146.875, + 99146.9166666667, 99146.9583333333, 99147, 99147.0416666667, + 99147.0833333333, 99147.125, 99147.1666666667, 99147.2083333333, + 99147.25, 99147.2916666667, 99147.3333333333, 99147.375, + 99147.4166666667, 99147.4583333333, 99147.5, 99147.5416666667, + 99147.5833333333, 99147.625, 99147.6666666667, 99147.7083333333, + 99147.75, 99147.7916666667, 99147.8333333333, 99147.875, + 99147.9166666667, 99147.9583333333, 99148, 99148.0416666667, + 99148.0833333333, 99148.125, 99148.1666666667, 99148.2083333333, + 99148.25, 99148.2916666667, 99148.3333333333, 99148.375, + 99148.4166666667, 99148.4583333333, 99148.5, 99148.5416666667, + 99148.5833333333, 99148.625, 99148.6666666667, 99148.7083333333, + 99148.75, 99148.7916666667, 99148.8333333333, 99148.875, + 99148.9166666667, 99148.9583333333, 99149, 99149.0416666667, + 99149.0833333333, 99149.125, 99149.1666666667, 99149.2083333333, + 99149.25, 99149.2916666667, 99149.3333333333, 99149.375, + 99149.4166666667, 99149.4583333333, 99149.5, 99149.5416666667, + 99149.5833333333, 99149.625, 99149.6666666667, 99149.7083333333, + 99149.75, 99149.7916666667, 99149.8333333333, 99149.875, + 99149.9166666667, 99149.9583333333, 99150, 99150.0416666667, + 99150.0833333333, 99150.125, 99150.1666666667, 99150.2083333333, + 99150.25, 99150.2916666667, 99150.3333333333, 99150.375, + 99150.4166666667, 99150.4583333333, 99150.5, 99150.5416666667, + 99150.5833333333, 99150.625, 99150.6666666667, 99150.7083333333, + 99150.75, 99150.7916666667, 99150.8333333333, 99150.875, + 99150.9166666667, 99150.9583333333, 99151, 99151.0416666667, + 99151.0833333333, 99151.125, 99151.1666666667, 99151.2083333333, + 99151.25, 99151.2916666667, 99151.3333333333, 99151.375, + 99151.4166666667, 99151.4583333333, 99151.5, 99151.5416666667, + 99151.5833333333, 99151.625, 99151.6666666667, 99151.7083333333, + 99151.75, 99151.7916666667, 99151.8333333333, 99151.875, + 99151.9166666667, 99151.9583333333, 99152, 99152.0416666667, + 99152.0833333333, 99152.125, 99152.1666666667, 99152.2083333333, + 99152.25, 99152.2916666667, 99152.3333333333, 99152.375, + 99152.4166666667, 99152.4583333333, 99152.5, 99152.5416666667, + 99152.5833333333, 99152.625, 99152.6666666667, 99152.7083333333, + 99152.75, 99152.7916666667, 99152.8333333333, 99152.875, + 99152.9166666667, 99152.9583333333, 99153, 99153.0416666667, + 99153.0833333333, 99153.125, 99153.1666666667, 99153.2083333333, + 99153.25, 99153.2916666667, 99153.3333333333, 99153.375, + 99153.4166666667, 99153.4583333333, 99153.5, 99153.5416666667, + 99153.5833333333, 99153.625, 99153.6666666667, 99153.7083333333, + 99153.75, 99153.7916666667, 99153.8333333333, 99153.875, + 99153.9166666667, 99153.9583333333, 99154, 99154.0416666667, + 99154.0833333333, 99154.125, 99154.1666666667, 99154.2083333333, + 99154.25, 99154.2916666667, 99154.3333333333, 99154.375, + 99154.4166666667, 99154.4583333333, 99154.5, 99154.5416666667, + 99154.5833333333, 99154.625, 99154.6666666667, 99154.7083333333, + 99154.75, 99154.7916666667, 99154.8333333333, 99154.875, + 99154.9166666667, 99154.9583333333, 99155, 99155.0416666667, + 99155.0833333333, 99155.125, 99155.1666666667, 99155.2083333333, + 99155.25, 99155.2916666667, 99155.3333333333, 99155.375, + 99155.4166666667, 99155.4583333333, 99155.5, 99155.5416666667, + 99155.5833333333, 99155.625, 99155.6666666667, 99155.7083333333, + 99155.75, 99155.7916666667, 99155.8333333333, 99155.875, + 99155.9166666667, 99155.9583333333, 99156, 99156.0416666667, + 99156.0833333333, 99156.125, 99156.1666666667, 99156.2083333333, + 99156.25, 99156.2916666667, 99156.3333333333, 99156.375, + 99156.4166666667, 99156.4583333333, 99156.5, 99156.5416666667, + 99156.5833333333, 99156.625, 99156.6666666667, 99156.7083333333, + 99156.75, 99156.7916666667, 99156.8333333333, 99156.875, + 99156.9166666667, 99156.9583333333, 99157, 99157.0416666667, + 99157.0833333333, 99157.125, 99157.1666666667, 99157.2083333333, + 99157.25, 99157.2916666667, 99157.3333333333, 99157.375, + 99157.4166666667, 99157.4583333333, 99157.5, 99157.5416666667, + 99157.5833333333, 99157.625, 99157.6666666667, 99157.7083333333, + 99157.75, 99157.7916666667, 99157.8333333333, 99157.875, + 99157.9166666667, 99157.9583333333, 99158, 99158.0416666667, + 99158.0833333333, 99158.125, 99158.1666666667, 99158.2083333333, + 99158.25, 99158.2916666667, 99158.3333333333, 99158.375, + 99158.4166666667, 99158.4583333333, 99158.5, 99158.5416666667, + 99158.5833333333, 99158.625, 99158.6666666667, 99158.7083333333, + 99158.75, 99158.7916666667, 99158.8333333333, 99158.875, + 99158.9166666667, 99158.9583333333, 99159, 99159.0416666667, + 99159.0833333333, 99159.125, 99159.1666666667, 99159.2083333333, + 99159.25, 99159.2916666667, 99159.3333333333, 99159.375, + 99159.4166666667, 99159.4583333333, 99159.5, 99159.5416666667, + 99159.5833333333, 99159.625, 99159.6666666667, 99159.7083333333, + 99159.75, 99159.7916666667, 99159.8333333333, 99159.875, + 99159.9166666667, 99159.9583333333, 99160, 99160.0416666667, + 99160.0833333333, 99160.125, 99160.1666666667, 99160.2083333333, + 99160.25, 99160.2916666667, 99160.3333333333, 99160.375, + 99160.4166666667, 99160.4583333333, 99160.5, 99160.5416666667, + 99160.5833333333, 99160.625, 99160.6666666667, 99160.7083333333, + 99160.75, 99160.7916666667, 99160.8333333333, 99160.875, + 99160.9166666667, 99160.9583333333, 99161, 99161.0416666667, + 99161.0833333333, 99161.125, 99161.1666666667, 99161.2083333333, + 99161.25, 99161.2916666667, 99161.3333333333, 99161.375, + 99161.4166666667, 99161.4583333333, 99161.5, 99161.5416666667, + 99161.5833333333, 99161.625, 99161.6666666667, 99161.7083333333, + 99161.75, 99161.7916666667, 99161.8333333333, 99161.875, + 99161.9166666667, 99161.9583333333, 99162, 99162.0416666667, + 99162.0833333333, 99162.125, 99162.1666666667, 99162.2083333333, + 99162.25, 99162.2916666667, 99162.3333333333, 99162.375, + 99162.4166666667, 99162.4583333333, 99162.5, 99162.5416666667, + 99162.5833333333, 99162.625, 99162.6666666667, 99162.7083333333, + 99162.75, 99162.7916666667, 99162.8333333333, 99162.875, + 99162.9166666667, 99162.9583333333, 99163, 99163.0416666667, + 99163.0833333333, 99163.125, 99163.1666666667, 99163.2083333333, + 99163.25, 99163.2916666667, 99163.3333333333, 99163.375, + 99163.4166666667, 99163.4583333333, 99163.5, 99163.5416666667, + 99163.5833333333, 99163.625, 99163.6666666667, 99163.7083333333, + 99163.75, 99163.7916666667, 99163.8333333333, 99163.875, + 99163.9166666667, 99163.9583333333, 99164, 99164.0416666667, + 99164.0833333333, 99164.125, 99164.1666666667, 99164.2083333333, + 99164.25, 99164.2916666667, 99164.3333333333, 99164.375, + 99164.4166666667, 99164.4583333333, 99164.5, 99164.5416666667, + 99164.5833333333, 99164.625, 99164.6666666667, 99164.7083333333, + 99164.75, 99164.7916666667, 99164.8333333333, 99164.875, + 99164.9166666667, 99164.9583333333, 99165, 99165.0416666667, + 99165.0833333333, 99165.125, 99165.1666666667, 99165.2083333333, + 99165.25, 99165.2916666667, 99165.3333333333, 99165.375, + 99165.4166666667, 99165.4583333333, 99165.5, 99165.5416666667, + 99165.5833333333, 99165.625, 99165.6666666667, 99165.7083333333, + 99165.75, 99165.7916666667, 99165.8333333333, 99165.875, + 99165.9166666667, 99165.9583333333, 99166, 99166.0416666667, + 99166.0833333333, 99166.125, 99166.1666666667, 99166.2083333333, + 99166.25, 99166.2916666667, 99166.3333333333, 99166.375, + 99166.4166666667, 99166.4583333333, 99166.5, 99166.5416666667, + 99166.5833333333, 99166.625, 99166.6666666667, 99166.7083333333, + 99166.75, 99166.7916666667, 99166.8333333333, 99166.875, + 99166.9166666667, 99166.9583333333, 99167, 99167.0416666667, + 99167.0833333333, 99167.125, 99167.1666666667, 99167.2083333333, + 99167.25, 99167.2916666667, 99167.3333333333, 99167.375, + 99167.4166666667, 99167.4583333333, 99167.5, 99167.5416666667, + 99167.5833333333, 99167.625, 99167.6666666667, 99167.7083333333, + 99167.75, 99167.7916666667, 99167.8333333333, 99167.875, + 99167.9166666667, 99167.9583333333, 99168, 99168.0416666667, + 99168.0833333333, 99168.125, 99168.1666666667, 99168.2083333333, + 99168.25, 99168.2916666667, 99168.3333333333, 99168.375, + 99168.4166666667, 99168.4583333333, 99168.5, 99168.5416666667, + 99168.5833333333, 99168.625, 99168.6666666667, 99168.7083333333, + 99168.75, 99168.7916666667, 99168.8333333333, 99168.875, + 99168.9166666667, 99168.9583333333, 99169, 99169.0416666667, + 99169.0833333333, 99169.125, 99169.1666666667, 99169.2083333333, + 99169.25, 99169.2916666667, 99169.3333333333, 99169.375, + 99169.4166666667, 99169.4583333333, 99169.5, 99169.5416666667, + 99169.5833333333, 99169.625, 99169.6666666667, 99169.7083333333, + 99169.75, 99169.7916666667, 99169.8333333333, 99169.875, + 99169.9166666667, 99169.9583333333, 99170, 99170.0416666667, + 99170.0833333333, 99170.125, 99170.1666666667, 99170.2083333333, + 99170.25, 99170.2916666667, 99170.3333333333, 99170.375, + 99170.4166666667, 99170.4583333333, 99170.5, 99170.5416666667, + 99170.5833333333, 99170.625, 99170.6666666667, 99170.7083333333, + 99170.75, 99170.7916666667, 99170.8333333333, 99170.875, + 99170.9166666667, 99170.9583333333, 99171, 99171.0416666667, + 99171.0833333333, 99171.125, 99171.1666666667, 99171.2083333333, + 99171.25, 99171.2916666667, 99171.3333333333, 99171.375, + 99171.4166666667, 99171.4583333333, 99171.5, 99171.5416666667, + 99171.5833333333, 99171.625, 99171.6666666667, 99171.7083333333, + 99171.75, 99171.7916666667, 99171.8333333333, 99171.875, + 99171.9166666667, 99171.9583333333, 99172, 99172.0416666667, + 99172.0833333333, 99172.125, 99172.1666666667, 99172.2083333333, + 99172.25, 99172.2916666667, 99172.3333333333, 99172.375, + 99172.4166666667, 99172.4583333333, 99172.5, 99172.5416666667, + 99172.5833333333, 99172.625, 99172.6666666667, 99172.7083333333, + 99172.75, 99172.7916666667, 99172.8333333333, 99172.875, + 99172.9166666667, 99172.9583333333, 99173, 99173.0416666667, + 99173.0833333333, 99173.125, 99173.1666666667, 99173.2083333333, + 99173.25, 99173.2916666667, 99173.3333333333, 99173.375, + 99173.4166666667, 99173.4583333333, 99173.5, 99173.5416666667, + 99173.5833333333, 99173.625, 99173.6666666667, 99173.7083333333, + 99173.75, 99173.7916666667, 99173.8333333333, 99173.875, + 99173.9166666667, 99173.9583333333, 99174, 99174.0416666667, + 99174.0833333333, 99174.125, 99174.1666666667, 99174.2083333333, + 99174.25, 99174.2916666667, 99174.3333333333, 99174.375, + 99174.4166666667, 99174.4583333333, 99174.5, 99174.5416666667, + 99174.5833333333, 99174.625, 99174.6666666667, 99174.7083333333, + 99174.75, 99174.7916666667, 99174.8333333333, 99174.875, + 99174.9166666667, 99174.9583333333, 99175, 99175.0416666667, + 99175.0833333333, 99175.125, 99175.1666666667, 99175.2083333333, + 99175.25, 99175.2916666667, 99175.3333333333, 99175.375, + 99175.4166666667, 99175.4583333333, 99175.5, 99175.5416666667, + 99175.5833333333, 99175.625, 99175.6666666667, 99175.7083333333, + 99175.75, 99175.7916666667, 99175.8333333333, 99175.875, + 99175.9166666667, 99175.9583333333, 99176, 99176.0416666667, + 99176.0833333333, 99176.125, 99176.1666666667, 99176.2083333333, + 99176.25, 99176.2916666667, 99176.3333333333, 99176.375, + 99176.4166666667, 99176.4583333333, 99176.5, 99176.5416666667, + 99176.5833333333, 99176.625, 99176.6666666667, 99176.7083333333, + 99176.75, 99176.7916666667, 99176.8333333333, 99176.875, + 99176.9166666667, 99176.9583333333, 99177, 99177.0416666667, + 99177.0833333333, 99177.125, 99177.1666666667, 99177.2083333333, + 99177.25, 99177.2916666667, 99177.3333333333, 99177.375, + 99177.4166666667, 99177.4583333333, 99177.5, 99177.5416666667, + 99177.5833333333, 99177.625, 99177.6666666667, 99177.7083333333, + 99177.75, 99177.7916666667, 99177.8333333333, 99177.875, + 99177.9166666667, 99177.9583333333, 99178, 99178.0416666667, + 99178.0833333333, 99178.125, 99178.1666666667, 99178.2083333333, + 99178.25, 99178.2916666667, 99178.3333333333, 99178.375, + 99178.4166666667, 99178.4583333333, 99178.5, 99178.5416666667, + 99178.5833333333, 99178.625, 99178.6666666667, 99178.7083333333, + 99178.75, 99178.7916666667, 99178.8333333333, 99178.875, + 99178.9166666667, 99178.9583333333, 99179, 99179.0416666667, + 99179.0833333333, 99179.125, 99179.1666666667, 99179.2083333333, + 99179.25, 99179.2916666667, 99179.3333333333, 99179.375, + 99179.4166666667, 99179.4583333333, 99179.5, 99179.5416666667, + 99179.5833333333, 99179.625, 99179.6666666667, 99179.7083333333, + 99179.75, 99179.7916666667, 99179.8333333333, 99179.875, + 99179.9166666667, 99179.9583333333, 99180, 99180.0416666667, + 99180.0833333333, 99180.125, 99180.1666666667, 99180.2083333333, + 99180.25, 99180.2916666667, 99180.3333333333, 99180.375, + 99180.4166666667, 99180.4583333333, 99180.5, 99180.5416666667, + 99180.5833333333, 99180.625, 99180.6666666667, 99180.7083333333, + 99180.75, 99180.7916666667, 99180.8333333333, 99180.875, + 99180.9166666667, 99180.9583333333, 99181, 99181.0416666667, + 99181.0833333333, 99181.125, 99181.1666666667, 99181.2083333333, + 99181.25, 99181.2916666667, 99181.3333333333, 99181.375, + 99181.4166666667, 99181.4583333333, 99181.5, 99181.5416666667, + 99181.5833333333, 99181.625, 99181.6666666667, 99181.7083333333, + 99181.75, 99181.7916666667, 99181.8333333333, 99181.875, + 99181.9166666667, 99181.9583333333, 99182, 99182.0416666667, + 99182.0833333333, 99182.125, 99182.1666666667, 99182.2083333333, + 99182.25, 99182.2916666667, 99182.3333333333, 99182.375, + 99182.4166666667, 99182.4583333333, 99182.5, 99182.5416666667, + 99182.5833333333, 99182.625, 99182.6666666667, 99182.7083333333, + 99182.75, 99182.7916666667, 99182.8333333333, 99182.875, + 99182.9166666667, 99182.9583333333, 99183, 99183.0416666667, + 99183.0833333333, 99183.125, 99183.1666666667, 99183.2083333333, + 99183.25, 99183.2916666667, 99183.3333333333, 99183.375, + 99183.4166666667, 99183.4583333333, 99183.5, 99183.5416666667, + 99183.5833333333, 99183.625, 99183.6666666667, 99183.7083333333, + 99183.75, 99183.7916666667, 99183.8333333333, 99183.875, + 99183.9166666667, 99183.9583333333, 99184, 99184.0416666667, + 99184.0833333333, 99184.125, 99184.1666666667, 99184.2083333333, + 99184.25, 99184.2916666667, 99184.3333333333, 99184.375, + 99184.4166666667, 99184.4583333333, 99184.5, 99184.5416666667, + 99184.5833333333, 99184.625, 99184.6666666667, 99184.7083333333, + 99184.75, 99184.7916666667, 99184.8333333333, 99184.875, + 99184.9166666667, 99184.9583333333, 99185, 99185.0416666667, + 99185.0833333333, 99185.125, 99185.1666666667, 99185.2083333333, + 99185.25, 99185.2916666667, 99185.3333333333, 99185.375, + 99185.4166666667, 99185.4583333333, 99185.5, 99185.5416666667, + 99185.5833333333, 99185.625, 99185.6666666667, 99185.7083333333, + 99185.75, 99185.7916666667, 99185.8333333333, 99185.875, + 99185.9166666667, 99185.9583333333, 99186, 99186.0416666667, + 99186.0833333333, 99186.125, 99186.1666666667, 99186.2083333333, + 99186.25, 99186.2916666667, 99186.3333333333, 99186.375, + 99186.4166666667, 99186.4583333333, 99186.5, 99186.5416666667, + 99186.5833333333, 99186.625, 99186.6666666667, 99186.7083333333, + 99186.75, 99186.7916666667, 99186.8333333333, 99186.875, + 99186.9166666667, 99186.9583333333, 99187, 99187.0416666667, + 99187.0833333333, 99187.125, 99187.1666666667, 99187.2083333333, + 99187.25, 99187.2916666667, 99187.3333333333, 99187.375, + 99187.4166666667, 99187.4583333333, 99187.5, 99187.5416666667, + 99187.5833333333, 99187.625, 99187.6666666667, 99187.7083333333, + 99187.75, 99187.7916666667, 99187.8333333333, 99187.875, + 99187.9166666667, 99187.9583333333, 99188, 99188.0416666667, + 99188.0833333333, 99188.125, 99188.1666666667, 99188.2083333333, + 99188.25, 99188.2916666667, 99188.3333333333, 99188.375, + 99188.4166666667, 99188.4583333333, 99188.5, 99188.5416666667, + 99188.5833333333, 99188.625, 99188.6666666667, 99188.7083333333, + 99188.75, 99188.7916666667, 99188.8333333333, 99188.875, + 99188.9166666667, 99188.9583333333, 99189, 99189.0416666667, + 99189.0833333333, 99189.125, 99189.1666666667, 99189.2083333333, + 99189.25, 99189.2916666667, 99189.3333333333, 99189.375, + 99189.4166666667, 99189.4583333333, 99189.5, 99189.5416666667, + 99189.5833333333, 99189.625, 99189.6666666667, 99189.7083333333, + 99189.75, 99189.7916666667, 99189.8333333333, 99189.875, + 99189.9166666667, 99189.9583333333, 99190, 99190.0416666667, + 99190.0833333333, 99190.125, 99190.1666666667, 99190.2083333333, + 99190.25, 99190.2916666667, 99190.3333333333, 99190.375, + 99190.4166666667, 99190.4583333333, 99190.5, 99190.5416666667, + 99190.5833333333, 99190.625, 99190.6666666667, 99190.7083333333, + 99190.75, 99190.7916666667, 99190.8333333333, 99190.875, + 99190.9166666667, 99190.9583333333, 99191, 99191.0416666667, + 99191.0833333333, 99191.125, 99191.1666666667, 99191.2083333333, + 99191.25, 99191.2916666667, 99191.3333333333, 99191.375, + 99191.4166666667, 99191.4583333333, 99191.5, 99191.5416666667, + 99191.5833333333, 99191.625, 99191.6666666667, 99191.7083333333, + 99191.75, 99191.7916666667, 99191.8333333333, 99191.875, + 99191.9166666667, 99191.9583333333, 99192, 99192.0416666667, + 99192.0833333333, 99192.125, 99192.1666666667, 99192.2083333333, + 99192.25, 99192.2916666667, 99192.3333333333, 99192.375, + 99192.4166666667, 99192.4583333333, 99192.5, 99192.5416666667, + 99192.5833333333, 99192.625, 99192.6666666667, 99192.7083333333, + 99192.75, 99192.7916666667, 99192.8333333333, 99192.875, + 99192.9166666667, 99192.9583333333, 99193, 99193.0416666667, + 99193.0833333333, 99193.125, 99193.1666666667, 99193.2083333333, + 99193.25, 99193.2916666667, 99193.3333333333, 99193.375, + 99193.4166666667, 99193.4583333333, 99193.5, 99193.5416666667, + 99193.5833333333, 99193.625, 99193.6666666667, 99193.7083333333, + 99193.75, 99193.7916666667, 99193.8333333333, 99193.875, + 99193.9166666667, 99193.9583333333, 99194, 99194.0416666667, + 99194.0833333333, 99194.125, 99194.1666666667, 99194.2083333333, + 99194.25, 99194.2916666667, 99194.3333333333, 99194.375, + 99194.4166666667, 99194.4583333333, 99194.5, 99194.5416666667, + 99194.5833333333, 99194.625, 99194.6666666667, 99194.7083333333, + 99194.75, 99194.7916666667, 99194.8333333333, 99194.875, + 99194.9166666667, 99194.9583333333, 99195, 99195.0416666667, + 99195.0833333333, 99195.125, 99195.1666666667, 99195.2083333333, + 99195.25, 99195.2916666667, 99195.3333333333, 99195.375, + 99195.4166666667, 99195.4583333333, 99195.5, 99195.5416666667, + 99195.5833333333, 99195.625, 99195.6666666667, 99195.7083333333, + 99195.75, 99195.7916666667, 99195.8333333333, 99195.875, + 99195.9166666667, 99195.9583333333, 99196, 99196.0416666667, + 99196.0833333333, 99196.125, 99196.1666666667, 99196.2083333333, + 99196.25, 99196.2916666667, 99196.3333333333, 99196.375, + 99196.4166666667, 99196.4583333333, 99196.5, 99196.5416666667, + 99196.5833333333, 99196.625, 99196.6666666667, 99196.7083333333, + 99196.75, 99196.7916666667, 99196.8333333333, 99196.875, + 99196.9166666667, 99196.9583333333, 99197, 99197.0416666667, + 99197.0833333333, 99197.125, 99197.1666666667, 99197.2083333333, + 99197.25, 99197.2916666667, 99197.3333333333, 99197.375, + 99197.4166666667, 99197.4583333333, 99197.5, 99197.5416666667, + 99197.5833333333, 99197.625, 99197.6666666667, 99197.7083333333, + 99197.75, 99197.7916666667, 99197.8333333333, 99197.875, + 99197.9166666667, 99197.9583333333, 99198, 99198.0416666667, + 99198.0833333333, 99198.125, 99198.1666666667, 99198.2083333333, + 99198.25, 99198.2916666667, 99198.3333333333, 99198.375, + 99198.4166666667, 99198.4583333333, 99198.5, 99198.5416666667, + 99198.5833333333, 99198.625, 99198.6666666667, 99198.7083333333, + 99198.75, 99198.7916666667, 99198.8333333333, 99198.875, + 99198.9166666667, 99198.9583333333, 99199, 99199.0416666667, + 99199.0833333333, 99199.125, 99199.1666666667, 99199.2083333333, + 99199.25, 99199.2916666667, 99199.3333333333, 99199.375, + 99199.4166666667, 99199.4583333333, 99199.5, 99199.5416666667, + 99199.5833333333, 99199.625, 99199.6666666667, 99199.7083333333, + 99199.75, 99199.7916666667, 99199.8333333333, 99199.875, + 99199.9166666667, 99199.9583333333, 99200, 99200.0416666667, + 99200.0833333333, 99200.125, 99200.1666666667, 99200.2083333333, + 99200.25, 99200.2916666667, 99200.3333333333, 99200.375, + 99200.4166666667, 99200.4583333333, 99200.5, 99200.5416666667, + 99200.5833333333, 99200.625, 99200.6666666667, 99200.7083333333, + 99200.75, 99200.7916666667, 99200.8333333333, 99200.875, + 99200.9166666667, 99200.9583333333, 99201, 99201.0416666667, + 99201.0833333333, 99201.125, 99201.1666666667, 99201.2083333333, + 99201.25, 99201.2916666667, 99201.3333333333, 99201.375, + 99201.4166666667, 99201.4583333333, 99201.5, 99201.5416666667, + 99201.5833333333, 99201.625, 99201.6666666667, 99201.7083333333, + 99201.75, 99201.7916666667, 99201.8333333333, 99201.875, + 99201.9166666667, 99201.9583333333, 99202, 99202.0416666667, + 99202.0833333333, 99202.125, 99202.1666666667, 99202.2083333333, + 99202.25, 99202.2916666667, 99202.3333333333, 99202.375, + 99202.4166666667, 99202.4583333333, 99202.5, 99202.5416666667, + 99202.5833333333, 99202.625, 99202.6666666667, 99202.7083333333, + 99202.75, 99202.7916666667, 99202.8333333333, 99202.875, + 99202.9166666667, 99202.9583333333, 99203, 99203.0416666667, + 99203.0833333333, 99203.125, 99203.1666666667, 99203.2083333333, + 99203.25, 99203.2916666667, 99203.3333333333, 99203.375, + 99203.4166666667, 99203.4583333333, 99203.5, 99203.5416666667, + 99203.5833333333, 99203.625, 99203.6666666667, 99203.7083333333, + 99203.75, 99203.7916666667, 99203.8333333333, 99203.875, + 99203.9166666667, 99203.9583333333, 99204, 99204.0416666667, + 99204.0833333333, 99204.125, 99204.1666666667, 99204.2083333333, + 99204.25, 99204.2916666667, 99204.3333333333, 99204.375, + 99204.4166666667, 99204.4583333333, 99204.5, 99204.5416666667, + 99204.5833333333, 99204.625, 99204.6666666667, 99204.7083333333, + 99204.75, 99204.7916666667, 99204.8333333333, 99204.875, + 99204.9166666667, 99204.9583333333, 99205, 99205.0416666667, + 99205.0833333333, 99205.125, 99205.1666666667, 99205.2083333333, + 99205.25, 99205.2916666667, 99205.3333333333, 99205.375, + 99205.4166666667, 99205.4583333333, 99205.5, 99205.5416666667, + 99205.5833333333, 99205.625, 99205.6666666667, 99205.7083333333, + 99205.75, 99205.7916666667, 99205.8333333333, 99205.875, + 99205.9166666667, 99205.9583333333, 99206, 99206.0416666667, + 99206.0833333333, 99206.125, 99206.1666666667, 99206.2083333333, + 99206.25, 99206.2916666667, 99206.3333333333, 99206.375, + 99206.4166666667, 99206.4583333333, 99206.5, 99206.5416666667, + 99206.5833333333, 99206.625, 99206.6666666667, 99206.7083333333, + 99206.75, 99206.7916666667, 99206.8333333333, 99206.875, + 99206.9166666667, 99206.9583333333, 99207, 99207.0416666667, + 99207.0833333333, 99207.125, 99207.1666666667, 99207.2083333333, + 99207.25, 99207.2916666667, 99207.3333333333, 99207.375, + 99207.4166666667, 99207.4583333333, 99207.5, 99207.5416666667, + 99207.5833333333, 99207.625, 99207.6666666667, 99207.7083333333, + 99207.75, 99207.7916666667, 99207.8333333333, 99207.875, + 99207.9166666667, 99207.9583333333, 99208, 99208.0416666667, + 99208.0833333333, 99208.125, 99208.1666666667, 99208.2083333333, + 99208.25, 99208.2916666667, 99208.3333333333, 99208.375, + 99208.4166666667, 99208.4583333333, 99208.5, 99208.5416666667, + 99208.5833333333, 99208.625, 99208.6666666667, 99208.7083333333, + 99208.75, 99208.7916666667, 99208.8333333333, 99208.875, + 99208.9166666667, 99208.9583333333, 99209, 99209.0416666667, + 99209.0833333333, 99209.125, 99209.1666666667, 99209.2083333333, + 99209.25, 99209.2916666667, 99209.3333333333, 99209.375, + 99209.4166666667, 99209.4583333333, 99209.5, 99209.5416666667, + 99209.5833333333, 99209.625, 99209.6666666667, 99209.7083333333, + 99209.75, 99209.7916666667, 99209.8333333333, 99209.875, + 99209.9166666667, 99209.9583333333, 99210, 99210.0416666667, + 99210.0833333333, 99210.125, 99210.1666666667, 99210.2083333333, + 99210.25, 99210.2916666667, 99210.3333333333, 99210.375, + 99210.4166666667, 99210.4583333333, 99210.5, 99210.5416666667, + 99210.5833333333, 99210.625, 99210.6666666667, 99210.7083333333, + 99210.75, 99210.7916666667, 99210.8333333333, 99210.875, + 99210.9166666667, 99210.9583333333, 99211, 99211.0416666667, + 99211.0833333333, 99211.125, 99211.1666666667, 99211.2083333333, + 99211.25, 99211.2916666667, 99211.3333333333, 99211.375, + 99211.4166666667, 99211.4583333333, 99211.5, 99211.5416666667, + 99211.5833333333, 99211.625, 99211.6666666667, 99211.7083333333, + 99211.75, 99211.7916666667, 99211.8333333333, 99211.875, + 99211.9166666667, 99211.9583333333, 99212, 99212.0416666667, + 99212.0833333333, 99212.125, 99212.1666666667, 99212.2083333333, + 99212.25, 99212.2916666667, 99212.3333333333, 99212.375, + 99212.4166666667, 99212.4583333333, 99212.5, 99212.5416666667, + 99212.5833333333, 99212.625, 99212.6666666667, 99212.7083333333, + 99212.75, 99212.7916666667, 99212.8333333333, 99212.875, + 99212.9166666667, 99212.9583333333, 99213, 99213.0416666667, + 99213.0833333333, 99213.125, 99213.1666666667, 99213.2083333333, + 99213.25, 99213.2916666667, 99213.3333333333, 99213.375, + 99213.4166666667, 99213.4583333333, 99213.5, 99213.5416666667, + 99213.5833333333, 99213.625, 99213.6666666667, 99213.7083333333, + 99213.75, 99213.7916666667, 99213.8333333333, 99213.875, + 99213.9166666667, 99213.9583333333, 99214, 99214.0416666667, + 99214.0833333333, 99214.125, 99214.1666666667, 99214.2083333333, + 99214.25, 99214.2916666667, 99214.3333333333, 99214.375, + 99214.4166666667, 99214.4583333333, 99214.5, 99214.5416666667, + 99214.5833333333, 99214.625, 99214.6666666667, 99214.7083333333, + 99214.75, 99214.7916666667, 99214.8333333333, 99214.875, + 99214.9166666667, 99214.9583333333, 99215, 99215.0416666667, + 99215.0833333333, 99215.125, 99215.1666666667, 99215.2083333333, + 99215.25, 99215.2916666667, 99215.3333333333, 99215.375, + 99215.4166666667, 99215.4583333333, 99215.5, 99215.5416666667, + 99215.5833333333, 99215.625, 99215.6666666667, 99215.7083333333, + 99215.75, 99215.7916666667, 99215.8333333333, 99215.875, + 99215.9166666667, 99215.9583333333, 99216, 99216.0416666667, + 99216.0833333333, 99216.125, 99216.1666666667, 99216.2083333333, + 99216.25, 99216.2916666667, 99216.3333333333, 99216.375, + 99216.4166666667, 99216.4583333333, 99216.5, 99216.5416666667, + 99216.5833333333, 99216.625, 99216.6666666667, 99216.7083333333, + 99216.75, 99216.7916666667, 99216.8333333333, 99216.875, + 99216.9166666667, 99216.9583333333, 99217, 99217.0416666667, + 99217.0833333333, 99217.125, 99217.1666666667, 99217.2083333333, + 99217.25, 99217.2916666667, 99217.3333333333, 99217.375, + 99217.4166666667, 99217.4583333333, 99217.5, 99217.5416666667, + 99217.5833333333, 99217.625, 99217.6666666667, 99217.7083333333, + 99217.75, 99217.7916666667, 99217.8333333333, 99217.875, + 99217.9166666667, 99217.9583333333, 99218, 99218.0416666667, + 99218.0833333333, 99218.125, 99218.1666666667, 99218.2083333333, + 99218.25, 99218.2916666667, 99218.3333333333, 99218.375, + 99218.4166666667, 99218.4583333333, 99218.5, 99218.5416666667, + 99218.5833333333, 99218.625, 99218.6666666667, 99218.7083333333, + 99218.75, 99218.7916666667, 99218.8333333333, 99218.875, + 99218.9166666667, 99218.9583333333, 99219, 99219.0416666667, + 99219.0833333333, 99219.125, 99219.1666666667, 99219.2083333333, + 99219.25, 99219.2916666667, 99219.3333333333, 99219.375, + 99219.4166666667, 99219.4583333333, 99219.5, 99219.5416666667, + 99219.5833333333, 99219.625, 99219.6666666667, 99219.7083333333, + 99219.75, 99219.7916666667, 99219.8333333333, 99219.875, + 99219.9166666667, 99219.9583333333, 99220, 99220.0416666667, + 99220.0833333333, 99220.125, 99220.1666666667, 99220.2083333333, + 99220.25, 99220.2916666667, 99220.3333333333, 99220.375, + 99220.4166666667, 99220.4583333333, 99220.5, 99220.5416666667, + 99220.5833333333, 99220.625, 99220.6666666667, 99220.7083333333, + 99220.75, 99220.7916666667, 99220.8333333333, 99220.875, + 99220.9166666667, 99220.9583333333, 99221, 99221.0416666667, + 99221.0833333333, 99221.125, 99221.1666666667, 99221.2083333333, + 99221.25, 99221.2916666667, 99221.3333333333, 99221.375, + 99221.4166666667, 99221.4583333333, 99221.5, 99221.5416666667, + 99221.5833333333, 99221.625, 99221.6666666667, 99221.7083333333, + 99221.75, 99221.7916666667, 99221.8333333333, 99221.875, + 99221.9166666667, 99221.9583333333, 99222, 99222.0416666667, + 99222.0833333333, 99222.125, 99222.1666666667, 99222.2083333333, + 99222.25, 99222.2916666667, 99222.3333333333, 99222.375, + 99222.4166666667, 99222.4583333333, 99222.5, 99222.5416666667, + 99222.5833333333, 99222.625, 99222.6666666667, 99222.7083333333, + 99222.75, 99222.7916666667, 99222.8333333333, 99222.875, + 99222.9166666667, 99222.9583333333, 99223, 99223.0416666667, + 99223.0833333333, 99223.125, 99223.1666666667, 99223.2083333333, + 99223.25, 99223.2916666667, 99223.3333333333, 99223.375, + 99223.4166666667, 99223.4583333333, 99223.5, 99223.5416666667, + 99223.5833333333, 99223.625, 99223.6666666667, 99223.7083333333, + 99223.75, 99223.7916666667, 99223.8333333333, 99223.875, + 99223.9166666667, 99223.9583333333, 99224, 99224.0416666667, + 99224.0833333333, 99224.125, 99224.1666666667, 99224.2083333333, + 99224.25, 99224.2916666667, 99224.3333333333, 99224.375, + 99224.4166666667, 99224.4583333333, 99224.5, 99224.5416666667, + 99224.5833333333, 99224.625, 99224.6666666667, 99224.7083333333, + 99224.75, 99224.7916666667, 99224.8333333333, 99224.875, + 99224.9166666667, 99224.9583333333, 99225, 99225.0416666667, + 99225.0833333333, 99225.125, 99225.1666666667, 99225.2083333333, + 99225.25, 99225.2916666667, 99225.3333333333, 99225.375, + 99225.4166666667, 99225.4583333333, 99225.5, 99225.5416666667, + 99225.5833333333, 99225.625, 99225.6666666667, 99225.7083333333, + 99225.75, 99225.7916666667, 99225.8333333333, 99225.875, + 99225.9166666667, 99225.9583333333, 99226, 99226.0416666667, + 99226.0833333333, 99226.125, 99226.1666666667, 99226.2083333333, + 99226.25, 99226.2916666667, 99226.3333333333, 99226.375, + 99226.4166666667, 99226.4583333333, 99226.5, 99226.5416666667, + 99226.5833333333, 99226.625, 99226.6666666667, 99226.7083333333, + 99226.75, 99226.7916666667, 99226.8333333333, 99226.875, + 99226.9166666667, 99226.9583333333, 99227, 99227.0416666667, + 99227.0833333333, 99227.125, 99227.1666666667, 99227.2083333333, + 99227.25, 99227.2916666667, 99227.3333333333, 99227.375, + 99227.4166666667, 99227.4583333333, 99227.5, 99227.5416666667, + 99227.5833333333, 99227.625, 99227.6666666667, 99227.7083333333, + 99227.75, 99227.7916666667, 99227.8333333333, 99227.875, + 99227.9166666667, 99227.9583333333, 99228, 99228.0416666667, + 99228.0833333333, 99228.125, 99228.1666666667, 99228.2083333333, + 99228.25, 99228.2916666667, 99228.3333333333, 99228.375, + 99228.4166666667, 99228.4583333333, 99228.5, 99228.5416666667, + 99228.5833333333, 99228.625, 99228.6666666667, 99228.7083333333, + 99228.75, 99228.7916666667, 99228.8333333333, 99228.875, + 99228.9166666667, 99228.9583333333, 99229, 99229.0416666667, + 99229.0833333333, 99229.125, 99229.1666666667, 99229.2083333333, + 99229.25, 99229.2916666667, 99229.3333333333, 99229.375, + 99229.4166666667, 99229.4583333333, 99229.5, 99229.5416666667, + 99229.5833333333, 99229.625, 99229.6666666667, 99229.7083333333, + 99229.75, 99229.7916666667, 99229.8333333333, 99229.875, + 99229.9166666667, 99229.9583333333, 99230, 99230.0416666667, + 99230.0833333333, 99230.125, 99230.1666666667, 99230.2083333333, + 99230.25, 99230.2916666667, 99230.3333333333, 99230.375, + 99230.4166666667, 99230.4583333333, 99230.5, 99230.5416666667, + 99230.5833333333, 99230.625, 99230.6666666667, 99230.7083333333, + 99230.75, 99230.7916666667, 99230.8333333333, 99230.875, + 99230.9166666667, 99230.9583333333, 99231, 99231.0416666667, + 99231.0833333333, 99231.125, 99231.1666666667, 99231.2083333333, + 99231.25, 99231.2916666667, 99231.3333333333, 99231.375, + 99231.4166666667, 99231.4583333333, 99231.5, 99231.5416666667, + 99231.5833333333, 99231.625, 99231.6666666667, 99231.7083333333, + 99231.75, 99231.7916666667, 99231.8333333333, 99231.875, + 99231.9166666667, 99231.9583333333, 99232, 99232.0416666667, + 99232.0833333333, 99232.125, 99232.1666666667, 99232.2083333333, + 99232.25, 99232.2916666667, 99232.3333333333, 99232.375, + 99232.4166666667, 99232.4583333333, 99232.5, 99232.5416666667, + 99232.5833333333, 99232.625, 99232.6666666667, 99232.7083333333, + 99232.75, 99232.7916666667, 99232.8333333333, 99232.875, + 99232.9166666667, 99232.9583333333, 99233, 99233.0416666667, + 99233.0833333333, 99233.125, 99233.1666666667, 99233.2083333333, + 99233.25, 99233.2916666667, 99233.3333333333, 99233.375, + 99233.4166666667, 99233.4583333333, 99233.5, 99233.5416666667, + 99233.5833333333, 99233.625, 99233.6666666667, 99233.7083333333, + 99233.75, 99233.7916666667, 99233.8333333333, 99233.875, + 99233.9166666667, 99233.9583333333, 99234, 99234.0416666667, + 99234.0833333333, 99234.125, 99234.1666666667, 99234.2083333333, + 99234.25, 99234.2916666667, 99234.3333333333, 99234.375, + 99234.4166666667, 99234.4583333333, 99234.5, 99234.5416666667, + 99234.5833333333, 99234.625, 99234.6666666667, 99234.7083333333, + 99234.75, 99234.7916666667, 99234.8333333333, 99234.875, + 99234.9166666667, 99234.9583333333, 99235, 99235.0416666667, + 99235.0833333333, 99235.125, 99235.1666666667, 99235.2083333333, + 99235.25, 99235.2916666667, 99235.3333333333, 99235.375, + 99235.4166666667, 99235.4583333333, 99235.5, 99235.5416666667, + 99235.5833333333, 99235.625, 99235.6666666667, 99235.7083333333, + 99235.75, 99235.7916666667, 99235.8333333333, 99235.875, + 99235.9166666667, 99235.9583333333, 99236, 99236.0416666667, + 99236.0833333333, 99236.125, 99236.1666666667, 99236.2083333333, + 99236.25, 99236.2916666667, 99236.3333333333, 99236.375, + 99236.4166666667, 99236.4583333333, 99236.5, 99236.5416666667, + 99236.5833333333, 99236.625, 99236.6666666667, 99236.7083333333, + 99236.75, 99236.7916666667, 99236.8333333333, 99236.875, + 99236.9166666667, 99236.9583333333, 99237, 99237.0416666667, + 99237.0833333333, 99237.125, 99237.1666666667, 99237.2083333333, + 99237.25, 99237.2916666667, 99237.3333333333, 99237.375, + 99237.4166666667, 99237.4583333333, 99237.5, 99237.5416666667, + 99237.5833333333, 99237.625, 99237.6666666667, 99237.7083333333, + 99237.75, 99237.7916666667, 99237.8333333333, 99237.875, + 99237.9166666667, 99237.9583333333, 99238, 99238.0416666667, + 99238.0833333333, 99238.125, 99238.1666666667, 99238.2083333333, + 99238.25, 99238.2916666667, 99238.3333333333, 99238.375, + 99238.4166666667, 99238.4583333333, 99238.5, 99238.5416666667, + 99238.5833333333, 99238.625, 99238.6666666667, 99238.7083333333, + 99238.75, 99238.7916666667, 99238.8333333333, 99238.875, + 99238.9166666667, 99238.9583333333, 99239, 99239.0416666667, + 99239.0833333333, 99239.125, 99239.1666666667, 99239.2083333333, + 99239.25, 99239.2916666667, 99239.3333333333, 99239.375, + 99239.4166666667, 99239.4583333333, 99239.5, 99239.5416666667, + 99239.5833333333, 99239.625, 99239.6666666667, 99239.7083333333, + 99239.75, 99239.7916666667, 99239.8333333333, 99239.875, + 99239.9166666667, 99239.9583333333, 99240, 99240.0416666667, + 99240.0833333333, 99240.125, 99240.1666666667, 99240.2083333333, + 99240.25, 99240.2916666667, 99240.3333333333, 99240.375, + 99240.4166666667, 99240.4583333333, 99240.5, 99240.5416666667, + 99240.5833333333, 99240.625, 99240.6666666667, 99240.7083333333, + 99240.75, 99240.7916666667, 99240.8333333333, 99240.875, + 99240.9166666667, 99240.9583333333, 99241, 99241.0416666667, + 99241.0833333333, 99241.125, 99241.1666666667, 99241.2083333333, + 99241.25, 99241.2916666667, 99241.3333333333, 99241.375, + 99241.4166666667, 99241.4583333333, 99241.5, 99241.5416666667, + 99241.5833333333, 99241.625, 99241.6666666667, 99241.7083333333, + 99241.75, 99241.7916666667, 99241.8333333333, 99241.875, + 99241.9166666667, 99241.9583333333, 99242, 99242.0416666667, + 99242.0833333333, 99242.125, 99242.1666666667, 99242.2083333333, + 99242.25, 99242.2916666667, 99242.3333333333, 99242.375, + 99242.4166666667, 99242.4583333333, 99242.5, 99242.5416666667, + 99242.5833333333, 99242.625, 99242.6666666667, 99242.7083333333, + 99242.75, 99242.7916666667, 99242.8333333333, 99242.875, + 99242.9166666667, 99242.9583333333, 99243, 99243.0416666667, + 99243.0833333333, 99243.125, 99243.1666666667, 99243.2083333333, + 99243.25, 99243.2916666667, 99243.3333333333, 99243.375, + 99243.4166666667, 99243.4583333333, 99243.5, 99243.5416666667, + 99243.5833333333, 99243.625, 99243.6666666667, 99243.7083333333, + 99243.75, 99243.7916666667, 99243.8333333333, 99243.875, + 99243.9166666667, 99243.9583333333, 99244, 99244.0416666667, + 99244.0833333333, 99244.125, 99244.1666666667, 99244.2083333333, + 99244.25, 99244.2916666667, 99244.3333333333, 99244.375, + 99244.4166666667, 99244.4583333333, 99244.5, 99244.5416666667, + 99244.5833333333, 99244.625, 99244.6666666667, 99244.7083333333, + 99244.75, 99244.7916666667, 99244.8333333333, 99244.875, + 99244.9166666667, 99244.9583333333, 99245, 99245.0416666667, + 99245.0833333333, 99245.125, 99245.1666666667, 99245.2083333333, + 99245.25, 99245.2916666667, 99245.3333333333, 99245.375, + 99245.4166666667, 99245.4583333333, 99245.5, 99245.5416666667, + 99245.5833333333, 99245.625, 99245.6666666667, 99245.7083333333, + 99245.75, 99245.7916666667, 99245.8333333333, 99245.875, + 99245.9166666667, 99245.9583333333, 99246, 99246.0416666667, + 99246.0833333333, 99246.125, 99246.1666666667, 99246.2083333333, + 99246.25, 99246.2916666667, 99246.3333333333, 99246.375, + 99246.4166666667, 99246.4583333333, 99246.5, 99246.5416666667, + 99246.5833333333, 99246.625, 99246.6666666667, 99246.7083333333, + 99246.75, 99246.7916666667, 99246.8333333333, 99246.875, + 99246.9166666667, 99246.9583333333, 99247, 99247.0416666667, + 99247.0833333333, 99247.125, 99247.1666666667, 99247.2083333333, + 99247.25, 99247.2916666667, 99247.3333333333, 99247.375, + 99247.4166666667, 99247.4583333333, 99247.5, 99247.5416666667, + 99247.5833333333, 99247.625, 99247.6666666667, 99247.7083333333, + 99247.75, 99247.7916666667, 99247.8333333333, 99247.875, + 99247.9166666667, 99247.9583333333, 99248, 99248.0416666667, + 99248.0833333333, 99248.125, 99248.1666666667, 99248.2083333333, + 99248.25, 99248.2916666667, 99248.3333333333, 99248.375, + 99248.4166666667, 99248.4583333333, 99248.5, 99248.5416666667, + 99248.5833333333, 99248.625, 99248.6666666667, 99248.7083333333, + 99248.75, 99248.7916666667, 99248.8333333333, 99248.875, + 99248.9166666667, 99248.9583333333, 99249, 99249.0416666667, + 99249.0833333333, 99249.125, 99249.1666666667, 99249.2083333333, + 99249.25, 99249.2916666667, 99249.3333333333, 99249.375, + 99249.4166666667, 99249.4583333333, 99249.5, 99249.5416666667, + 99249.5833333333, 99249.625, 99249.6666666667, 99249.7083333333, + 99249.75, 99249.7916666667, 99249.8333333333, 99249.875, + 99249.9166666667, 99249.9583333333, 99250, 99250.0416666667, + 99250.0833333333, 99250.125, 99250.1666666667, 99250.2083333333, + 99250.25, 99250.2916666667, 99250.3333333333, 99250.375, + 99250.4166666667, 99250.4583333333, 99250.5, 99250.5416666667, + 99250.5833333333, 99250.625, 99250.6666666667, 99250.7083333333, + 99250.75, 99250.7916666667, 99250.8333333333, 99250.875, + 99250.9166666667, 99250.9583333333, 99251, 99251.0416666667, + 99251.0833333333, 99251.125, 99251.1666666667, 99251.2083333333, + 99251.25, 99251.2916666667, 99251.3333333333, 99251.375, + 99251.4166666667, 99251.4583333333, 99251.5, 99251.5416666667, + 99251.5833333333, 99251.625, 99251.6666666667, 99251.7083333333, + 99251.75, 99251.7916666667, 99251.8333333333, 99251.875, + 99251.9166666667, 99251.9583333333, 99252, 99252.0416666667, + 99252.0833333333, 99252.125, 99252.1666666667, 99252.2083333333, + 99252.25, 99252.2916666667, 99252.3333333333, 99252.375, + 99252.4166666667, 99252.4583333333, 99252.5, 99252.5416666667, + 99252.5833333333, 99252.625, 99252.6666666667, 99252.7083333333, + 99252.75, 99252.7916666667, 99252.8333333333, 99252.875, + 99252.9166666667, 99252.9583333333, 99253, 99253.0416666667, + 99253.0833333333, 99253.125, 99253.1666666667, 99253.2083333333, + 99253.25, 99253.2916666667, 99253.3333333333, 99253.375, + 99253.4166666667, 99253.4583333333, 99253.5, 99253.5416666667, + 99253.5833333333, 99253.625, 99253.6666666667, 99253.7083333333, + 99253.75, 99253.7916666667, 99253.8333333333, 99253.875, + 99253.9166666667, 99253.9583333333, 99254, 99254.0416666667, + 99254.0833333333, 99254.125, 99254.1666666667, 99254.2083333333, + 99254.25, 99254.2916666667, 99254.3333333333, 99254.375, + 99254.4166666667, 99254.4583333333, 99254.5, 99254.5416666667, + 99254.5833333333, 99254.625, 99254.6666666667, 99254.7083333333, + 99254.75, 99254.7916666667, 99254.8333333333, 99254.875, + 99254.9166666667, 99254.9583333333, 99255, 99255.0416666667, + 99255.0833333333, 99255.125, 99255.1666666667, 99255.2083333333, + 99255.25, 99255.2916666667, 99255.3333333333, 99255.375, + 99255.4166666667, 99255.4583333333, 99255.5, 99255.5416666667, + 99255.5833333333, 99255.625, 99255.6666666667, 99255.7083333333, + 99255.75, 99255.7916666667, 99255.8333333333, 99255.875, + 99255.9166666667, 99255.9583333333, 99256, 99256.0416666667, + 99256.0833333333, 99256.125, 99256.1666666667, 99256.2083333333, + 99256.25, 99256.2916666667, 99256.3333333333, 99256.375, + 99256.4166666667, 99256.4583333333, 99256.5, 99256.5416666667, + 99256.5833333333, 99256.625, 99256.6666666667, 99256.7083333333, + 99256.75, 99256.7916666667, 99256.8333333333, 99256.875, + 99256.9166666667, 99256.9583333333, 99257, 99257.0416666667, + 99257.0833333333, 99257.125, 99257.1666666667, 99257.2083333333, + 99257.25, 99257.2916666667, 99257.3333333333, 99257.375, + 99257.4166666667, 99257.4583333333, 99257.5, 99257.5416666667, + 99257.5833333333, 99257.625, 99257.6666666667, 99257.7083333333, + 99257.75, 99257.7916666667, 99257.8333333333, 99257.875, + 99257.9166666667, 99257.9583333333, 99258, 99258.0416666667, + 99258.0833333333, 99258.125, 99258.1666666667, 99258.2083333333, + 99258.25, 99258.2916666667, 99258.3333333333, 99258.375, + 99258.4166666667, 99258.4583333333, 99258.5, 99258.5416666667, + 99258.5833333333, 99258.625, 99258.6666666667, 99258.7083333333, + 99258.75, 99258.7916666667, 99258.8333333333, 99258.875, + 99258.9166666667, 99258.9583333333, 99259, 99259.0416666667, + 99259.0833333333, 99259.125, 99259.1666666667, 99259.2083333333, + 99259.25, 99259.2916666667, 99259.3333333333, 99259.375, + 99259.4166666667, 99259.4583333333, 99259.5, 99259.5416666667, + 99259.5833333333, 99259.625, 99259.6666666667, 99259.7083333333, + 99259.75, 99259.7916666667, 99259.8333333333, 99259.875, + 99259.9166666667, 99259.9583333333, 99260, 99260.0416666667, + 99260.0833333333, 99260.125, 99260.1666666667, 99260.2083333333, + 99260.25, 99260.2916666667, 99260.3333333333, 99260.375, + 99260.4166666667, 99260.4583333333, 99260.5, 99260.5416666667, + 99260.5833333333, 99260.625, 99260.6666666667, 99260.7083333333, + 99260.75, 99260.7916666667, 99260.8333333333, 99260.875, + 99260.9166666667, 99260.9583333333, 99261, 99261.0416666667, + 99261.0833333333, 99261.125, 99261.1666666667, 99261.2083333333, + 99261.25, 99261.2916666667, 99261.3333333333, 99261.375, + 99261.4166666667, 99261.4583333333, 99261.5, 99261.5416666667, + 99261.5833333333, 99261.625, 99261.6666666667, 99261.7083333333, + 99261.75, 99261.7916666667, 99261.8333333333, 99261.875, + 99261.9166666667, 99261.9583333333, 99262, 99262.0416666667, + 99262.0833333333, 99262.125, 99262.1666666667, 99262.2083333333, + 99262.25, 99262.2916666667, 99262.3333333333, 99262.375, + 99262.4166666667, 99262.4583333333, 99262.5, 99262.5416666667, + 99262.5833333333, 99262.625, 99262.6666666667, 99262.7083333333, + 99262.75, 99262.7916666667, 99262.8333333333, 99262.875, + 99262.9166666667, 99262.9583333333, 99263, 99263.0416666667, + 99263.0833333333, 99263.125, 99263.1666666667, 99263.2083333333, + 99263.25, 99263.2916666667, 99263.3333333333, 99263.375, + 99263.4166666667, 99263.4583333333, 99263.5, 99263.5416666667, + 99263.5833333333, 99263.625, 99263.6666666667, 99263.7083333333, + 99263.75, 99263.7916666667, 99263.8333333333, 99263.875, + 99263.9166666667, 99263.9583333333, 99264, 99264.0416666667, + 99264.0833333333, 99264.125, 99264.1666666667, 99264.2083333333, + 99264.25, 99264.2916666667, 99264.3333333333, 99264.375, + 99264.4166666667, 99264.4583333333, 99264.5, 99264.5416666667, + 99264.5833333333, 99264.625, 99264.6666666667, 99264.7083333333, + 99264.75, 99264.7916666667, 99264.8333333333, 99264.875, + 99264.9166666667, 99264.9583333333, 99265, 99265.0416666667, + 99265.0833333333, 99265.125, 99265.1666666667, 99265.2083333333, + 99265.25, 99265.2916666667, 99265.3333333333, 99265.375, + 99265.4166666667, 99265.4583333333, 99265.5, 99265.5416666667, + 99265.5833333333, 99265.625, 99265.6666666667, 99265.7083333333, + 99265.75, 99265.7916666667, 99265.8333333333, 99265.875, + 99265.9166666667, 99265.9583333333, 99266, 99266.0416666667, + 99266.0833333333, 99266.125, 99266.1666666667, 99266.2083333333, + 99266.25, 99266.2916666667, 99266.3333333333, 99266.375, + 99266.4166666667, 99266.4583333333, 99266.5, 99266.5416666667, + 99266.5833333333, 99266.625, 99266.6666666667, 99266.7083333333, + 99266.75, 99266.7916666667, 99266.8333333333, 99266.875, + 99266.9166666667, 99266.9583333333, 99267, 99267.0416666667, + 99267.0833333333, 99267.125, 99267.1666666667, 99267.2083333333, + 99267.25, 99267.2916666667, 99267.3333333333, 99267.375, + 99267.4166666667, 99267.4583333333, 99267.5, 99267.5416666667, + 99267.5833333333, 99267.625, 99267.6666666667, 99267.7083333333, + 99267.75, 99267.7916666667, 99267.8333333333, 99267.875, + 99267.9166666667, 99267.9583333333, 99268, 99268.0416666667, + 99268.0833333333, 99268.125, 99268.1666666667, 99268.2083333333, + 99268.25, 99268.2916666667, 99268.3333333333, 99268.375, + 99268.4166666667, 99268.4583333333, 99268.5, 99268.5416666667, + 99268.5833333333, 99268.625, 99268.6666666667, 99268.7083333333, + 99268.75, 99268.7916666667, 99268.8333333333, 99268.875, + 99268.9166666667, 99268.9583333333, 99269, 99269.0416666667, + 99269.0833333333, 99269.125, 99269.1666666667, 99269.2083333333, + 99269.25, 99269.2916666667, 99269.3333333333, 99269.375, + 99269.4166666667, 99269.4583333333, 99269.5, 99269.5416666667, + 99269.5833333333, 99269.625, 99269.6666666667, 99269.7083333333, + 99269.75, 99269.7916666667, 99269.8333333333, 99269.875, + 99269.9166666667, 99269.9583333333, 99270, 99270.0416666667, + 99270.0833333333, 99270.125, 99270.1666666667, 99270.2083333333, + 99270.25, 99270.2916666667, 99270.3333333333, 99270.375, + 99270.4166666667, 99270.4583333333, 99270.5, 99270.5416666667, + 99270.5833333333, 99270.625, 99270.6666666667, 99270.7083333333, + 99270.75, 99270.7916666667, 99270.8333333333, 99270.875, + 99270.9166666667, 99270.9583333333, 99271, 99271.0416666667, + 99271.0833333333, 99271.125, 99271.1666666667, 99271.2083333333, + 99271.25, 99271.2916666667, 99271.3333333333, 99271.375, + 99271.4166666667, 99271.4583333333, 99271.5, 99271.5416666667, + 99271.5833333333, 99271.625, 99271.6666666667, 99271.7083333333, + 99271.75, 99271.7916666667, 99271.8333333333, 99271.875, + 99271.9166666667, 99271.9583333333, 99272, 99272.0416666667, + 99272.0833333333, 99272.125, 99272.1666666667, 99272.2083333333, + 99272.25, 99272.2916666667, 99272.3333333333, 99272.375, + 99272.4166666667, 99272.4583333333, 99272.5, 99272.5416666667, + 99272.5833333333, 99272.625, 99272.6666666667, 99272.7083333333, + 99272.75, 99272.7916666667, 99272.8333333333, 99272.875, + 99272.9166666667, 99272.9583333333, 99273, 99273.0416666667, + 99273.0833333333, 99273.125, 99273.1666666667, 99273.2083333333, + 99273.25, 99273.2916666667, 99273.3333333333, 99273.375, + 99273.4166666667, 99273.4583333333, 99273.5, 99273.5416666667, + 99273.5833333333, 99273.625, 99273.6666666667, 99273.7083333333, + 99273.75, 99273.7916666667, 99273.8333333333, 99273.875, + 99273.9166666667, 99273.9583333333, 99274, 99274.0416666667, + 99274.0833333333, 99274.125, 99274.1666666667, 99274.2083333333, + 99274.25, 99274.2916666667, 99274.3333333333, 99274.375, + 99274.4166666667, 99274.4583333333, 99274.5, 99274.5416666667, + 99274.5833333333, 99274.625, 99274.6666666667, 99274.7083333333, + 99274.75, 99274.7916666667, 99274.8333333333, 99274.875, + 99274.9166666667, 99274.9583333333, 99275, 99275.0416666667, + 99275.0833333333, 99275.125, 99275.1666666667, 99275.2083333333, + 99275.25, 99275.2916666667, 99275.3333333333, 99275.375, + 99275.4166666667, 99275.4583333333, 99275.5, 99275.5416666667, + 99275.5833333333, 99275.625, 99275.6666666667, 99275.7083333333, + 99275.75, 99275.7916666667, 99275.8333333333, 99275.875, + 99275.9166666667, 99275.9583333333, 99276, 99276.0416666667, + 99276.0833333333, 99276.125, 99276.1666666667, 99276.2083333333, + 99276.25, 99276.2916666667, 99276.3333333333, 99276.375, + 99276.4166666667, 99276.4583333333, 99276.5, 99276.5416666667, + 99276.5833333333, 99276.625, 99276.6666666667, 99276.7083333333, + 99276.75, 99276.7916666667, 99276.8333333333, 99276.875, + 99276.9166666667, 99276.9583333333, 99277, 99277.0416666667, + 99277.0833333333, 99277.125, 99277.1666666667, 99277.2083333333, + 99277.25, 99277.2916666667, 99277.3333333333, 99277.375, + 99277.4166666667, 99277.4583333333, 99277.5, 99277.5416666667, + 99277.5833333333, 99277.625, 99277.6666666667, 99277.7083333333, + 99277.75, 99277.7916666667, 99277.8333333333, 99277.875, + 99277.9166666667, 99277.9583333333, 99278, 99278.0416666667, + 99278.0833333333, 99278.125, 99278.1666666667, 99278.2083333333, + 99278.25, 99278.2916666667, 99278.3333333333, 99278.375, + 99278.4166666667, 99278.4583333333, 99278.5, 99278.5416666667, + 99278.5833333333, 99278.625, 99278.6666666667, 99278.7083333333, + 99278.75, 99278.7916666667, 99278.8333333333, 99278.875, + 99278.9166666667, 99278.9583333333, 99279, 99279.0416666667, + 99279.0833333333, 99279.125, 99279.1666666667, 99279.2083333333, + 99279.25, 99279.2916666667, 99279.3333333333, 99279.375, + 99279.4166666667, 99279.4583333333, 99279.5, 99279.5416666667, + 99279.5833333333, 99279.625, 99279.6666666667, 99279.7083333333, + 99279.75, 99279.7916666667, 99279.8333333333, 99279.875, + 99279.9166666667, 99279.9583333333, 99280, 99280.0416666667, + 99280.0833333333, 99280.125, 99280.1666666667, 99280.2083333333, + 99280.25, 99280.2916666667, 99280.3333333333, 99280.375, + 99280.4166666667, 99280.4583333333, 99280.5, 99280.5416666667, + 99280.5833333333, 99280.625, 99280.6666666667, 99280.7083333333, + 99280.75, 99280.7916666667, 99280.8333333333, 99280.875, + 99280.9166666667, 99280.9583333333, 99281, 99281.0416666667, + 99281.0833333333, 99281.125, 99281.1666666667, 99281.2083333333, + 99281.25, 99281.2916666667, 99281.3333333333, 99281.375, + 99281.4166666667, 99281.4583333333, 99281.5, 99281.5416666667, + 99281.5833333333, 99281.625, 99281.6666666667, 99281.7083333333, + 99281.75, 99281.7916666667, 99281.8333333333, 99281.875, + 99281.9166666667, 99281.9583333333, 99282, 99282.0416666667, + 99282.0833333333, 99282.125, 99282.1666666667, 99282.2083333333, + 99282.25, 99282.2916666667, 99282.3333333333, 99282.375, + 99282.4166666667, 99282.4583333333, 99282.5, 99282.5416666667, + 99282.5833333333, 99282.625, 99282.6666666667, 99282.7083333333, + 99282.75, 99282.7916666667, 99282.8333333333, 99282.875, + 99282.9166666667, 99282.9583333333, 99283, 99283.0416666667, + 99283.0833333333, 99283.125, 99283.1666666667, 99283.2083333333, + 99283.25, 99283.2916666667, 99283.3333333333, 99283.375, + 99283.4166666667, 99283.4583333333, 99283.5, 99283.5416666667, + 99283.5833333333, 99283.625, 99283.6666666667, 99283.7083333333, + 99283.75, 99283.7916666667, 99283.8333333333, 99283.875, + 99283.9166666667, 99283.9583333333, 99284, 99284.0416666667, + 99284.0833333333, 99284.125, 99284.1666666667, 99284.2083333333, + 99284.25, 99284.2916666667, 99284.3333333333, 99284.375, + 99284.4166666667, 99284.4583333333, 99284.5, 99284.5416666667, + 99284.5833333333, 99284.625, 99284.6666666667, 99284.7083333333, + 99284.75, 99284.7916666667, 99284.8333333333, 99284.875, + 99284.9166666667, 99284.9583333333, 99285, 99285.0416666667, + 99285.0833333333, 99285.125, 99285.1666666667, 99285.2083333333, + 99285.25, 99285.2916666667, 99285.3333333333, 99285.375, + 99285.4166666667, 99285.4583333333, 99285.5, 99285.5416666667, + 99285.5833333333, 99285.625, 99285.6666666667, 99285.7083333333, + 99285.75, 99285.7916666667, 99285.8333333333, 99285.875, + 99285.9166666667, 99285.9583333333, 99286, 99286.0416666667, + 99286.0833333333, 99286.125, 99286.1666666667, 99286.2083333333, + 99286.25, 99286.2916666667, 99286.3333333333, 99286.375, + 99286.4166666667, 99286.4583333333, 99286.5, 99286.5416666667, + 99286.5833333333, 99286.625, 99286.6666666667, 99286.7083333333, + 99286.75, 99286.7916666667, 99286.8333333333, 99286.875, + 99286.9166666667, 99286.9583333333, 99287, 99287.0416666667, + 99287.0833333333, 99287.125, 99287.1666666667, 99287.2083333333, + 99287.25, 99287.2916666667, 99287.3333333333, 99287.375, + 99287.4166666667, 99287.4583333333, 99287.5, 99287.5416666667, + 99287.5833333333, 99287.625, 99287.6666666667, 99287.7083333333, + 99287.75, 99287.7916666667, 99287.8333333333, 99287.875, + 99287.9166666667, 99287.9583333333, 99288, 99288.0416666667, + 99288.0833333333, 99288.125, 99288.1666666667, 99288.2083333333, + 99288.25, 99288.2916666667, 99288.3333333333, 99288.375, + 99288.4166666667, 99288.4583333333, 99288.5, 99288.5416666667, + 99288.5833333333, 99288.625, 99288.6666666667, 99288.7083333333, + 99288.75, 99288.7916666667, 99288.8333333333, 99288.875, + 99288.9166666667, 99288.9583333333, 99289, 99289.0416666667, + 99289.0833333333, 99289.125, 99289.1666666667, 99289.2083333333, + 99289.25, 99289.2916666667, 99289.3333333333, 99289.375, + 99289.4166666667, 99289.4583333333, 99289.5, 99289.5416666667, + 99289.5833333333, 99289.625, 99289.6666666667, 99289.7083333333, + 99289.75, 99289.7916666667, 99289.8333333333, 99289.875, + 99289.9166666667, 99289.9583333333, 99290, 99290.0416666667, + 99290.0833333333, 99290.125, 99290.1666666667, 99290.2083333333, + 99290.25, 99290.2916666667, 99290.3333333333, 99290.375, + 99290.4166666667, 99290.4583333333, 99290.5, 99290.5416666667, + 99290.5833333333, 99290.625, 99290.6666666667, 99290.7083333333, + 99290.75, 99290.7916666667, 99290.8333333333, 99290.875, + 99290.9166666667, 99290.9583333333, 99291, 99291.0416666667, + 99291.0833333333, 99291.125, 99291.1666666667, 99291.2083333333, + 99291.25, 99291.2916666667, 99291.3333333333, 99291.375, + 99291.4166666667, 99291.4583333333, 99291.5, 99291.5416666667, + 99291.5833333333, 99291.625, 99291.6666666667, 99291.7083333333, + 99291.75, 99291.7916666667, 99291.8333333333, 99291.875, + 99291.9166666667, 99291.9583333333, 99292, 99292.0416666667, + 99292.0833333333, 99292.125, 99292.1666666667, 99292.2083333333, + 99292.25, 99292.2916666667, 99292.3333333333, 99292.375, + 99292.4166666667, 99292.4583333333, 99292.5, 99292.5416666667, + 99292.5833333333, 99292.625, 99292.6666666667, 99292.7083333333, + 99292.75, 99292.7916666667, 99292.8333333333, 99292.875, + 99292.9166666667, 99292.9583333333, 99293, 99293.0416666667, + 99293.0833333333, 99293.125, 99293.1666666667, 99293.2083333333, + 99293.25, 99293.2916666667, 99293.3333333333, 99293.375, + 99293.4166666667, 99293.4583333333, 99293.5, 99293.5416666667, + 99293.5833333333, 99293.625, 99293.6666666667, 99293.7083333333, + 99293.75, 99293.7916666667, 99293.8333333333, 99293.875, + 99293.9166666667, 99293.9583333333, 99294, 99294.0416666667, + 99294.0833333333, 99294.125, 99294.1666666667, 99294.2083333333, + 99294.25, 99294.2916666667, 99294.3333333333, 99294.375, + 99294.4166666667, 99294.4583333333, 99294.5, 99294.5416666667, + 99294.5833333333, 99294.625, 99294.6666666667, 99294.7083333333, + 99294.75, 99294.7916666667, 99294.8333333333, 99294.875, + 99294.9166666667, 99294.9583333333, 99295, 99295.0416666667, + 99295.0833333333, 99295.125, 99295.1666666667, 99295.2083333333, + 99295.25, 99295.2916666667, 99295.3333333333, 99295.375, + 99295.4166666667, 99295.4583333333, 99295.5, 99295.5416666667, + 99295.5833333333, 99295.625, 99295.6666666667, 99295.7083333333, + 99295.75, 99295.7916666667, 99295.8333333333, 99295.875, + 99295.9166666667, 99295.9583333333, 99296, 99296.0416666667, + 99296.0833333333, 99296.125, 99296.1666666667, 99296.2083333333, + 99296.25, 99296.2916666667, 99296.3333333333, 99296.375, + 99296.4166666667, 99296.4583333333, 99296.5, 99296.5416666667, + 99296.5833333333, 99296.625, 99296.6666666667, 99296.7083333333, + 99296.75, 99296.7916666667, 99296.8333333333, 99296.875, + 99296.9166666667, 99296.9583333333, 99297, 99297.0416666667, + 99297.0833333333, 99297.125, 99297.1666666667, 99297.2083333333, + 99297.25, 99297.2916666667, 99297.3333333333, 99297.375, + 99297.4166666667, 99297.4583333333, 99297.5, 99297.5416666667, + 99297.5833333333, 99297.625, 99297.6666666667, 99297.7083333333, + 99297.75, 99297.7916666667, 99297.8333333333, 99297.875, + 99297.9166666667, 99297.9583333333, 99298, 99298.0416666667, + 99298.0833333333, 99298.125, 99298.1666666667, 99298.2083333333, + 99298.25, 99298.2916666667, 99298.3333333333, 99298.375, + 99298.4166666667, 99298.4583333333, 99298.5, 99298.5416666667, + 99298.5833333333, 99298.625, 99298.6666666667, 99298.7083333333, + 99298.75, 99298.7916666667, 99298.8333333333, 99298.875, + 99298.9166666667, 99298.9583333333, 99299, 99299.0416666667, + 99299.0833333333, 99299.125, 99299.1666666667, 99299.2083333333, + 99299.25, 99299.2916666667, 99299.3333333333, 99299.375, + 99299.4166666667, 99299.4583333333, 99299.5, 99299.5416666667, + 99299.5833333333, 99299.625, 99299.6666666667, 99299.7083333333, + 99299.75, 99299.7916666667, 99299.8333333333, 99299.875, + 99299.9166666667, 99299.9583333333, 99300, 99300.0416666667, + 99300.0833333333, 99300.125, 99300.1666666667, 99300.2083333333, + 99300.25, 99300.2916666667, 99300.3333333333, 99300.375, + 99300.4166666667, 99300.4583333333, 99300.5, 99300.5416666667, + 99300.5833333333, 99300.625, 99300.6666666667, 99300.7083333333, + 99300.75, 99300.7916666667, 99300.8333333333, 99300.875, + 99300.9166666667, 99300.9583333333, 99301, 99301.0416666667, + 99301.0833333333, 99301.125, 99301.1666666667, 99301.2083333333, + 99301.25, 99301.2916666667, 99301.3333333333, 99301.375, + 99301.4166666667, 99301.4583333333, 99301.5, 99301.5416666667, + 99301.5833333333, 99301.625, 99301.6666666667, 99301.7083333333, + 99301.75, 99301.7916666667, 99301.8333333333, 99301.875, + 99301.9166666667, 99301.9583333333, 99302, 99302.0416666667, + 99302.0833333333, 99302.125, 99302.1666666667, 99302.2083333333, + 99302.25, 99302.2916666667, 99302.3333333333, 99302.375, + 99302.4166666667, 99302.4583333333, 99302.5, 99302.5416666667, + 99302.5833333333, 99302.625, 99302.6666666667, 99302.7083333333, + 99302.75, 99302.7916666667, 99302.8333333333, 99302.875, + 99302.9166666667, 99302.9583333333, 99303, 99303.0416666667, + 99303.0833333333, 99303.125, 99303.1666666667, 99303.2083333333, + 99303.25, 99303.2916666667, 99303.3333333333, 99303.375, + 99303.4166666667, 99303.4583333333, 99303.5, 99303.5416666667, + 99303.5833333333, 99303.625, 99303.6666666667, 99303.7083333333, + 99303.75, 99303.7916666667, 99303.8333333333, 99303.875, + 99303.9166666667, 99303.9583333333, 99304, 99304.0416666667, + 99304.0833333333, 99304.125, 99304.1666666667, 99304.2083333333, + 99304.25, 99304.2916666667, 99304.3333333333, 99304.375, + 99304.4166666667, 99304.4583333333, 99304.5, 99304.5416666667, + 99304.5833333333, 99304.625, 99304.6666666667, 99304.7083333333, + 99304.75, 99304.7916666667, 99304.8333333333, 99304.875, + 99304.9166666667, 99304.9583333333, 99305, 99305.0416666667, + 99305.0833333333, 99305.125, 99305.1666666667, 99305.2083333333, + 99305.25, 99305.2916666667, 99305.3333333333, 99305.375, + 99305.4166666667, 99305.4583333333, 99305.5, 99305.5416666667, + 99305.5833333333, 99305.625, 99305.6666666667, 99305.7083333333, + 99305.75, 99305.7916666667, 99305.8333333333, 99305.875, + 99305.9166666667, 99305.9583333333, 99306, 99306.0416666667, + 99306.0833333333, 99306.125, 99306.1666666667, 99306.2083333333, + 99306.25, 99306.2916666667, 99306.3333333333, 99306.375, + 99306.4166666667, 99306.4583333333, 99306.5, 99306.5416666667, + 99306.5833333333, 99306.625, 99306.6666666667, 99306.7083333333, + 99306.75, 99306.7916666667, 99306.8333333333, 99306.875, + 99306.9166666667, 99306.9583333333, 99307, 99307.0416666667, + 99307.0833333333, 99307.125, 99307.1666666667, 99307.2083333333, + 99307.25, 99307.2916666667, 99307.3333333333, 99307.375, + 99307.4166666667, 99307.4583333333, 99307.5, 99307.5416666667, + 99307.5833333333, 99307.625, 99307.6666666667, 99307.7083333333, + 99307.75, 99307.7916666667, 99307.8333333333, 99307.875, + 99307.9166666667, 99307.9583333333, 99308, 99308.0416666667, + 99308.0833333333, 99308.125, 99308.1666666667, 99308.2083333333, + 99308.25, 99308.2916666667, 99308.3333333333, 99308.375, + 99308.4166666667, 99308.4583333333, 99308.5, 99308.5416666667, + 99308.5833333333, 99308.625, 99308.6666666667, 99308.7083333333, + 99308.75, 99308.7916666667, 99308.8333333333, 99308.875, + 99308.9166666667, 99308.9583333333, 99309, 99309.0416666667, + 99309.0833333333, 99309.125, 99309.1666666667, 99309.2083333333, + 99309.25, 99309.2916666667, 99309.3333333333, 99309.375, + 99309.4166666667, 99309.4583333333, 99309.5, 99309.5416666667, + 99309.5833333333, 99309.625, 99309.6666666667, 99309.7083333333, + 99309.75, 99309.7916666667, 99309.8333333333, 99309.875, + 99309.9166666667, 99309.9583333333, 99310, 99310.0416666667, + 99310.0833333333, 99310.125, 99310.1666666667, 99310.2083333333, + 99310.25, 99310.2916666667, 99310.3333333333, 99310.375, + 99310.4166666667, 99310.4583333333, 99310.5, 99310.5416666667, + 99310.5833333333, 99310.625, 99310.6666666667, 99310.7083333333, + 99310.75, 99310.7916666667, 99310.8333333333, 99310.875, + 99310.9166666667, 99310.9583333333, 99311, 99311.0416666667, + 99311.0833333333, 99311.125, 99311.1666666667, 99311.2083333333, + 99311.25, 99311.2916666667, 99311.3333333333, 99311.375, + 99311.4166666667, 99311.4583333333, 99311.5, 99311.5416666667, + 99311.5833333333, 99311.625, 99311.6666666667, 99311.7083333333, + 99311.75, 99311.7916666667, 99311.8333333333, 99311.875, + 99311.9166666667, 99311.9583333333, 99312, 99312.0416666667, + 99312.0833333333, 99312.125, 99312.1666666667, 99312.2083333333, + 99312.25, 99312.2916666667, 99312.3333333333, 99312.375, + 99312.4166666667, 99312.4583333333, 99312.5, 99312.5416666667, + 99312.5833333333, 99312.625, 99312.6666666667, 99312.7083333333, + 99312.75, 99312.7916666667, 99312.8333333333, 99312.875, + 99312.9166666667, 99312.9583333333, 99313, 99313.0416666667, + 99313.0833333333, 99313.125, 99313.1666666667, 99313.2083333333, + 99313.25, 99313.2916666667, 99313.3333333333, 99313.375, + 99313.4166666667, 99313.4583333333, 99313.5, 99313.5416666667, + 99313.5833333333, 99313.625, 99313.6666666667, 99313.7083333333, + 99313.75, 99313.7916666667, 99313.8333333333, 99313.875, + 99313.9166666667, 99313.9583333333, 99314, 99314.0416666667, + 99314.0833333333, 99314.125, 99314.1666666667, 99314.2083333333, + 99314.25, 99314.2916666667, 99314.3333333333, 99314.375, + 99314.4166666667, 99314.4583333333, 99314.5, 99314.5416666667, + 99314.5833333333, 99314.625, 99314.6666666667, 99314.7083333333, + 99314.75, 99314.7916666667, 99314.8333333333, 99314.875, + 99314.9166666667, 99314.9583333333, 99315, 99315.0416666667, + 99315.0833333333, 99315.125, 99315.1666666667, 99315.2083333333, + 99315.25, 99315.2916666667, 99315.3333333333, 99315.375, + 99315.4166666667, 99315.4583333333, 99315.5, 99315.5416666667, + 99315.5833333333, 99315.625, 99315.6666666667, 99315.7083333333, + 99315.75, 99315.7916666667, 99315.8333333333, 99315.875, + 99315.9166666667, 99315.9583333333, 99316, 99316.0416666667, + 99316.0833333333, 99316.125, 99316.1666666667, 99316.2083333333, + 99316.25, 99316.2916666667, 99316.3333333333, 99316.375, + 99316.4166666667, 99316.4583333333, 99316.5, 99316.5416666667, + 99316.5833333333, 99316.625, 99316.6666666667, 99316.7083333333, + 99316.75, 99316.7916666667, 99316.8333333333, 99316.875, + 99316.9166666667, 99316.9583333333, 99317, 99317.0416666667, + 99317.0833333333, 99317.125, 99317.1666666667, 99317.2083333333, + 99317.25, 99317.2916666667, 99317.3333333333, 99317.375, + 99317.4166666667, 99317.4583333333, 99317.5, 99317.5416666667, + 99317.5833333333, 99317.625, 99317.6666666667, 99317.7083333333, + 99317.75, 99317.7916666667, 99317.8333333333, 99317.875, + 99317.9166666667, 99317.9583333333, 99318, 99318.0416666667, + 99318.0833333333, 99318.125, 99318.1666666667, 99318.2083333333, + 99318.25, 99318.2916666667, 99318.3333333333, 99318.375, + 99318.4166666667, 99318.4583333333, 99318.5, 99318.5416666667, + 99318.5833333333, 99318.625, 99318.6666666667, 99318.7083333333, + 99318.75, 99318.7916666667, 99318.8333333333, 99318.875, + 99318.9166666667, 99318.9583333333, 99319, 99319.0416666667, + 99319.0833333333, 99319.125, 99319.1666666667, 99319.2083333333, + 99319.25, 99319.2916666667, 99319.3333333333, 99319.375, + 99319.4166666667, 99319.4583333333, 99319.5, 99319.5416666667, + 99319.5833333333, 99319.625, 99319.6666666667, 99319.7083333333, + 99319.75, 99319.7916666667, 99319.8333333333, 99319.875, + 99319.9166666667, 99319.9583333333, 99320, 99320.0416666667, + 99320.0833333333, 99320.125, 99320.1666666667, 99320.2083333333, + 99320.25, 99320.2916666667, 99320.3333333333, 99320.375, + 99320.4166666667, 99320.4583333333, 99320.5, 99320.5416666667, + 99320.5833333333, 99320.625, 99320.6666666667, 99320.7083333333, + 99320.75, 99320.7916666667, 99320.8333333333, 99320.875, + 99320.9166666667, 99320.9583333333, 99321, 99321.0416666667, + 99321.0833333333, 99321.125, 99321.1666666667, 99321.2083333333, + 99321.25, 99321.2916666667, 99321.3333333333, 99321.375, + 99321.4166666667, 99321.4583333333, 99321.5, 99321.5416666667, + 99321.5833333333, 99321.625, 99321.6666666667, 99321.7083333333, + 99321.75, 99321.7916666667, 99321.8333333333, 99321.875, + 99321.9166666667, 99321.9583333333, 99322, 99322.0416666667, + 99322.0833333333, 99322.125, 99322.1666666667, 99322.2083333333, + 99322.25, 99322.2916666667, 99322.3333333333, 99322.375, + 99322.4166666667, 99322.4583333333, 99322.5, 99322.5416666667, + 99322.5833333333, 99322.625, 99322.6666666667, 99322.7083333333, + 99322.75, 99322.7916666667, 99322.8333333333, 99322.875, + 99322.9166666667, 99322.9583333333, 99323, 99323.0416666667, + 99323.0833333333, 99323.125, 99323.1666666667, 99323.2083333333, + 99323.25, 99323.2916666667, 99323.3333333333, 99323.375, + 99323.4166666667, 99323.4583333333, 99323.5, 99323.5416666667, + 99323.5833333333, 99323.625, 99323.6666666667, 99323.7083333333, + 99323.75, 99323.7916666667, 99323.8333333333, 99323.875, + 99323.9166666667, 99323.9583333333, 99324, 99324.0416666667, + 99324.0833333333, 99324.125, 99324.1666666667, 99324.2083333333, + 99324.25, 99324.2916666667, 99324.3333333333, 99324.375, + 99324.4166666667, 99324.4583333333, 99324.5, 99324.5416666667, + 99324.5833333333, 99324.625, 99324.6666666667, 99324.7083333333, + 99324.75, 99324.7916666667, 99324.8333333333, 99324.875, + 99324.9166666667, 99324.9583333333, 99325, 99325.0416666667, + 99325.0833333333, 99325.125, 99325.1666666667, 99325.2083333333, + 99325.25, 99325.2916666667, 99325.3333333333, 99325.375, + 99325.4166666667, 99325.4583333333, 99325.5, 99325.5416666667, + 99325.5833333333, 99325.625, 99325.6666666667, 99325.7083333333, + 99325.75, 99325.7916666667, 99325.8333333333, 99325.875, + 99325.9166666667, 99325.9583333333, 99326, 99326.0416666667, + 99326.0833333333, 99326.125, 99326.1666666667, 99326.2083333333, + 99326.25, 99326.2916666667, 99326.3333333333, 99326.375, + 99326.4166666667, 99326.4583333333, 99326.5, 99326.5416666667, + 99326.5833333333, 99326.625, 99326.6666666667, 99326.7083333333, + 99326.75, 99326.7916666667, 99326.8333333333, 99326.875, + 99326.9166666667, 99326.9583333333, 99327, 99327.0416666667, + 99327.0833333333, 99327.125, 99327.1666666667, 99327.2083333333, + 99327.25, 99327.2916666667, 99327.3333333333, 99327.375, + 99327.4166666667, 99327.4583333333, 99327.5, 99327.5416666667, + 99327.5833333333, 99327.625, 99327.6666666667, 99327.7083333333, + 99327.75, 99327.7916666667, 99327.8333333333, 99327.875, + 99327.9166666667, 99327.9583333333, 99328, 99328.0416666667, + 99328.0833333333, 99328.125, 99328.1666666667, 99328.2083333333, + 99328.25, 99328.2916666667, 99328.3333333333, 99328.375, + 99328.4166666667, 99328.4583333333, 99328.5, 99328.5416666667, + 99328.5833333333, 99328.625, 99328.6666666667, 99328.7083333333, + 99328.75, 99328.7916666667, 99328.8333333333, 99328.875, + 99328.9166666667, 99328.9583333333, 99329, 99329.0416666667, + 99329.0833333333, 99329.125, 99329.1666666667, 99329.2083333333, + 99329.25, 99329.2916666667, 99329.3333333333, 99329.375, + 99329.4166666667, 99329.4583333333, 99329.5, 99329.5416666667, + 99329.5833333333, 99329.625, 99329.6666666667, 99329.7083333333, + 99329.75, 99329.7916666667, 99329.8333333333, 99329.875, + 99329.9166666667, 99329.9583333333, 99330, 99330.0416666667, + 99330.0833333333, 99330.125, 99330.1666666667, 99330.2083333333, + 99330.25, 99330.2916666667, 99330.3333333333, 99330.375, + 99330.4166666667, 99330.4583333333, 99330.5, 99330.5416666667, + 99330.5833333333, 99330.625, 99330.6666666667, 99330.7083333333, + 99330.75, 99330.7916666667, 99330.8333333333, 99330.875, + 99330.9166666667, 99330.9583333333, 99331, 99331.0416666667, + 99331.0833333333, 99331.125, 99331.1666666667, 99331.2083333333, + 99331.25, 99331.2916666667, 99331.3333333333, 99331.375, + 99331.4166666667, 99331.4583333333, 99331.5, 99331.5416666667, + 99331.5833333333, 99331.625, 99331.6666666667, 99331.7083333333, + 99331.75, 99331.7916666667, 99331.8333333333, 99331.875, + 99331.9166666667, 99331.9583333333, 99332, 99332.0416666667, + 99332.0833333333, 99332.125, 99332.1666666667, 99332.2083333333, + 99332.25, 99332.2916666667, 99332.3333333333, 99332.375, + 99332.4166666667, 99332.4583333333, 99332.5, 99332.5416666667, + 99332.5833333333, 99332.625, 99332.6666666667, 99332.7083333333, + 99332.75, 99332.7916666667, 99332.8333333333, 99332.875, + 99332.9166666667, 99332.9583333333, 99333, 99333.0416666667, + 99333.0833333333, 99333.125, 99333.1666666667, 99333.2083333333, + 99333.25, 99333.2916666667, 99333.3333333333, 99333.375, + 99333.4166666667, 99333.4583333333, 99333.5, 99333.5416666667, + 99333.5833333333, 99333.625, 99333.6666666667, 99333.7083333333, + 99333.75, 99333.7916666667, 99333.8333333333, 99333.875, + 99333.9166666667, 99333.9583333333, 99334, 99334.0416666667, + 99334.0833333333, 99334.125, 99334.1666666667, 99334.2083333333, + 99334.25, 99334.2916666667, 99334.3333333333, 99334.375, + 99334.4166666667, 99334.4583333333, 99334.5, 99334.5416666667, + 99334.5833333333, 99334.625, 99334.6666666667, 99334.7083333333, + 99334.75, 99334.7916666667, 99334.8333333333, 99334.875, + 99334.9166666667, 99334.9583333333, 99335, 99335.0416666667, + 99335.0833333333, 99335.125, 99335.1666666667, 99335.2083333333, + 99335.25, 99335.2916666667, 99335.3333333333, 99335.375, + 99335.4166666667, 99335.4583333333, 99335.5, 99335.5416666667, + 99335.5833333333, 99335.625, 99335.6666666667, 99335.7083333333, + 99335.75, 99335.7916666667, 99335.8333333333, 99335.875, + 99335.9166666667, 99335.9583333333, 99336, 99336.0416666667, + 99336.0833333333, 99336.125, 99336.1666666667, 99336.2083333333, + 99336.25, 99336.2916666667, 99336.3333333333, 99336.375, + 99336.4166666667, 99336.4583333333, 99336.5, 99336.5416666667, + 99336.5833333333, 99336.625, 99336.6666666667, 99336.7083333333, + 99336.75, 99336.7916666667, 99336.8333333333, 99336.875, + 99336.9166666667, 99336.9583333333, 99337, 99337.0416666667, + 99337.0833333333, 99337.125, 99337.1666666667, 99337.2083333333, + 99337.25, 99337.2916666667, 99337.3333333333, 99337.375, + 99337.4166666667, 99337.4583333333, 99337.5, 99337.5416666667, + 99337.5833333333, 99337.625, 99337.6666666667, 99337.7083333333, + 99337.75, 99337.7916666667, 99337.8333333333, 99337.875, + 99337.9166666667, 99337.9583333333, 99338, 99338.0416666667, + 99338.0833333333, 99338.125, 99338.1666666667, 99338.2083333333, + 99338.25, 99338.2916666667, 99338.3333333333, 99338.375, + 99338.4166666667, 99338.4583333333, 99338.5, 99338.5416666667, + 99338.5833333333, 99338.625, 99338.6666666667, 99338.7083333333, + 99338.75, 99338.7916666667, 99338.8333333333, 99338.875, + 99338.9166666667, 99338.9583333333, 99339, 99339.0416666667, + 99339.0833333333, 99339.125, 99339.1666666667, 99339.2083333333, + 99339.25, 99339.2916666667, 99339.3333333333, 99339.375, + 99339.4166666667, 99339.4583333333, 99339.5, 99339.5416666667, + 99339.5833333333, 99339.625, 99339.6666666667, 99339.7083333333, + 99339.75, 99339.7916666667, 99339.8333333333, 99339.875, + 99339.9166666667, 99339.9583333333, 99340, 99340.0416666667, + 99340.0833333333, 99340.125, 99340.1666666667, 99340.2083333333, + 99340.25, 99340.2916666667, 99340.3333333333, 99340.375, + 99340.4166666667, 99340.4583333333, 99340.5, 99340.5416666667, + 99340.5833333333, 99340.625, 99340.6666666667, 99340.7083333333, + 99340.75, 99340.7916666667, 99340.8333333333, 99340.875, + 99340.9166666667, 99340.9583333333, 99341, 99341.0416666667, + 99341.0833333333, 99341.125, 99341.1666666667, 99341.2083333333, + 99341.25, 99341.2916666667, 99341.3333333333, 99341.375, + 99341.4166666667, 99341.4583333333, 99341.5, 99341.5416666667, + 99341.5833333333, 99341.625, 99341.6666666667, 99341.7083333333, + 99341.75, 99341.7916666667, 99341.8333333333, 99341.875, + 99341.9166666667, 99341.9583333333, 99342, 99342.0416666667, + 99342.0833333333, 99342.125, 99342.1666666667, 99342.2083333333, + 99342.25, 99342.2916666667, 99342.3333333333, 99342.375, + 99342.4166666667, 99342.4583333333, 99342.5, 99342.5416666667, + 99342.5833333333, 99342.625, 99342.6666666667, 99342.7083333333, + 99342.75, 99342.7916666667, 99342.8333333333, 99342.875, + 99342.9166666667, 99342.9583333333, 99343, 99343.0416666667, + 99343.0833333333, 99343.125, 99343.1666666667, 99343.2083333333, + 99343.25, 99343.2916666667, 99343.3333333333, 99343.375, + 99343.4166666667, 99343.4583333333, 99343.5, 99343.5416666667, + 99343.5833333333, 99343.625, 99343.6666666667, 99343.7083333333, + 99343.75, 99343.7916666667, 99343.8333333333, 99343.875, + 99343.9166666667, 99343.9583333333, 99344, 99344.0416666667, + 99344.0833333333, 99344.125, 99344.1666666667, 99344.2083333333, + 99344.25, 99344.2916666667, 99344.3333333333, 99344.375, + 99344.4166666667, 99344.4583333333, 99344.5, 99344.5416666667, + 99344.5833333333, 99344.625, 99344.6666666667, 99344.7083333333, + 99344.75, 99344.7916666667, 99344.8333333333, 99344.875, + 99344.9166666667, 99344.9583333333, 99345, 99345.0416666667, + 99345.0833333333, 99345.125, 99345.1666666667, 99345.2083333333, + 99345.25, 99345.2916666667, 99345.3333333333, 99345.375, + 99345.4166666667, 99345.4583333333, 99345.5, 99345.5416666667, + 99345.5833333333, 99345.625, 99345.6666666667, 99345.7083333333, + 99345.75, 99345.7916666667, 99345.8333333333, 99345.875, + 99345.9166666667, 99345.9583333333 ; + + time_bounds = + 0, 98980.04, + 0, 98980.09, + 0, 98980.12, + 0, 98980.16, + 0, 98980.21, + 0, 98980.25, + 0, 98980.29, + 0, 98980.34, + 0, 98980.38, + 0, 98980.41, + 0, 98980.46, + 0, 98980.5, + 0, 98980.54, + 0, 98980.59, + 0, 98980.62, + 0, 98980.66, + 0, 98980.71, + 0, 98980.75, + 0, 98980.79, + 0, 98980.84, + 0, 98980.88, + 0, 98980.91, + 0, 98980.96, + 0, 98981, + 0, 98981.04, + 0, 98981.09, + 0, 98981.12, + 0, 98981.16, + 0, 98981.21, + 0, 98981.25, + 0, 98981.29, + 0, 98981.34, + 0, 98981.38, + 0, 98981.41, + 0, 98981.46, + 0, 98981.5, + 0, 98981.54, + 0, 98981.59, + 0, 98981.62, + 0, 98981.66, + 0, 98981.71, + 0, 98981.75, + 0, 98981.79, + 0, 98981.84, + 0, 98981.88, + 0, 98981.91, + 0, 98981.96, + 0, 98982, + 0, 98982.04, + 0, 98982.09, + 0, 98982.12, + 0, 98982.16, + 0, 98982.21, + 0, 98982.25, + 0, 98982.29, + 0, 98982.34, + 0, 98982.38, + 0, 98982.41, + 0, 98982.46, + 0, 98982.5, + 0, 98982.54, + 0, 98982.59, + 0, 98982.62, + 0, 98982.66, + 0, 98982.71, + 0, 98982.75, + 0, 98982.79, + 0, 98982.84, + 0, 98982.88, + 0, 98982.91, + 0, 98982.96, + 0, 98983, + 0, 98983.04, + 0, 98983.09, + 0, 98983.12, + 0, 98983.16, + 0, 98983.21, + 0, 98983.25, + 0, 98983.29, + 0, 98983.34, + 0, 98983.38, + 0, 98983.41, + 0, 98983.46, + 0, 98983.5, + 0, 98983.54, + 0, 98983.59, + 0, 98983.62, + 0, 98983.66, + 0, 98983.71, + 0, 98983.75, + 0, 98983.79, + 0, 98983.84, + 0, 98983.88, + 0, 98983.91, + 0, 98983.96, + 0, 98984, + 0, 98984.04, + 0, 98984.09, + 0, 98984.12, + 0, 98984.16, + 0, 98984.21, + 0, 98984.25, + 0, 98984.29, + 0, 98984.34, + 0, 98984.38, + 0, 98984.41, + 0, 98984.46, + 0, 98984.5, + 0, 98984.54, + 0, 98984.59, + 0, 98984.62, + 0, 98984.66, + 0, 98984.71, + 0, 98984.75, + 0, 98984.79, + 0, 98984.84, + 0, 98984.88, + 0, 98984.91, + 0, 98984.96, + 0, 98985, + 0, 98985.04, + 0, 98985.09, + 0, 98985.12, + 0, 98985.16, + 0, 98985.21, + 0, 98985.25, + 0, 98985.29, + 0, 98985.34, + 0, 98985.38, + 0, 98985.41, + 0, 98985.46, + 0, 98985.5, + 0, 98985.54, + 0, 98985.59, + 0, 98985.62, + 0, 98985.66, + 0, 98985.71, + 0, 98985.75, + 0, 98985.79, + 0, 98985.84, + 0, 98985.88, + 0, 98985.91, + 0, 98985.96, + 0, 98986, + 0, 98986.04, + 0, 98986.09, + 0, 98986.12, + 0, 98986.16, + 0, 98986.21, + 0, 98986.25, + 0, 98986.29, + 0, 98986.34, + 0, 98986.38, + 0, 98986.41, + 0, 98986.46, + 0, 98986.5, + 0, 98986.54, + 0, 98986.59, + 0, 98986.62, + 0, 98986.66, + 0, 98986.71, + 0, 98986.75, + 0, 98986.79, + 0, 98986.84, + 0, 98986.88, + 0, 98986.91, + 0, 98986.96, + 0, 98987, + 0, 98987.04, + 0, 98987.09, + 0, 98987.12, + 0, 98987.16, + 0, 98987.21, + 0, 98987.25, + 0, 98987.29, + 0, 98987.34, + 0, 98987.38, + 0, 98987.41, + 0, 98987.46, + 0, 98987.5, + 0, 98987.54, + 0, 98987.59, + 0, 98987.62, + 0, 98987.66, + 0, 98987.71, + 0, 98987.75, + 0, 98987.79, + 0, 98987.84, + 0, 98987.88, + 0, 98987.91, + 0, 98987.96, + 0, 98988, + 0, 98988.04, + 0, 98988.09, + 0, 98988.12, + 0, 98988.16, + 0, 98988.21, + 0, 98988.25, + 0, 98988.29, + 0, 98988.34, + 0, 98988.38, + 0, 98988.41, + 0, 98988.46, + 0, 98988.5, + 0, 98988.54, + 0, 98988.59, + 0, 98988.62, + 0, 98988.66, + 0, 98988.71, + 0, 98988.75, + 0, 98988.79, + 0, 98988.84, + 0, 98988.88, + 0, 98988.91, + 0, 98988.96, + 0, 98989, + 0, 98989.04, + 0, 98989.09, + 0, 98989.12, + 0, 98989.16, + 0, 98989.21, + 0, 98989.25, + 0, 98989.29, + 0, 98989.34, + 0, 98989.38, + 0, 98989.41, + 0, 98989.46, + 0, 98989.5, + 0, 98989.54, + 0, 98989.59, + 0, 98989.62, + 0, 98989.66, + 0, 98989.71, + 0, 98989.75, + 0, 98989.79, + 0, 98989.84, + 0, 98989.88, + 0, 98989.91, + 0, 98989.96, + 0, 98990, + 0, 98990.04, + 0, 98990.09, + 0, 98990.12, + 0, 98990.16, + 0, 98990.21, + 0, 98990.25, + 0, 98990.29, + 0, 98990.34, + 0, 98990.38, + 0, 98990.41, + 0, 98990.46, + 0, 98990.5, + 0, 98990.54, + 0, 98990.59, + 0, 98990.62, + 0, 98990.66, + 0, 98990.71, + 0, 98990.75, + 0, 98990.79, + 0, 98990.84, + 0, 98990.88, + 0, 98990.91, + 0, 98990.96, + 0, 98991, + 0, 98991.04, + 0, 98991.09, + 0, 98991.12, + 0, 98991.16, + 0, 98991.21, + 0, 98991.25, + 0, 98991.29, + 0, 98991.34, + 0, 98991.38, + 0, 98991.41, + 0, 98991.46, + 0, 98991.5, + 0, 98991.54, + 0, 98991.59, + 0, 98991.62, + 0, 98991.66, + 0, 98991.71, + 0, 98991.75, + 0, 98991.79, + 0, 98991.84, + 0, 98991.88, + 0, 98991.91, + 0, 98991.96, + 0, 98992, + 0, 98992.04, + 0, 98992.09, + 0, 98992.12, + 0, 98992.16, + 0, 98992.21, + 0, 98992.25, + 0, 98992.29, + 0, 98992.34, + 0, 98992.38, + 0, 98992.41, + 0, 98992.46, + 0, 98992.5, + 0, 98992.54, + 0, 98992.59, + 0, 98992.62, + 0, 98992.66, + 0, 98992.71, + 0, 98992.75, + 0, 98992.79, + 0, 98992.84, + 0, 98992.88, + 0, 98992.91, + 0, 98992.96, + 0, 98993, + 0, 98993.04, + 0, 98993.09, + 0, 98993.12, + 0, 98993.16, + 0, 98993.21, + 0, 98993.25, + 0, 98993.29, + 0, 98993.34, + 0, 98993.38, + 0, 98993.41, + 0, 98993.46, + 0, 98993.5, + 0, 98993.54, + 0, 98993.59, + 0, 98993.62, + 0, 98993.66, + 0, 98993.71, + 0, 98993.75, + 0, 98993.79, + 0, 98993.84, + 0, 98993.88, + 0, 98993.91, + 0, 98993.96, + 0, 98994, + 0, 98994.04, + 0, 98994.09, + 0, 98994.12, + 0, 98994.16, + 0, 98994.21, + 0, 98994.25, + 0, 98994.29, + 0, 98994.34, + 0, 98994.38, + 0, 98994.41, + 0, 98994.46, + 0, 98994.5, + 0, 98994.54, + 0, 98994.59, + 0, 98994.62, + 0, 98994.66, + 0, 98994.71, + 0, 98994.75, + 0, 98994.79, + 0, 98994.84, + 0, 98994.88, + 0, 98994.91, + 0, 98994.96, + 0, 98995, + 0, 98995.04, + 0, 98995.09, + 0, 98995.12, + 0, 98995.16, + 0, 98995.21, + 0, 98995.25, + 0, 98995.29, + 0, 98995.34, + 0, 98995.38, + 0, 98995.41, + 0, 98995.46, + 0, 98995.5, + 0, 98995.54, + 0, 98995.59, + 0, 98995.62, + 0, 98995.66, + 0, 98995.71, + 0, 98995.75, + 0, 98995.79, + 0, 98995.84, + 0, 98995.88, + 0, 98995.91, + 0, 98995.96, + 0, 98996, + 0, 98996.04, + 0, 98996.09, + 0, 98996.12, + 0, 98996.16, + 0, 98996.21, + 0, 98996.25, + 0, 98996.29, + 0, 98996.34, + 0, 98996.38, + 0, 98996.41, + 0, 98996.46, + 0, 98996.5, + 0, 98996.54, + 0, 98996.59, + 0, 98996.62, + 0, 98996.66, + 0, 98996.71, + 0, 98996.75, + 0, 98996.79, + 0, 98996.84, + 0, 98996.88, + 0, 98996.91, + 0, 98996.96, + 0, 98997, + 0, 98997.04, + 0, 98997.09, + 0, 98997.12, + 0, 98997.16, + 0, 98997.21, + 0, 98997.25, + 0, 98997.29, + 0, 98997.34, + 0, 98997.38, + 0, 98997.41, + 0, 98997.46, + 0, 98997.5, + 0, 98997.54, + 0, 98997.59, + 0, 98997.62, + 0, 98997.66, + 0, 98997.71, + 0, 98997.75, + 0, 98997.79, + 0, 98997.84, + 0, 98997.88, + 0, 98997.91, + 0, 98997.96, + 0, 98998, + 0, 98998.04, + 0, 98998.09, + 0, 98998.12, + 0, 98998.16, + 0, 98998.21, + 0, 98998.25, + 0, 98998.29, + 0, 98998.34, + 0, 98998.38, + 0, 98998.41, + 0, 98998.46, + 0, 98998.5, + 0, 98998.54, + 0, 98998.59, + 0, 98998.62, + 0, 98998.66, + 0, 98998.71, + 0, 98998.75, + 0, 98998.79, + 0, 98998.84, + 0, 98998.88, + 0, 98998.91, + 0, 98998.96, + 0, 98999, + 0, 98999.04, + 0, 98999.09, + 0, 98999.12, + 0, 98999.16, + 0, 98999.21, + 0, 98999.25, + 0, 98999.29, + 0, 98999.34, + 0, 98999.38, + 0, 98999.41, + 0, 98999.46, + 0, 98999.5, + 0, 98999.54, + 0, 98999.59, + 0, 98999.62, + 0, 98999.66, + 0, 98999.71, + 0, 98999.75, + 0, 98999.79, + 0, 98999.84, + 0, 98999.88, + 0, 98999.91, + 0, 98999.96, + 0, 99000, + 0, 99000.04, + 0, 99000.09, + 0, 99000.12, + 0, 99000.16, + 0, 99000.21, + 0, 99000.25, + 0, 99000.29, + 0, 99000.34, + 0, 99000.38, + 0, 99000.41, + 0, 99000.46, + 0, 99000.5, + 0, 99000.54, + 0, 99000.59, + 0, 99000.62, + 0, 99000.66, + 0, 99000.71, + 0, 99000.75, + 0, 99000.79, + 0, 99000.84, + 0, 99000.88, + 0, 99000.91, + 0, 99000.96, + 0, 99001, + 0, 99001.04, + 0, 99001.09, + 0, 99001.12, + 0, 99001.16, + 0, 99001.21, + 0, 99001.25, + 0, 99001.29, + 0, 99001.34, + 0, 99001.38, + 0, 99001.41, + 0, 99001.46, + 0, 99001.5, + 0, 99001.54, + 0, 99001.59, + 0, 99001.62, + 0, 99001.66, + 0, 99001.71, + 0, 99001.75, + 0, 99001.79, + 0, 99001.84, + 0, 99001.88, + 0, 99001.91, + 0, 99001.96, + 0, 99002, + 0, 99002.04, + 0, 99002.09, + 0, 99002.12, + 0, 99002.16, + 0, 99002.21, + 0, 99002.25, + 0, 99002.29, + 0, 99002.34, + 0, 99002.38, + 0, 99002.41, + 0, 99002.46, + 0, 99002.5, + 0, 99002.54, + 0, 99002.59, + 0, 99002.62, + 0, 99002.66, + 0, 99002.71, + 0, 99002.75, + 0, 99002.79, + 0, 99002.84, + 0, 99002.88, + 0, 99002.91, + 0, 99002.96, + 0, 99003, + 0, 99003.04, + 0, 99003.09, + 0, 99003.12, + 0, 99003.16, + 0, 99003.21, + 0, 99003.25, + 0, 99003.29, + 0, 99003.34, + 0, 99003.38, + 0, 99003.41, + 0, 99003.46, + 0, 99003.5, + 0, 99003.54, + 0, 99003.59, + 0, 99003.62, + 0, 99003.66, + 0, 99003.71, + 0, 99003.75, + 0, 99003.79, + 0, 99003.84, + 0, 99003.88, + 0, 99003.91, + 0, 99003.96, + 0, 99004, + 0, 99004.04, + 0, 99004.09, + 0, 99004.12, + 0, 99004.16, + 0, 99004.21, + 0, 99004.25, + 0, 99004.29, + 0, 99004.34, + 0, 99004.38, + 0, 99004.41, + 0, 99004.46, + 0, 99004.5, + 0, 99004.54, + 0, 99004.59, + 0, 99004.62, + 0, 99004.66, + 0, 99004.71, + 0, 99004.75, + 0, 99004.79, + 0, 99004.84, + 0, 99004.88, + 0, 99004.91, + 0, 99004.96, + 0, 99005, + 0, 99005.04, + 0, 99005.09, + 0, 99005.12, + 0, 99005.16, + 0, 99005.21, + 0, 99005.25, + 0, 99005.29, + 0, 99005.34, + 0, 99005.38, + 0, 99005.41, + 0, 99005.46, + 0, 99005.5, + 0, 99005.54, + 0, 99005.59, + 0, 99005.62, + 0, 99005.66, + 0, 99005.71, + 0, 99005.75, + 0, 99005.79, + 0, 99005.84, + 0, 99005.88, + 0, 99005.91, + 0, 99005.96, + 0, 99006, + 0, 99006.04, + 0, 99006.09, + 0, 99006.12, + 0, 99006.16, + 0, 99006.21, + 0, 99006.25, + 0, 99006.29, + 0, 99006.34, + 0, 99006.38, + 0, 99006.41, + 0, 99006.46, + 0, 99006.5, + 0, 99006.54, + 0, 99006.59, + 0, 99006.62, + 0, 99006.66, + 0, 99006.71, + 0, 99006.75, + 0, 99006.79, + 0, 99006.84, + 0, 99006.88, + 0, 99006.91, + 0, 99006.96, + 0, 99007, + 0, 99007.04, + 0, 99007.09, + 0, 99007.12, + 0, 99007.16, + 0, 99007.21, + 0, 99007.25, + 0, 99007.29, + 0, 99007.34, + 0, 99007.38, + 0, 99007.41, + 0, 99007.46, + 0, 99007.5, + 0, 99007.54, + 0, 99007.59, + 0, 99007.62, + 0, 99007.66, + 0, 99007.71, + 0, 99007.75, + 0, 99007.79, + 0, 99007.84, + 0, 99007.88, + 0, 99007.91, + 0, 99007.96, + 0, 99008, + 0, 99008.04, + 0, 99008.09, + 0, 99008.12, + 0, 99008.16, + 0, 99008.21, + 0, 99008.25, + 0, 99008.29, + 0, 99008.34, + 0, 99008.38, + 0, 99008.41, + 0, 99008.46, + 0, 99008.5, + 0, 99008.54, + 0, 99008.59, + 0, 99008.62, + 0, 99008.66, + 0, 99008.71, + 0, 99008.75, + 0, 99008.79, + 0, 99008.84, + 0, 99008.88, + 0, 99008.91, + 0, 99008.96, + 0, 99009, + 0, 99009.04, + 0, 99009.09, + 0, 99009.12, + 0, 99009.16, + 0, 99009.21, + 0, 99009.25, + 0, 99009.29, + 0, 99009.34, + 0, 99009.38, + 0, 99009.41, + 0, 99009.46, + 0, 99009.5, + 0, 99009.54, + 0, 99009.59, + 0, 99009.62, + 0, 99009.66, + 0, 99009.71, + 0, 99009.75, + 0, 99009.79, + 0, 99009.84, + 0, 99009.88, + 0, 99009.91, + 0, 99009.96, + 0, 99010, + 0, 99010.04, + 0, 99010.09, + 0, 99010.12, + 0, 99010.16, + 0, 99010.21, + 0, 99010.25, + 0, 99010.29, + 0, 99010.34, + 0, 99010.38, + 0, 99010.41, + 0, 99010.46, + 0, 99010.5, + 0, 99010.54, + 0, 99010.59, + 0, 99010.62, + 0, 99010.66, + 0, 99010.71, + 0, 99010.75, + 0, 99010.79, + 0, 99010.84, + 0, 99010.88, + 0, 99010.91, + 0, 99010.96, + 0, 99011, + 0, 99011.04, + 0, 99011.09, + 0, 99011.12, + 0, 99011.16, + 0, 99011.21, + 0, 99011.25, + 0, 99011.29, + 0, 99011.34, + 0, 99011.38, + 0, 99011.41, + 0, 99011.46, + 0, 99011.5, + 0, 99011.54, + 0, 99011.59, + 0, 99011.62, + 0, 99011.66, + 0, 99011.71, + 0, 99011.75, + 0, 99011.79, + 0, 99011.84, + 0, 99011.88, + 0, 99011.91, + 0, 99011.96, + 0, 99012, + 0, 99012.04, + 0, 99012.09, + 0, 99012.12, + 0, 99012.16, + 0, 99012.21, + 0, 99012.25, + 0, 99012.29, + 0, 99012.34, + 0, 99012.38, + 0, 99012.41, + 0, 99012.46, + 0, 99012.5, + 0, 99012.54, + 0, 99012.59, + 0, 99012.62, + 0, 99012.66, + 0, 99012.71, + 0, 99012.75, + 0, 99012.79, + 0, 99012.84, + 0, 99012.88, + 0, 99012.91, + 0, 99012.96, + 0, 99013, + 0, 99013.04, + 0, 99013.09, + 0, 99013.12, + 0, 99013.16, + 0, 99013.21, + 0, 99013.25, + 0, 99013.29, + 0, 99013.34, + 0, 99013.38, + 0, 99013.41, + 0, 99013.46, + 0, 99013.5, + 0, 99013.54, + 0, 99013.59, + 0, 99013.62, + 0, 99013.66, + 0, 99013.71, + 0, 99013.75, + 0, 99013.79, + 0, 99013.84, + 0, 99013.88, + 0, 99013.91, + 0, 99013.96, + 0, 99014, + 0, 99014.04, + 0, 99014.09, + 0, 99014.12, + 0, 99014.16, + 0, 99014.21, + 0, 99014.25, + 0, 99014.29, + 0, 99014.34, + 0, 99014.38, + 0, 99014.41, + 0, 99014.46, + 0, 99014.5, + 0, 99014.54, + 0, 99014.59, + 0, 99014.62, + 0, 99014.66, + 0, 99014.71, + 0, 99014.75, + 0, 99014.79, + 0, 99014.84, + 0, 99014.88, + 0, 99014.91, + 0, 99014.96, + 0, 99015, + 0, 99015.04, + 0, 99015.09, + 0, 99015.12, + 0, 99015.16, + 0, 99015.21, + 0, 99015.25, + 0, 99015.29, + 0, 99015.34, + 0, 99015.38, + 0, 99015.41, + 0, 99015.46, + 0, 99015.5, + 0, 99015.54, + 0, 99015.59, + 0, 99015.62, + 0, 99015.66, + 0, 99015.71, + 0, 99015.75, + 0, 99015.79, + 0, 99015.84, + 0, 99015.88, + 0, 99015.91, + 0, 99015.96, + 0, 99016, + 0, 99016.04, + 0, 99016.09, + 0, 99016.12, + 0, 99016.16, + 0, 99016.21, + 0, 99016.25, + 0, 99016.29, + 0, 99016.34, + 0, 99016.38, + 0, 99016.41, + 0, 99016.46, + 0, 99016.5, + 0, 99016.54, + 0, 99016.59, + 0, 99016.62, + 0, 99016.66, + 0, 99016.71, + 0, 99016.75, + 0, 99016.79, + 0, 99016.84, + 0, 99016.88, + 0, 99016.91, + 0, 99016.96, + 0, 99017, + 0, 99017.04, + 0, 99017.09, + 0, 99017.12, + 0, 99017.16, + 0, 99017.21, + 0, 99017.25, + 0, 99017.29, + 0, 99017.34, + 0, 99017.38, + 0, 99017.41, + 0, 99017.46, + 0, 99017.5, + 0, 99017.54, + 0, 99017.59, + 0, 99017.62, + 0, 99017.66, + 0, 99017.71, + 0, 99017.75, + 0, 99017.79, + 0, 99017.84, + 0, 99017.88, + 0, 99017.91, + 0, 99017.96, + 0, 99018, + 0, 99018.04, + 0, 99018.09, + 0, 99018.12, + 0, 99018.16, + 0, 99018.21, + 0, 99018.25, + 0, 99018.29, + 0, 99018.34, + 0, 99018.38, + 0, 99018.41, + 0, 99018.46, + 0, 99018.5, + 0, 99018.54, + 0, 99018.59, + 0, 99018.62, + 0, 99018.66, + 0, 99018.71, + 0, 99018.75, + 0, 99018.79, + 0, 99018.84, + 0, 99018.88, + 0, 99018.91, + 0, 99018.96, + 0, 99019, + 0, 99019.04, + 0, 99019.09, + 0, 99019.12, + 0, 99019.16, + 0, 99019.21, + 0, 99019.25, + 0, 99019.29, + 0, 99019.34, + 0, 99019.38, + 0, 99019.41, + 0, 99019.46, + 0, 99019.5, + 0, 99019.54, + 0, 99019.59, + 0, 99019.62, + 0, 99019.66, + 0, 99019.71, + 0, 99019.75, + 0, 99019.79, + 0, 99019.84, + 0, 99019.88, + 0, 99019.91, + 0, 99019.96, + 0, 99020, + 0, 99020.04, + 0, 99020.09, + 0, 99020.12, + 0, 99020.16, + 0, 99020.21, + 0, 99020.25, + 0, 99020.29, + 0, 99020.34, + 0, 99020.38, + 0, 99020.41, + 0, 99020.46, + 0, 99020.5, + 0, 99020.54, + 0, 99020.59, + 0, 99020.62, + 0, 99020.66, + 0, 99020.71, + 0, 99020.75, + 0, 99020.79, + 0, 99020.84, + 0, 99020.88, + 0, 99020.91, + 0, 99020.96, + 0, 99021, + 0, 99021.04, + 0, 99021.09, + 0, 99021.12, + 0, 99021.16, + 0, 99021.21, + 0, 99021.25, + 0, 99021.29, + 0, 99021.34, + 0, 99021.38, + 0, 99021.41, + 0, 99021.46, + 0, 99021.5, + 0, 99021.54, + 0, 99021.59, + 0, 99021.62, + 0, 99021.66, + 0, 99021.71, + 0, 99021.75, + 0, 99021.79, + 0, 99021.84, + 0, 99021.88, + 0, 99021.91, + 0, 99021.96, + 0, 99022, + 0, 99022.04, + 0, 99022.09, + 0, 99022.12, + 0, 99022.16, + 0, 99022.21, + 0, 99022.25, + 0, 99022.29, + 0, 99022.34, + 0, 99022.38, + 0, 99022.41, + 0, 99022.46, + 0, 99022.5, + 0, 99022.54, + 0, 99022.59, + 0, 99022.62, + 0, 99022.66, + 0, 99022.71, + 0, 99022.75, + 0, 99022.79, + 0, 99022.84, + 0, 99022.88, + 0, 99022.91, + 0, 99022.96, + 0, 99023, + 0, 99023.04, + 0, 99023.09, + 0, 99023.12, + 0, 99023.16, + 0, 99023.21, + 0, 99023.25, + 0, 99023.29, + 0, 99023.34, + 0, 99023.38, + 0, 99023.41, + 0, 99023.46, + 0, 99023.5, + 0, 99023.54, + 0, 99023.59, + 0, 99023.62, + 0, 99023.66, + 0, 99023.71, + 0, 99023.75, + 0, 99023.79, + 0, 99023.84, + 0, 99023.88, + 0, 99023.91, + 0, 99023.96, + 0, 99024, + 0, 99024.04, + 0, 99024.09, + 0, 99024.12, + 0, 99024.16, + 0, 99024.21, + 0, 99024.25, + 0, 99024.29, + 0, 99024.34, + 0, 99024.38, + 0, 99024.41, + 0, 99024.46, + 0, 99024.5, + 0, 99024.54, + 0, 99024.59, + 0, 99024.62, + 0, 99024.66, + 0, 99024.71, + 0, 99024.75, + 0, 99024.79, + 0, 99024.84, + 0, 99024.88, + 0, 99024.91, + 0, 99024.96, + 0, 99025, + 0, 99025.04, + 0, 99025.09, + 0, 99025.12, + 0, 99025.16, + 0, 99025.21, + 0, 99025.25, + 0, 99025.29, + 0, 99025.34, + 0, 99025.38, + 0, 99025.41, + 0, 99025.46, + 0, 99025.5, + 0, 99025.54, + 0, 99025.59, + 0, 99025.62, + 0, 99025.66, + 0, 99025.71, + 0, 99025.75, + 0, 99025.79, + 0, 99025.84, + 0, 99025.88, + 0, 99025.91, + 0, 99025.96, + 0, 99026, + 0, 99026.04, + 0, 99026.09, + 0, 99026.12, + 0, 99026.16, + 0, 99026.21, + 0, 99026.25, + 0, 99026.29, + 0, 99026.34, + 0, 99026.38, + 0, 99026.41, + 0, 99026.46, + 0, 99026.5, + 0, 99026.54, + 0, 99026.59, + 0, 99026.62, + 0, 99026.66, + 0, 99026.71, + 0, 99026.75, + 0, 99026.79, + 0, 99026.84, + 0, 99026.88, + 0, 99026.91, + 0, 99026.96, + 0, 99027, + 0, 99027.04, + 0, 99027.09, + 0, 99027.12, + 0, 99027.16, + 0, 99027.21, + 0, 99027.25, + 0, 99027.29, + 0, 99027.34, + 0, 99027.38, + 0, 99027.41, + 0, 99027.46, + 0, 99027.5, + 0, 99027.54, + 0, 99027.59, + 0, 99027.62, + 0, 99027.66, + 0, 99027.71, + 0, 99027.75, + 0, 99027.79, + 0, 99027.84, + 0, 99027.88, + 0, 99027.91, + 0, 99027.96, + 0, 99028, + 0, 99028.04, + 0, 99028.09, + 0, 99028.12, + 0, 99028.16, + 0, 99028.21, + 0, 99028.25, + 0, 99028.29, + 0, 99028.34, + 0, 99028.38, + 0, 99028.41, + 0, 99028.46, + 0, 99028.5, + 0, 99028.54, + 0, 99028.59, + 0, 99028.62, + 0, 99028.66, + 0, 99028.71, + 0, 99028.75, + 0, 99028.79, + 0, 99028.84, + 0, 99028.88, + 0, 99028.91, + 0, 99028.96, + 0, 99029, + 0, 99029.04, + 0, 99029.09, + 0, 99029.12, + 0, 99029.16, + 0, 99029.21, + 0, 99029.25, + 0, 99029.29, + 0, 99029.34, + 0, 99029.38, + 0, 99029.41, + 0, 99029.46, + 0, 99029.5, + 0, 99029.54, + 0, 99029.59, + 0, 99029.62, + 0, 99029.66, + 0, 99029.71, + 0, 99029.75, + 0, 99029.79, + 0, 99029.84, + 0, 99029.88, + 0, 99029.91, + 0, 99029.96, + 0, 99030, + 0, 99030.04, + 0, 99030.09, + 0, 99030.12, + 0, 99030.16, + 0, 99030.21, + 0, 99030.25, + 0, 99030.29, + 0, 99030.34, + 0, 99030.38, + 0, 99030.41, + 0, 99030.46, + 0, 99030.5, + 0, 99030.54, + 0, 99030.59, + 0, 99030.62, + 0, 99030.66, + 0, 99030.71, + 0, 99030.75, + 0, 99030.79, + 0, 99030.84, + 0, 99030.88, + 0, 99030.91, + 0, 99030.96, + 0, 99031, + 0, 99031.04, + 0, 99031.09, + 0, 99031.12, + 0, 99031.16, + 0, 99031.21, + 0, 99031.25, + 0, 99031.29, + 0, 99031.34, + 0, 99031.38, + 0, 99031.41, + 0, 99031.46, + 0, 99031.5, + 0, 99031.54, + 0, 99031.59, + 0, 99031.62, + 0, 99031.66, + 0, 99031.71, + 0, 99031.75, + 0, 99031.79, + 0, 99031.84, + 0, 99031.88, + 0, 99031.91, + 0, 99031.96, + 0, 99032, + 0, 99032.04, + 0, 99032.09, + 0, 99032.12, + 0, 99032.16, + 0, 99032.21, + 0, 99032.25, + 0, 99032.29, + 0, 99032.34, + 0, 99032.38, + 0, 99032.41, + 0, 99032.46, + 0, 99032.5, + 0, 99032.54, + 0, 99032.59, + 0, 99032.62, + 0, 99032.66, + 0, 99032.71, + 0, 99032.75, + 0, 99032.79, + 0, 99032.84, + 0, 99032.88, + 0, 99032.91, + 0, 99032.96, + 0, 99033, + 0, 99033.04, + 0, 99033.09, + 0, 99033.12, + 0, 99033.16, + 0, 99033.21, + 0, 99033.25, + 0, 99033.29, + 0, 99033.34, + 0, 99033.38, + 0, 99033.41, + 0, 99033.46, + 0, 99033.5, + 0, 99033.54, + 0, 99033.59, + 0, 99033.62, + 0, 99033.66, + 0, 99033.71, + 0, 99033.75, + 0, 99033.79, + 0, 99033.84, + 0, 99033.88, + 0, 99033.91, + 0, 99033.96, + 0, 99034, + 0, 99034.04, + 0, 99034.09, + 0, 99034.12, + 0, 99034.16, + 0, 99034.21, + 0, 99034.25, + 0, 99034.29, + 0, 99034.34, + 0, 99034.38, + 0, 99034.41, + 0, 99034.46, + 0, 99034.5, + 0, 99034.54, + 0, 99034.59, + 0, 99034.62, + 0, 99034.66, + 0, 99034.71, + 0, 99034.75, + 0, 99034.79, + 0, 99034.84, + 0, 99034.88, + 0, 99034.91, + 0, 99034.96, + 0, 99035, + 0, 99035.04, + 0, 99035.09, + 0, 99035.12, + 0, 99035.16, + 0, 99035.21, + 0, 99035.25, + 0, 99035.29, + 0, 99035.34, + 0, 99035.38, + 0, 99035.41, + 0, 99035.46, + 0, 99035.5, + 0, 99035.54, + 0, 99035.59, + 0, 99035.62, + 0, 99035.66, + 0, 99035.71, + 0, 99035.75, + 0, 99035.79, + 0, 99035.84, + 0, 99035.88, + 0, 99035.91, + 0, 99035.96, + 0, 99036, + 0, 99036.04, + 0, 99036.09, + 0, 99036.12, + 0, 99036.16, + 0, 99036.21, + 0, 99036.25, + 0, 99036.29, + 0, 99036.34, + 0, 99036.38, + 0, 99036.41, + 0, 99036.46, + 0, 99036.5, + 0, 99036.54, + 0, 99036.59, + 0, 99036.62, + 0, 99036.66, + 0, 99036.71, + 0, 99036.75, + 0, 99036.79, + 0, 99036.84, + 0, 99036.88, + 0, 99036.91, + 0, 99036.96, + 0, 99037, + 0, 99037.04, + 0, 99037.09, + 0, 99037.12, + 0, 99037.16, + 0, 99037.21, + 0, 99037.25, + 0, 99037.29, + 0, 99037.34, + 0, 99037.38, + 0, 99037.41, + 0, 99037.46, + 0, 99037.5, + 0, 99037.54, + 0, 99037.59, + 0, 99037.62, + 0, 99037.66, + 0, 99037.71, + 0, 99037.75, + 0, 99037.79, + 0, 99037.84, + 0, 99037.88, + 0, 99037.91, + 0, 99037.96, + 0, 99038, + 0, 99038.04, + 0, 99038.09, + 0, 99038.12, + 0, 99038.16, + 0, 99038.21, + 0, 99038.25, + 0, 99038.29, + 0, 99038.34, + 0, 99038.38, + 0, 99038.41, + 0, 99038.46, + 0, 99038.5, + 0, 99038.54, + 0, 99038.59, + 0, 99038.62, + 0, 99038.66, + 0, 99038.71, + 0, 99038.75, + 0, 99038.79, + 0, 99038.84, + 0, 99038.88, + 0, 99038.91, + 0, 99038.96, + 0, 99039, + 0, 99039.04, + 0, 99039.09, + 0, 99039.12, + 0, 99039.16, + 0, 99039.21, + 0, 99039.25, + 0, 99039.29, + 0, 99039.34, + 0, 99039.38, + 0, 99039.41, + 0, 99039.46, + 0, 99039.5, + 0, 99039.54, + 0, 99039.59, + 0, 99039.62, + 0, 99039.66, + 0, 99039.71, + 0, 99039.75, + 0, 99039.79, + 0, 99039.84, + 0, 99039.88, + 0, 99039.91, + 0, 99039.96, + 0, 99040, + 0, 99040.04, + 0, 99040.09, + 0, 99040.12, + 0, 99040.16, + 0, 99040.21, + 0, 99040.25, + 0, 99040.29, + 0, 99040.34, + 0, 99040.38, + 0, 99040.41, + 0, 99040.46, + 0, 99040.5, + 0, 99040.54, + 0, 99040.59, + 0, 99040.62, + 0, 99040.66, + 0, 99040.71, + 0, 99040.75, + 0, 99040.79, + 0, 99040.84, + 0, 99040.88, + 0, 99040.91, + 0, 99040.96, + 0, 99041, + 0, 99041.04, + 0, 99041.09, + 0, 99041.12, + 0, 99041.16, + 0, 99041.21, + 0, 99041.25, + 0, 99041.29, + 0, 99041.34, + 0, 99041.38, + 0, 99041.41, + 0, 99041.46, + 0, 99041.5, + 0, 99041.54, + 0, 99041.59, + 0, 99041.62, + 0, 99041.66, + 0, 99041.71, + 0, 99041.75, + 0, 99041.79, + 0, 99041.84, + 0, 99041.88, + 0, 99041.91, + 0, 99041.96, + 0, 99042, + 0, 99042.04, + 0, 99042.09, + 0, 99042.12, + 0, 99042.16, + 0, 99042.21, + 0, 99042.25, + 0, 99042.29, + 0, 99042.34, + 0, 99042.38, + 0, 99042.41, + 0, 99042.46, + 0, 99042.5, + 0, 99042.54, + 0, 99042.59, + 0, 99042.62, + 0, 99042.66, + 0, 99042.71, + 0, 99042.75, + 0, 99042.79, + 0, 99042.84, + 0, 99042.88, + 0, 99042.91, + 0, 99042.96, + 0, 99043, + 0, 99043.04, + 0, 99043.09, + 0, 99043.12, + 0, 99043.16, + 0, 99043.21, + 0, 99043.25, + 0, 99043.29, + 0, 99043.34, + 0, 99043.38, + 0, 99043.41, + 0, 99043.46, + 0, 99043.5, + 0, 99043.54, + 0, 99043.59, + 0, 99043.62, + 0, 99043.66, + 0, 99043.71, + 0, 99043.75, + 0, 99043.79, + 0, 99043.84, + 0, 99043.88, + 0, 99043.91, + 0, 99043.96, + 0, 99044, + 0, 99044.04, + 0, 99044.09, + 0, 99044.12, + 0, 99044.16, + 0, 99044.21, + 0, 99044.25, + 0, 99044.29, + 0, 99044.34, + 0, 99044.38, + 0, 99044.41, + 0, 99044.46, + 0, 99044.5, + 0, 99044.54, + 0, 99044.59, + 0, 99044.62, + 0, 99044.66, + 0, 99044.71, + 0, 99044.75, + 0, 99044.79, + 0, 99044.84, + 0, 99044.88, + 0, 99044.91, + 0, 99044.96, + 0, 99045, + 0, 99045.04, + 0, 99045.09, + 0, 99045.12, + 0, 99045.16, + 0, 99045.21, + 0, 99045.25, + 0, 99045.29, + 0, 99045.34, + 0, 99045.38, + 0, 99045.41, + 0, 99045.46, + 0, 99045.5, + 0, 99045.54, + 0, 99045.59, + 0, 99045.62, + 0, 99045.66, + 0, 99045.71, + 0, 99045.75, + 0, 99045.79, + 0, 99045.84, + 0, 99045.88, + 0, 99045.91, + 0, 99045.96, + 0, 99046, + 0, 99046.04, + 0, 99046.09, + 0, 99046.12, + 0, 99046.16, + 0, 99046.21, + 0, 99046.25, + 0, 99046.29, + 0, 99046.34, + 0, 99046.38, + 0, 99046.41, + 0, 99046.46, + 0, 99046.5, + 0, 99046.54, + 0, 99046.59, + 0, 99046.62, + 0, 99046.66, + 0, 99046.71, + 0, 99046.75, + 0, 99046.79, + 0, 99046.84, + 0, 99046.88, + 0, 99046.91, + 0, 99046.96, + 0, 99047, + 0, 99047.04, + 0, 99047.09, + 0, 99047.12, + 0, 99047.16, + 0, 99047.21, + 0, 99047.25, + 0, 99047.29, + 0, 99047.34, + 0, 99047.38, + 0, 99047.41, + 0, 99047.46, + 0, 99047.5, + 0, 99047.54, + 0, 99047.59, + 0, 99047.62, + 0, 99047.66, + 0, 99047.71, + 0, 99047.75, + 0, 99047.79, + 0, 99047.84, + 0, 99047.88, + 0, 99047.91, + 0, 99047.96, + 0, 99048, + 0, 99048.04, + 0, 99048.09, + 0, 99048.12, + 0, 99048.16, + 0, 99048.21, + 0, 99048.25, + 0, 99048.29, + 0, 99048.34, + 0, 99048.38, + 0, 99048.41, + 0, 99048.46, + 0, 99048.5, + 0, 99048.54, + 0, 99048.59, + 0, 99048.62, + 0, 99048.66, + 0, 99048.71, + 0, 99048.75, + 0, 99048.79, + 0, 99048.84, + 0, 99048.88, + 0, 99048.91, + 0, 99048.96, + 0, 99049, + 0, 99049.04, + 0, 99049.09, + 0, 99049.12, + 0, 99049.16, + 0, 99049.21, + 0, 99049.25, + 0, 99049.29, + 0, 99049.34, + 0, 99049.38, + 0, 99049.41, + 0, 99049.46, + 0, 99049.5, + 0, 99049.54, + 0, 99049.59, + 0, 99049.62, + 0, 99049.66, + 0, 99049.71, + 0, 99049.75, + 0, 99049.79, + 0, 99049.84, + 0, 99049.88, + 0, 99049.91, + 0, 99049.96, + 0, 99050, + 0, 99050.04, + 0, 99050.09, + 0, 99050.12, + 0, 99050.16, + 0, 99050.21, + 0, 99050.25, + 0, 99050.29, + 0, 99050.34, + 0, 99050.38, + 0, 99050.41, + 0, 99050.46, + 0, 99050.5, + 0, 99050.54, + 0, 99050.59, + 0, 99050.62, + 0, 99050.66, + 0, 99050.71, + 0, 99050.75, + 0, 99050.79, + 0, 99050.84, + 0, 99050.88, + 0, 99050.91, + 0, 99050.96, + 0, 99051, + 0, 99051.04, + 0, 99051.09, + 0, 99051.12, + 0, 99051.16, + 0, 99051.21, + 0, 99051.25, + 0, 99051.29, + 0, 99051.34, + 0, 99051.38, + 0, 99051.41, + 0, 99051.46, + 0, 99051.5, + 0, 99051.54, + 0, 99051.59, + 0, 99051.62, + 0, 99051.66, + 0, 99051.71, + 0, 99051.75, + 0, 99051.79, + 0, 99051.84, + 0, 99051.88, + 0, 99051.91, + 0, 99051.96, + 0, 99052, + 0, 99052.04, + 0, 99052.09, + 0, 99052.12, + 0, 99052.16, + 0, 99052.21, + 0, 99052.25, + 0, 99052.29, + 0, 99052.34, + 0, 99052.38, + 0, 99052.41, + 0, 99052.46, + 0, 99052.5, + 0, 99052.54, + 0, 99052.59, + 0, 99052.62, + 0, 99052.66, + 0, 99052.71, + 0, 99052.75, + 0, 99052.79, + 0, 99052.84, + 0, 99052.88, + 0, 99052.91, + 0, 99052.96, + 0, 99053, + 0, 99053.04, + 0, 99053.09, + 0, 99053.12, + 0, 99053.16, + 0, 99053.21, + 0, 99053.25, + 0, 99053.29, + 0, 99053.34, + 0, 99053.38, + 0, 99053.41, + 0, 99053.46, + 0, 99053.5, + 0, 99053.54, + 0, 99053.59, + 0, 99053.62, + 0, 99053.66, + 0, 99053.71, + 0, 99053.75, + 0, 99053.79, + 0, 99053.84, + 0, 99053.88, + 0, 99053.91, + 0, 99053.96, + 0, 99054, + 0, 99054.04, + 0, 99054.09, + 0, 99054.12, + 0, 99054.16, + 0, 99054.21, + 0, 99054.25, + 0, 99054.29, + 0, 99054.34, + 0, 99054.38, + 0, 99054.41, + 0, 99054.46, + 0, 99054.5, + 0, 99054.54, + 0, 99054.59, + 0, 99054.62, + 0, 99054.66, + 0, 99054.71, + 0, 99054.75, + 0, 99054.79, + 0, 99054.84, + 0, 99054.88, + 0, 99054.91, + 0, 99054.96, + 0, 99055, + 0, 99055.04, + 0, 99055.09, + 0, 99055.12, + 0, 99055.16, + 0, 99055.21, + 0, 99055.25, + 0, 99055.29, + 0, 99055.34, + 0, 99055.38, + 0, 99055.41, + 0, 99055.46, + 0, 99055.5, + 0, 99055.54, + 0, 99055.59, + 0, 99055.62, + 0, 99055.66, + 0, 99055.71, + 0, 99055.75, + 0, 99055.79, + 0, 99055.84, + 0, 99055.88, + 0, 99055.91, + 0, 99055.96, + 0, 99056, + 0, 99056.04, + 0, 99056.09, + 0, 99056.12, + 0, 99056.16, + 0, 99056.21, + 0, 99056.25, + 0, 99056.29, + 0, 99056.34, + 0, 99056.38, + 0, 99056.41, + 0, 99056.46, + 0, 99056.5, + 0, 99056.54, + 0, 99056.59, + 0, 99056.62, + 0, 99056.66, + 0, 99056.71, + 0, 99056.75, + 0, 99056.79, + 0, 99056.84, + 0, 99056.88, + 0, 99056.91, + 0, 99056.96, + 0, 99057, + 0, 99057.04, + 0, 99057.09, + 0, 99057.12, + 0, 99057.16, + 0, 99057.21, + 0, 99057.25, + 0, 99057.29, + 0, 99057.34, + 0, 99057.38, + 0, 99057.41, + 0, 99057.46, + 0, 99057.5, + 0, 99057.54, + 0, 99057.59, + 0, 99057.62, + 0, 99057.66, + 0, 99057.71, + 0, 99057.75, + 0, 99057.79, + 0, 99057.84, + 0, 99057.88, + 0, 99057.91, + 0, 99057.96, + 0, 99058, + 0, 99058.04, + 0, 99058.09, + 0, 99058.12, + 0, 99058.16, + 0, 99058.21, + 0, 99058.25, + 0, 99058.29, + 0, 99058.34, + 0, 99058.38, + 0, 99058.41, + 0, 99058.46, + 0, 99058.5, + 0, 99058.54, + 0, 99058.59, + 0, 99058.62, + 0, 99058.66, + 0, 99058.71, + 0, 99058.75, + 0, 99058.79, + 0, 99058.84, + 0, 99058.88, + 0, 99058.91, + 0, 99058.96, + 0, 99059, + 0, 99059.04, + 0, 99059.09, + 0, 99059.12, + 0, 99059.16, + 0, 99059.21, + 0, 99059.25, + 0, 99059.29, + 0, 99059.34, + 0, 99059.38, + 0, 99059.41, + 0, 99059.46, + 0, 99059.5, + 0, 99059.54, + 0, 99059.59, + 0, 99059.62, + 0, 99059.66, + 0, 99059.71, + 0, 99059.75, + 0, 99059.79, + 0, 99059.84, + 0, 99059.88, + 0, 99059.91, + 0, 99059.96, + 0, 99060, + 0, 99060.04, + 0, 99060.09, + 0, 99060.12, + 0, 99060.16, + 0, 99060.21, + 0, 99060.25, + 0, 99060.29, + 0, 99060.34, + 0, 99060.38, + 0, 99060.41, + 0, 99060.46, + 0, 99060.5, + 0, 99060.54, + 0, 99060.59, + 0, 99060.62, + 0, 99060.66, + 0, 99060.71, + 0, 99060.75, + 0, 99060.79, + 0, 99060.84, + 0, 99060.88, + 0, 99060.91, + 0, 99060.96, + 0, 99061, + 0, 99061.04, + 0, 99061.09, + 0, 99061.12, + 0, 99061.16, + 0, 99061.21, + 0, 99061.25, + 0, 99061.29, + 0, 99061.34, + 0, 99061.38, + 0, 99061.41, + 0, 99061.46, + 0, 99061.5, + 0, 99061.54, + 0, 99061.59, + 0, 99061.62, + 0, 99061.66, + 0, 99061.71, + 0, 99061.75, + 0, 99061.79, + 0, 99061.84, + 0, 99061.88, + 0, 99061.91, + 0, 99061.96, + 0, 99062, + 0, 99062.04, + 0, 99062.09, + 0, 99062.12, + 0, 99062.16, + 0, 99062.21, + 0, 99062.25, + 0, 99062.29, + 0, 99062.34, + 0, 99062.38, + 0, 99062.41, + 0, 99062.46, + 0, 99062.5, + 0, 99062.54, + 0, 99062.59, + 0, 99062.62, + 0, 99062.66, + 0, 99062.71, + 0, 99062.75, + 0, 99062.79, + 0, 99062.84, + 0, 99062.88, + 0, 99062.91, + 0, 99062.96, + 0, 99063, + 0, 99063.04, + 0, 99063.09, + 0, 99063.12, + 0, 99063.16, + 0, 99063.21, + 0, 99063.25, + 0, 99063.29, + 0, 99063.34, + 0, 99063.38, + 0, 99063.41, + 0, 99063.46, + 0, 99063.5, + 0, 99063.54, + 0, 99063.59, + 0, 99063.62, + 0, 99063.66, + 0, 99063.71, + 0, 99063.75, + 0, 99063.79, + 0, 99063.84, + 0, 99063.88, + 0, 99063.91, + 0, 99063.96, + 0, 99064, + 0, 99064.04, + 0, 99064.09, + 0, 99064.12, + 0, 99064.16, + 0, 99064.21, + 0, 99064.25, + 0, 99064.29, + 0, 99064.34, + 0, 99064.38, + 0, 99064.41, + 0, 99064.46, + 0, 99064.5, + 0, 99064.54, + 0, 99064.59, + 0, 99064.62, + 0, 99064.66, + 0, 99064.71, + 0, 99064.75, + 0, 99064.79, + 0, 99064.84, + 0, 99064.88, + 0, 99064.91, + 0, 99064.96, + 0, 99065, + 0, 99065.04, + 0, 99065.09, + 0, 99065.12, + 0, 99065.16, + 0, 99065.21, + 0, 99065.25, + 0, 99065.29, + 0, 99065.34, + 0, 99065.38, + 0, 99065.41, + 0, 99065.46, + 0, 99065.5, + 0, 99065.54, + 0, 99065.59, + 0, 99065.62, + 0, 99065.66, + 0, 99065.71, + 0, 99065.75, + 0, 99065.79, + 0, 99065.84, + 0, 99065.88, + 0, 99065.91, + 0, 99065.96, + 0, 99066, + 0, 99066.04, + 0, 99066.09, + 0, 99066.12, + 0, 99066.16, + 0, 99066.21, + 0, 99066.25, + 0, 99066.29, + 0, 99066.34, + 0, 99066.38, + 0, 99066.41, + 0, 99066.46, + 0, 99066.5, + 0, 99066.54, + 0, 99066.59, + 0, 99066.62, + 0, 99066.66, + 0, 99066.71, + 0, 99066.75, + 0, 99066.79, + 0, 99066.84, + 0, 99066.88, + 0, 99066.91, + 0, 99066.96, + 0, 99067, + 0, 99067.04, + 0, 99067.09, + 0, 99067.12, + 0, 99067.16, + 0, 99067.21, + 0, 99067.25, + 0, 99067.29, + 0, 99067.34, + 0, 99067.38, + 0, 99067.41, + 0, 99067.46, + 0, 99067.5, + 0, 99067.54, + 0, 99067.59, + 0, 99067.62, + 0, 99067.66, + 0, 99067.71, + 0, 99067.75, + 0, 99067.79, + 0, 99067.84, + 0, 99067.88, + 0, 99067.91, + 0, 99067.96, + 0, 99068, + 0, 99068.04, + 0, 99068.09, + 0, 99068.12, + 0, 99068.16, + 0, 99068.21, + 0, 99068.25, + 0, 99068.29, + 0, 99068.34, + 0, 99068.38, + 0, 99068.41, + 0, 99068.46, + 0, 99068.5, + 0, 99068.54, + 0, 99068.59, + 0, 99068.62, + 0, 99068.66, + 0, 99068.71, + 0, 99068.75, + 0, 99068.79, + 0, 99068.84, + 0, 99068.88, + 0, 99068.91, + 0, 99068.96, + 0, 99069, + 0, 99069.04, + 0, 99069.09, + 0, 99069.12, + 0, 99069.16, + 0, 99069.21, + 0, 99069.25, + 0, 99069.29, + 0, 99069.34, + 0, 99069.38, + 0, 99069.41, + 0, 99069.46, + 0, 99069.5, + 0, 99069.54, + 0, 99069.59, + 0, 99069.62, + 0, 99069.66, + 0, 99069.71, + 0, 99069.75, + 0, 99069.79, + 0, 99069.84, + 0, 99069.88, + 0, 99069.91, + 0, 99069.96, + 0, 99070, + 0, 99070.04, + 0, 99070.09, + 0, 99070.12, + 0, 99070.16, + 0, 99070.21, + 0, 99070.25, + 0, 99070.29, + 0, 99070.34, + 0, 99070.38, + 0, 99070.41, + 0, 99070.46, + 0, 99070.5, + 0, 99070.54, + 0, 99070.59, + 0, 99070.62, + 0, 99070.66, + 0, 99070.71, + 0, 99070.75, + 0, 99070.79, + 0, 99070.84, + 0, 99070.88, + 0, 99070.91, + 0, 99070.96, + 0, 99071, + 0, 99071.04, + 0, 99071.09, + 0, 99071.12, + 0, 99071.16, + 0, 99071.21, + 0, 99071.25, + 0, 99071.29, + 0, 99071.34, + 0, 99071.38, + 0, 99071.41, + 0, 99071.46, + 0, 99071.5, + 0, 99071.54, + 0, 99071.59, + 0, 99071.62, + 0, 99071.66, + 0, 99071.71, + 0, 99071.75, + 0, 99071.79, + 0, 99071.84, + 0, 99071.88, + 0, 99071.91, + 0, 99071.96, + 0, 99072, + 0, 99072.04, + 0, 99072.09, + 0, 99072.12, + 0, 99072.16, + 0, 99072.21, + 0, 99072.25, + 0, 99072.29, + 0, 99072.34, + 0, 99072.38, + 0, 99072.41, + 0, 99072.46, + 0, 99072.5, + 0, 99072.54, + 0, 99072.59, + 0, 99072.62, + 0, 99072.66, + 0, 99072.71, + 0, 99072.75, + 0, 99072.79, + 0, 99072.84, + 0, 99072.88, + 0, 99072.91, + 0, 99072.96, + 0, 99073, + 0, 99073.04, + 0, 99073.09, + 0, 99073.12, + 0, 99073.16, + 0, 99073.21, + 0, 99073.25, + 0, 99073.29, + 0, 99073.34, + 0, 99073.38, + 0, 99073.41, + 0, 99073.46, + 0, 99073.5, + 0, 99073.54, + 0, 99073.59, + 0, 99073.62, + 0, 99073.66, + 0, 99073.71, + 0, 99073.75, + 0, 99073.79, + 0, 99073.84, + 0, 99073.88, + 0, 99073.91, + 0, 99073.96, + 0, 99074, + 0, 99074.04, + 0, 99074.09, + 0, 99074.12, + 0, 99074.16, + 0, 99074.21, + 0, 99074.25, + 0, 99074.29, + 0, 99074.34, + 0, 99074.38, + 0, 99074.41, + 0, 99074.46, + 0, 99074.5, + 0, 99074.54, + 0, 99074.59, + 0, 99074.62, + 0, 99074.66, + 0, 99074.71, + 0, 99074.75, + 0, 99074.79, + 0, 99074.84, + 0, 99074.88, + 0, 99074.91, + 0, 99074.96, + 0, 99075, + 0, 99075.04, + 0, 99075.09, + 0, 99075.12, + 0, 99075.16, + 0, 99075.21, + 0, 99075.25, + 0, 99075.29, + 0, 99075.34, + 0, 99075.38, + 0, 99075.41, + 0, 99075.46, + 0, 99075.5, + 0, 99075.54, + 0, 99075.59, + 0, 99075.62, + 0, 99075.66, + 0, 99075.71, + 0, 99075.75, + 0, 99075.79, + 0, 99075.84, + 0, 99075.88, + 0, 99075.91, + 0, 99075.96, + 0, 99076, + 0, 99076.04, + 0, 99076.09, + 0, 99076.12, + 0, 99076.16, + 0, 99076.21, + 0, 99076.25, + 0, 99076.29, + 0, 99076.34, + 0, 99076.38, + 0, 99076.41, + 0, 99076.46, + 0, 99076.5, + 0, 99076.54, + 0, 99076.59, + 0, 99076.62, + 0, 99076.66, + 0, 99076.71, + 0, 99076.75, + 0, 99076.79, + 0, 99076.84, + 0, 99076.88, + 0, 99076.91, + 0, 99076.96, + 0, 99077, + 0, 99077.04, + 0, 99077.09, + 0, 99077.12, + 0, 99077.16, + 0, 99077.21, + 0, 99077.25, + 0, 99077.29, + 0, 99077.34, + 0, 99077.38, + 0, 99077.41, + 0, 99077.46, + 0, 99077.5, + 0, 99077.54, + 0, 99077.59, + 0, 99077.62, + 0, 99077.66, + 0, 99077.71, + 0, 99077.75, + 0, 99077.79, + 0, 99077.84, + 0, 99077.88, + 0, 99077.91, + 0, 99077.96, + 0, 99078, + 0, 99078.04, + 0, 99078.09, + 0, 99078.12, + 0, 99078.16, + 0, 99078.21, + 0, 99078.25, + 0, 99078.29, + 0, 99078.34, + 0, 99078.38, + 0, 99078.41, + 0, 99078.46, + 0, 99078.5, + 0, 99078.54, + 0, 99078.59, + 0, 99078.62, + 0, 99078.66, + 0, 99078.71, + 0, 99078.75, + 0, 99078.79, + 0, 99078.84, + 0, 99078.88, + 0, 99078.91, + 0, 99078.96, + 0, 99079, + 0, 99079.04, + 0, 99079.09, + 0, 99079.12, + 0, 99079.16, + 0, 99079.21, + 0, 99079.25, + 0, 99079.29, + 0, 99079.34, + 0, 99079.38, + 0, 99079.41, + 0, 99079.46, + 0, 99079.5, + 0, 99079.54, + 0, 99079.59, + 0, 99079.62, + 0, 99079.66, + 0, 99079.71, + 0, 99079.75, + 0, 99079.79, + 0, 99079.84, + 0, 99079.88, + 0, 99079.91, + 0, 99079.96, + 0, 99080, + 0, 99080.04, + 0, 99080.09, + 0, 99080.12, + 0, 99080.16, + 0, 99080.21, + 0, 99080.25, + 0, 99080.29, + 0, 99080.34, + 0, 99080.38, + 0, 99080.41, + 0, 99080.46, + 0, 99080.5, + 0, 99080.54, + 0, 99080.59, + 0, 99080.62, + 0, 99080.66, + 0, 99080.71, + 0, 99080.75, + 0, 99080.79, + 0, 99080.84, + 0, 99080.88, + 0, 99080.91, + 0, 99080.96, + 0, 99081, + 0, 99081.04, + 0, 99081.09, + 0, 99081.12, + 0, 99081.16, + 0, 99081.21, + 0, 99081.25, + 0, 99081.29, + 0, 99081.34, + 0, 99081.38, + 0, 99081.41, + 0, 99081.46, + 0, 99081.5, + 0, 99081.54, + 0, 99081.59, + 0, 99081.62, + 0, 99081.66, + 0, 99081.71, + 0, 99081.75, + 0, 99081.79, + 0, 99081.84, + 0, 99081.88, + 0, 99081.91, + 0, 99081.96, + 0, 99082, + 0, 99082.04, + 0, 99082.09, + 0, 99082.12, + 0, 99082.16, + 0, 99082.21, + 0, 99082.25, + 0, 99082.29, + 0, 99082.34, + 0, 99082.38, + 0, 99082.41, + 0, 99082.46, + 0, 99082.5, + 0, 99082.54, + 0, 99082.59, + 0, 99082.62, + 0, 99082.66, + 0, 99082.71, + 0, 99082.75, + 0, 99082.79, + 0, 99082.84, + 0, 99082.88, + 0, 99082.91, + 0, 99082.96, + 0, 99083, + 0, 99083.04, + 0, 99083.09, + 0, 99083.12, + 0, 99083.16, + 0, 99083.21, + 0, 99083.25, + 0, 99083.29, + 0, 99083.34, + 0, 99083.38, + 0, 99083.41, + 0, 99083.46, + 0, 99083.5, + 0, 99083.54, + 0, 99083.59, + 0, 99083.62, + 0, 99083.66, + 0, 99083.71, + 0, 99083.75, + 0, 99083.79, + 0, 99083.84, + 0, 99083.88, + 0, 99083.91, + 0, 99083.96, + 0, 99084, + 0, 99084.04, + 0, 99084.09, + 0, 99084.12, + 0, 99084.16, + 0, 99084.21, + 0, 99084.25, + 0, 99084.29, + 0, 99084.34, + 0, 99084.38, + 0, 99084.41, + 0, 99084.46, + 0, 99084.5, + 0, 99084.54, + 0, 99084.59, + 0, 99084.62, + 0, 99084.66, + 0, 99084.71, + 0, 99084.75, + 0, 99084.79, + 0, 99084.84, + 0, 99084.88, + 0, 99084.91, + 0, 99084.96, + 0, 99085, + 0, 99085.04, + 0, 99085.09, + 0, 99085.12, + 0, 99085.16, + 0, 99085.21, + 0, 99085.25, + 0, 99085.29, + 0, 99085.34, + 0, 99085.38, + 0, 99085.41, + 0, 99085.46, + 0, 99085.5, + 0, 99085.54, + 0, 99085.59, + 0, 99085.62, + 0, 99085.66, + 0, 99085.71, + 0, 99085.75, + 0, 99085.79, + 0, 99085.84, + 0, 99085.88, + 0, 99085.91, + 0, 99085.96, + 0, 99086, + 0, 99086.04, + 0, 99086.09, + 0, 99086.12, + 0, 99086.16, + 0, 99086.21, + 0, 99086.25, + 0, 99086.29, + 0, 99086.34, + 0, 99086.38, + 0, 99086.41, + 0, 99086.46, + 0, 99086.5, + 0, 99086.54, + 0, 99086.59, + 0, 99086.62, + 0, 99086.66, + 0, 99086.71, + 0, 99086.75, + 0, 99086.79, + 0, 99086.84, + 0, 99086.88, + 0, 99086.91, + 0, 99086.96, + 0, 99087, + 0, 99087.04, + 0, 99087.09, + 0, 99087.12, + 0, 99087.16, + 0, 99087.21, + 0, 99087.25, + 0, 99087.29, + 0, 99087.34, + 0, 99087.38, + 0, 99087.41, + 0, 99087.46, + 0, 99087.5, + 0, 99087.54, + 0, 99087.59, + 0, 99087.62, + 0, 99087.66, + 0, 99087.71, + 0, 99087.75, + 0, 99087.79, + 0, 99087.84, + 0, 99087.88, + 0, 99087.91, + 0, 99087.96, + 0, 99088, + 0, 99088.04, + 0, 99088.09, + 0, 99088.12, + 0, 99088.16, + 0, 99088.21, + 0, 99088.25, + 0, 99088.29, + 0, 99088.34, + 0, 99088.38, + 0, 99088.41, + 0, 99088.46, + 0, 99088.5, + 0, 99088.54, + 0, 99088.59, + 0, 99088.62, + 0, 99088.66, + 0, 99088.71, + 0, 99088.75, + 0, 99088.79, + 0, 99088.84, + 0, 99088.88, + 0, 99088.91, + 0, 99088.96, + 0, 99089, + 0, 99089.04, + 0, 99089.09, + 0, 99089.12, + 0, 99089.16, + 0, 99089.21, + 0, 99089.25, + 0, 99089.29, + 0, 99089.34, + 0, 99089.38, + 0, 99089.41, + 0, 99089.46, + 0, 99089.5, + 0, 99089.54, + 0, 99089.59, + 0, 99089.62, + 0, 99089.66, + 0, 99089.71, + 0, 99089.75, + 0, 99089.79, + 0, 99089.84, + 0, 99089.88, + 0, 99089.91, + 0, 99089.96, + 0, 99090, + 0, 99090.04, + 0, 99090.09, + 0, 99090.12, + 0, 99090.16, + 0, 99090.21, + 0, 99090.25, + 0, 99090.29, + 0, 99090.34, + 0, 99090.38, + 0, 99090.41, + 0, 99090.46, + 0, 99090.5, + 0, 99090.54, + 0, 99090.59, + 0, 99090.62, + 0, 99090.66, + 0, 99090.71, + 0, 99090.75, + 0, 99090.79, + 0, 99090.84, + 0, 99090.88, + 0, 99090.91, + 0, 99090.96, + 0, 99091, + 0, 99091.04, + 0, 99091.09, + 0, 99091.12, + 0, 99091.16, + 0, 99091.21, + 0, 99091.25, + 0, 99091.29, + 0, 99091.34, + 0, 99091.38, + 0, 99091.41, + 0, 99091.46, + 0, 99091.5, + 0, 99091.54, + 0, 99091.59, + 0, 99091.62, + 0, 99091.66, + 0, 99091.71, + 0, 99091.75, + 0, 99091.79, + 0, 99091.84, + 0, 99091.88, + 0, 99091.91, + 0, 99091.96, + 0, 99092, + 0, 99092.04, + 0, 99092.09, + 0, 99092.12, + 0, 99092.16, + 0, 99092.21, + 0, 99092.25, + 0, 99092.29, + 0, 99092.34, + 0, 99092.38, + 0, 99092.41, + 0, 99092.46, + 0, 99092.5, + 0, 99092.54, + 0, 99092.59, + 0, 99092.62, + 0, 99092.66, + 0, 99092.71, + 0, 99092.75, + 0, 99092.79, + 0, 99092.84, + 0, 99092.88, + 0, 99092.91, + 0, 99092.96, + 0, 99093, + 0, 99093.04, + 0, 99093.09, + 0, 99093.12, + 0, 99093.16, + 0, 99093.21, + 0, 99093.25, + 0, 99093.29, + 0, 99093.34, + 0, 99093.38, + 0, 99093.41, + 0, 99093.46, + 0, 99093.5, + 0, 99093.54, + 0, 99093.59, + 0, 99093.62, + 0, 99093.66, + 0, 99093.71, + 0, 99093.75, + 0, 99093.79, + 0, 99093.84, + 0, 99093.88, + 0, 99093.91, + 0, 99093.96, + 0, 99094, + 0, 99094.04, + 0, 99094.09, + 0, 99094.12, + 0, 99094.16, + 0, 99094.21, + 0, 99094.25, + 0, 99094.29, + 0, 99094.34, + 0, 99094.38, + 0, 99094.41, + 0, 99094.46, + 0, 99094.5, + 0, 99094.54, + 0, 99094.59, + 0, 99094.62, + 0, 99094.66, + 0, 99094.71, + 0, 99094.75, + 0, 99094.79, + 0, 99094.84, + 0, 99094.88, + 0, 99094.91, + 0, 99094.96, + 0, 99095, + 0, 99095.04, + 0, 99095.09, + 0, 99095.12, + 0, 99095.16, + 0, 99095.21, + 0, 99095.25, + 0, 99095.29, + 0, 99095.34, + 0, 99095.38, + 0, 99095.41, + 0, 99095.46, + 0, 99095.5, + 0, 99095.54, + 0, 99095.59, + 0, 99095.62, + 0, 99095.66, + 0, 99095.71, + 0, 99095.75, + 0, 99095.79, + 0, 99095.84, + 0, 99095.88, + 0, 99095.91, + 0, 99095.96, + 0, 99096, + 0, 99096.04, + 0, 99096.09, + 0, 99096.12, + 0, 99096.16, + 0, 99096.21, + 0, 99096.25, + 0, 99096.29, + 0, 99096.34, + 0, 99096.38, + 0, 99096.41, + 0, 99096.46, + 0, 99096.5, + 0, 99096.54, + 0, 99096.59, + 0, 99096.62, + 0, 99096.66, + 0, 99096.71, + 0, 99096.75, + 0, 99096.79, + 0, 99096.84, + 0, 99096.88, + 0, 99096.91, + 0, 99096.96, + 0, 99097, + 0, 99097.04, + 0, 99097.09, + 0, 99097.12, + 0, 99097.16, + 0, 99097.21, + 0, 99097.25, + 0, 99097.29, + 0, 99097.34, + 0, 99097.38, + 0, 99097.41, + 0, 99097.46, + 0, 99097.5, + 0, 99097.54, + 0, 99097.59, + 0, 99097.62, + 0, 99097.66, + 0, 99097.71, + 0, 99097.75, + 0, 99097.79, + 0, 99097.84, + 0, 99097.88, + 0, 99097.91, + 0, 99097.96, + 0, 99098, + 0, 99098.04, + 0, 99098.09, + 0, 99098.12, + 0, 99098.16, + 0, 99098.21, + 0, 99098.25, + 0, 99098.29, + 0, 99098.34, + 0, 99098.38, + 0, 99098.41, + 0, 99098.46, + 0, 99098.5, + 0, 99098.54, + 0, 99098.59, + 0, 99098.62, + 0, 99098.66, + 0, 99098.71, + 0, 99098.75, + 0, 99098.79, + 0, 99098.84, + 0, 99098.88, + 0, 99098.91, + 0, 99098.96, + 0, 99099, + 0, 99099.04, + 0, 99099.09, + 0, 99099.12, + 0, 99099.16, + 0, 99099.21, + 0, 99099.25, + 0, 99099.29, + 0, 99099.34, + 0, 99099.38, + 0, 99099.41, + 0, 99099.46, + 0, 99099.5, + 0, 99099.54, + 0, 99099.59, + 0, 99099.62, + 0, 99099.66, + 0, 99099.71, + 0, 99099.75, + 0, 99099.79, + 0, 99099.84, + 0, 99099.88, + 0, 99099.91, + 0, 99099.96, + 0, 99100, + 0, 99100.04, + 0, 99100.09, + 0, 99100.12, + 0, 99100.16, + 0, 99100.21, + 0, 99100.25, + 0, 99100.29, + 0, 99100.34, + 0, 99100.38, + 0, 99100.41, + 0, 99100.46, + 0, 99100.5, + 0, 99100.54, + 0, 99100.59, + 0, 99100.62, + 0, 99100.66, + 0, 99100.71, + 0, 99100.75, + 0, 99100.79, + 0, 99100.84, + 0, 99100.88, + 0, 99100.91, + 0, 99100.96, + 0, 99101, + 0, 99101.04, + 0, 99101.09, + 0, 99101.12, + 0, 99101.16, + 0, 99101.21, + 0, 99101.25, + 0, 99101.29, + 0, 99101.34, + 0, 99101.38, + 0, 99101.41, + 0, 99101.46, + 0, 99101.5, + 0, 99101.54, + 0, 99101.59, + 0, 99101.62, + 0, 99101.66, + 0, 99101.71, + 0, 99101.75, + 0, 99101.79, + 0, 99101.84, + 0, 99101.88, + 0, 99101.91, + 0, 99101.96, + 0, 99102, + 0, 99102.04, + 0, 99102.09, + 0, 99102.12, + 0, 99102.16, + 0, 99102.21, + 0, 99102.25, + 0, 99102.29, + 0, 99102.34, + 0, 99102.38, + 0, 99102.41, + 0, 99102.46, + 0, 99102.5, + 0, 99102.54, + 0, 99102.59, + 0, 99102.62, + 0, 99102.66, + 0, 99102.71, + 0, 99102.75, + 0, 99102.79, + 0, 99102.84, + 0, 99102.88, + 0, 99102.91, + 0, 99102.96, + 0, 99103, + 0, 99103.04, + 0, 99103.09, + 0, 99103.12, + 0, 99103.16, + 0, 99103.21, + 0, 99103.25, + 0, 99103.29, + 0, 99103.34, + 0, 99103.38, + 0, 99103.41, + 0, 99103.46, + 0, 99103.5, + 0, 99103.54, + 0, 99103.59, + 0, 99103.62, + 0, 99103.66, + 0, 99103.71, + 0, 99103.75, + 0, 99103.79, + 0, 99103.84, + 0, 99103.88, + 0, 99103.91, + 0, 99103.96, + 0, 99104, + 0, 99104.04, + 0, 99104.09, + 0, 99104.12, + 0, 99104.16, + 0, 99104.21, + 0, 99104.25, + 0, 99104.29, + 0, 99104.34, + 0, 99104.38, + 0, 99104.41, + 0, 99104.46, + 0, 99104.5, + 0, 99104.54, + 0, 99104.59, + 0, 99104.62, + 0, 99104.66, + 0, 99104.71, + 0, 99104.75, + 0, 99104.79, + 0, 99104.84, + 0, 99104.88, + 0, 99104.91, + 0, 99104.96, + 0, 99105, + 0, 99105.04, + 0, 99105.09, + 0, 99105.12, + 0, 99105.16, + 0, 99105.21, + 0, 99105.25, + 0, 99105.29, + 0, 99105.34, + 0, 99105.38, + 0, 99105.41, + 0, 99105.46, + 0, 99105.5, + 0, 99105.54, + 0, 99105.59, + 0, 99105.62, + 0, 99105.66, + 0, 99105.71, + 0, 99105.75, + 0, 99105.79, + 0, 99105.84, + 0, 99105.88, + 0, 99105.91, + 0, 99105.96, + 0, 99106, + 0, 99106.04, + 0, 99106.09, + 0, 99106.12, + 0, 99106.16, + 0, 99106.21, + 0, 99106.25, + 0, 99106.29, + 0, 99106.34, + 0, 99106.38, + 0, 99106.41, + 0, 99106.46, + 0, 99106.5, + 0, 99106.54, + 0, 99106.59, + 0, 99106.62, + 0, 99106.66, + 0, 99106.71, + 0, 99106.75, + 0, 99106.79, + 0, 99106.84, + 0, 99106.88, + 0, 99106.91, + 0, 99106.96, + 0, 99107, + 0, 99107.04, + 0, 99107.09, + 0, 99107.12, + 0, 99107.16, + 0, 99107.21, + 0, 99107.25, + 0, 99107.29, + 0, 99107.34, + 0, 99107.38, + 0, 99107.41, + 0, 99107.46, + 0, 99107.5, + 0, 99107.54, + 0, 99107.59, + 0, 99107.62, + 0, 99107.66, + 0, 99107.71, + 0, 99107.75, + 0, 99107.79, + 0, 99107.84, + 0, 99107.88, + 0, 99107.91, + 0, 99107.96, + 0, 99108, + 0, 99108.04, + 0, 99108.09, + 0, 99108.12, + 0, 99108.16, + 0, 99108.21, + 0, 99108.25, + 0, 99108.29, + 0, 99108.34, + 0, 99108.38, + 0, 99108.41, + 0, 99108.46, + 0, 99108.5, + 0, 99108.54, + 0, 99108.59, + 0, 99108.62, + 0, 99108.66, + 0, 99108.71, + 0, 99108.75, + 0, 99108.79, + 0, 99108.84, + 0, 99108.88, + 0, 99108.91, + 0, 99108.96, + 0, 99109, + 0, 99109.04, + 0, 99109.09, + 0, 99109.12, + 0, 99109.16, + 0, 99109.21, + 0, 99109.25, + 0, 99109.29, + 0, 99109.34, + 0, 99109.38, + 0, 99109.41, + 0, 99109.46, + 0, 99109.5, + 0, 99109.54, + 0, 99109.59, + 0, 99109.62, + 0, 99109.66, + 0, 99109.71, + 0, 99109.75, + 0, 99109.79, + 0, 99109.84, + 0, 99109.88, + 0, 99109.91, + 0, 99109.96, + 0, 99110, + 0, 99110.04, + 0, 99110.09, + 0, 99110.12, + 0, 99110.16, + 0, 99110.21, + 0, 99110.25, + 0, 99110.29, + 0, 99110.34, + 0, 99110.38, + 0, 99110.41, + 0, 99110.46, + 0, 99110.5, + 0, 99110.54, + 0, 99110.59, + 0, 99110.62, + 0, 99110.66, + 0, 99110.71, + 0, 99110.75, + 0, 99110.79, + 0, 99110.84, + 0, 99110.88, + 0, 99110.91, + 0, 99110.96, + 0, 99111, + 0, 99111.04, + 0, 99111.09, + 0, 99111.12, + 0, 99111.16, + 0, 99111.21, + 0, 99111.25, + 0, 99111.29, + 0, 99111.34, + 0, 99111.38, + 0, 99111.41, + 0, 99111.46, + 0, 99111.5, + 0, 99111.54, + 0, 99111.59, + 0, 99111.62, + 0, 99111.66, + 0, 99111.71, + 0, 99111.75, + 0, 99111.79, + 0, 99111.84, + 0, 99111.88, + 0, 99111.91, + 0, 99111.96, + 0, 99112, + 0, 99112.04, + 0, 99112.09, + 0, 99112.12, + 0, 99112.16, + 0, 99112.21, + 0, 99112.25, + 0, 99112.29, + 0, 99112.34, + 0, 99112.38, + 0, 99112.41, + 0, 99112.46, + 0, 99112.5, + 0, 99112.54, + 0, 99112.59, + 0, 99112.62, + 0, 99112.66, + 0, 99112.71, + 0, 99112.75, + 0, 99112.79, + 0, 99112.84, + 0, 99112.88, + 0, 99112.91, + 0, 99112.96, + 0, 99113, + 0, 99113.04, + 0, 99113.09, + 0, 99113.12, + 0, 99113.16, + 0, 99113.21, + 0, 99113.25, + 0, 99113.29, + 0, 99113.34, + 0, 99113.38, + 0, 99113.41, + 0, 99113.46, + 0, 99113.5, + 0, 99113.54, + 0, 99113.59, + 0, 99113.62, + 0, 99113.66, + 0, 99113.71, + 0, 99113.75, + 0, 99113.79, + 0, 99113.84, + 0, 99113.88, + 0, 99113.91, + 0, 99113.96, + 0, 99114, + 0, 99114.04, + 0, 99114.09, + 0, 99114.12, + 0, 99114.16, + 0, 99114.21, + 0, 99114.25, + 0, 99114.29, + 0, 99114.34, + 0, 99114.38, + 0, 99114.41, + 0, 99114.46, + 0, 99114.5, + 0, 99114.54, + 0, 99114.59, + 0, 99114.62, + 0, 99114.66, + 0, 99114.71, + 0, 99114.75, + 0, 99114.79, + 0, 99114.84, + 0, 99114.88, + 0, 99114.91, + 0, 99114.96, + 0, 99115, + 0, 99115.04, + 0, 99115.09, + 0, 99115.12, + 0, 99115.16, + 0, 99115.21, + 0, 99115.25, + 0, 99115.29, + 0, 99115.34, + 0, 99115.38, + 0, 99115.41, + 0, 99115.46, + 0, 99115.5, + 0, 99115.54, + 0, 99115.59, + 0, 99115.62, + 0, 99115.66, + 0, 99115.71, + 0, 99115.75, + 0, 99115.79, + 0, 99115.84, + 0, 99115.88, + 0, 99115.91, + 0, 99115.96, + 0, 99116, + 0, 99116.04, + 0, 99116.09, + 0, 99116.12, + 0, 99116.16, + 0, 99116.21, + 0, 99116.25, + 0, 99116.29, + 0, 99116.34, + 0, 99116.38, + 0, 99116.41, + 0, 99116.46, + 0, 99116.5, + 0, 99116.54, + 0, 99116.59, + 0, 99116.62, + 0, 99116.66, + 0, 99116.71, + 0, 99116.75, + 0, 99116.79, + 0, 99116.84, + 0, 99116.88, + 0, 99116.91, + 0, 99116.96, + 0, 99117, + 0, 99117.04, + 0, 99117.09, + 0, 99117.12, + 0, 99117.16, + 0, 99117.21, + 0, 99117.25, + 0, 99117.29, + 0, 99117.34, + 0, 99117.38, + 0, 99117.41, + 0, 99117.46, + 0, 99117.5, + 0, 99117.54, + 0, 99117.59, + 0, 99117.62, + 0, 99117.66, + 0, 99117.71, + 0, 99117.75, + 0, 99117.79, + 0, 99117.84, + 0, 99117.88, + 0, 99117.91, + 0, 99117.96, + 0, 99118, + 0, 99118.04, + 0, 99118.09, + 0, 99118.12, + 0, 99118.16, + 0, 99118.21, + 0, 99118.25, + 0, 99118.29, + 0, 99118.34, + 0, 99118.38, + 0, 99118.41, + 0, 99118.46, + 0, 99118.5, + 0, 99118.54, + 0, 99118.59, + 0, 99118.62, + 0, 99118.66, + 0, 99118.71, + 0, 99118.75, + 0, 99118.79, + 0, 99118.84, + 0, 99118.88, + 0, 99118.91, + 0, 99118.96, + 0, 99119, + 0, 99119.04, + 0, 99119.09, + 0, 99119.12, + 0, 99119.16, + 0, 99119.21, + 0, 99119.25, + 0, 99119.29, + 0, 99119.34, + 0, 99119.38, + 0, 99119.41, + 0, 99119.46, + 0, 99119.5, + 0, 99119.54, + 0, 99119.59, + 0, 99119.62, + 0, 99119.66, + 0, 99119.71, + 0, 99119.75, + 0, 99119.79, + 0, 99119.84, + 0, 99119.88, + 0, 99119.91, + 0, 99119.96, + 0, 99120, + 0, 99120.04, + 0, 99120.09, + 0, 99120.12, + 0, 99120.16, + 0, 99120.21, + 0, 99120.25, + 0, 99120.29, + 0, 99120.34, + 0, 99120.38, + 0, 99120.41, + 0, 99120.46, + 0, 99120.5, + 0, 99120.54, + 0, 99120.59, + 0, 99120.62, + 0, 99120.66, + 0, 99120.71, + 0, 99120.75, + 0, 99120.79, + 0, 99120.84, + 0, 99120.88, + 0, 99120.91, + 0, 99120.96, + 0, 99121, + 0, 99121.04, + 0, 99121.09, + 0, 99121.12, + 0, 99121.16, + 0, 99121.21, + 0, 99121.25, + 0, 99121.29, + 0, 99121.34, + 0, 99121.38, + 0, 99121.41, + 0, 99121.46, + 0, 99121.5, + 0, 99121.54, + 0, 99121.59, + 0, 99121.62, + 0, 99121.66, + 0, 99121.71, + 0, 99121.75, + 0, 99121.79, + 0, 99121.84, + 0, 99121.88, + 0, 99121.91, + 0, 99121.96, + 0, 99122, + 0, 99122.04, + 0, 99122.09, + 0, 99122.12, + 0, 99122.16, + 0, 99122.21, + 0, 99122.25, + 0, 99122.29, + 0, 99122.34, + 0, 99122.38, + 0, 99122.41, + 0, 99122.46, + 0, 99122.5, + 0, 99122.54, + 0, 99122.59, + 0, 99122.62, + 0, 99122.66, + 0, 99122.71, + 0, 99122.75, + 0, 99122.79, + 0, 99122.84, + 0, 99122.88, + 0, 99122.91, + 0, 99122.96, + 0, 99123, + 0, 99123.04, + 0, 99123.09, + 0, 99123.12, + 0, 99123.16, + 0, 99123.21, + 0, 99123.25, + 0, 99123.29, + 0, 99123.34, + 0, 99123.38, + 0, 99123.41, + 0, 99123.46, + 0, 99123.5, + 0, 99123.54, + 0, 99123.59, + 0, 99123.62, + 0, 99123.66, + 0, 99123.71, + 0, 99123.75, + 0, 99123.79, + 0, 99123.84, + 0, 99123.88, + 0, 99123.91, + 0, 99123.96, + 0, 99124, + 0, 99124.04, + 0, 99124.09, + 0, 99124.12, + 0, 99124.16, + 0, 99124.21, + 0, 99124.25, + 0, 99124.29, + 0, 99124.34, + 0, 99124.38, + 0, 99124.41, + 0, 99124.46, + 0, 99124.5, + 0, 99124.54, + 0, 99124.59, + 0, 99124.62, + 0, 99124.66, + 0, 99124.71, + 0, 99124.75, + 0, 99124.79, + 0, 99124.84, + 0, 99124.88, + 0, 99124.91, + 0, 99124.96, + 0, 99125, + 0, 99125.04, + 0, 99125.09, + 0, 99125.12, + 0, 99125.16, + 0, 99125.21, + 0, 99125.25, + 0, 99125.29, + 0, 99125.34, + 0, 99125.38, + 0, 99125.41, + 0, 99125.46, + 0, 99125.5, + 0, 99125.54, + 0, 99125.59, + 0, 99125.62, + 0, 99125.66, + 0, 99125.71, + 0, 99125.75, + 0, 99125.79, + 0, 99125.84, + 0, 99125.88, + 0, 99125.91, + 0, 99125.96, + 0, 99126, + 0, 99126.04, + 0, 99126.09, + 0, 99126.12, + 0, 99126.16, + 0, 99126.21, + 0, 99126.25, + 0, 99126.29, + 0, 99126.34, + 0, 99126.38, + 0, 99126.41, + 0, 99126.46, + 0, 99126.5, + 0, 99126.54, + 0, 99126.59, + 0, 99126.62, + 0, 99126.66, + 0, 99126.71, + 0, 99126.75, + 0, 99126.79, + 0, 99126.84, + 0, 99126.88, + 0, 99126.91, + 0, 99126.96, + 0, 99127, + 0, 99127.04, + 0, 99127.09, + 0, 99127.12, + 0, 99127.16, + 0, 99127.21, + 0, 99127.25, + 0, 99127.29, + 0, 99127.34, + 0, 99127.38, + 0, 99127.41, + 0, 99127.46, + 0, 99127.5, + 0, 99127.54, + 0, 99127.59, + 0, 99127.62, + 0, 99127.66, + 0, 99127.71, + 0, 99127.75, + 0, 99127.79, + 0, 99127.84, + 0, 99127.88, + 0, 99127.91, + 0, 99127.96, + 0, 99128, + 0, 99128.04, + 0, 99128.09, + 0, 99128.12, + 0, 99128.16, + 0, 99128.21, + 0, 99128.25, + 0, 99128.29, + 0, 99128.34, + 0, 99128.38, + 0, 99128.41, + 0, 99128.46, + 0, 99128.5, + 0, 99128.54, + 0, 99128.59, + 0, 99128.62, + 0, 99128.66, + 0, 99128.71, + 0, 99128.75, + 0, 99128.79, + 0, 99128.84, + 0, 99128.88, + 0, 99128.91, + 0, 99128.96, + 0, 99129, + 0, 99129.04, + 0, 99129.09, + 0, 99129.12, + 0, 99129.16, + 0, 99129.21, + 0, 99129.25, + 0, 99129.29, + 0, 99129.34, + 0, 99129.38, + 0, 99129.41, + 0, 99129.46, + 0, 99129.5, + 0, 99129.54, + 0, 99129.59, + 0, 99129.62, + 0, 99129.66, + 0, 99129.71, + 0, 99129.75, + 0, 99129.79, + 0, 99129.84, + 0, 99129.88, + 0, 99129.91, + 0, 99129.96, + 0, 99130, + 0, 99130.04, + 0, 99130.09, + 0, 99130.12, + 0, 99130.16, + 0, 99130.21, + 0, 99130.25, + 0, 99130.29, + 0, 99130.34, + 0, 99130.38, + 0, 99130.41, + 0, 99130.46, + 0, 99130.5, + 0, 99130.54, + 0, 99130.59, + 0, 99130.62, + 0, 99130.66, + 0, 99130.71, + 0, 99130.75, + 0, 99130.79, + 0, 99130.84, + 0, 99130.88, + 0, 99130.91, + 0, 99130.96, + 0, 99131, + 0, 99131.04, + 0, 99131.09, + 0, 99131.12, + 0, 99131.16, + 0, 99131.21, + 0, 99131.25, + 0, 99131.29, + 0, 99131.34, + 0, 99131.38, + 0, 99131.41, + 0, 99131.46, + 0, 99131.5, + 0, 99131.54, + 0, 99131.59, + 0, 99131.62, + 0, 99131.66, + 0, 99131.71, + 0, 99131.75, + 0, 99131.79, + 0, 99131.84, + 0, 99131.88, + 0, 99131.91, + 0, 99131.96, + 0, 99132, + 0, 99132.04, + 0, 99132.09, + 0, 99132.12, + 0, 99132.16, + 0, 99132.21, + 0, 99132.25, + 0, 99132.29, + 0, 99132.34, + 0, 99132.38, + 0, 99132.41, + 0, 99132.46, + 0, 99132.5, + 0, 99132.54, + 0, 99132.59, + 0, 99132.62, + 0, 99132.66, + 0, 99132.71, + 0, 99132.75, + 0, 99132.79, + 0, 99132.84, + 0, 99132.88, + 0, 99132.91, + 0, 99132.96, + 0, 99133, + 0, 99133.04, + 0, 99133.09, + 0, 99133.12, + 0, 99133.16, + 0, 99133.21, + 0, 99133.25, + 0, 99133.29, + 0, 99133.34, + 0, 99133.38, + 0, 99133.41, + 0, 99133.46, + 0, 99133.5, + 0, 99133.54, + 0, 99133.59, + 0, 99133.62, + 0, 99133.66, + 0, 99133.71, + 0, 99133.75, + 0, 99133.79, + 0, 99133.84, + 0, 99133.88, + 0, 99133.91, + 0, 99133.96, + 0, 99134, + 0, 99134.04, + 0, 99134.09, + 0, 99134.12, + 0, 99134.16, + 0, 99134.21, + 0, 99134.25, + 0, 99134.29, + 0, 99134.34, + 0, 99134.38, + 0, 99134.41, + 0, 99134.46, + 0, 99134.5, + 0, 99134.54, + 0, 99134.59, + 0, 99134.62, + 0, 99134.66, + 0, 99134.71, + 0, 99134.75, + 0, 99134.79, + 0, 99134.84, + 0, 99134.88, + 0, 99134.91, + 0, 99134.96, + 0, 99135, + 0, 99135.04, + 0, 99135.09, + 0, 99135.12, + 0, 99135.16, + 0, 99135.21, + 0, 99135.25, + 0, 99135.29, + 0, 99135.34, + 0, 99135.38, + 0, 99135.41, + 0, 99135.46, + 0, 99135.5, + 0, 99135.54, + 0, 99135.59, + 0, 99135.62, + 0, 99135.66, + 0, 99135.71, + 0, 99135.75, + 0, 99135.79, + 0, 99135.84, + 0, 99135.88, + 0, 99135.91, + 0, 99135.96, + 0, 99136, + 0, 99136.04, + 0, 99136.09, + 0, 99136.12, + 0, 99136.16, + 0, 99136.21, + 0, 99136.25, + 0, 99136.29, + 0, 99136.34, + 0, 99136.38, + 0, 99136.41, + 0, 99136.46, + 0, 99136.5, + 0, 99136.54, + 0, 99136.59, + 0, 99136.62, + 0, 99136.66, + 0, 99136.71, + 0, 99136.75, + 0, 99136.79, + 0, 99136.84, + 0, 99136.88, + 0, 99136.91, + 0, 99136.96, + 0, 99137, + 0, 99137.04, + 0, 99137.09, + 0, 99137.12, + 0, 99137.16, + 0, 99137.21, + 0, 99137.25, + 0, 99137.29, + 0, 99137.34, + 0, 99137.38, + 0, 99137.41, + 0, 99137.46, + 0, 99137.5, + 0, 99137.54, + 0, 99137.59, + 0, 99137.62, + 0, 99137.66, + 0, 99137.71, + 0, 99137.75, + 0, 99137.79, + 0, 99137.84, + 0, 99137.88, + 0, 99137.91, + 0, 99137.96, + 0, 99138, + 0, 99138.04, + 0, 99138.09, + 0, 99138.12, + 0, 99138.16, + 0, 99138.21, + 0, 99138.25, + 0, 99138.29, + 0, 99138.34, + 0, 99138.38, + 0, 99138.41, + 0, 99138.46, + 0, 99138.5, + 0, 99138.54, + 0, 99138.59, + 0, 99138.62, + 0, 99138.66, + 0, 99138.71, + 0, 99138.75, + 0, 99138.79, + 0, 99138.84, + 0, 99138.88, + 0, 99138.91, + 0, 99138.96, + 0, 99139, + 0, 99139.04, + 0, 99139.09, + 0, 99139.12, + 0, 99139.16, + 0, 99139.21, + 0, 99139.25, + 0, 99139.29, + 0, 99139.34, + 0, 99139.38, + 0, 99139.41, + 0, 99139.46, + 0, 99139.5, + 0, 99139.54, + 0, 99139.59, + 0, 99139.62, + 0, 99139.66, + 0, 99139.71, + 0, 99139.75, + 0, 99139.79, + 0, 99139.84, + 0, 99139.88, + 0, 99139.91, + 0, 99139.96, + 0, 99140, + 0, 99140.04, + 0, 99140.09, + 0, 99140.12, + 0, 99140.16, + 0, 99140.21, + 0, 99140.25, + 0, 99140.29, + 0, 99140.34, + 0, 99140.38, + 0, 99140.41, + 0, 99140.46, + 0, 99140.5, + 0, 99140.54, + 0, 99140.59, + 0, 99140.62, + 0, 99140.66, + 0, 99140.71, + 0, 99140.75, + 0, 99140.79, + 0, 99140.84, + 0, 99140.88, + 0, 99140.91, + 0, 99140.96, + 0, 99141, + 0, 99141.04, + 0, 99141.09, + 0, 99141.12, + 0, 99141.16, + 0, 99141.21, + 0, 99141.25, + 0, 99141.29, + 0, 99141.34, + 0, 99141.38, + 0, 99141.41, + 0, 99141.46, + 0, 99141.5, + 0, 99141.54, + 0, 99141.59, + 0, 99141.62, + 0, 99141.66, + 0, 99141.71, + 0, 99141.75, + 0, 99141.79, + 0, 99141.84, + 0, 99141.88, + 0, 99141.91, + 0, 99141.96, + 0, 99142, + 0, 99142.04, + 0, 99142.09, + 0, 99142.12, + 0, 99142.16, + 0, 99142.21, + 0, 99142.25, + 0, 99142.29, + 0, 99142.34, + 0, 99142.38, + 0, 99142.41, + 0, 99142.46, + 0, 99142.5, + 0, 99142.54, + 0, 99142.59, + 0, 99142.62, + 0, 99142.66, + 0, 99142.71, + 0, 99142.75, + 0, 99142.79, + 0, 99142.84, + 0, 99142.88, + 0, 99142.91, + 0, 99142.96, + 0, 99143, + 0, 99143.04, + 0, 99143.09, + 0, 99143.12, + 0, 99143.16, + 0, 99143.21, + 0, 99143.25, + 0, 99143.29, + 0, 99143.34, + 0, 99143.38, + 0, 99143.41, + 0, 99143.46, + 0, 99143.5, + 0, 99143.54, + 0, 99143.59, + 0, 99143.62, + 0, 99143.66, + 0, 99143.71, + 0, 99143.75, + 0, 99143.79, + 0, 99143.84, + 0, 99143.88, + 0, 99143.91, + 0, 99143.96, + 0, 99144, + 0, 99144.04, + 0, 99144.09, + 0, 99144.12, + 0, 99144.16, + 0, 99144.21, + 0, 99144.25, + 0, 99144.29, + 0, 99144.34, + 0, 99144.38, + 0, 99144.41, + 0, 99144.46, + 0, 99144.5, + 0, 99144.54, + 0, 99144.59, + 0, 99144.62, + 0, 99144.66, + 0, 99144.71, + 0, 99144.75, + 0, 99144.79, + 0, 99144.84, + 0, 99144.88, + 0, 99144.91, + 0, 99144.96, + 0, 99145, + 0, 99145.04, + 0, 99145.09, + 0, 99145.12, + 0, 99145.16, + 0, 99145.21, + 0, 99145.25, + 0, 99145.29, + 0, 99145.34, + 0, 99145.38, + 0, 99145.41, + 0, 99145.46, + 0, 99145.5, + 0, 99145.54, + 0, 99145.59, + 0, 99145.62, + 0, 99145.66, + 0, 99145.71, + 0, 99145.75, + 0, 99145.79, + 0, 99145.84, + 0, 99145.88, + 0, 99145.91, + 0, 99145.96, + 0, 99146, + 0, 99146.04, + 0, 99146.09, + 0, 99146.12, + 0, 99146.16, + 0, 99146.21, + 0, 99146.25, + 0, 99146.29, + 0, 99146.34, + 0, 99146.38, + 0, 99146.41, + 0, 99146.46, + 0, 99146.5, + 0, 99146.54, + 0, 99146.59, + 0, 99146.62, + 0, 99146.66, + 0, 99146.71, + 0, 99146.75, + 0, 99146.79, + 0, 99146.84, + 0, 99146.88, + 0, 99146.91, + 0, 99146.96, + 0, 99147, + 0, 99147.04, + 0, 99147.09, + 0, 99147.12, + 0, 99147.16, + 0, 99147.21, + 0, 99147.25, + 0, 99147.29, + 0, 99147.34, + 0, 99147.38, + 0, 99147.41, + 0, 99147.46, + 0, 99147.5, + 0, 99147.54, + 0, 99147.59, + 0, 99147.62, + 0, 99147.66, + 0, 99147.71, + 0, 99147.75, + 0, 99147.79, + 0, 99147.84, + 0, 99147.88, + 0, 99147.91, + 0, 99147.96, + 0, 99148, + 0, 99148.04, + 0, 99148.09, + 0, 99148.12, + 0, 99148.16, + 0, 99148.21, + 0, 99148.25, + 0, 99148.29, + 0, 99148.34, + 0, 99148.38, + 0, 99148.41, + 0, 99148.46, + 0, 99148.5, + 0, 99148.54, + 0, 99148.59, + 0, 99148.62, + 0, 99148.66, + 0, 99148.71, + 0, 99148.75, + 0, 99148.79, + 0, 99148.84, + 0, 99148.88, + 0, 99148.91, + 0, 99148.96, + 0, 99149, + 0, 99149.04, + 0, 99149.09, + 0, 99149.12, + 0, 99149.16, + 0, 99149.21, + 0, 99149.25, + 0, 99149.29, + 0, 99149.34, + 0, 99149.38, + 0, 99149.41, + 0, 99149.46, + 0, 99149.5, + 0, 99149.54, + 0, 99149.59, + 0, 99149.62, + 0, 99149.66, + 0, 99149.71, + 0, 99149.75, + 0, 99149.79, + 0, 99149.84, + 0, 99149.88, + 0, 99149.91, + 0, 99149.96, + 0, 99150, + 0, 99150.04, + 0, 99150.09, + 0, 99150.12, + 0, 99150.16, + 0, 99150.21, + 0, 99150.25, + 0, 99150.29, + 0, 99150.34, + 0, 99150.38, + 0, 99150.41, + 0, 99150.46, + 0, 99150.5, + 0, 99150.54, + 0, 99150.59, + 0, 99150.62, + 0, 99150.66, + 0, 99150.71, + 0, 99150.75, + 0, 99150.79, + 0, 99150.84, + 0, 99150.88, + 0, 99150.91, + 0, 99150.96, + 0, 99151, + 0, 99151.04, + 0, 99151.09, + 0, 99151.12, + 0, 99151.16, + 0, 99151.21, + 0, 99151.25, + 0, 99151.29, + 0, 99151.34, + 0, 99151.38, + 0, 99151.41, + 0, 99151.46, + 0, 99151.5, + 0, 99151.54, + 0, 99151.59, + 0, 99151.62, + 0, 99151.66, + 0, 99151.71, + 0, 99151.75, + 0, 99151.79, + 0, 99151.84, + 0, 99151.88, + 0, 99151.91, + 0, 99151.96, + 0, 99152, + 0, 99152.04, + 0, 99152.09, + 0, 99152.12, + 0, 99152.16, + 0, 99152.21, + 0, 99152.25, + 0, 99152.29, + 0, 99152.34, + 0, 99152.38, + 0, 99152.41, + 0, 99152.46, + 0, 99152.5, + 0, 99152.54, + 0, 99152.59, + 0, 99152.62, + 0, 99152.66, + 0, 99152.71, + 0, 99152.75, + 0, 99152.79, + 0, 99152.84, + 0, 99152.88, + 0, 99152.91, + 0, 99152.96, + 0, 99153, + 0, 99153.04, + 0, 99153.09, + 0, 99153.12, + 0, 99153.16, + 0, 99153.21, + 0, 99153.25, + 0, 99153.29, + 0, 99153.34, + 0, 99153.38, + 0, 99153.41, + 0, 99153.46, + 0, 99153.5, + 0, 99153.54, + 0, 99153.59, + 0, 99153.62, + 0, 99153.66, + 0, 99153.71, + 0, 99153.75, + 0, 99153.79, + 0, 99153.84, + 0, 99153.88, + 0, 99153.91, + 0, 99153.96, + 0, 99154, + 0, 99154.04, + 0, 99154.09, + 0, 99154.12, + 0, 99154.16, + 0, 99154.21, + 0, 99154.25, + 0, 99154.29, + 0, 99154.34, + 0, 99154.38, + 0, 99154.41, + 0, 99154.46, + 0, 99154.5, + 0, 99154.54, + 0, 99154.59, + 0, 99154.62, + 0, 99154.66, + 0, 99154.71, + 0, 99154.75, + 0, 99154.79, + 0, 99154.84, + 0, 99154.88, + 0, 99154.91, + 0, 99154.96, + 0, 99155, + 0, 99155.04, + 0, 99155.09, + 0, 99155.12, + 0, 99155.16, + 0, 99155.21, + 0, 99155.25, + 0, 99155.29, + 0, 99155.34, + 0, 99155.38, + 0, 99155.41, + 0, 99155.46, + 0, 99155.5, + 0, 99155.54, + 0, 99155.59, + 0, 99155.62, + 0, 99155.66, + 0, 99155.71, + 0, 99155.75, + 0, 99155.79, + 0, 99155.84, + 0, 99155.88, + 0, 99155.91, + 0, 99155.96, + 0, 99156, + 0, 99156.04, + 0, 99156.09, + 0, 99156.12, + 0, 99156.16, + 0, 99156.21, + 0, 99156.25, + 0, 99156.29, + 0, 99156.34, + 0, 99156.38, + 0, 99156.41, + 0, 99156.46, + 0, 99156.5, + 0, 99156.54, + 0, 99156.59, + 0, 99156.62, + 0, 99156.66, + 0, 99156.71, + 0, 99156.75, + 0, 99156.79, + 0, 99156.84, + 0, 99156.88, + 0, 99156.91, + 0, 99156.96, + 0, 99157, + 0, 99157.04, + 0, 99157.09, + 0, 99157.12, + 0, 99157.16, + 0, 99157.21, + 0, 99157.25, + 0, 99157.29, + 0, 99157.34, + 0, 99157.38, + 0, 99157.41, + 0, 99157.46, + 0, 99157.5, + 0, 99157.54, + 0, 99157.59, + 0, 99157.62, + 0, 99157.66, + 0, 99157.71, + 0, 99157.75, + 0, 99157.79, + 0, 99157.84, + 0, 99157.88, + 0, 99157.91, + 0, 99157.96, + 0, 99158, + 0, 99158.04, + 0, 99158.09, + 0, 99158.12, + 0, 99158.16, + 0, 99158.21, + 0, 99158.25, + 0, 99158.29, + 0, 99158.34, + 0, 99158.38, + 0, 99158.41, + 0, 99158.46, + 0, 99158.5, + 0, 99158.54, + 0, 99158.59, + 0, 99158.62, + 0, 99158.66, + 0, 99158.71, + 0, 99158.75, + 0, 99158.79, + 0, 99158.84, + 0, 99158.88, + 0, 99158.91, + 0, 99158.96, + 0, 99159, + 0, 99159.04, + 0, 99159.09, + 0, 99159.12, + 0, 99159.16, + 0, 99159.21, + 0, 99159.25, + 0, 99159.29, + 0, 99159.34, + 0, 99159.38, + 0, 99159.41, + 0, 99159.46, + 0, 99159.5, + 0, 99159.54, + 0, 99159.59, + 0, 99159.62, + 0, 99159.66, + 0, 99159.71, + 0, 99159.75, + 0, 99159.79, + 0, 99159.84, + 0, 99159.88, + 0, 99159.91, + 0, 99159.96, + 0, 99160, + 0, 99160.04, + 0, 99160.09, + 0, 99160.12, + 0, 99160.16, + 0, 99160.21, + 0, 99160.25, + 0, 99160.29, + 0, 99160.34, + 0, 99160.38, + 0, 99160.41, + 0, 99160.46, + 0, 99160.5, + 0, 99160.54, + 0, 99160.59, + 0, 99160.62, + 0, 99160.66, + 0, 99160.71, + 0, 99160.75, + 0, 99160.79, + 0, 99160.84, + 0, 99160.88, + 0, 99160.91, + 0, 99160.96, + 0, 99161, + 0, 99161.04, + 0, 99161.09, + 0, 99161.12, + 0, 99161.16, + 0, 99161.21, + 0, 99161.25, + 0, 99161.29, + 0, 99161.34, + 0, 99161.38, + 0, 99161.41, + 0, 99161.46, + 0, 99161.5, + 0, 99161.54, + 0, 99161.59, + 0, 99161.62, + 0, 99161.66, + 0, 99161.71, + 0, 99161.75, + 0, 99161.79, + 0, 99161.84, + 0, 99161.88, + 0, 99161.91, + 0, 99161.96, + 0, 99162, + 0, 99162.04, + 0, 99162.09, + 0, 99162.12, + 0, 99162.16, + 0, 99162.21, + 0, 99162.25, + 0, 99162.29, + 0, 99162.34, + 0, 99162.38, + 0, 99162.41, + 0, 99162.46, + 0, 99162.5, + 0, 99162.54, + 0, 99162.59, + 0, 99162.62, + 0, 99162.66, + 0, 99162.71, + 0, 99162.75, + 0, 99162.79, + 0, 99162.84, + 0, 99162.88, + 0, 99162.91, + 0, 99162.96, + 0, 99163, + 0, 99163.04, + 0, 99163.09, + 0, 99163.12, + 0, 99163.16, + 0, 99163.21, + 0, 99163.25, + 0, 99163.29, + 0, 99163.34, + 0, 99163.38, + 0, 99163.41, + 0, 99163.46, + 0, 99163.5, + 0, 99163.54, + 0, 99163.59, + 0, 99163.62, + 0, 99163.66, + 0, 99163.71, + 0, 99163.75, + 0, 99163.79, + 0, 99163.84, + 0, 99163.88, + 0, 99163.91, + 0, 99163.96, + 0, 99164, + 0, 99164.04, + 0, 99164.09, + 0, 99164.12, + 0, 99164.16, + 0, 99164.21, + 0, 99164.25, + 0, 99164.29, + 0, 99164.34, + 0, 99164.38, + 0, 99164.41, + 0, 99164.46, + 0, 99164.5, + 0, 99164.54, + 0, 99164.59, + 0, 99164.62, + 0, 99164.66, + 0, 99164.71, + 0, 99164.75, + 0, 99164.79, + 0, 99164.84, + 0, 99164.88, + 0, 99164.91, + 0, 99164.96, + 0, 99165, + 0, 99165.04, + 0, 99165.09, + 0, 99165.12, + 0, 99165.16, + 0, 99165.21, + 0, 99165.25, + 0, 99165.29, + 0, 99165.34, + 0, 99165.38, + 0, 99165.41, + 0, 99165.46, + 0, 99165.5, + 0, 99165.54, + 0, 99165.59, + 0, 99165.62, + 0, 99165.66, + 0, 99165.71, + 0, 99165.75, + 0, 99165.79, + 0, 99165.84, + 0, 99165.88, + 0, 99165.91, + 0, 99165.96, + 0, 99166, + 0, 99166.04, + 0, 99166.09, + 0, 99166.12, + 0, 99166.16, + 0, 99166.21, + 0, 99166.25, + 0, 99166.29, + 0, 99166.34, + 0, 99166.38, + 0, 99166.41, + 0, 99166.46, + 0, 99166.5, + 0, 99166.54, + 0, 99166.59, + 0, 99166.62, + 0, 99166.66, + 0, 99166.71, + 0, 99166.75, + 0, 99166.79, + 0, 99166.84, + 0, 99166.88, + 0, 99166.91, + 0, 99166.96, + 0, 99167, + 0, 99167.04, + 0, 99167.09, + 0, 99167.12, + 0, 99167.16, + 0, 99167.21, + 0, 99167.25, + 0, 99167.29, + 0, 99167.34, + 0, 99167.38, + 0, 99167.41, + 0, 99167.46, + 0, 99167.5, + 0, 99167.54, + 0, 99167.59, + 0, 99167.62, + 0, 99167.66, + 0, 99167.71, + 0, 99167.75, + 0, 99167.79, + 0, 99167.84, + 0, 99167.88, + 0, 99167.91, + 0, 99167.96, + 0, 99168, + 0, 99168.04, + 0, 99168.09, + 0, 99168.12, + 0, 99168.16, + 0, 99168.21, + 0, 99168.25, + 0, 99168.29, + 0, 99168.34, + 0, 99168.38, + 0, 99168.41, + 0, 99168.46, + 0, 99168.5, + 0, 99168.54, + 0, 99168.59, + 0, 99168.62, + 0, 99168.66, + 0, 99168.71, + 0, 99168.75, + 0, 99168.79, + 0, 99168.84, + 0, 99168.88, + 0, 99168.91, + 0, 99168.96, + 0, 99169, + 0, 99169.04, + 0, 99169.09, + 0, 99169.12, + 0, 99169.16, + 0, 99169.21, + 0, 99169.25, + 0, 99169.29, + 0, 99169.34, + 0, 99169.38, + 0, 99169.41, + 0, 99169.46, + 0, 99169.5, + 0, 99169.54, + 0, 99169.59, + 0, 99169.62, + 0, 99169.66, + 0, 99169.71, + 0, 99169.75, + 0, 99169.79, + 0, 99169.84, + 0, 99169.88, + 0, 99169.91, + 0, 99169.96, + 0, 99170, + 0, 99170.04, + 0, 99170.09, + 0, 99170.12, + 0, 99170.16, + 0, 99170.21, + 0, 99170.25, + 0, 99170.29, + 0, 99170.34, + 0, 99170.38, + 0, 99170.41, + 0, 99170.46, + 0, 99170.5, + 0, 99170.54, + 0, 99170.59, + 0, 99170.62, + 0, 99170.66, + 0, 99170.71, + 0, 99170.75, + 0, 99170.79, + 0, 99170.84, + 0, 99170.88, + 0, 99170.91, + 0, 99170.96, + 0, 99171, + 0, 99171.04, + 0, 99171.09, + 0, 99171.12, + 0, 99171.16, + 0, 99171.21, + 0, 99171.25, + 0, 99171.29, + 0, 99171.34, + 0, 99171.38, + 0, 99171.41, + 0, 99171.46, + 0, 99171.5, + 0, 99171.54, + 0, 99171.59, + 0, 99171.62, + 0, 99171.66, + 0, 99171.71, + 0, 99171.75, + 0, 99171.79, + 0, 99171.84, + 0, 99171.88, + 0, 99171.91, + 0, 99171.96, + 0, 99172, + 0, 99172.04, + 0, 99172.09, + 0, 99172.12, + 0, 99172.16, + 0, 99172.21, + 0, 99172.25, + 0, 99172.29, + 0, 99172.34, + 0, 99172.38, + 0, 99172.41, + 0, 99172.46, + 0, 99172.5, + 0, 99172.54, + 0, 99172.59, + 0, 99172.62, + 0, 99172.66, + 0, 99172.71, + 0, 99172.75, + 0, 99172.79, + 0, 99172.84, + 0, 99172.88, + 0, 99172.91, + 0, 99172.96, + 0, 99173, + 0, 99173.04, + 0, 99173.09, + 0, 99173.12, + 0, 99173.16, + 0, 99173.21, + 0, 99173.25, + 0, 99173.29, + 0, 99173.34, + 0, 99173.38, + 0, 99173.41, + 0, 99173.46, + 0, 99173.5, + 0, 99173.54, + 0, 99173.59, + 0, 99173.62, + 0, 99173.66, + 0, 99173.71, + 0, 99173.75, + 0, 99173.79, + 0, 99173.84, + 0, 99173.88, + 0, 99173.91, + 0, 99173.96, + 0, 99174, + 0, 99174.04, + 0, 99174.09, + 0, 99174.12, + 0, 99174.16, + 0, 99174.21, + 0, 99174.25, + 0, 99174.29, + 0, 99174.34, + 0, 99174.38, + 0, 99174.41, + 0, 99174.46, + 0, 99174.5, + 0, 99174.54, + 0, 99174.59, + 0, 99174.62, + 0, 99174.66, + 0, 99174.71, + 0, 99174.75, + 0, 99174.79, + 0, 99174.84, + 0, 99174.88, + 0, 99174.91, + 0, 99174.96, + 0, 99175, + 0, 99175.04, + 0, 99175.09, + 0, 99175.12, + 0, 99175.16, + 0, 99175.21, + 0, 99175.25, + 0, 99175.29, + 0, 99175.34, + 0, 99175.38, + 0, 99175.41, + 0, 99175.46, + 0, 99175.5, + 0, 99175.54, + 0, 99175.59, + 0, 99175.62, + 0, 99175.66, + 0, 99175.71, + 0, 99175.75, + 0, 99175.79, + 0, 99175.84, + 0, 99175.88, + 0, 99175.91, + 0, 99175.96, + 0, 99176, + 0, 99176.04, + 0, 99176.09, + 0, 99176.12, + 0, 99176.16, + 0, 99176.21, + 0, 99176.25, + 0, 99176.29, + 0, 99176.34, + 0, 99176.38, + 0, 99176.41, + 0, 99176.46, + 0, 99176.5, + 0, 99176.54, + 0, 99176.59, + 0, 99176.62, + 0, 99176.66, + 0, 99176.71, + 0, 99176.75, + 0, 99176.79, + 0, 99176.84, + 0, 99176.88, + 0, 99176.91, + 0, 99176.96, + 0, 99177, + 0, 99177.04, + 0, 99177.09, + 0, 99177.12, + 0, 99177.16, + 0, 99177.21, + 0, 99177.25, + 0, 99177.29, + 0, 99177.34, + 0, 99177.38, + 0, 99177.41, + 0, 99177.46, + 0, 99177.5, + 0, 99177.54, + 0, 99177.59, + 0, 99177.62, + 0, 99177.66, + 0, 99177.71, + 0, 99177.75, + 0, 99177.79, + 0, 99177.84, + 0, 99177.88, + 0, 99177.91, + 0, 99177.96, + 0, 99178, + 0, 99178.04, + 0, 99178.09, + 0, 99178.12, + 0, 99178.16, + 0, 99178.21, + 0, 99178.25, + 0, 99178.29, + 0, 99178.34, + 0, 99178.38, + 0, 99178.41, + 0, 99178.46, + 0, 99178.5, + 0, 99178.54, + 0, 99178.59, + 0, 99178.62, + 0, 99178.66, + 0, 99178.71, + 0, 99178.75, + 0, 99178.79, + 0, 99178.84, + 0, 99178.88, + 0, 99178.91, + 0, 99178.96, + 0, 99179, + 0, 99179.04, + 0, 99179.09, + 0, 99179.12, + 0, 99179.16, + 0, 99179.21, + 0, 99179.25, + 0, 99179.29, + 0, 99179.34, + 0, 99179.38, + 0, 99179.41, + 0, 99179.46, + 0, 99179.5, + 0, 99179.54, + 0, 99179.59, + 0, 99179.62, + 0, 99179.66, + 0, 99179.71, + 0, 99179.75, + 0, 99179.79, + 0, 99179.84, + 0, 99179.88, + 0, 99179.91, + 0, 99179.96, + 0, 99180, + 0, 99180.04, + 0, 99180.09, + 0, 99180.12, + 0, 99180.16, + 0, 99180.21, + 0, 99180.25, + 0, 99180.29, + 0, 99180.34, + 0, 99180.38, + 0, 99180.41, + 0, 99180.46, + 0, 99180.5, + 0, 99180.54, + 0, 99180.59, + 0, 99180.62, + 0, 99180.66, + 0, 99180.71, + 0, 99180.75, + 0, 99180.79, + 0, 99180.84, + 0, 99180.88, + 0, 99180.91, + 0, 99180.96, + 0, 99181, + 0, 99181.04, + 0, 99181.09, + 0, 99181.12, + 0, 99181.16, + 0, 99181.21, + 0, 99181.25, + 0, 99181.29, + 0, 99181.34, + 0, 99181.38, + 0, 99181.41, + 0, 99181.46, + 0, 99181.5, + 0, 99181.54, + 0, 99181.59, + 0, 99181.62, + 0, 99181.66, + 0, 99181.71, + 0, 99181.75, + 0, 99181.79, + 0, 99181.84, + 0, 99181.88, + 0, 99181.91, + 0, 99181.96, + 0, 99182, + 0, 99182.04, + 0, 99182.09, + 0, 99182.12, + 0, 99182.16, + 0, 99182.21, + 0, 99182.25, + 0, 99182.29, + 0, 99182.34, + 0, 99182.38, + 0, 99182.41, + 0, 99182.46, + 0, 99182.5, + 0, 99182.54, + 0, 99182.59, + 0, 99182.62, + 0, 99182.66, + 0, 99182.71, + 0, 99182.75, + 0, 99182.79, + 0, 99182.84, + 0, 99182.88, + 0, 99182.91, + 0, 99182.96, + 0, 99183, + 0, 99183.04, + 0, 99183.09, + 0, 99183.12, + 0, 99183.16, + 0, 99183.21, + 0, 99183.25, + 0, 99183.29, + 0, 99183.34, + 0, 99183.38, + 0, 99183.41, + 0, 99183.46, + 0, 99183.5, + 0, 99183.54, + 0, 99183.59, + 0, 99183.62, + 0, 99183.66, + 0, 99183.71, + 0, 99183.75, + 0, 99183.79, + 0, 99183.84, + 0, 99183.88, + 0, 99183.91, + 0, 99183.96, + 0, 99184, + 0, 99184.04, + 0, 99184.09, + 0, 99184.12, + 0, 99184.16, + 0, 99184.21, + 0, 99184.25, + 0, 99184.29, + 0, 99184.34, + 0, 99184.38, + 0, 99184.41, + 0, 99184.46, + 0, 99184.5, + 0, 99184.54, + 0, 99184.59, + 0, 99184.62, + 0, 99184.66, + 0, 99184.71, + 0, 99184.75, + 0, 99184.79, + 0, 99184.84, + 0, 99184.88, + 0, 99184.91, + 0, 99184.96, + 0, 99185, + 0, 99185.04, + 0, 99185.09, + 0, 99185.12, + 0, 99185.16, + 0, 99185.21, + 0, 99185.25, + 0, 99185.29, + 0, 99185.34, + 0, 99185.38, + 0, 99185.41, + 0, 99185.46, + 0, 99185.5, + 0, 99185.54, + 0, 99185.59, + 0, 99185.62, + 0, 99185.66, + 0, 99185.71, + 0, 99185.75, + 0, 99185.79, + 0, 99185.84, + 0, 99185.88, + 0, 99185.91, + 0, 99185.96, + 0, 99186, + 0, 99186.04, + 0, 99186.09, + 0, 99186.12, + 0, 99186.16, + 0, 99186.21, + 0, 99186.25, + 0, 99186.29, + 0, 99186.34, + 0, 99186.38, + 0, 99186.41, + 0, 99186.46, + 0, 99186.5, + 0, 99186.54, + 0, 99186.59, + 0, 99186.62, + 0, 99186.66, + 0, 99186.71, + 0, 99186.75, + 0, 99186.79, + 0, 99186.84, + 0, 99186.88, + 0, 99186.91, + 0, 99186.96, + 0, 99187, + 0, 99187.04, + 0, 99187.09, + 0, 99187.12, + 0, 99187.16, + 0, 99187.21, + 0, 99187.25, + 0, 99187.29, + 0, 99187.34, + 0, 99187.38, + 0, 99187.41, + 0, 99187.46, + 0, 99187.5, + 0, 99187.54, + 0, 99187.59, + 0, 99187.62, + 0, 99187.66, + 0, 99187.71, + 0, 99187.75, + 0, 99187.79, + 0, 99187.84, + 0, 99187.88, + 0, 99187.91, + 0, 99187.96, + 0, 99188, + 0, 99188.04, + 0, 99188.09, + 0, 99188.12, + 0, 99188.16, + 0, 99188.21, + 0, 99188.25, + 0, 99188.29, + 0, 99188.34, + 0, 99188.38, + 0, 99188.41, + 0, 99188.46, + 0, 99188.5, + 0, 99188.54, + 0, 99188.59, + 0, 99188.62, + 0, 99188.66, + 0, 99188.71, + 0, 99188.75, + 0, 99188.79, + 0, 99188.84, + 0, 99188.88, + 0, 99188.91, + 0, 99188.96, + 0, 99189, + 0, 99189.04, + 0, 99189.09, + 0, 99189.12, + 0, 99189.16, + 0, 99189.21, + 0, 99189.25, + 0, 99189.29, + 0, 99189.34, + 0, 99189.38, + 0, 99189.41, + 0, 99189.46, + 0, 99189.5, + 0, 99189.54, + 0, 99189.59, + 0, 99189.62, + 0, 99189.66, + 0, 99189.71, + 0, 99189.75, + 0, 99189.79, + 0, 99189.84, + 0, 99189.88, + 0, 99189.91, + 0, 99189.96, + 0, 99190, + 0, 99190.04, + 0, 99190.09, + 0, 99190.12, + 0, 99190.16, + 0, 99190.21, + 0, 99190.25, + 0, 99190.29, + 0, 99190.34, + 0, 99190.38, + 0, 99190.41, + 0, 99190.46, + 0, 99190.5, + 0, 99190.54, + 0, 99190.59, + 0, 99190.62, + 0, 99190.66, + 0, 99190.71, + 0, 99190.75, + 0, 99190.79, + 0, 99190.84, + 0, 99190.88, + 0, 99190.91, + 0, 99190.96, + 0, 99191, + 0, 99191.04, + 0, 99191.09, + 0, 99191.12, + 0, 99191.16, + 0, 99191.21, + 0, 99191.25, + 0, 99191.29, + 0, 99191.34, + 0, 99191.38, + 0, 99191.41, + 0, 99191.46, + 0, 99191.5, + 0, 99191.54, + 0, 99191.59, + 0, 99191.62, + 0, 99191.66, + 0, 99191.71, + 0, 99191.75, + 0, 99191.79, + 0, 99191.84, + 0, 99191.88, + 0, 99191.91, + 0, 99191.96, + 0, 99192, + 0, 99192.04, + 0, 99192.09, + 0, 99192.12, + 0, 99192.16, + 0, 99192.21, + 0, 99192.25, + 0, 99192.29, + 0, 99192.34, + 0, 99192.38, + 0, 99192.41, + 0, 99192.46, + 0, 99192.5, + 0, 99192.54, + 0, 99192.59, + 0, 99192.62, + 0, 99192.66, + 0, 99192.71, + 0, 99192.75, + 0, 99192.79, + 0, 99192.84, + 0, 99192.88, + 0, 99192.91, + 0, 99192.96, + 0, 99193, + 0, 99193.04, + 0, 99193.09, + 0, 99193.12, + 0, 99193.16, + 0, 99193.21, + 0, 99193.25, + 0, 99193.29, + 0, 99193.34, + 0, 99193.38, + 0, 99193.41, + 0, 99193.46, + 0, 99193.5, + 0, 99193.54, + 0, 99193.59, + 0, 99193.62, + 0, 99193.66, + 0, 99193.71, + 0, 99193.75, + 0, 99193.79, + 0, 99193.84, + 0, 99193.88, + 0, 99193.91, + 0, 99193.96, + 0, 99194, + 0, 99194.04, + 0, 99194.09, + 0, 99194.12, + 0, 99194.16, + 0, 99194.21, + 0, 99194.25, + 0, 99194.29, + 0, 99194.34, + 0, 99194.38, + 0, 99194.41, + 0, 99194.46, + 0, 99194.5, + 0, 99194.54, + 0, 99194.59, + 0, 99194.62, + 0, 99194.66, + 0, 99194.71, + 0, 99194.75, + 0, 99194.79, + 0, 99194.84, + 0, 99194.88, + 0, 99194.91, + 0, 99194.96, + 0, 99195, + 0, 99195.04, + 0, 99195.09, + 0, 99195.12, + 0, 99195.16, + 0, 99195.21, + 0, 99195.25, + 0, 99195.29, + 0, 99195.34, + 0, 99195.38, + 0, 99195.41, + 0, 99195.46, + 0, 99195.5, + 0, 99195.54, + 0, 99195.59, + 0, 99195.62, + 0, 99195.66, + 0, 99195.71, + 0, 99195.75, + 0, 99195.79, + 0, 99195.84, + 0, 99195.88, + 0, 99195.91, + 0, 99195.96, + 0, 99196, + 0, 99196.04, + 0, 99196.09, + 0, 99196.12, + 0, 99196.16, + 0, 99196.21, + 0, 99196.25, + 0, 99196.29, + 0, 99196.34, + 0, 99196.38, + 0, 99196.41, + 0, 99196.46, + 0, 99196.5, + 0, 99196.54, + 0, 99196.59, + 0, 99196.62, + 0, 99196.66, + 0, 99196.71, + 0, 99196.75, + 0, 99196.79, + 0, 99196.84, + 0, 99196.88, + 0, 99196.91, + 0, 99196.96, + 0, 99197, + 0, 99197.04, + 0, 99197.09, + 0, 99197.12, + 0, 99197.16, + 0, 99197.21, + 0, 99197.25, + 0, 99197.29, + 0, 99197.34, + 0, 99197.38, + 0, 99197.41, + 0, 99197.46, + 0, 99197.5, + 0, 99197.54, + 0, 99197.59, + 0, 99197.62, + 0, 99197.66, + 0, 99197.71, + 0, 99197.75, + 0, 99197.79, + 0, 99197.84, + 0, 99197.88, + 0, 99197.91, + 0, 99197.96, + 0, 99198, + 0, 99198.04, + 0, 99198.09, + 0, 99198.12, + 0, 99198.16, + 0, 99198.21, + 0, 99198.25, + 0, 99198.29, + 0, 99198.34, + 0, 99198.38, + 0, 99198.41, + 0, 99198.46, + 0, 99198.5, + 0, 99198.54, + 0, 99198.59, + 0, 99198.62, + 0, 99198.66, + 0, 99198.71, + 0, 99198.75, + 0, 99198.79, + 0, 99198.84, + 0, 99198.88, + 0, 99198.91, + 0, 99198.96, + 0, 99199, + 0, 99199.04, + 0, 99199.09, + 0, 99199.12, + 0, 99199.16, + 0, 99199.21, + 0, 99199.25, + 0, 99199.29, + 0, 99199.34, + 0, 99199.38, + 0, 99199.41, + 0, 99199.46, + 0, 99199.5, + 0, 99199.54, + 0, 99199.59, + 0, 99199.62, + 0, 99199.66, + 0, 99199.71, + 0, 99199.75, + 0, 99199.79, + 0, 99199.84, + 0, 99199.88, + 0, 99199.91, + 0, 99199.96, + 0, 99200, + 0, 99200.04, + 0, 99200.09, + 0, 99200.12, + 0, 99200.16, + 0, 99200.21, + 0, 99200.25, + 0, 99200.29, + 0, 99200.34, + 0, 99200.38, + 0, 99200.41, + 0, 99200.46, + 0, 99200.5, + 0, 99200.54, + 0, 99200.59, + 0, 99200.62, + 0, 99200.66, + 0, 99200.71, + 0, 99200.75, + 0, 99200.79, + 0, 99200.84, + 0, 99200.88, + 0, 99200.91, + 0, 99200.96, + 0, 99201, + 0, 99201.04, + 0, 99201.09, + 0, 99201.12, + 0, 99201.16, + 0, 99201.21, + 0, 99201.25, + 0, 99201.29, + 0, 99201.34, + 0, 99201.38, + 0, 99201.41, + 0, 99201.46, + 0, 99201.5, + 0, 99201.54, + 0, 99201.59, + 0, 99201.62, + 0, 99201.66, + 0, 99201.71, + 0, 99201.75, + 0, 99201.79, + 0, 99201.84, + 0, 99201.88, + 0, 99201.91, + 0, 99201.96, + 0, 99202, + 0, 99202.04, + 0, 99202.09, + 0, 99202.12, + 0, 99202.16, + 0, 99202.21, + 0, 99202.25, + 0, 99202.29, + 0, 99202.34, + 0, 99202.38, + 0, 99202.41, + 0, 99202.46, + 0, 99202.5, + 0, 99202.54, + 0, 99202.59, + 0, 99202.62, + 0, 99202.66, + 0, 99202.71, + 0, 99202.75, + 0, 99202.79, + 0, 99202.84, + 0, 99202.88, + 0, 99202.91, + 0, 99202.96, + 0, 99203, + 0, 99203.04, + 0, 99203.09, + 0, 99203.12, + 0, 99203.16, + 0, 99203.21, + 0, 99203.25, + 0, 99203.29, + 0, 99203.34, + 0, 99203.38, + 0, 99203.41, + 0, 99203.46, + 0, 99203.5, + 0, 99203.54, + 0, 99203.59, + 0, 99203.62, + 0, 99203.66, + 0, 99203.71, + 0, 99203.75, + 0, 99203.79, + 0, 99203.84, + 0, 99203.88, + 0, 99203.91, + 0, 99203.96, + 0, 99204, + 0, 99204.04, + 0, 99204.09, + 0, 99204.12, + 0, 99204.16, + 0, 99204.21, + 0, 99204.25, + 0, 99204.29, + 0, 99204.34, + 0, 99204.38, + 0, 99204.41, + 0, 99204.46, + 0, 99204.5, + 0, 99204.54, + 0, 99204.59, + 0, 99204.62, + 0, 99204.66, + 0, 99204.71, + 0, 99204.75, + 0, 99204.79, + 0, 99204.84, + 0, 99204.88, + 0, 99204.91, + 0, 99204.96, + 0, 99205, + 0, 99205.04, + 0, 99205.09, + 0, 99205.12, + 0, 99205.16, + 0, 99205.21, + 0, 99205.25, + 0, 99205.29, + 0, 99205.34, + 0, 99205.38, + 0, 99205.41, + 0, 99205.46, + 0, 99205.5, + 0, 99205.54, + 0, 99205.59, + 0, 99205.62, + 0, 99205.66, + 0, 99205.71, + 0, 99205.75, + 0, 99205.79, + 0, 99205.84, + 0, 99205.88, + 0, 99205.91, + 0, 99205.96, + 0, 99206, + 0, 99206.04, + 0, 99206.09, + 0, 99206.12, + 0, 99206.16, + 0, 99206.21, + 0, 99206.25, + 0, 99206.29, + 0, 99206.34, + 0, 99206.38, + 0, 99206.41, + 0, 99206.46, + 0, 99206.5, + 0, 99206.54, + 0, 99206.59, + 0, 99206.62, + 0, 99206.66, + 0, 99206.71, + 0, 99206.75, + 0, 99206.79, + 0, 99206.84, + 0, 99206.88, + 0, 99206.91, + 0, 99206.96, + 0, 99207, + 0, 99207.04, + 0, 99207.09, + 0, 99207.12, + 0, 99207.16, + 0, 99207.21, + 0, 99207.25, + 0, 99207.29, + 0, 99207.34, + 0, 99207.38, + 0, 99207.41, + 0, 99207.46, + 0, 99207.5, + 0, 99207.54, + 0, 99207.59, + 0, 99207.62, + 0, 99207.66, + 0, 99207.71, + 0, 99207.75, + 0, 99207.79, + 0, 99207.84, + 0, 99207.88, + 0, 99207.91, + 0, 99207.96, + 0, 99208, + 0, 99208.04, + 0, 99208.09, + 0, 99208.12, + 0, 99208.16, + 0, 99208.21, + 0, 99208.25, + 0, 99208.29, + 0, 99208.34, + 0, 99208.38, + 0, 99208.41, + 0, 99208.46, + 0, 99208.5, + 0, 99208.54, + 0, 99208.59, + 0, 99208.62, + 0, 99208.66, + 0, 99208.71, + 0, 99208.75, + 0, 99208.79, + 0, 99208.84, + 0, 99208.88, + 0, 99208.91, + 0, 99208.96, + 0, 99209, + 0, 99209.04, + 0, 99209.09, + 0, 99209.12, + 0, 99209.16, + 0, 99209.21, + 0, 99209.25, + 0, 99209.29, + 0, 99209.34, + 0, 99209.38, + 0, 99209.41, + 0, 99209.46, + 0, 99209.5, + 0, 99209.54, + 0, 99209.59, + 0, 99209.62, + 0, 99209.66, + 0, 99209.71, + 0, 99209.75, + 0, 99209.79, + 0, 99209.84, + 0, 99209.88, + 0, 99209.91, + 0, 99209.96, + 0, 99210, + 0, 99210.04, + 0, 99210.09, + 0, 99210.12, + 0, 99210.16, + 0, 99210.21, + 0, 99210.25, + 0, 99210.29, + 0, 99210.34, + 0, 99210.38, + 0, 99210.41, + 0, 99210.46, + 0, 99210.5, + 0, 99210.54, + 0, 99210.59, + 0, 99210.62, + 0, 99210.66, + 0, 99210.71, + 0, 99210.75, + 0, 99210.79, + 0, 99210.84, + 0, 99210.88, + 0, 99210.91, + 0, 99210.96, + 0, 99211, + 0, 99211.04, + 0, 99211.09, + 0, 99211.12, + 0, 99211.16, + 0, 99211.21, + 0, 99211.25, + 0, 99211.29, + 0, 99211.34, + 0, 99211.38, + 0, 99211.41, + 0, 99211.46, + 0, 99211.5, + 0, 99211.54, + 0, 99211.59, + 0, 99211.62, + 0, 99211.66, + 0, 99211.71, + 0, 99211.75, + 0, 99211.79, + 0, 99211.84, + 0, 99211.88, + 0, 99211.91, + 0, 99211.96, + 0, 99212, + 0, 99212.04, + 0, 99212.09, + 0, 99212.12, + 0, 99212.16, + 0, 99212.21, + 0, 99212.25, + 0, 99212.29, + 0, 99212.34, + 0, 99212.38, + 0, 99212.41, + 0, 99212.46, + 0, 99212.5, + 0, 99212.54, + 0, 99212.59, + 0, 99212.62, + 0, 99212.66, + 0, 99212.71, + 0, 99212.75, + 0, 99212.79, + 0, 99212.84, + 0, 99212.88, + 0, 99212.91, + 0, 99212.96, + 0, 99213, + 0, 99213.04, + 0, 99213.09, + 0, 99213.12, + 0, 99213.16, + 0, 99213.21, + 0, 99213.25, + 0, 99213.29, + 0, 99213.34, + 0, 99213.38, + 0, 99213.41, + 0, 99213.46, + 0, 99213.5, + 0, 99213.54, + 0, 99213.59, + 0, 99213.62, + 0, 99213.66, + 0, 99213.71, + 0, 99213.75, + 0, 99213.79, + 0, 99213.84, + 0, 99213.88, + 0, 99213.91, + 0, 99213.96, + 0, 99214, + 0, 99214.04, + 0, 99214.09, + 0, 99214.12, + 0, 99214.16, + 0, 99214.21, + 0, 99214.25, + 0, 99214.29, + 0, 99214.34, + 0, 99214.38, + 0, 99214.41, + 0, 99214.46, + 0, 99214.5, + 0, 99214.54, + 0, 99214.59, + 0, 99214.62, + 0, 99214.66, + 0, 99214.71, + 0, 99214.75, + 0, 99214.79, + 0, 99214.84, + 0, 99214.88, + 0, 99214.91, + 0, 99214.96, + 0, 99215, + 0, 99215.04, + 0, 99215.09, + 0, 99215.12, + 0, 99215.16, + 0, 99215.21, + 0, 99215.25, + 0, 99215.29, + 0, 99215.34, + 0, 99215.38, + 0, 99215.41, + 0, 99215.46, + 0, 99215.5, + 0, 99215.54, + 0, 99215.59, + 0, 99215.62, + 0, 99215.66, + 0, 99215.71, + 0, 99215.75, + 0, 99215.79, + 0, 99215.84, + 0, 99215.88, + 0, 99215.91, + 0, 99215.96, + 0, 99216, + 0, 99216.04, + 0, 99216.09, + 0, 99216.12, + 0, 99216.16, + 0, 99216.21, + 0, 99216.25, + 0, 99216.29, + 0, 99216.34, + 0, 99216.38, + 0, 99216.41, + 0, 99216.46, + 0, 99216.5, + 0, 99216.54, + 0, 99216.59, + 0, 99216.62, + 0, 99216.66, + 0, 99216.71, + 0, 99216.75, + 0, 99216.79, + 0, 99216.84, + 0, 99216.88, + 0, 99216.91, + 0, 99216.96, + 0, 99217, + 0, 99217.04, + 0, 99217.09, + 0, 99217.12, + 0, 99217.16, + 0, 99217.21, + 0, 99217.25, + 0, 99217.29, + 0, 99217.34, + 0, 99217.38, + 0, 99217.41, + 0, 99217.46, + 0, 99217.5, + 0, 99217.54, + 0, 99217.59, + 0, 99217.62, + 0, 99217.66, + 0, 99217.71, + 0, 99217.75, + 0, 99217.79, + 0, 99217.84, + 0, 99217.88, + 0, 99217.91, + 0, 99217.96, + 0, 99218, + 0, 99218.04, + 0, 99218.09, + 0, 99218.12, + 0, 99218.16, + 0, 99218.21, + 0, 99218.25, + 0, 99218.29, + 0, 99218.34, + 0, 99218.38, + 0, 99218.41, + 0, 99218.46, + 0, 99218.5, + 0, 99218.54, + 0, 99218.59, + 0, 99218.62, + 0, 99218.66, + 0, 99218.71, + 0, 99218.75, + 0, 99218.79, + 0, 99218.84, + 0, 99218.88, + 0, 99218.91, + 0, 99218.96, + 0, 99219, + 0, 99219.04, + 0, 99219.09, + 0, 99219.12, + 0, 99219.16, + 0, 99219.21, + 0, 99219.25, + 0, 99219.29, + 0, 99219.34, + 0, 99219.38, + 0, 99219.41, + 0, 99219.46, + 0, 99219.5, + 0, 99219.54, + 0, 99219.59, + 0, 99219.62, + 0, 99219.66, + 0, 99219.71, + 0, 99219.75, + 0, 99219.79, + 0, 99219.84, + 0, 99219.88, + 0, 99219.91, + 0, 99219.96, + 0, 99220, + 0, 99220.04, + 0, 99220.09, + 0, 99220.12, + 0, 99220.16, + 0, 99220.21, + 0, 99220.25, + 0, 99220.29, + 0, 99220.34, + 0, 99220.38, + 0, 99220.41, + 0, 99220.46, + 0, 99220.5, + 0, 99220.54, + 0, 99220.59, + 0, 99220.62, + 0, 99220.66, + 0, 99220.71, + 0, 99220.75, + 0, 99220.79, + 0, 99220.84, + 0, 99220.88, + 0, 99220.91, + 0, 99220.96, + 0, 99221, + 0, 99221.04, + 0, 99221.09, + 0, 99221.12, + 0, 99221.16, + 0, 99221.21, + 0, 99221.25, + 0, 99221.29, + 0, 99221.34, + 0, 99221.38, + 0, 99221.41, + 0, 99221.46, + 0, 99221.5, + 0, 99221.54, + 0, 99221.59, + 0, 99221.62, + 0, 99221.66, + 0, 99221.71, + 0, 99221.75, + 0, 99221.79, + 0, 99221.84, + 0, 99221.88, + 0, 99221.91, + 0, 99221.96, + 0, 99222, + 0, 99222.04, + 0, 99222.09, + 0, 99222.12, + 0, 99222.16, + 0, 99222.21, + 0, 99222.25, + 0, 99222.29, + 0, 99222.34, + 0, 99222.38, + 0, 99222.41, + 0, 99222.46, + 0, 99222.5, + 0, 99222.54, + 0, 99222.59, + 0, 99222.62, + 0, 99222.66, + 0, 99222.71, + 0, 99222.75, + 0, 99222.79, + 0, 99222.84, + 0, 99222.88, + 0, 99222.91, + 0, 99222.96, + 0, 99223, + 0, 99223.04, + 0, 99223.09, + 0, 99223.12, + 0, 99223.16, + 0, 99223.21, + 0, 99223.25, + 0, 99223.29, + 0, 99223.34, + 0, 99223.38, + 0, 99223.41, + 0, 99223.46, + 0, 99223.5, + 0, 99223.54, + 0, 99223.59, + 0, 99223.62, + 0, 99223.66, + 0, 99223.71, + 0, 99223.75, + 0, 99223.79, + 0, 99223.84, + 0, 99223.88, + 0, 99223.91, + 0, 99223.96, + 0, 99224, + 0, 99224.04, + 0, 99224.09, + 0, 99224.12, + 0, 99224.16, + 0, 99224.21, + 0, 99224.25, + 0, 99224.29, + 0, 99224.34, + 0, 99224.38, + 0, 99224.41, + 0, 99224.46, + 0, 99224.5, + 0, 99224.54, + 0, 99224.59, + 0, 99224.62, + 0, 99224.66, + 0, 99224.71, + 0, 99224.75, + 0, 99224.79, + 0, 99224.84, + 0, 99224.88, + 0, 99224.91, + 0, 99224.96, + 0, 99225, + 0, 99225.04, + 0, 99225.09, + 0, 99225.12, + 0, 99225.16, + 0, 99225.21, + 0, 99225.25, + 0, 99225.29, + 0, 99225.34, + 0, 99225.38, + 0, 99225.41, + 0, 99225.46, + 0, 99225.5, + 0, 99225.54, + 0, 99225.59, + 0, 99225.62, + 0, 99225.66, + 0, 99225.71, + 0, 99225.75, + 0, 99225.79, + 0, 99225.84, + 0, 99225.88, + 0, 99225.91, + 0, 99225.96, + 0, 99226, + 0, 99226.04, + 0, 99226.09, + 0, 99226.12, + 0, 99226.16, + 0, 99226.21, + 0, 99226.25, + 0, 99226.29, + 0, 99226.34, + 0, 99226.38, + 0, 99226.41, + 0, 99226.46, + 0, 99226.5, + 0, 99226.54, + 0, 99226.59, + 0, 99226.62, + 0, 99226.66, + 0, 99226.71, + 0, 99226.75, + 0, 99226.79, + 0, 99226.84, + 0, 99226.88, + 0, 99226.91, + 0, 99226.96, + 0, 99227, + 0, 99227.04, + 0, 99227.09, + 0, 99227.12, + 0, 99227.16, + 0, 99227.21, + 0, 99227.25, + 0, 99227.29, + 0, 99227.34, + 0, 99227.38, + 0, 99227.41, + 0, 99227.46, + 0, 99227.5, + 0, 99227.54, + 0, 99227.59, + 0, 99227.62, + 0, 99227.66, + 0, 99227.71, + 0, 99227.75, + 0, 99227.79, + 0, 99227.84, + 0, 99227.88, + 0, 99227.91, + 0, 99227.96, + 0, 99228, + 0, 99228.04, + 0, 99228.09, + 0, 99228.12, + 0, 99228.16, + 0, 99228.21, + 0, 99228.25, + 0, 99228.29, + 0, 99228.34, + 0, 99228.38, + 0, 99228.41, + 0, 99228.46, + 0, 99228.5, + 0, 99228.54, + 0, 99228.59, + 0, 99228.62, + 0, 99228.66, + 0, 99228.71, + 0, 99228.75, + 0, 99228.79, + 0, 99228.84, + 0, 99228.88, + 0, 99228.91, + 0, 99228.96, + 0, 99229, + 0, 99229.04, + 0, 99229.09, + 0, 99229.12, + 0, 99229.16, + 0, 99229.21, + 0, 99229.25, + 0, 99229.29, + 0, 99229.34, + 0, 99229.38, + 0, 99229.41, + 0, 99229.46, + 0, 99229.5, + 0, 99229.54, + 0, 99229.59, + 0, 99229.62, + 0, 99229.66, + 0, 99229.71, + 0, 99229.75, + 0, 99229.79, + 0, 99229.84, + 0, 99229.88, + 0, 99229.91, + 0, 99229.96, + 0, 99230, + 0, 99230.04, + 0, 99230.09, + 0, 99230.12, + 0, 99230.16, + 0, 99230.21, + 0, 99230.25, + 0, 99230.29, + 0, 99230.34, + 0, 99230.38, + 0, 99230.41, + 0, 99230.46, + 0, 99230.5, + 0, 99230.54, + 0, 99230.59, + 0, 99230.62, + 0, 99230.66, + 0, 99230.71, + 0, 99230.75, + 0, 99230.79, + 0, 99230.84, + 0, 99230.88, + 0, 99230.91, + 0, 99230.96, + 0, 99231, + 0, 99231.04, + 0, 99231.09, + 0, 99231.12, + 0, 99231.16, + 0, 99231.21, + 0, 99231.25, + 0, 99231.29, + 0, 99231.34, + 0, 99231.38, + 0, 99231.41, + 0, 99231.46, + 0, 99231.5, + 0, 99231.54, + 0, 99231.59, + 0, 99231.62, + 0, 99231.66, + 0, 99231.71, + 0, 99231.75, + 0, 99231.79, + 0, 99231.84, + 0, 99231.88, + 0, 99231.91, + 0, 99231.96, + 0, 99232, + 0, 99232.04, + 0, 99232.09, + 0, 99232.12, + 0, 99232.16, + 0, 99232.21, + 0, 99232.25, + 0, 99232.29, + 0, 99232.34, + 0, 99232.38, + 0, 99232.41, + 0, 99232.46, + 0, 99232.5, + 0, 99232.54, + 0, 99232.59, + 0, 99232.62, + 0, 99232.66, + 0, 99232.71, + 0, 99232.75, + 0, 99232.79, + 0, 99232.84, + 0, 99232.88, + 0, 99232.91, + 0, 99232.96, + 0, 99233, + 0, 99233.04, + 0, 99233.09, + 0, 99233.12, + 0, 99233.16, + 0, 99233.21, + 0, 99233.25, + 0, 99233.29, + 0, 99233.34, + 0, 99233.38, + 0, 99233.41, + 0, 99233.46, + 0, 99233.5, + 0, 99233.54, + 0, 99233.59, + 0, 99233.62, + 0, 99233.66, + 0, 99233.71, + 0, 99233.75, + 0, 99233.79, + 0, 99233.84, + 0, 99233.88, + 0, 99233.91, + 0, 99233.96, + 0, 99234, + 0, 99234.04, + 0, 99234.09, + 0, 99234.12, + 0, 99234.16, + 0, 99234.21, + 0, 99234.25, + 0, 99234.29, + 0, 99234.34, + 0, 99234.38, + 0, 99234.41, + 0, 99234.46, + 0, 99234.5, + 0, 99234.54, + 0, 99234.59, + 0, 99234.62, + 0, 99234.66, + 0, 99234.71, + 0, 99234.75, + 0, 99234.79, + 0, 99234.84, + 0, 99234.88, + 0, 99234.91, + 0, 99234.96, + 0, 99235, + 0, 99235.04, + 0, 99235.09, + 0, 99235.12, + 0, 99235.16, + 0, 99235.21, + 0, 99235.25, + 0, 99235.29, + 0, 99235.34, + 0, 99235.38, + 0, 99235.41, + 0, 99235.46, + 0, 99235.5, + 0, 99235.54, + 0, 99235.59, + 0, 99235.62, + 0, 99235.66, + 0, 99235.71, + 0, 99235.75, + 0, 99235.79, + 0, 99235.84, + 0, 99235.88, + 0, 99235.91, + 0, 99235.96, + 0, 99236, + 0, 99236.04, + 0, 99236.09, + 0, 99236.12, + 0, 99236.16, + 0, 99236.21, + 0, 99236.25, + 0, 99236.29, + 0, 99236.34, + 0, 99236.38, + 0, 99236.41, + 0, 99236.46, + 0, 99236.5, + 0, 99236.54, + 0, 99236.59, + 0, 99236.62, + 0, 99236.66, + 0, 99236.71, + 0, 99236.75, + 0, 99236.79, + 0, 99236.84, + 0, 99236.88, + 0, 99236.91, + 0, 99236.96, + 0, 99237, + 0, 99237.04, + 0, 99237.09, + 0, 99237.12, + 0, 99237.16, + 0, 99237.21, + 0, 99237.25, + 0, 99237.29, + 0, 99237.34, + 0, 99237.38, + 0, 99237.41, + 0, 99237.46, + 0, 99237.5, + 0, 99237.54, + 0, 99237.59, + 0, 99237.62, + 0, 99237.66, + 0, 99237.71, + 0, 99237.75, + 0, 99237.79, + 0, 99237.84, + 0, 99237.88, + 0, 99237.91, + 0, 99237.96, + 0, 99238, + 0, 99238.04, + 0, 99238.09, + 0, 99238.12, + 0, 99238.16, + 0, 99238.21, + 0, 99238.25, + 0, 99238.29, + 0, 99238.34, + 0, 99238.38, + 0, 99238.41, + 0, 99238.46, + 0, 99238.5, + 0, 99238.54, + 0, 99238.59, + 0, 99238.62, + 0, 99238.66, + 0, 99238.71, + 0, 99238.75, + 0, 99238.79, + 0, 99238.84, + 0, 99238.88, + 0, 99238.91, + 0, 99238.96, + 0, 99239, + 0, 99239.04, + 0, 99239.09, + 0, 99239.12, + 0, 99239.16, + 0, 99239.21, + 0, 99239.25, + 0, 99239.29, + 0, 99239.34, + 0, 99239.38, + 0, 99239.41, + 0, 99239.46, + 0, 99239.5, + 0, 99239.54, + 0, 99239.59, + 0, 99239.62, + 0, 99239.66, + 0, 99239.71, + 0, 99239.75, + 0, 99239.79, + 0, 99239.84, + 0, 99239.88, + 0, 99239.91, + 0, 99239.96, + 0, 99240, + 0, 99240.04, + 0, 99240.09, + 0, 99240.12, + 0, 99240.16, + 0, 99240.21, + 0, 99240.25, + 0, 99240.29, + 0, 99240.34, + 0, 99240.38, + 0, 99240.41, + 0, 99240.46, + 0, 99240.5, + 0, 99240.54, + 0, 99240.59, + 0, 99240.62, + 0, 99240.66, + 0, 99240.71, + 0, 99240.75, + 0, 99240.79, + 0, 99240.84, + 0, 99240.88, + 0, 99240.91, + 0, 99240.96, + 0, 99241, + 0, 99241.04, + 0, 99241.09, + 0, 99241.12, + 0, 99241.16, + 0, 99241.21, + 0, 99241.25, + 0, 99241.29, + 0, 99241.34, + 0, 99241.38, + 0, 99241.41, + 0, 99241.46, + 0, 99241.5, + 0, 99241.54, + 0, 99241.59, + 0, 99241.62, + 0, 99241.66, + 0, 99241.71, + 0, 99241.75, + 0, 99241.79, + 0, 99241.84, + 0, 99241.88, + 0, 99241.91, + 0, 99241.96, + 0, 99242, + 0, 99242.04, + 0, 99242.09, + 0, 99242.12, + 0, 99242.16, + 0, 99242.21, + 0, 99242.25, + 0, 99242.29, + 0, 99242.34, + 0, 99242.38, + 0, 99242.41, + 0, 99242.46, + 0, 99242.5, + 0, 99242.54, + 0, 99242.59, + 0, 99242.62, + 0, 99242.66, + 0, 99242.71, + 0, 99242.75, + 0, 99242.79, + 0, 99242.84, + 0, 99242.88, + 0, 99242.91, + 0, 99242.96, + 0, 99243, + 0, 99243.04, + 0, 99243.09, + 0, 99243.12, + 0, 99243.16, + 0, 99243.21, + 0, 99243.25, + 0, 99243.29, + 0, 99243.34, + 0, 99243.38, + 0, 99243.41, + 0, 99243.46, + 0, 99243.5, + 0, 99243.54, + 0, 99243.59, + 0, 99243.62, + 0, 99243.66, + 0, 99243.71, + 0, 99243.75, + 0, 99243.79, + 0, 99243.84, + 0, 99243.88, + 0, 99243.91, + 0, 99243.96, + 0, 99244, + 0, 99244.04, + 0, 99244.09, + 0, 99244.12, + 0, 99244.16, + 0, 99244.21, + 0, 99244.25, + 0, 99244.29, + 0, 99244.34, + 0, 99244.38, + 0, 99244.41, + 0, 99244.46, + 0, 99244.5, + 0, 99244.54, + 0, 99244.59, + 0, 99244.62, + 0, 99244.66, + 0, 99244.71, + 0, 99244.75, + 0, 99244.79, + 0, 99244.84, + 0, 99244.88, + 0, 99244.91, + 0, 99244.96, + 0, 99245, + 0, 99245.04, + 0, 99245.09, + 0, 99245.12, + 0, 99245.16, + 0, 99245.21, + 0, 99245.25, + 0, 99245.29, + 0, 99245.34, + 0, 99245.38, + 0, 99245.41, + 0, 99245.46, + 0, 99245.5, + 0, 99245.54, + 0, 99245.59, + 0, 99245.62, + 0, 99245.66, + 0, 99245.71, + 0, 99245.75, + 0, 99245.79, + 0, 99245.84, + 0, 99245.88, + 0, 99245.91, + 0, 99245.96, + 0, 99246, + 0, 99246.04, + 0, 99246.09, + 0, 99246.12, + 0, 99246.16, + 0, 99246.21, + 0, 99246.25, + 0, 99246.29, + 0, 99246.34, + 0, 99246.38, + 0, 99246.41, + 0, 99246.46, + 0, 99246.5, + 0, 99246.54, + 0, 99246.59, + 0, 99246.62, + 0, 99246.66, + 0, 99246.71, + 0, 99246.75, + 0, 99246.79, + 0, 99246.84, + 0, 99246.88, + 0, 99246.91, + 0, 99246.96, + 0, 99247, + 0, 99247.04, + 0, 99247.09, + 0, 99247.12, + 0, 99247.16, + 0, 99247.21, + 0, 99247.25, + 0, 99247.29, + 0, 99247.34, + 0, 99247.38, + 0, 99247.41, + 0, 99247.46, + 0, 99247.5, + 0, 99247.54, + 0, 99247.59, + 0, 99247.62, + 0, 99247.66, + 0, 99247.71, + 0, 99247.75, + 0, 99247.79, + 0, 99247.84, + 0, 99247.88, + 0, 99247.91, + 0, 99247.96, + 0, 99248, + 0, 99248.04, + 0, 99248.09, + 0, 99248.12, + 0, 99248.16, + 0, 99248.21, + 0, 99248.25, + 0, 99248.29, + 0, 99248.34, + 0, 99248.38, + 0, 99248.41, + 0, 99248.46, + 0, 99248.5, + 0, 99248.54, + 0, 99248.59, + 0, 99248.62, + 0, 99248.66, + 0, 99248.71, + 0, 99248.75, + 0, 99248.79, + 0, 99248.84, + 0, 99248.88, + 0, 99248.91, + 0, 99248.96, + 0, 99249, + 0, 99249.04, + 0, 99249.09, + 0, 99249.12, + 0, 99249.16, + 0, 99249.21, + 0, 99249.25, + 0, 99249.29, + 0, 99249.34, + 0, 99249.38, + 0, 99249.41, + 0, 99249.46, + 0, 99249.5, + 0, 99249.54, + 0, 99249.59, + 0, 99249.62, + 0, 99249.66, + 0, 99249.71, + 0, 99249.75, + 0, 99249.79, + 0, 99249.84, + 0, 99249.88, + 0, 99249.91, + 0, 99249.96, + 0, 99250, + 0, 99250.04, + 0, 99250.09, + 0, 99250.12, + 0, 99250.16, + 0, 99250.21, + 0, 99250.25, + 0, 99250.29, + 0, 99250.34, + 0, 99250.38, + 0, 99250.41, + 0, 99250.46, + 0, 99250.5, + 0, 99250.54, + 0, 99250.59, + 0, 99250.62, + 0, 99250.66, + 0, 99250.71, + 0, 99250.75, + 0, 99250.79, + 0, 99250.84, + 0, 99250.88, + 0, 99250.91, + 0, 99250.96, + 0, 99251, + 0, 99251.04, + 0, 99251.09, + 0, 99251.12, + 0, 99251.16, + 0, 99251.21, + 0, 99251.25, + 0, 99251.29, + 0, 99251.34, + 0, 99251.38, + 0, 99251.41, + 0, 99251.46, + 0, 99251.5, + 0, 99251.54, + 0, 99251.59, + 0, 99251.62, + 0, 99251.66, + 0, 99251.71, + 0, 99251.75, + 0, 99251.79, + 0, 99251.84, + 0, 99251.88, + 0, 99251.91, + 0, 99251.96, + 0, 99252, + 0, 99252.04, + 0, 99252.09, + 0, 99252.12, + 0, 99252.16, + 0, 99252.21, + 0, 99252.25, + 0, 99252.29, + 0, 99252.34, + 0, 99252.38, + 0, 99252.41, + 0, 99252.46, + 0, 99252.5, + 0, 99252.54, + 0, 99252.59, + 0, 99252.62, + 0, 99252.66, + 0, 99252.71, + 0, 99252.75, + 0, 99252.79, + 0, 99252.84, + 0, 99252.88, + 0, 99252.91, + 0, 99252.96, + 0, 99253, + 0, 99253.04, + 0, 99253.09, + 0, 99253.12, + 0, 99253.16, + 0, 99253.21, + 0, 99253.25, + 0, 99253.29, + 0, 99253.34, + 0, 99253.38, + 0, 99253.41, + 0, 99253.46, + 0, 99253.5, + 0, 99253.54, + 0, 99253.59, + 0, 99253.62, + 0, 99253.66, + 0, 99253.71, + 0, 99253.75, + 0, 99253.79, + 0, 99253.84, + 0, 99253.88, + 0, 99253.91, + 0, 99253.96, + 0, 99254, + 0, 99254.04, + 0, 99254.09, + 0, 99254.12, + 0, 99254.16, + 0, 99254.21, + 0, 99254.25, + 0, 99254.29, + 0, 99254.34, + 0, 99254.38, + 0, 99254.41, + 0, 99254.46, + 0, 99254.5, + 0, 99254.54, + 0, 99254.59, + 0, 99254.62, + 0, 99254.66, + 0, 99254.71, + 0, 99254.75, + 0, 99254.79, + 0, 99254.84, + 0, 99254.88, + 0, 99254.91, + 0, 99254.96, + 0, 99255, + 0, 99255.04, + 0, 99255.09, + 0, 99255.12, + 0, 99255.16, + 0, 99255.21, + 0, 99255.25, + 0, 99255.29, + 0, 99255.34, + 0, 99255.38, + 0, 99255.41, + 0, 99255.46, + 0, 99255.5, + 0, 99255.54, + 0, 99255.59, + 0, 99255.62, + 0, 99255.66, + 0, 99255.71, + 0, 99255.75, + 0, 99255.79, + 0, 99255.84, + 0, 99255.88, + 0, 99255.91, + 0, 99255.96, + 0, 99256, + 0, 99256.04, + 0, 99256.09, + 0, 99256.12, + 0, 99256.16, + 0, 99256.21, + 0, 99256.25, + 0, 99256.29, + 0, 99256.34, + 0, 99256.38, + 0, 99256.41, + 0, 99256.46, + 0, 99256.5, + 0, 99256.54, + 0, 99256.59, + 0, 99256.62, + 0, 99256.66, + 0, 99256.71, + 0, 99256.75, + 0, 99256.79, + 0, 99256.84, + 0, 99256.88, + 0, 99256.91, + 0, 99256.96, + 0, 99257, + 0, 99257.04, + 0, 99257.09, + 0, 99257.12, + 0, 99257.16, + 0, 99257.21, + 0, 99257.25, + 0, 99257.29, + 0, 99257.34, + 0, 99257.38, + 0, 99257.41, + 0, 99257.46, + 0, 99257.5, + 0, 99257.54, + 0, 99257.59, + 0, 99257.62, + 0, 99257.66, + 0, 99257.71, + 0, 99257.75, + 0, 99257.79, + 0, 99257.84, + 0, 99257.88, + 0, 99257.91, + 0, 99257.96, + 0, 99258, + 0, 99258.04, + 0, 99258.09, + 0, 99258.12, + 0, 99258.16, + 0, 99258.21, + 0, 99258.25, + 0, 99258.29, + 0, 99258.34, + 0, 99258.38, + 0, 99258.41, + 0, 99258.46, + 0, 99258.5, + 0, 99258.54, + 0, 99258.59, + 0, 99258.62, + 0, 99258.66, + 0, 99258.71, + 0, 99258.75, + 0, 99258.79, + 0, 99258.84, + 0, 99258.88, + 0, 99258.91, + 0, 99258.96, + 0, 99259, + 0, 99259.04, + 0, 99259.09, + 0, 99259.12, + 0, 99259.16, + 0, 99259.21, + 0, 99259.25, + 0, 99259.29, + 0, 99259.34, + 0, 99259.38, + 0, 99259.41, + 0, 99259.46, + 0, 99259.5, + 0, 99259.54, + 0, 99259.59, + 0, 99259.62, + 0, 99259.66, + 0, 99259.71, + 0, 99259.75, + 0, 99259.79, + 0, 99259.84, + 0, 99259.88, + 0, 99259.91, + 0, 99259.96, + 0, 99260, + 0, 99260.04, + 0, 99260.09, + 0, 99260.12, + 0, 99260.16, + 0, 99260.21, + 0, 99260.25, + 0, 99260.29, + 0, 99260.34, + 0, 99260.38, + 0, 99260.41, + 0, 99260.46, + 0, 99260.5, + 0, 99260.54, + 0, 99260.59, + 0, 99260.62, + 0, 99260.66, + 0, 99260.71, + 0, 99260.75, + 0, 99260.79, + 0, 99260.84, + 0, 99260.88, + 0, 99260.91, + 0, 99260.96, + 0, 99261, + 0, 99261.04, + 0, 99261.09, + 0, 99261.12, + 0, 99261.16, + 0, 99261.21, + 0, 99261.25, + 0, 99261.29, + 0, 99261.34, + 0, 99261.38, + 0, 99261.41, + 0, 99261.46, + 0, 99261.5, + 0, 99261.54, + 0, 99261.59, + 0, 99261.62, + 0, 99261.66, + 0, 99261.71, + 0, 99261.75, + 0, 99261.79, + 0, 99261.84, + 0, 99261.88, + 0, 99261.91, + 0, 99261.96, + 0, 99262, + 0, 99262.04, + 0, 99262.09, + 0, 99262.12, + 0, 99262.16, + 0, 99262.21, + 0, 99262.25, + 0, 99262.29, + 0, 99262.34, + 0, 99262.38, + 0, 99262.41, + 0, 99262.46, + 0, 99262.5, + 0, 99262.54, + 0, 99262.59, + 0, 99262.62, + 0, 99262.66, + 0, 99262.71, + 0, 99262.75, + 0, 99262.79, + 0, 99262.84, + 0, 99262.88, + 0, 99262.91, + 0, 99262.96, + 0, 99263, + 0, 99263.04, + 0, 99263.09, + 0, 99263.12, + 0, 99263.16, + 0, 99263.21, + 0, 99263.25, + 0, 99263.29, + 0, 99263.34, + 0, 99263.38, + 0, 99263.41, + 0, 99263.46, + 0, 99263.5, + 0, 99263.54, + 0, 99263.59, + 0, 99263.62, + 0, 99263.66, + 0, 99263.71, + 0, 99263.75, + 0, 99263.79, + 0, 99263.84, + 0, 99263.88, + 0, 99263.91, + 0, 99263.96, + 0, 99264, + 0, 99264.04, + 0, 99264.09, + 0, 99264.12, + 0, 99264.16, + 0, 99264.21, + 0, 99264.25, + 0, 99264.29, + 0, 99264.34, + 0, 99264.38, + 0, 99264.41, + 0, 99264.46, + 0, 99264.5, + 0, 99264.54, + 0, 99264.59, + 0, 99264.62, + 0, 99264.66, + 0, 99264.71, + 0, 99264.75, + 0, 99264.79, + 0, 99264.84, + 0, 99264.88, + 0, 99264.91, + 0, 99264.96, + 0, 99265, + 0, 99265.04, + 0, 99265.09, + 0, 99265.12, + 0, 99265.16, + 0, 99265.21, + 0, 99265.25, + 0, 99265.29, + 0, 99265.34, + 0, 99265.38, + 0, 99265.41, + 0, 99265.46, + 0, 99265.5, + 0, 99265.54, + 0, 99265.59, + 0, 99265.62, + 0, 99265.66, + 0, 99265.71, + 0, 99265.75, + 0, 99265.79, + 0, 99265.84, + 0, 99265.88, + 0, 99265.91, + 0, 99265.96, + 0, 99266, + 0, 99266.04, + 0, 99266.09, + 0, 99266.12, + 0, 99266.16, + 0, 99266.21, + 0, 99266.25, + 0, 99266.29, + 0, 99266.34, + 0, 99266.38, + 0, 99266.41, + 0, 99266.46, + 0, 99266.5, + 0, 99266.54, + 0, 99266.59, + 0, 99266.62, + 0, 99266.66, + 0, 99266.71, + 0, 99266.75, + 0, 99266.79, + 0, 99266.84, + 0, 99266.88, + 0, 99266.91, + 0, 99266.96, + 0, 99267, + 0, 99267.04, + 0, 99267.09, + 0, 99267.12, + 0, 99267.16, + 0, 99267.21, + 0, 99267.25, + 0, 99267.29, + 0, 99267.34, + 0, 99267.38, + 0, 99267.41, + 0, 99267.46, + 0, 99267.5, + 0, 99267.54, + 0, 99267.59, + 0, 99267.62, + 0, 99267.66, + 0, 99267.71, + 0, 99267.75, + 0, 99267.79, + 0, 99267.84, + 0, 99267.88, + 0, 99267.91, + 0, 99267.96, + 0, 99268, + 0, 99268.04, + 0, 99268.09, + 0, 99268.12, + 0, 99268.16, + 0, 99268.21, + 0, 99268.25, + 0, 99268.29, + 0, 99268.34, + 0, 99268.38, + 0, 99268.41, + 0, 99268.46, + 0, 99268.5, + 0, 99268.54, + 0, 99268.59, + 0, 99268.62, + 0, 99268.66, + 0, 99268.71, + 0, 99268.75, + 0, 99268.79, + 0, 99268.84, + 0, 99268.88, + 0, 99268.91, + 0, 99268.96, + 0, 99269, + 0, 99269.04, + 0, 99269.09, + 0, 99269.12, + 0, 99269.16, + 0, 99269.21, + 0, 99269.25, + 0, 99269.29, + 0, 99269.34, + 0, 99269.38, + 0, 99269.41, + 0, 99269.46, + 0, 99269.5, + 0, 99269.54, + 0, 99269.59, + 0, 99269.62, + 0, 99269.66, + 0, 99269.71, + 0, 99269.75, + 0, 99269.79, + 0, 99269.84, + 0, 99269.88, + 0, 99269.91, + 0, 99269.96, + 0, 99270, + 0, 99270.04, + 0, 99270.09, + 0, 99270.12, + 0, 99270.16, + 0, 99270.21, + 0, 99270.25, + 0, 99270.29, + 0, 99270.34, + 0, 99270.38, + 0, 99270.41, + 0, 99270.46, + 0, 99270.5, + 0, 99270.54, + 0, 99270.59, + 0, 99270.62, + 0, 99270.66, + 0, 99270.71, + 0, 99270.75, + 0, 99270.79, + 0, 99270.84, + 0, 99270.88, + 0, 99270.91, + 0, 99270.96, + 0, 99271, + 0, 99271.04, + 0, 99271.09, + 0, 99271.12, + 0, 99271.16, + 0, 99271.21, + 0, 99271.25, + 0, 99271.29, + 0, 99271.34, + 0, 99271.38, + 0, 99271.41, + 0, 99271.46, + 0, 99271.5, + 0, 99271.54, + 0, 99271.59, + 0, 99271.62, + 0, 99271.66, + 0, 99271.71, + 0, 99271.75, + 0, 99271.79, + 0, 99271.84, + 0, 99271.88, + 0, 99271.91, + 0, 99271.96, + 0, 99272, + 0, 99272.04, + 0, 99272.09, + 0, 99272.12, + 0, 99272.16, + 0, 99272.21, + 0, 99272.25, + 0, 99272.29, + 0, 99272.34, + 0, 99272.38, + 0, 99272.41, + 0, 99272.46, + 0, 99272.5, + 0, 99272.54, + 0, 99272.59, + 0, 99272.62, + 0, 99272.66, + 0, 99272.71, + 0, 99272.75, + 0, 99272.79, + 0, 99272.84, + 0, 99272.88, + 0, 99272.91, + 0, 99272.96, + 0, 99273, + 0, 99273.04, + 0, 99273.09, + 0, 99273.12, + 0, 99273.16, + 0, 99273.21, + 0, 99273.25, + 0, 99273.29, + 0, 99273.34, + 0, 99273.38, + 0, 99273.41, + 0, 99273.46, + 0, 99273.5, + 0, 99273.54, + 0, 99273.59, + 0, 99273.62, + 0, 99273.66, + 0, 99273.71, + 0, 99273.75, + 0, 99273.79, + 0, 99273.84, + 0, 99273.88, + 0, 99273.91, + 0, 99273.96, + 0, 99274, + 0, 99274.04, + 0, 99274.09, + 0, 99274.12, + 0, 99274.16, + 0, 99274.21, + 0, 99274.25, + 0, 99274.29, + 0, 99274.34, + 0, 99274.38, + 0, 99274.41, + 0, 99274.46, + 0, 99274.5, + 0, 99274.54, + 0, 99274.59, + 0, 99274.62, + 0, 99274.66, + 0, 99274.71, + 0, 99274.75, + 0, 99274.79, + 0, 99274.84, + 0, 99274.88, + 0, 99274.91, + 0, 99274.96, + 0, 99275, + 0, 99275.04, + 0, 99275.09, + 0, 99275.12, + 0, 99275.16, + 0, 99275.21, + 0, 99275.25, + 0, 99275.29, + 0, 99275.34, + 0, 99275.38, + 0, 99275.41, + 0, 99275.46, + 0, 99275.5, + 0, 99275.54, + 0, 99275.59, + 0, 99275.62, + 0, 99275.66, + 0, 99275.71, + 0, 99275.75, + 0, 99275.79, + 0, 99275.84, + 0, 99275.88, + 0, 99275.91, + 0, 99275.96, + 0, 99276, + 0, 99276.04, + 0, 99276.09, + 0, 99276.12, + 0, 99276.16, + 0, 99276.21, + 0, 99276.25, + 0, 99276.29, + 0, 99276.34, + 0, 99276.38, + 0, 99276.41, + 0, 99276.46, + 0, 99276.5, + 0, 99276.54, + 0, 99276.59, + 0, 99276.62, + 0, 99276.66, + 0, 99276.71, + 0, 99276.75, + 0, 99276.79, + 0, 99276.84, + 0, 99276.88, + 0, 99276.91, + 0, 99276.96, + 0, 99277, + 0, 99277.04, + 0, 99277.09, + 0, 99277.12, + 0, 99277.16, + 0, 99277.21, + 0, 99277.25, + 0, 99277.29, + 0, 99277.34, + 0, 99277.38, + 0, 99277.41, + 0, 99277.46, + 0, 99277.5, + 0, 99277.54, + 0, 99277.59, + 0, 99277.62, + 0, 99277.66, + 0, 99277.71, + 0, 99277.75, + 0, 99277.79, + 0, 99277.84, + 0, 99277.88, + 0, 99277.91, + 0, 99277.96, + 0, 99278, + 0, 99278.04, + 0, 99278.09, + 0, 99278.12, + 0, 99278.16, + 0, 99278.21, + 0, 99278.25, + 0, 99278.29, + 0, 99278.34, + 0, 99278.38, + 0, 99278.41, + 0, 99278.46, + 0, 99278.5, + 0, 99278.54, + 0, 99278.59, + 0, 99278.62, + 0, 99278.66, + 0, 99278.71, + 0, 99278.75, + 0, 99278.79, + 0, 99278.84, + 0, 99278.88, + 0, 99278.91, + 0, 99278.96, + 0, 99279, + 0, 99279.04, + 0, 99279.09, + 0, 99279.12, + 0, 99279.16, + 0, 99279.21, + 0, 99279.25, + 0, 99279.29, + 0, 99279.34, + 0, 99279.38, + 0, 99279.41, + 0, 99279.46, + 0, 99279.5, + 0, 99279.54, + 0, 99279.59, + 0, 99279.62, + 0, 99279.66, + 0, 99279.71, + 0, 99279.75, + 0, 99279.79, + 0, 99279.84, + 0, 99279.88, + 0, 99279.91, + 0, 99279.96, + 0, 99280, + 0, 99280.04, + 0, 99280.09, + 0, 99280.12, + 0, 99280.16, + 0, 99280.21, + 0, 99280.25, + 0, 99280.29, + 0, 99280.34, + 0, 99280.38, + 0, 99280.41, + 0, 99280.46, + 0, 99280.5, + 0, 99280.54, + 0, 99280.59, + 0, 99280.62, + 0, 99280.66, + 0, 99280.71, + 0, 99280.75, + 0, 99280.79, + 0, 99280.84, + 0, 99280.88, + 0, 99280.91, + 0, 99280.96, + 0, 99281, + 0, 99281.04, + 0, 99281.09, + 0, 99281.12, + 0, 99281.16, + 0, 99281.21, + 0, 99281.25, + 0, 99281.29, + 0, 99281.34, + 0, 99281.38, + 0, 99281.41, + 0, 99281.46, + 0, 99281.5, + 0, 99281.54, + 0, 99281.59, + 0, 99281.62, + 0, 99281.66, + 0, 99281.71, + 0, 99281.75, + 0, 99281.79, + 0, 99281.84, + 0, 99281.88, + 0, 99281.91, + 0, 99281.96, + 0, 99282, + 0, 99282.04, + 0, 99282.09, + 0, 99282.12, + 0, 99282.16, + 0, 99282.21, + 0, 99282.25, + 0, 99282.29, + 0, 99282.34, + 0, 99282.38, + 0, 99282.41, + 0, 99282.46, + 0, 99282.5, + 0, 99282.54, + 0, 99282.59, + 0, 99282.62, + 0, 99282.66, + 0, 99282.71, + 0, 99282.75, + 0, 99282.79, + 0, 99282.84, + 0, 99282.88, + 0, 99282.91, + 0, 99282.96, + 0, 99283, + 0, 99283.04, + 0, 99283.09, + 0, 99283.12, + 0, 99283.16, + 0, 99283.21, + 0, 99283.25, + 0, 99283.29, + 0, 99283.34, + 0, 99283.38, + 0, 99283.41, + 0, 99283.46, + 0, 99283.5, + 0, 99283.54, + 0, 99283.59, + 0, 99283.62, + 0, 99283.66, + 0, 99283.71, + 0, 99283.75, + 0, 99283.79, + 0, 99283.84, + 0, 99283.88, + 0, 99283.91, + 0, 99283.96, + 0, 99284, + 0, 99284.04, + 0, 99284.09, + 0, 99284.12, + 0, 99284.16, + 0, 99284.21, + 0, 99284.25, + 0, 99284.29, + 0, 99284.34, + 0, 99284.38, + 0, 99284.41, + 0, 99284.46, + 0, 99284.5, + 0, 99284.54, + 0, 99284.59, + 0, 99284.62, + 0, 99284.66, + 0, 99284.71, + 0, 99284.75, + 0, 99284.79, + 0, 99284.84, + 0, 99284.88, + 0, 99284.91, + 0, 99284.96, + 0, 99285, + 0, 99285.04, + 0, 99285.09, + 0, 99285.12, + 0, 99285.16, + 0, 99285.21, + 0, 99285.25, + 0, 99285.29, + 0, 99285.34, + 0, 99285.38, + 0, 99285.41, + 0, 99285.46, + 0, 99285.5, + 0, 99285.54, + 0, 99285.59, + 0, 99285.62, + 0, 99285.66, + 0, 99285.71, + 0, 99285.75, + 0, 99285.79, + 0, 99285.84, + 0, 99285.88, + 0, 99285.91, + 0, 99285.96, + 0, 99286, + 0, 99286.04, + 0, 99286.09, + 0, 99286.12, + 0, 99286.16, + 0, 99286.21, + 0, 99286.25, + 0, 99286.29, + 0, 99286.34, + 0, 99286.38, + 0, 99286.41, + 0, 99286.46, + 0, 99286.5, + 0, 99286.54, + 0, 99286.59, + 0, 99286.62, + 0, 99286.66, + 0, 99286.71, + 0, 99286.75, + 0, 99286.79, + 0, 99286.84, + 0, 99286.88, + 0, 99286.91, + 0, 99286.96, + 0, 99287, + 0, 99287.04, + 0, 99287.09, + 0, 99287.12, + 0, 99287.16, + 0, 99287.21, + 0, 99287.25, + 0, 99287.29, + 0, 99287.34, + 0, 99287.38, + 0, 99287.41, + 0, 99287.46, + 0, 99287.5, + 0, 99287.54, + 0, 99287.59, + 0, 99287.62, + 0, 99287.66, + 0, 99287.71, + 0, 99287.75, + 0, 99287.79, + 0, 99287.84, + 0, 99287.88, + 0, 99287.91, + 0, 99287.96, + 0, 99288, + 0, 99288.04, + 0, 99288.09, + 0, 99288.12, + 0, 99288.16, + 0, 99288.21, + 0, 99288.25, + 0, 99288.29, + 0, 99288.34, + 0, 99288.38, + 0, 99288.41, + 0, 99288.46, + 0, 99288.5, + 0, 99288.54, + 0, 99288.59, + 0, 99288.62, + 0, 99288.66, + 0, 99288.71, + 0, 99288.75, + 0, 99288.79, + 0, 99288.84, + 0, 99288.88, + 0, 99288.91, + 0, 99288.96, + 0, 99289, + 0, 99289.04, + 0, 99289.09, + 0, 99289.12, + 0, 99289.16, + 0, 99289.21, + 0, 99289.25, + 0, 99289.29, + 0, 99289.34, + 0, 99289.38, + 0, 99289.41, + 0, 99289.46, + 0, 99289.5, + 0, 99289.54, + 0, 99289.59, + 0, 99289.62, + 0, 99289.66, + 0, 99289.71, + 0, 99289.75, + 0, 99289.79, + 0, 99289.84, + 0, 99289.88, + 0, 99289.91, + 0, 99289.96, + 0, 99290, + 0, 99290.04, + 0, 99290.09, + 0, 99290.12, + 0, 99290.16, + 0, 99290.21, + 0, 99290.25, + 0, 99290.29, + 0, 99290.34, + 0, 99290.38, + 0, 99290.41, + 0, 99290.46, + 0, 99290.5, + 0, 99290.54, + 0, 99290.59, + 0, 99290.62, + 0, 99290.66, + 0, 99290.71, + 0, 99290.75, + 0, 99290.79, + 0, 99290.84, + 0, 99290.88, + 0, 99290.91, + 0, 99290.96, + 0, 99291, + 0, 99291.04, + 0, 99291.09, + 0, 99291.12, + 0, 99291.16, + 0, 99291.21, + 0, 99291.25, + 0, 99291.29, + 0, 99291.34, + 0, 99291.38, + 0, 99291.41, + 0, 99291.46, + 0, 99291.5, + 0, 99291.54, + 0, 99291.59, + 0, 99291.62, + 0, 99291.66, + 0, 99291.71, + 0, 99291.75, + 0, 99291.79, + 0, 99291.84, + 0, 99291.88, + 0, 99291.91, + 0, 99291.96, + 0, 99292, + 0, 99292.04, + 0, 99292.09, + 0, 99292.12, + 0, 99292.16, + 0, 99292.21, + 0, 99292.25, + 0, 99292.29, + 0, 99292.34, + 0, 99292.38, + 0, 99292.41, + 0, 99292.46, + 0, 99292.5, + 0, 99292.54, + 0, 99292.59, + 0, 99292.62, + 0, 99292.66, + 0, 99292.71, + 0, 99292.75, + 0, 99292.79, + 0, 99292.84, + 0, 99292.88, + 0, 99292.91, + 0, 99292.96, + 0, 99293, + 0, 99293.04, + 0, 99293.09, + 0, 99293.12, + 0, 99293.16, + 0, 99293.21, + 0, 99293.25, + 0, 99293.29, + 0, 99293.34, + 0, 99293.38, + 0, 99293.41, + 0, 99293.46, + 0, 99293.5, + 0, 99293.54, + 0, 99293.59, + 0, 99293.62, + 0, 99293.66, + 0, 99293.71, + 0, 99293.75, + 0, 99293.79, + 0, 99293.84, + 0, 99293.88, + 0, 99293.91, + 0, 99293.96, + 0, 99294, + 0, 99294.04, + 0, 99294.09, + 0, 99294.12, + 0, 99294.16, + 0, 99294.21, + 0, 99294.25, + 0, 99294.29, + 0, 99294.34, + 0, 99294.38, + 0, 99294.41, + 0, 99294.46, + 0, 99294.5, + 0, 99294.54, + 0, 99294.59, + 0, 99294.62, + 0, 99294.66, + 0, 99294.71, + 0, 99294.75, + 0, 99294.79, + 0, 99294.84, + 0, 99294.88, + 0, 99294.91, + 0, 99294.96, + 0, 99295, + 0, 99295.04, + 0, 99295.09, + 0, 99295.12, + 0, 99295.16, + 0, 99295.21, + 0, 99295.25, + 0, 99295.29, + 0, 99295.34, + 0, 99295.38, + 0, 99295.41, + 0, 99295.46, + 0, 99295.5, + 0, 99295.54, + 0, 99295.59, + 0, 99295.62, + 0, 99295.66, + 0, 99295.71, + 0, 99295.75, + 0, 99295.79, + 0, 99295.84, + 0, 99295.88, + 0, 99295.91, + 0, 99295.96, + 0, 99296, + 0, 99296.04, + 0, 99296.09, + 0, 99296.12, + 0, 99296.16, + 0, 99296.21, + 0, 99296.25, + 0, 99296.29, + 0, 99296.34, + 0, 99296.38, + 0, 99296.41, + 0, 99296.46, + 0, 99296.5, + 0, 99296.54, + 0, 99296.59, + 0, 99296.62, + 0, 99296.66, + 0, 99296.71, + 0, 99296.75, + 0, 99296.79, + 0, 99296.84, + 0, 99296.88, + 0, 99296.91, + 0, 99296.96, + 0, 99297, + 0, 99297.04, + 0, 99297.09, + 0, 99297.12, + 0, 99297.16, + 0, 99297.21, + 0, 99297.25, + 0, 99297.29, + 0, 99297.34, + 0, 99297.38, + 0, 99297.41, + 0, 99297.46, + 0, 99297.5, + 0, 99297.54, + 0, 99297.59, + 0, 99297.62, + 0, 99297.66, + 0, 99297.71, + 0, 99297.75, + 0, 99297.79, + 0, 99297.84, + 0, 99297.88, + 0, 99297.91, + 0, 99297.96, + 0, 99298, + 0, 99298.04, + 0, 99298.09, + 0, 99298.12, + 0, 99298.16, + 0, 99298.21, + 0, 99298.25, + 0, 99298.29, + 0, 99298.34, + 0, 99298.38, + 0, 99298.41, + 0, 99298.46, + 0, 99298.5, + 0, 99298.54, + 0, 99298.59, + 0, 99298.62, + 0, 99298.66, + 0, 99298.71, + 0, 99298.75, + 0, 99298.79, + 0, 99298.84, + 0, 99298.88, + 0, 99298.91, + 0, 99298.96, + 0, 99299, + 0, 99299.04, + 0, 99299.09, + 0, 99299.12, + 0, 99299.16, + 0, 99299.21, + 0, 99299.25, + 0, 99299.29, + 0, 99299.34, + 0, 99299.38, + 0, 99299.41, + 0, 99299.46, + 0, 99299.5, + 0, 99299.54, + 0, 99299.59, + 0, 99299.62, + 0, 99299.66, + 0, 99299.71, + 0, 99299.75, + 0, 99299.79, + 0, 99299.84, + 0, 99299.88, + 0, 99299.91, + 0, 99299.96, + 0, 99300, + 0, 99300.04, + 0, 99300.09, + 0, 99300.12, + 0, 99300.16, + 0, 99300.21, + 0, 99300.25, + 0, 99300.29, + 0, 99300.34, + 0, 99300.38, + 0, 99300.41, + 0, 99300.46, + 0, 99300.5, + 0, 99300.54, + 0, 99300.59, + 0, 99300.62, + 0, 99300.66, + 0, 99300.71, + 0, 99300.75, + 0, 99300.79, + 0, 99300.84, + 0, 99300.88, + 0, 99300.91, + 0, 99300.96, + 0, 99301, + 0, 99301.04, + 0, 99301.09, + 0, 99301.12, + 0, 99301.16, + 0, 99301.21, + 0, 99301.25, + 0, 99301.29, + 0, 99301.34, + 0, 99301.38, + 0, 99301.41, + 0, 99301.46, + 0, 99301.5, + 0, 99301.54, + 0, 99301.59, + 0, 99301.62, + 0, 99301.66, + 0, 99301.71, + 0, 99301.75, + 0, 99301.79, + 0, 99301.84, + 0, 99301.88, + 0, 99301.91, + 0, 99301.96, + 0, 99302, + 0, 99302.04, + 0, 99302.09, + 0, 99302.12, + 0, 99302.16, + 0, 99302.21, + 0, 99302.25, + 0, 99302.29, + 0, 99302.34, + 0, 99302.38, + 0, 99302.41, + 0, 99302.46, + 0, 99302.5, + 0, 99302.54, + 0, 99302.59, + 0, 99302.62, + 0, 99302.66, + 0, 99302.71, + 0, 99302.75, + 0, 99302.79, + 0, 99302.84, + 0, 99302.88, + 0, 99302.91, + 0, 99302.96, + 0, 99303, + 0, 99303.04, + 0, 99303.09, + 0, 99303.12, + 0, 99303.16, + 0, 99303.21, + 0, 99303.25, + 0, 99303.29, + 0, 99303.34, + 0, 99303.38, + 0, 99303.41, + 0, 99303.46, + 0, 99303.5, + 0, 99303.54, + 0, 99303.59, + 0, 99303.62, + 0, 99303.66, + 0, 99303.71, + 0, 99303.75, + 0, 99303.79, + 0, 99303.84, + 0, 99303.88, + 0, 99303.91, + 0, 99303.96, + 0, 99304, + 0, 99304.04, + 0, 99304.09, + 0, 99304.12, + 0, 99304.16, + 0, 99304.21, + 0, 99304.25, + 0, 99304.29, + 0, 99304.34, + 0, 99304.38, + 0, 99304.41, + 0, 99304.46, + 0, 99304.5, + 0, 99304.54, + 0, 99304.59, + 0, 99304.62, + 0, 99304.66, + 0, 99304.71, + 0, 99304.75, + 0, 99304.79, + 0, 99304.84, + 0, 99304.88, + 0, 99304.91, + 0, 99304.96, + 0, 99305, + 0, 99305.04, + 0, 99305.09, + 0, 99305.12, + 0, 99305.16, + 0, 99305.21, + 0, 99305.25, + 0, 99305.29, + 0, 99305.34, + 0, 99305.38, + 0, 99305.41, + 0, 99305.46, + 0, 99305.5, + 0, 99305.54, + 0, 99305.59, + 0, 99305.62, + 0, 99305.66, + 0, 99305.71, + 0, 99305.75, + 0, 99305.79, + 0, 99305.84, + 0, 99305.88, + 0, 99305.91, + 0, 99305.96, + 0, 99306, + 0, 99306.04, + 0, 99306.09, + 0, 99306.12, + 0, 99306.16, + 0, 99306.21, + 0, 99306.25, + 0, 99306.29, + 0, 99306.34, + 0, 99306.38, + 0, 99306.41, + 0, 99306.46, + 0, 99306.5, + 0, 99306.54, + 0, 99306.59, + 0, 99306.62, + 0, 99306.66, + 0, 99306.71, + 0, 99306.75, + 0, 99306.79, + 0, 99306.84, + 0, 99306.88, + 0, 99306.91, + 0, 99306.96, + 0, 99307, + 0, 99307.04, + 0, 99307.09, + 0, 99307.12, + 0, 99307.16, + 0, 99307.21, + 0, 99307.25, + 0, 99307.29, + 0, 99307.34, + 0, 99307.38, + 0, 99307.41, + 0, 99307.46, + 0, 99307.5, + 0, 99307.54, + 0, 99307.59, + 0, 99307.62, + 0, 99307.66, + 0, 99307.71, + 0, 99307.75, + 0, 99307.79, + 0, 99307.84, + 0, 99307.88, + 0, 99307.91, + 0, 99307.96, + 0, 99308, + 0, 99308.04, + 0, 99308.09, + 0, 99308.12, + 0, 99308.16, + 0, 99308.21, + 0, 99308.25, + 0, 99308.29, + 0, 99308.34, + 0, 99308.38, + 0, 99308.41, + 0, 99308.46, + 0, 99308.5, + 0, 99308.54, + 0, 99308.59, + 0, 99308.62, + 0, 99308.66, + 0, 99308.71, + 0, 99308.75, + 0, 99308.79, + 0, 99308.84, + 0, 99308.88, + 0, 99308.91, + 0, 99308.96, + 0, 99309, + 0, 99309.04, + 0, 99309.09, + 0, 99309.12, + 0, 99309.16, + 0, 99309.21, + 0, 99309.25, + 0, 99309.29, + 0, 99309.34, + 0, 99309.38, + 0, 99309.41, + 0, 99309.46, + 0, 99309.5, + 0, 99309.54, + 0, 99309.59, + 0, 99309.62, + 0, 99309.66, + 0, 99309.71, + 0, 99309.75, + 0, 99309.79, + 0, 99309.84, + 0, 99309.88, + 0, 99309.91, + 0, 99309.96, + 0, 99310, + 0, 99310.04, + 0, 99310.09, + 0, 99310.12, + 0, 99310.16, + 0, 99310.21, + 0, 99310.25, + 0, 99310.29, + 0, 99310.34, + 0, 99310.38, + 0, 99310.41, + 0, 99310.46, + 0, 99310.5, + 0, 99310.54, + 0, 99310.59, + 0, 99310.62, + 0, 99310.66, + 0, 99310.71, + 0, 99310.75, + 0, 99310.79, + 0, 99310.84, + 0, 99310.88, + 0, 99310.91, + 0, 99310.96, + 0, 99311, + 0, 99311.04, + 0, 99311.09, + 0, 99311.12, + 0, 99311.16, + 0, 99311.21, + 0, 99311.25, + 0, 99311.29, + 0, 99311.34, + 0, 99311.38, + 0, 99311.41, + 0, 99311.46, + 0, 99311.5, + 0, 99311.54, + 0, 99311.59, + 0, 99311.62, + 0, 99311.66, + 0, 99311.71, + 0, 99311.75, + 0, 99311.79, + 0, 99311.84, + 0, 99311.88, + 0, 99311.91, + 0, 99311.96, + 0, 99312, + 0, 99312.04, + 0, 99312.09, + 0, 99312.12, + 0, 99312.16, + 0, 99312.21, + 0, 99312.25, + 0, 99312.29, + 0, 99312.34, + 0, 99312.38, + 0, 99312.41, + 0, 99312.46, + 0, 99312.5, + 0, 99312.54, + 0, 99312.59, + 0, 99312.62, + 0, 99312.66, + 0, 99312.71, + 0, 99312.75, + 0, 99312.79, + 0, 99312.84, + 0, 99312.88, + 0, 99312.91, + 0, 99312.96, + 0, 99313, + 0, 99313.04, + 0, 99313.09, + 0, 99313.12, + 0, 99313.16, + 0, 99313.21, + 0, 99313.25, + 0, 99313.29, + 0, 99313.34, + 0, 99313.38, + 0, 99313.41, + 0, 99313.46, + 0, 99313.5, + 0, 99313.54, + 0, 99313.59, + 0, 99313.62, + 0, 99313.66, + 0, 99313.71, + 0, 99313.75, + 0, 99313.79, + 0, 99313.84, + 0, 99313.88, + 0, 99313.91, + 0, 99313.96, + 0, 99314, + 0, 99314.04, + 0, 99314.09, + 0, 99314.12, + 0, 99314.16, + 0, 99314.21, + 0, 99314.25, + 0, 99314.29, + 0, 99314.34, + 0, 99314.38, + 0, 99314.41, + 0, 99314.46, + 0, 99314.5, + 0, 99314.54, + 0, 99314.59, + 0, 99314.62, + 0, 99314.66, + 0, 99314.71, + 0, 99314.75, + 0, 99314.79, + 0, 99314.84, + 0, 99314.88, + 0, 99314.91, + 0, 99314.96, + 0, 99315, + 0, 99315.04, + 0, 99315.09, + 0, 99315.12, + 0, 99315.16, + 0, 99315.21, + 0, 99315.25, + 0, 99315.29, + 0, 99315.34, + 0, 99315.38, + 0, 99315.41, + 0, 99315.46, + 0, 99315.5, + 0, 99315.54, + 0, 99315.59, + 0, 99315.62, + 0, 99315.66, + 0, 99315.71, + 0, 99315.75, + 0, 99315.79, + 0, 99315.84, + 0, 99315.88, + 0, 99315.91, + 0, 99315.96, + 0, 99316, + 0, 99316.04, + 0, 99316.09, + 0, 99316.12, + 0, 99316.16, + 0, 99316.21, + 0, 99316.25, + 0, 99316.29, + 0, 99316.34, + 0, 99316.38, + 0, 99316.41, + 0, 99316.46, + 0, 99316.5, + 0, 99316.54, + 0, 99316.59, + 0, 99316.62, + 0, 99316.66, + 0, 99316.71, + 0, 99316.75, + 0, 99316.79, + 0, 99316.84, + 0, 99316.88, + 0, 99316.91, + 0, 99316.96, + 0, 99317, + 0, 99317.04, + 0, 99317.09, + 0, 99317.12, + 0, 99317.16, + 0, 99317.21, + 0, 99317.25, + 0, 99317.29, + 0, 99317.34, + 0, 99317.38, + 0, 99317.41, + 0, 99317.46, + 0, 99317.5, + 0, 99317.54, + 0, 99317.59, + 0, 99317.62, + 0, 99317.66, + 0, 99317.71, + 0, 99317.75, + 0, 99317.79, + 0, 99317.84, + 0, 99317.88, + 0, 99317.91, + 0, 99317.96, + 0, 99318, + 0, 99318.04, + 0, 99318.09, + 0, 99318.12, + 0, 99318.16, + 0, 99318.21, + 0, 99318.25, + 0, 99318.29, + 0, 99318.34, + 0, 99318.38, + 0, 99318.41, + 0, 99318.46, + 0, 99318.5, + 0, 99318.54, + 0, 99318.59, + 0, 99318.62, + 0, 99318.66, + 0, 99318.71, + 0, 99318.75, + 0, 99318.79, + 0, 99318.84, + 0, 99318.88, + 0, 99318.91, + 0, 99318.96, + 0, 99319, + 0, 99319.04, + 0, 99319.09, + 0, 99319.12, + 0, 99319.16, + 0, 99319.21, + 0, 99319.25, + 0, 99319.29, + 0, 99319.34, + 0, 99319.38, + 0, 99319.41, + 0, 99319.46, + 0, 99319.5, + 0, 99319.54, + 0, 99319.59, + 0, 99319.62, + 0, 99319.66, + 0, 99319.71, + 0, 99319.75, + 0, 99319.79, + 0, 99319.84, + 0, 99319.88, + 0, 99319.91, + 0, 99319.96, + 0, 99320, + 0, 99320.04, + 0, 99320.09, + 0, 99320.12, + 0, 99320.16, + 0, 99320.21, + 0, 99320.25, + 0, 99320.29, + 0, 99320.34, + 0, 99320.38, + 0, 99320.41, + 0, 99320.46, + 0, 99320.5, + 0, 99320.54, + 0, 99320.59, + 0, 99320.62, + 0, 99320.66, + 0, 99320.71, + 0, 99320.75, + 0, 99320.79, + 0, 99320.84, + 0, 99320.88, + 0, 99320.91, + 0, 99320.96, + 0, 99321, + 0, 99321.04, + 0, 99321.09, + 0, 99321.12, + 0, 99321.16, + 0, 99321.21, + 0, 99321.25, + 0, 99321.29, + 0, 99321.34, + 0, 99321.38, + 0, 99321.41, + 0, 99321.46, + 0, 99321.5, + 0, 99321.54, + 0, 99321.59, + 0, 99321.62, + 0, 99321.66, + 0, 99321.71, + 0, 99321.75, + 0, 99321.79, + 0, 99321.84, + 0, 99321.88, + 0, 99321.91, + 0, 99321.96, + 0, 99322, + 0, 99322.04, + 0, 99322.09, + 0, 99322.12, + 0, 99322.16, + 0, 99322.21, + 0, 99322.25, + 0, 99322.29, + 0, 99322.34, + 0, 99322.38, + 0, 99322.41, + 0, 99322.46, + 0, 99322.5, + 0, 99322.54, + 0, 99322.59, + 0, 99322.62, + 0, 99322.66, + 0, 99322.71, + 0, 99322.75, + 0, 99322.79, + 0, 99322.84, + 0, 99322.88, + 0, 99322.91, + 0, 99322.96, + 0, 99323, + 0, 99323.04, + 0, 99323.09, + 0, 99323.12, + 0, 99323.16, + 0, 99323.21, + 0, 99323.25, + 0, 99323.29, + 0, 99323.34, + 0, 99323.38, + 0, 99323.41, + 0, 99323.46, + 0, 99323.5, + 0, 99323.54, + 0, 99323.59, + 0, 99323.62, + 0, 99323.66, + 0, 99323.71, + 0, 99323.75, + 0, 99323.79, + 0, 99323.84, + 0, 99323.88, + 0, 99323.91, + 0, 99323.96, + 0, 99324, + 0, 99324.04, + 0, 99324.09, + 0, 99324.12, + 0, 99324.16, + 0, 99324.21, + 0, 99324.25, + 0, 99324.29, + 0, 99324.34, + 0, 99324.38, + 0, 99324.41, + 0, 99324.46, + 0, 99324.5, + 0, 99324.54, + 0, 99324.59, + 0, 99324.62, + 0, 99324.66, + 0, 99324.71, + 0, 99324.75, + 0, 99324.79, + 0, 99324.84, + 0, 99324.88, + 0, 99324.91, + 0, 99324.96, + 0, 99325, + 0, 99325.04, + 0, 99325.09, + 0, 99325.12, + 0, 99325.16, + 0, 99325.21, + 0, 99325.25, + 0, 99325.29, + 0, 99325.34, + 0, 99325.38, + 0, 99325.41, + 0, 99325.46, + 0, 99325.5, + 0, 99325.54, + 0, 99325.59, + 0, 99325.62, + 0, 99325.66, + 0, 99325.71, + 0, 99325.75, + 0, 99325.79, + 0, 99325.84, + 0, 99325.88, + 0, 99325.91, + 0, 99325.96, + 0, 99326, + 0, 99326.04, + 0, 99326.09, + 0, 99326.12, + 0, 99326.16, + 0, 99326.21, + 0, 99326.25, + 0, 99326.29, + 0, 99326.34, + 0, 99326.38, + 0, 99326.41, + 0, 99326.46, + 0, 99326.5, + 0, 99326.54, + 0, 99326.59, + 0, 99326.62, + 0, 99326.66, + 0, 99326.71, + 0, 99326.75, + 0, 99326.79, + 0, 99326.84, + 0, 99326.88, + 0, 99326.91, + 0, 99326.96, + 0, 99327, + 0, 99327.04, + 0, 99327.09, + 0, 99327.12, + 0, 99327.16, + 0, 99327.21, + 0, 99327.25, + 0, 99327.29, + 0, 99327.34, + 0, 99327.38, + 0, 99327.41, + 0, 99327.46, + 0, 99327.5, + 0, 99327.54, + 0, 99327.59, + 0, 99327.62, + 0, 99327.66, + 0, 99327.71, + 0, 99327.75, + 0, 99327.79, + 0, 99327.84, + 0, 99327.88, + 0, 99327.91, + 0, 99327.96, + 0, 99328, + 0, 99328.04, + 0, 99328.09, + 0, 99328.12, + 0, 99328.16, + 0, 99328.21, + 0, 99328.25, + 0, 99328.29, + 0, 99328.34, + 0, 99328.38, + 0, 99328.41, + 0, 99328.46, + 0, 99328.5, + 0, 99328.54, + 0, 99328.59, + 0, 99328.62, + 0, 99328.66, + 0, 99328.71, + 0, 99328.75, + 0, 99328.79, + 0, 99328.84, + 0, 99328.88, + 0, 99328.91, + 0, 99328.96, + 0, 99329, + 0, 99329.04, + 0, 99329.09, + 0, 99329.12, + 0, 99329.16, + 0, 99329.21, + 0, 99329.25, + 0, 99329.29, + 0, 99329.34, + 0, 99329.38, + 0, 99329.41, + 0, 99329.46, + 0, 99329.5, + 0, 99329.54, + 0, 99329.59, + 0, 99329.62, + 0, 99329.66, + 0, 99329.71, + 0, 99329.75, + 0, 99329.79, + 0, 99329.84, + 0, 99329.88, + 0, 99329.91, + 0, 99329.96, + 0, 99330, + 0, 99330.04, + 0, 99330.09, + 0, 99330.12, + 0, 99330.16, + 0, 99330.21, + 0, 99330.25, + 0, 99330.29, + 0, 99330.34, + 0, 99330.38, + 0, 99330.41, + 0, 99330.46, + 0, 99330.5, + 0, 99330.54, + 0, 99330.59, + 0, 99330.62, + 0, 99330.66, + 0, 99330.71, + 0, 99330.75, + 0, 99330.79, + 0, 99330.84, + 0, 99330.88, + 0, 99330.91, + 0, 99330.96, + 0, 99331, + 0, 99331.04, + 0, 99331.09, + 0, 99331.12, + 0, 99331.16, + 0, 99331.21, + 0, 99331.25, + 0, 99331.29, + 0, 99331.34, + 0, 99331.38, + 0, 99331.41, + 0, 99331.46, + 0, 99331.5, + 0, 99331.54, + 0, 99331.59, + 0, 99331.62, + 0, 99331.66, + 0, 99331.71, + 0, 99331.75, + 0, 99331.79, + 0, 99331.84, + 0, 99331.88, + 0, 99331.91, + 0, 99331.96, + 0, 99332, + 0, 99332.04, + 0, 99332.09, + 0, 99332.12, + 0, 99332.16, + 0, 99332.21, + 0, 99332.25, + 0, 99332.29, + 0, 99332.34, + 0, 99332.38, + 0, 99332.41, + 0, 99332.46, + 0, 99332.5, + 0, 99332.54, + 0, 99332.59, + 0, 99332.62, + 0, 99332.66, + 0, 99332.71, + 0, 99332.75, + 0, 99332.79, + 0, 99332.84, + 0, 99332.88, + 0, 99332.91, + 0, 99332.96, + 0, 99333, + 0, 99333.04, + 0, 99333.09, + 0, 99333.12, + 0, 99333.16, + 0, 99333.21, + 0, 99333.25, + 0, 99333.29, + 0, 99333.34, + 0, 99333.38, + 0, 99333.41, + 0, 99333.46, + 0, 99333.5, + 0, 99333.54, + 0, 99333.59, + 0, 99333.62, + 0, 99333.66, + 0, 99333.71, + 0, 99333.75, + 0, 99333.79, + 0, 99333.84, + 0, 99333.88, + 0, 99333.91, + 0, 99333.96, + 0, 99334, + 0, 99334.04, + 0, 99334.09, + 0, 99334.12, + 0, 99334.16, + 0, 99334.21, + 0, 99334.25, + 0, 99334.29, + 0, 99334.34, + 0, 99334.38, + 0, 99334.41, + 0, 99334.46, + 0, 99334.5, + 0, 99334.54, + 0, 99334.59, + 0, 99334.62, + 0, 99334.66, + 0, 99334.71, + 0, 99334.75, + 0, 99334.79, + 0, 99334.84, + 0, 99334.88, + 0, 99334.91, + 0, 99334.96, + 0, 99335, + 0, 99335.04, + 0, 99335.09, + 0, 99335.12, + 0, 99335.16, + 0, 99335.21, + 0, 99335.25, + 0, 99335.29, + 0, 99335.34, + 0, 99335.38, + 0, 99335.41, + 0, 99335.46, + 0, 99335.5, + 0, 99335.54, + 0, 99335.59, + 0, 99335.62, + 0, 99335.66, + 0, 99335.71, + 0, 99335.75, + 0, 99335.79, + 0, 99335.84, + 0, 99335.88, + 0, 99335.91, + 0, 99335.96, + 0, 99336, + 0, 99336.04, + 0, 99336.09, + 0, 99336.12, + 0, 99336.16, + 0, 99336.21, + 0, 99336.25, + 0, 99336.29, + 0, 99336.34, + 0, 99336.38, + 0, 99336.41, + 0, 99336.46, + 0, 99336.5, + 0, 99336.54, + 0, 99336.59, + 0, 99336.62, + 0, 99336.66, + 0, 99336.71, + 0, 99336.75, + 0, 99336.79, + 0, 99336.84, + 0, 99336.88, + 0, 99336.91, + 0, 99336.96, + 0, 99337, + 0, 99337.04, + 0, 99337.09, + 0, 99337.12, + 0, 99337.16, + 0, 99337.21, + 0, 99337.25, + 0, 99337.29, + 0, 99337.34, + 0, 99337.38, + 0, 99337.41, + 0, 99337.46, + 0, 99337.5, + 0, 99337.54, + 0, 99337.59, + 0, 99337.62, + 0, 99337.66, + 0, 99337.71, + 0, 99337.75, + 0, 99337.79, + 0, 99337.84, + 0, 99337.88, + 0, 99337.91, + 0, 99337.96, + 0, 99338, + 0, 99338.04, + 0, 99338.09, + 0, 99338.12, + 0, 99338.16, + 0, 99338.21, + 0, 99338.25, + 0, 99338.29, + 0, 99338.34, + 0, 99338.38, + 0, 99338.41, + 0, 99338.46, + 0, 99338.5, + 0, 99338.54, + 0, 99338.59, + 0, 99338.62, + 0, 99338.66, + 0, 99338.71, + 0, 99338.75, + 0, 99338.79, + 0, 99338.84, + 0, 99338.88, + 0, 99338.91, + 0, 99338.96, + 0, 99339, + 0, 99339.04, + 0, 99339.09, + 0, 99339.12, + 0, 99339.16, + 0, 99339.21, + 0, 99339.25, + 0, 99339.29, + 0, 99339.34, + 0, 99339.38, + 0, 99339.41, + 0, 99339.46, + 0, 99339.5, + 0, 99339.54, + 0, 99339.59, + 0, 99339.62, + 0, 99339.66, + 0, 99339.71, + 0, 99339.75, + 0, 99339.79, + 0, 99339.84, + 0, 99339.88, + 0, 99339.91, + 0, 99339.96, + 0, 99340, + 0, 99340.04, + 0, 99340.09, + 0, 99340.12, + 0, 99340.16, + 0, 99340.21, + 0, 99340.25, + 0, 99340.29, + 0, 99340.34, + 0, 99340.38, + 0, 99340.41, + 0, 99340.46, + 0, 99340.5, + 0, 99340.54, + 0, 99340.59, + 0, 99340.62, + 0, 99340.66, + 0, 99340.71, + 0, 99340.75, + 0, 99340.79, + 0, 99340.84, + 0, 99340.88, + 0, 99340.91, + 0, 99340.96, + 0, 99341, + 0, 99341.04, + 0, 99341.09, + 0, 99341.12, + 0, 99341.16, + 0, 99341.21, + 0, 99341.25, + 0, 99341.29, + 0, 99341.34, + 0, 99341.38, + 0, 99341.41, + 0, 99341.46, + 0, 99341.5, + 0, 99341.54, + 0, 99341.59, + 0, 99341.62, + 0, 99341.66, + 0, 99341.71, + 0, 99341.75, + 0, 99341.79, + 0, 99341.84, + 0, 99341.88, + 0, 99341.91, + 0, 99341.96, + 0, 99342, + 0, 99342.04, + 0, 99342.09, + 0, 99342.12, + 0, 99342.16, + 0, 99342.21, + 0, 99342.25, + 0, 99342.29, + 0, 99342.34, + 0, 99342.38, + 0, 99342.41, + 0, 99342.46, + 0, 99342.5, + 0, 99342.54, + 0, 99342.59, + 0, 99342.62, + 0, 99342.66, + 0, 99342.71, + 0, 99342.75, + 0, 99342.79, + 0, 99342.84, + 0, 99342.88, + 0, 99342.91, + 0, 99342.96, + 0, 99343, + 0, 99343.04, + 0, 99343.09, + 0, 99343.12, + 0, 99343.16, + 0, 99343.21, + 0, 99343.25, + 0, 99343.29, + 0, 99343.34, + 0, 99343.38, + 0, 99343.41, + 0, 99343.46, + 0, 99343.5, + 0, 99343.54, + 0, 99343.59, + 0, 99343.62, + 0, 99343.66, + 0, 99343.71, + 0, 99343.75, + 0, 99343.79, + 0, 99343.84, + 0, 99343.88, + 0, 99343.91, + 0, 99343.96, + 0, 99344, + 0, 99344.04, + 0, 99344.09, + 0, 99344.12, + 0, 99344.16, + 0, 99344.21, + 0, 99344.25, + 0, 99344.29, + 0, 99344.34, + 0, 99344.38, + 0, 99344.41, + 0, 99344.46, + 0, 99344.5, + 0, 99344.54, + 0, 99344.59, + 0, 99344.62, + 0, 99344.66, + 0, 99344.71, + 0, 99344.75, + 0, 99344.79, + 0, 99344.84, + 0, 99344.88, + 0, 99344.91, + 0, 99344.96, + 0, 99345, + 0, 99345.04, + 0, 99345.09, + 0, 99345.12, + 0, 99345.16, + 0, 99345.21, + 0, 99345.25, + 0, 99345.29, + 0, 99345.34, + 0, 99345.38, + 0, 99345.41, + 0, 99345.46, + 0, 99345.5, + 0, 99345.54, + 0, 99345.59, + 0, 99345.62, + 0, 99345.66, + 0, 99345.71, + 0, 99345.75, + 0, 99345.79, + 0, 99345.84, + 0, 99345.88, + 0, 99345.91, + 0, 99345.96 ; +} diff --git a/splitnc/test/data/iceh-1hourly-mean_0272.cdl b/splitnc/test/data/iceh-1hourly-mean_0272.cdl new file mode 100644 index 0000000..9aa416d --- /dev/null +++ b/splitnc/test/data/iceh-1hourly-mean_0272.cdl @@ -0,0 +1,11073 @@ +netcdf iceh-1hourly-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (8782 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:cell_methods = "area: mean where sea time: mean" ; + siconc:time_rep = "averaged" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "hour_1" ; + :comment = "This year has 366 days" ; + :comment2 = "File started on model date 02720101" ; + :history = "This dataset was created on 2026-05-15 at 11:36:34.8" ; + :io_flavor = "io_netcdf" ; +data: + + time = 98980.0833333333, 98980.125, 98980.1666666667, 98980.2083333333, + 98980.25, 98980.2916666667, 98980.3333333333, 98980.375, + 98980.4166666667, 98980.4583333333, 98980.5, 98980.5416666667, + 98980.5833333333, 98980.625, 98980.6666666667, 98980.7083333333, + 98980.75, 98980.7916666667, 98980.8333333333, 98980.875, + 98980.9166666667, 98980.9583333333, 98981, 98981.0416666667, + 98981.0833333333, 98981.125, 98981.1666666667, 98981.2083333333, + 98981.25, 98981.2916666667, 98981.3333333333, 98981.375, + 98981.4166666667, 98981.4583333333, 98981.5, 98981.5416666667, + 98981.5833333333, 98981.625, 98981.6666666667, 98981.7083333333, + 98981.75, 98981.7916666667, 98981.8333333333, 98981.875, + 98981.9166666667, 98981.9583333333, 98982, 98982.0416666667, + 98982.0833333333, 98982.125, 98982.1666666667, 98982.2083333333, + 98982.25, 98982.2916666667, 98982.3333333333, 98982.375, + 98982.4166666667, 98982.4583333333, 98982.5, 98982.5416666667, + 98982.5833333333, 98982.625, 98982.6666666667, 98982.7083333333, + 98982.75, 98982.7916666667, 98982.8333333333, 98982.875, + 98982.9166666667, 98982.9583333333, 98983, 98983.0416666667, + 98983.0833333333, 98983.125, 98983.1666666667, 98983.2083333333, + 98983.25, 98983.2916666667, 98983.3333333333, 98983.375, + 98983.4166666667, 98983.4583333333, 98983.5, 98983.5416666667, + 98983.5833333333, 98983.625, 98983.6666666667, 98983.7083333333, + 98983.75, 98983.7916666667, 98983.8333333333, 98983.875, + 98983.9166666667, 98983.9583333333, 98984, 98984.0416666667, + 98984.0833333333, 98984.125, 98984.1666666667, 98984.2083333333, + 98984.25, 98984.2916666667, 98984.3333333333, 98984.375, + 98984.4166666667, 98984.4583333333, 98984.5, 98984.5416666667, + 98984.5833333333, 98984.625, 98984.6666666667, 98984.7083333333, + 98984.75, 98984.7916666667, 98984.8333333333, 98984.875, + 98984.9166666667, 98984.9583333333, 98985, 98985.0416666667, + 98985.0833333333, 98985.125, 98985.1666666667, 98985.2083333333, + 98985.25, 98985.2916666667, 98985.3333333333, 98985.375, + 98985.4166666667, 98985.4583333333, 98985.5, 98985.5416666667, + 98985.5833333333, 98985.625, 98985.6666666667, 98985.7083333333, + 98985.75, 98985.7916666667, 98985.8333333333, 98985.875, + 98985.9166666667, 98985.9583333333, 98986, 98986.0416666667, + 98986.0833333333, 98986.125, 98986.1666666667, 98986.2083333333, + 98986.25, 98986.2916666667, 98986.3333333333, 98986.375, + 98986.4166666667, 98986.4583333333, 98986.5, 98986.5416666667, + 98986.5833333333, 98986.625, 98986.6666666667, 98986.7083333333, + 98986.75, 98986.7916666667, 98986.8333333333, 98986.875, + 98986.9166666667, 98986.9583333333, 98987, 98987.0416666667, + 98987.0833333333, 98987.125, 98987.1666666667, 98987.2083333333, + 98987.25, 98987.2916666667, 98987.3333333333, 98987.375, + 98987.4166666667, 98987.4583333333, 98987.5, 98987.5416666667, + 98987.5833333333, 98987.625, 98987.6666666667, 98987.7083333333, + 98987.75, 98987.7916666667, 98987.8333333333, 98987.875, + 98987.9166666667, 98987.9583333333, 98988, 98988.0416666667, + 98988.0833333333, 98988.125, 98988.1666666667, 98988.2083333333, + 98988.25, 98988.2916666667, 98988.3333333333, 98988.375, + 98988.4166666667, 98988.4583333333, 98988.5, 98988.5416666667, + 98988.5833333333, 98988.625, 98988.6666666667, 98988.7083333333, + 98988.75, 98988.7916666667, 98988.8333333333, 98988.875, + 98988.9166666667, 98988.9583333333, 98989, 98989.0416666667, + 98989.0833333333, 98989.125, 98989.1666666667, 98989.2083333333, + 98989.25, 98989.2916666667, 98989.3333333333, 98989.375, + 98989.4166666667, 98989.4583333333, 98989.5, 98989.5416666667, + 98989.5833333333, 98989.625, 98989.6666666667, 98989.7083333333, + 98989.75, 98989.7916666667, 98989.8333333333, 98989.875, + 98989.9166666667, 98989.9583333333, 98990, 98990.0416666667, + 98990.0833333333, 98990.125, 98990.1666666667, 98990.2083333333, + 98990.25, 98990.2916666667, 98990.3333333333, 98990.375, + 98990.4166666667, 98990.4583333333, 98990.5, 98990.5416666667, + 98990.5833333333, 98990.625, 98990.6666666667, 98990.7083333333, + 98990.75, 98990.7916666667, 98990.8333333333, 98990.875, + 98990.9166666667, 98990.9583333333, 98991, 98991.0416666667, + 98991.0833333333, 98991.125, 98991.1666666667, 98991.2083333333, + 98991.25, 98991.2916666667, 98991.3333333333, 98991.375, + 98991.4166666667, 98991.4583333333, 98991.5, 98991.5416666667, + 98991.5833333333, 98991.625, 98991.6666666667, 98991.7083333333, + 98991.75, 98991.7916666667, 98991.8333333333, 98991.875, + 98991.9166666667, 98991.9583333333, 98992, 98992.0416666667, + 98992.0833333333, 98992.125, 98992.1666666667, 98992.2083333333, + 98992.25, 98992.2916666667, 98992.3333333333, 98992.375, + 98992.4166666667, 98992.4583333333, 98992.5, 98992.5416666667, + 98992.5833333333, 98992.625, 98992.6666666667, 98992.7083333333, + 98992.75, 98992.7916666667, 98992.8333333333, 98992.875, + 98992.9166666667, 98992.9583333333, 98993, 98993.0416666667, + 98993.0833333333, 98993.125, 98993.1666666667, 98993.2083333333, + 98993.25, 98993.2916666667, 98993.3333333333, 98993.375, + 98993.4166666667, 98993.4583333333, 98993.5, 98993.5416666667, + 98993.5833333333, 98993.625, 98993.6666666667, 98993.7083333333, + 98993.75, 98993.7916666667, 98993.8333333333, 98993.875, + 98993.9166666667, 98993.9583333333, 98994, 98994.0416666667, + 98994.0833333333, 98994.125, 98994.1666666667, 98994.2083333333, + 98994.25, 98994.2916666667, 98994.3333333333, 98994.375, + 98994.4166666667, 98994.4583333333, 98994.5, 98994.5416666667, + 98994.5833333333, 98994.625, 98994.6666666667, 98994.7083333333, + 98994.75, 98994.7916666667, 98994.8333333333, 98994.875, + 98994.9166666667, 98994.9583333333, 98995, 98995.0416666667, + 98995.0833333333, 98995.125, 98995.1666666667, 98995.2083333333, + 98995.25, 98995.2916666667, 98995.3333333333, 98995.375, + 98995.4166666667, 98995.4583333333, 98995.5, 98995.5416666667, + 98995.5833333333, 98995.625, 98995.6666666667, 98995.7083333333, + 98995.75, 98995.7916666667, 98995.8333333333, 98995.875, + 98995.9166666667, 98995.9583333333, 98996, 98996.0416666667, + 98996.0833333333, 98996.125, 98996.1666666667, 98996.2083333333, + 98996.25, 98996.2916666667, 98996.3333333333, 98996.375, + 98996.4166666667, 98996.4583333333, 98996.5, 98996.5416666667, + 98996.5833333333, 98996.625, 98996.6666666667, 98996.7083333333, + 98996.75, 98996.7916666667, 98996.8333333333, 98996.875, + 98996.9166666667, 98996.9583333333, 98997, 98997.0416666667, + 98997.0833333333, 98997.125, 98997.1666666667, 98997.2083333333, + 98997.25, 98997.2916666667, 98997.3333333333, 98997.375, + 98997.4166666667, 98997.4583333333, 98997.5, 98997.5416666667, + 98997.5833333333, 98997.625, 98997.6666666667, 98997.7083333333, + 98997.75, 98997.7916666667, 98997.8333333333, 98997.875, + 98997.9166666667, 98997.9583333333, 98998, 98998.0416666667, + 98998.0833333333, 98998.125, 98998.1666666667, 98998.2083333333, + 98998.25, 98998.2916666667, 98998.3333333333, 98998.375, + 98998.4166666667, 98998.4583333333, 98998.5, 98998.5416666667, + 98998.5833333333, 98998.625, 98998.6666666667, 98998.7083333333, + 98998.75, 98998.7916666667, 98998.8333333333, 98998.875, + 98998.9166666667, 98998.9583333333, 98999, 98999.0416666667, + 98999.0833333333, 98999.125, 98999.1666666667, 98999.2083333333, + 98999.25, 98999.2916666667, 98999.3333333333, 98999.375, + 98999.4166666667, 98999.4583333333, 98999.5, 98999.5416666667, + 98999.5833333333, 98999.625, 98999.6666666667, 98999.7083333333, + 98999.75, 98999.7916666667, 98999.8333333333, 98999.875, + 98999.9166666667, 98999.9583333333, 99000, 99000.0416666667, + 99000.0833333333, 99000.125, 99000.1666666667, 99000.2083333333, + 99000.25, 99000.2916666667, 99000.3333333333, 99000.375, + 99000.4166666667, 99000.4583333333, 99000.5, 99000.5416666667, + 99000.5833333333, 99000.625, 99000.6666666667, 99000.7083333333, + 99000.75, 99000.7916666667, 99000.8333333333, 99000.875, + 99000.9166666667, 99000.9583333333, 99001, 99001.0416666667, + 99001.0833333333, 99001.125, 99001.1666666667, 99001.2083333333, + 99001.25, 99001.2916666667, 99001.3333333333, 99001.375, + 99001.4166666667, 99001.4583333333, 99001.5, 99001.5416666667, + 99001.5833333333, 99001.625, 99001.6666666667, 99001.7083333333, + 99001.75, 99001.7916666667, 99001.8333333333, 99001.875, + 99001.9166666667, 99001.9583333333, 99002, 99002.0416666667, + 99002.0833333333, 99002.125, 99002.1666666667, 99002.2083333333, + 99002.25, 99002.2916666667, 99002.3333333333, 99002.375, + 99002.4166666667, 99002.4583333333, 99002.5, 99002.5416666667, + 99002.5833333333, 99002.625, 99002.6666666667, 99002.7083333333, + 99002.75, 99002.7916666667, 99002.8333333333, 99002.875, + 99002.9166666667, 99002.9583333333, 99003, 99003.0416666667, + 99003.0833333333, 99003.125, 99003.1666666667, 99003.2083333333, + 99003.25, 99003.2916666667, 99003.3333333333, 99003.375, + 99003.4166666667, 99003.4583333333, 99003.5, 99003.5416666667, + 99003.5833333333, 99003.625, 99003.6666666667, 99003.7083333333, + 99003.75, 99003.7916666667, 99003.8333333333, 99003.875, + 99003.9166666667, 99003.9583333333, 99004, 99004.0416666667, + 99004.0833333333, 99004.125, 99004.1666666667, 99004.2083333333, + 99004.25, 99004.2916666667, 99004.3333333333, 99004.375, + 99004.4166666667, 99004.4583333333, 99004.5, 99004.5416666667, + 99004.5833333333, 99004.625, 99004.6666666667, 99004.7083333333, + 99004.75, 99004.7916666667, 99004.8333333333, 99004.875, + 99004.9166666667, 99004.9583333333, 99005, 99005.0416666667, + 99005.0833333333, 99005.125, 99005.1666666667, 99005.2083333333, + 99005.25, 99005.2916666667, 99005.3333333333, 99005.375, + 99005.4166666667, 99005.4583333333, 99005.5, 99005.5416666667, + 99005.5833333333, 99005.625, 99005.6666666667, 99005.7083333333, + 99005.75, 99005.7916666667, 99005.8333333333, 99005.875, + 99005.9166666667, 99005.9583333333, 99006, 99006.0416666667, + 99006.0833333333, 99006.125, 99006.1666666667, 99006.2083333333, + 99006.25, 99006.2916666667, 99006.3333333333, 99006.375, + 99006.4166666667, 99006.4583333333, 99006.5, 99006.5416666667, + 99006.5833333333, 99006.625, 99006.6666666667, 99006.7083333333, + 99006.75, 99006.7916666667, 99006.8333333333, 99006.875, + 99006.9166666667, 99006.9583333333, 99007, 99007.0416666667, + 99007.0833333333, 99007.125, 99007.1666666667, 99007.2083333333, + 99007.25, 99007.2916666667, 99007.3333333333, 99007.375, + 99007.4166666667, 99007.4583333333, 99007.5, 99007.5416666667, + 99007.5833333333, 99007.625, 99007.6666666667, 99007.7083333333, + 99007.75, 99007.7916666667, 99007.8333333333, 99007.875, + 99007.9166666667, 99007.9583333333, 99008, 99008.0416666667, + 99008.0833333333, 99008.125, 99008.1666666667, 99008.2083333333, + 99008.25, 99008.2916666667, 99008.3333333333, 99008.375, + 99008.4166666667, 99008.4583333333, 99008.5, 99008.5416666667, + 99008.5833333333, 99008.625, 99008.6666666667, 99008.7083333333, + 99008.75, 99008.7916666667, 99008.8333333333, 99008.875, + 99008.9166666667, 99008.9583333333, 99009, 99009.0416666667, + 99009.0833333333, 99009.125, 99009.1666666667, 99009.2083333333, + 99009.25, 99009.2916666667, 99009.3333333333, 99009.375, + 99009.4166666667, 99009.4583333333, 99009.5, 99009.5416666667, + 99009.5833333333, 99009.625, 99009.6666666667, 99009.7083333333, + 99009.75, 99009.7916666667, 99009.8333333333, 99009.875, + 99009.9166666667, 99009.9583333333, 99010, 99010.0416666667, + 99010.0833333333, 99010.125, 99010.1666666667, 99010.2083333333, + 99010.25, 99010.2916666667, 99010.3333333333, 99010.375, + 99010.4166666667, 99010.4583333333, 99010.5, 99010.5416666667, + 99010.5833333333, 99010.625, 99010.6666666667, 99010.7083333333, + 99010.75, 99010.7916666667, 99010.8333333333, 99010.875, + 99010.9166666667, 99010.9583333333, 99011, 99011.0416666667, + 99011.0833333333, 99011.125, 99011.1666666667, 99011.2083333333, + 99011.25, 99011.2916666667, 99011.3333333333, 99011.375, + 99011.4166666667, 99011.4583333333, 99011.5, 99011.5416666667, + 99011.5833333333, 99011.625, 99011.6666666667, 99011.7083333333, + 99011.75, 99011.7916666667, 99011.8333333333, 99011.875, + 99011.9166666667, 99011.9583333333, 99012, 99012.0416666667, + 99012.0833333333, 99012.125, 99012.1666666667, 99012.2083333333, + 99012.25, 99012.2916666667, 99012.3333333333, 99012.375, + 99012.4166666667, 99012.4583333333, 99012.5, 99012.5416666667, + 99012.5833333333, 99012.625, 99012.6666666667, 99012.7083333333, + 99012.75, 99012.7916666667, 99012.8333333333, 99012.875, + 99012.9166666667, 99012.9583333333, 99013, 99013.0416666667, + 99013.0833333333, 99013.125, 99013.1666666667, 99013.2083333333, + 99013.25, 99013.2916666667, 99013.3333333333, 99013.375, + 99013.4166666667, 99013.4583333333, 99013.5, 99013.5416666667, + 99013.5833333333, 99013.625, 99013.6666666667, 99013.7083333333, + 99013.75, 99013.7916666667, 99013.8333333333, 99013.875, + 99013.9166666667, 99013.9583333333, 99014, 99014.0416666667, + 99014.0833333333, 99014.125, 99014.1666666667, 99014.2083333333, + 99014.25, 99014.2916666667, 99014.3333333333, 99014.375, + 99014.4166666667, 99014.4583333333, 99014.5, 99014.5416666667, + 99014.5833333333, 99014.625, 99014.6666666667, 99014.7083333333, + 99014.75, 99014.7916666667, 99014.8333333333, 99014.875, + 99014.9166666667, 99014.9583333333, 99015, 99015.0416666667, + 99015.0833333333, 99015.125, 99015.1666666667, 99015.2083333333, + 99015.25, 99015.2916666667, 99015.3333333333, 99015.375, + 99015.4166666667, 99015.4583333333, 99015.5, 99015.5416666667, + 99015.5833333333, 99015.625, 99015.6666666667, 99015.7083333333, + 99015.75, 99015.7916666667, 99015.8333333333, 99015.875, + 99015.9166666667, 99015.9583333333, 99016, 99016.0416666667, + 99016.0833333333, 99016.125, 99016.1666666667, 99016.2083333333, + 99016.25, 99016.2916666667, 99016.3333333333, 99016.375, + 99016.4166666667, 99016.4583333333, 99016.5, 99016.5416666667, + 99016.5833333333, 99016.625, 99016.6666666667, 99016.7083333333, + 99016.75, 99016.7916666667, 99016.8333333333, 99016.875, + 99016.9166666667, 99016.9583333333, 99017, 99017.0416666667, + 99017.0833333333, 99017.125, 99017.1666666667, 99017.2083333333, + 99017.25, 99017.2916666667, 99017.3333333333, 99017.375, + 99017.4166666667, 99017.4583333333, 99017.5, 99017.5416666667, + 99017.5833333333, 99017.625, 99017.6666666667, 99017.7083333333, + 99017.75, 99017.7916666667, 99017.8333333333, 99017.875, + 99017.9166666667, 99017.9583333333, 99018, 99018.0416666667, + 99018.0833333333, 99018.125, 99018.1666666667, 99018.2083333333, + 99018.25, 99018.2916666667, 99018.3333333333, 99018.375, + 99018.4166666667, 99018.4583333333, 99018.5, 99018.5416666667, + 99018.5833333333, 99018.625, 99018.6666666667, 99018.7083333333, + 99018.75, 99018.7916666667, 99018.8333333333, 99018.875, + 99018.9166666667, 99018.9583333333, 99019, 99019.0416666667, + 99019.0833333333, 99019.125, 99019.1666666667, 99019.2083333333, + 99019.25, 99019.2916666667, 99019.3333333333, 99019.375, + 99019.4166666667, 99019.4583333333, 99019.5, 99019.5416666667, + 99019.5833333333, 99019.625, 99019.6666666667, 99019.7083333333, + 99019.75, 99019.7916666667, 99019.8333333333, 99019.875, + 99019.9166666667, 99019.9583333333, 99020, 99020.0416666667, + 99020.0833333333, 99020.125, 99020.1666666667, 99020.2083333333, + 99020.25, 99020.2916666667, 99020.3333333333, 99020.375, + 99020.4166666667, 99020.4583333333, 99020.5, 99020.5416666667, + 99020.5833333333, 99020.625, 99020.6666666667, 99020.7083333333, + 99020.75, 99020.7916666667, 99020.8333333333, 99020.875, + 99020.9166666667, 99020.9583333333, 99021, 99021.0416666667, + 99021.0833333333, 99021.125, 99021.1666666667, 99021.2083333333, + 99021.25, 99021.2916666667, 99021.3333333333, 99021.375, + 99021.4166666667, 99021.4583333333, 99021.5, 99021.5416666667, + 99021.5833333333, 99021.625, 99021.6666666667, 99021.7083333333, + 99021.75, 99021.7916666667, 99021.8333333333, 99021.875, + 99021.9166666667, 99021.9583333333, 99022, 99022.0416666667, + 99022.0833333333, 99022.125, 99022.1666666667, 99022.2083333333, + 99022.25, 99022.2916666667, 99022.3333333333, 99022.375, + 99022.4166666667, 99022.4583333333, 99022.5, 99022.5416666667, + 99022.5833333333, 99022.625, 99022.6666666667, 99022.7083333333, + 99022.75, 99022.7916666667, 99022.8333333333, 99022.875, + 99022.9166666667, 99022.9583333333, 99023, 99023.0416666667, + 99023.0833333333, 99023.125, 99023.1666666667, 99023.2083333333, + 99023.25, 99023.2916666667, 99023.3333333333, 99023.375, + 99023.4166666667, 99023.4583333333, 99023.5, 99023.5416666667, + 99023.5833333333, 99023.625, 99023.6666666667, 99023.7083333333, + 99023.75, 99023.7916666667, 99023.8333333333, 99023.875, + 99023.9166666667, 99023.9583333333, 99024, 99024.0416666667, + 99024.0833333333, 99024.125, 99024.1666666667, 99024.2083333333, + 99024.25, 99024.2916666667, 99024.3333333333, 99024.375, + 99024.4166666667, 99024.4583333333, 99024.5, 99024.5416666667, + 99024.5833333333, 99024.625, 99024.6666666667, 99024.7083333333, + 99024.75, 99024.7916666667, 99024.8333333333, 99024.875, + 99024.9166666667, 99024.9583333333, 99025, 99025.0416666667, + 99025.0833333333, 99025.125, 99025.1666666667, 99025.2083333333, + 99025.25, 99025.2916666667, 99025.3333333333, 99025.375, + 99025.4166666667, 99025.4583333333, 99025.5, 99025.5416666667, + 99025.5833333333, 99025.625, 99025.6666666667, 99025.7083333333, + 99025.75, 99025.7916666667, 99025.8333333333, 99025.875, + 99025.9166666667, 99025.9583333333, 99026, 99026.0416666667, + 99026.0833333333, 99026.125, 99026.1666666667, 99026.2083333333, + 99026.25, 99026.2916666667, 99026.3333333333, 99026.375, + 99026.4166666667, 99026.4583333333, 99026.5, 99026.5416666667, + 99026.5833333333, 99026.625, 99026.6666666667, 99026.7083333333, + 99026.75, 99026.7916666667, 99026.8333333333, 99026.875, + 99026.9166666667, 99026.9583333333, 99027, 99027.0416666667, + 99027.0833333333, 99027.125, 99027.1666666667, 99027.2083333333, + 99027.25, 99027.2916666667, 99027.3333333333, 99027.375, + 99027.4166666667, 99027.4583333333, 99027.5, 99027.5416666667, + 99027.5833333333, 99027.625, 99027.6666666667, 99027.7083333333, + 99027.75, 99027.7916666667, 99027.8333333333, 99027.875, + 99027.9166666667, 99027.9583333333, 99028, 99028.0416666667, + 99028.0833333333, 99028.125, 99028.1666666667, 99028.2083333333, + 99028.25, 99028.2916666667, 99028.3333333333, 99028.375, + 99028.4166666667, 99028.4583333333, 99028.5, 99028.5416666667, + 99028.5833333333, 99028.625, 99028.6666666667, 99028.7083333333, + 99028.75, 99028.7916666667, 99028.8333333333, 99028.875, + 99028.9166666667, 99028.9583333333, 99029, 99029.0416666667, + 99029.0833333333, 99029.125, 99029.1666666667, 99029.2083333333, + 99029.25, 99029.2916666667, 99029.3333333333, 99029.375, + 99029.4166666667, 99029.4583333333, 99029.5, 99029.5416666667, + 99029.5833333333, 99029.625, 99029.6666666667, 99029.7083333333, + 99029.75, 99029.7916666667, 99029.8333333333, 99029.875, + 99029.9166666667, 99029.9583333333, 99030, 99030.0416666667, + 99030.0833333333, 99030.125, 99030.1666666667, 99030.2083333333, + 99030.25, 99030.2916666667, 99030.3333333333, 99030.375, + 99030.4166666667, 99030.4583333333, 99030.5, 99030.5416666667, + 99030.5833333333, 99030.625, 99030.6666666667, 99030.7083333333, + 99030.75, 99030.7916666667, 99030.8333333333, 99030.875, + 99030.9166666667, 99030.9583333333, 99031, 99031.0416666667, + 99031.0833333333, 99031.125, 99031.1666666667, 99031.2083333333, + 99031.25, 99031.2916666667, 99031.3333333333, 99031.375, + 99031.4166666667, 99031.4583333333, 99031.5, 99031.5416666667, + 99031.5833333333, 99031.625, 99031.6666666667, 99031.7083333333, + 99031.75, 99031.7916666667, 99031.8333333333, 99031.875, + 99031.9166666667, 99031.9583333333, 99032, 99032.0416666667, + 99032.0833333333, 99032.125, 99032.1666666667, 99032.2083333333, + 99032.25, 99032.2916666667, 99032.3333333333, 99032.375, + 99032.4166666667, 99032.4583333333, 99032.5, 99032.5416666667, + 99032.5833333333, 99032.625, 99032.6666666667, 99032.7083333333, + 99032.75, 99032.7916666667, 99032.8333333333, 99032.875, + 99032.9166666667, 99032.9583333333, 99033, 99033.0416666667, + 99033.0833333333, 99033.125, 99033.1666666667, 99033.2083333333, + 99033.25, 99033.2916666667, 99033.3333333333, 99033.375, + 99033.4166666667, 99033.4583333333, 99033.5, 99033.5416666667, + 99033.5833333333, 99033.625, 99033.6666666667, 99033.7083333333, + 99033.75, 99033.7916666667, 99033.8333333333, 99033.875, + 99033.9166666667, 99033.9583333333, 99034, 99034.0416666667, + 99034.0833333333, 99034.125, 99034.1666666667, 99034.2083333333, + 99034.25, 99034.2916666667, 99034.3333333333, 99034.375, + 99034.4166666667, 99034.4583333333, 99034.5, 99034.5416666667, + 99034.5833333333, 99034.625, 99034.6666666667, 99034.7083333333, + 99034.75, 99034.7916666667, 99034.8333333333, 99034.875, + 99034.9166666667, 99034.9583333333, 99035, 99035.0416666667, + 99035.0833333333, 99035.125, 99035.1666666667, 99035.2083333333, + 99035.25, 99035.2916666667, 99035.3333333333, 99035.375, + 99035.4166666667, 99035.4583333333, 99035.5, 99035.5416666667, + 99035.5833333333, 99035.625, 99035.6666666667, 99035.7083333333, + 99035.75, 99035.7916666667, 99035.8333333333, 99035.875, + 99035.9166666667, 99035.9583333333, 99036, 99036.0416666667, + 99036.0833333333, 99036.125, 99036.1666666667, 99036.2083333333, + 99036.25, 99036.2916666667, 99036.3333333333, 99036.375, + 99036.4166666667, 99036.4583333333, 99036.5, 99036.5416666667, + 99036.5833333333, 99036.625, 99036.6666666667, 99036.7083333333, + 99036.75, 99036.7916666667, 99036.8333333333, 99036.875, + 99036.9166666667, 99036.9583333333, 99037, 99037.0416666667, + 99037.0833333333, 99037.125, 99037.1666666667, 99037.2083333333, + 99037.25, 99037.2916666667, 99037.3333333333, 99037.375, + 99037.4166666667, 99037.4583333333, 99037.5, 99037.5416666667, + 99037.5833333333, 99037.625, 99037.6666666667, 99037.7083333333, + 99037.75, 99037.7916666667, 99037.8333333333, 99037.875, + 99037.9166666667, 99037.9583333333, 99038, 99038.0416666667, + 99038.0833333333, 99038.125, 99038.1666666667, 99038.2083333333, + 99038.25, 99038.2916666667, 99038.3333333333, 99038.375, + 99038.4166666667, 99038.4583333333, 99038.5, 99038.5416666667, + 99038.5833333333, 99038.625, 99038.6666666667, 99038.7083333333, + 99038.75, 99038.7916666667, 99038.8333333333, 99038.875, + 99038.9166666667, 99038.9583333333, 99039, 99039.0416666667, + 99039.0833333333, 99039.125, 99039.1666666667, 99039.2083333333, + 99039.25, 99039.2916666667, 99039.3333333333, 99039.375, + 99039.4166666667, 99039.4583333333, 99039.5, 99039.5416666667, + 99039.5833333333, 99039.625, 99039.6666666667, 99039.7083333333, + 99039.75, 99039.7916666667, 99039.8333333333, 99039.875, + 99039.9166666667, 99039.9583333333, 99040, 99040.0416666667, + 99040.0833333333, 99040.125, 99040.1666666667, 99040.2083333333, + 99040.25, 99040.2916666667, 99040.3333333333, 99040.375, + 99040.4166666667, 99040.4583333333, 99040.5, 99040.5416666667, + 99040.5833333333, 99040.625, 99040.6666666667, 99040.7083333333, + 99040.75, 99040.7916666667, 99040.8333333333, 99040.875, + 99040.9166666667, 99040.9583333333, 99041, 99041.0416666667, + 99041.0833333333, 99041.125, 99041.1666666667, 99041.2083333333, + 99041.25, 99041.2916666667, 99041.3333333333, 99041.375, + 99041.4166666667, 99041.4583333333, 99041.5, 99041.5416666667, + 99041.5833333333, 99041.625, 99041.6666666667, 99041.7083333333, + 99041.75, 99041.7916666667, 99041.8333333333, 99041.875, + 99041.9166666667, 99041.9583333333, 99042, 99042.0416666667, + 99042.0833333333, 99042.125, 99042.1666666667, 99042.2083333333, + 99042.25, 99042.2916666667, 99042.3333333333, 99042.375, + 99042.4166666667, 99042.4583333333, 99042.5, 99042.5416666667, + 99042.5833333333, 99042.625, 99042.6666666667, 99042.7083333333, + 99042.75, 99042.7916666667, 99042.8333333333, 99042.875, + 99042.9166666667, 99042.9583333333, 99043, 99043.0416666667, + 99043.0833333333, 99043.125, 99043.1666666667, 99043.2083333333, + 99043.25, 99043.2916666667, 99043.3333333333, 99043.375, + 99043.4166666667, 99043.4583333333, 99043.5, 99043.5416666667, + 99043.5833333333, 99043.625, 99043.6666666667, 99043.7083333333, + 99043.75, 99043.7916666667, 99043.8333333333, 99043.875, + 99043.9166666667, 99043.9583333333, 99044, 99044.0416666667, + 99044.0833333333, 99044.125, 99044.1666666667, 99044.2083333333, + 99044.25, 99044.2916666667, 99044.3333333333, 99044.375, + 99044.4166666667, 99044.4583333333, 99044.5, 99044.5416666667, + 99044.5833333333, 99044.625, 99044.6666666667, 99044.7083333333, + 99044.75, 99044.7916666667, 99044.8333333333, 99044.875, + 99044.9166666667, 99044.9583333333, 99045, 99045.0416666667, + 99045.0833333333, 99045.125, 99045.1666666667, 99045.2083333333, + 99045.25, 99045.2916666667, 99045.3333333333, 99045.375, + 99045.4166666667, 99045.4583333333, 99045.5, 99045.5416666667, + 99045.5833333333, 99045.625, 99045.6666666667, 99045.7083333333, + 99045.75, 99045.7916666667, 99045.8333333333, 99045.875, + 99045.9166666667, 99045.9583333333, 99046, 99046.0416666667, + 99046.0833333333, 99046.125, 99046.1666666667, 99046.2083333333, + 99046.25, 99046.2916666667, 99046.3333333333, 99046.375, + 99046.4166666667, 99046.4583333333, 99046.5, 99046.5416666667, + 99046.5833333333, 99046.625, 99046.6666666667, 99046.7083333333, + 99046.75, 99046.7916666667, 99046.8333333333, 99046.875, + 99046.9166666667, 99046.9583333333, 99047, 99047.0416666667, + 99047.0833333333, 99047.125, 99047.1666666667, 99047.2083333333, + 99047.25, 99047.2916666667, 99047.3333333333, 99047.375, + 99047.4166666667, 99047.4583333333, 99047.5, 99047.5416666667, + 99047.5833333333, 99047.625, 99047.6666666667, 99047.7083333333, + 99047.75, 99047.7916666667, 99047.8333333333, 99047.875, + 99047.9166666667, 99047.9583333333, 99048, 99048.0416666667, + 99048.0833333333, 99048.125, 99048.1666666667, 99048.2083333333, + 99048.25, 99048.2916666667, 99048.3333333333, 99048.375, + 99048.4166666667, 99048.4583333333, 99048.5, 99048.5416666667, + 99048.5833333333, 99048.625, 99048.6666666667, 99048.7083333333, + 99048.75, 99048.7916666667, 99048.8333333333, 99048.875, + 99048.9166666667, 99048.9583333333, 99049, 99049.0416666667, + 99049.0833333333, 99049.125, 99049.1666666667, 99049.2083333333, + 99049.25, 99049.2916666667, 99049.3333333333, 99049.375, + 99049.4166666667, 99049.4583333333, 99049.5, 99049.5416666667, + 99049.5833333333, 99049.625, 99049.6666666667, 99049.7083333333, + 99049.75, 99049.7916666667, 99049.8333333333, 99049.875, + 99049.9166666667, 99049.9583333333, 99050, 99050.0416666667, + 99050.0833333333, 99050.125, 99050.1666666667, 99050.2083333333, + 99050.25, 99050.2916666667, 99050.3333333333, 99050.375, + 99050.4166666667, 99050.4583333333, 99050.5, 99050.5416666667, + 99050.5833333333, 99050.625, 99050.6666666667, 99050.7083333333, + 99050.75, 99050.7916666667, 99050.8333333333, 99050.875, + 99050.9166666667, 99050.9583333333, 99051, 99051.0416666667, + 99051.0833333333, 99051.125, 99051.1666666667, 99051.2083333333, + 99051.25, 99051.2916666667, 99051.3333333333, 99051.375, + 99051.4166666667, 99051.4583333333, 99051.5, 99051.5416666667, + 99051.5833333333, 99051.625, 99051.6666666667, 99051.7083333333, + 99051.75, 99051.7916666667, 99051.8333333333, 99051.875, + 99051.9166666667, 99051.9583333333, 99052, 99052.0416666667, + 99052.0833333333, 99052.125, 99052.1666666667, 99052.2083333333, + 99052.25, 99052.2916666667, 99052.3333333333, 99052.375, + 99052.4166666667, 99052.4583333333, 99052.5, 99052.5416666667, + 99052.5833333333, 99052.625, 99052.6666666667, 99052.7083333333, + 99052.75, 99052.7916666667, 99052.8333333333, 99052.875, + 99052.9166666667, 99052.9583333333, 99053, 99053.0416666667, + 99053.0833333333, 99053.125, 99053.1666666667, 99053.2083333333, + 99053.25, 99053.2916666667, 99053.3333333333, 99053.375, + 99053.4166666667, 99053.4583333333, 99053.5, 99053.5416666667, + 99053.5833333333, 99053.625, 99053.6666666667, 99053.7083333333, + 99053.75, 99053.7916666667, 99053.8333333333, 99053.875, + 99053.9166666667, 99053.9583333333, 99054, 99054.0416666667, + 99054.0833333333, 99054.125, 99054.1666666667, 99054.2083333333, + 99054.25, 99054.2916666667, 99054.3333333333, 99054.375, + 99054.4166666667, 99054.4583333333, 99054.5, 99054.5416666667, + 99054.5833333333, 99054.625, 99054.6666666667, 99054.7083333333, + 99054.75, 99054.7916666667, 99054.8333333333, 99054.875, + 99054.9166666667, 99054.9583333333, 99055, 99055.0416666667, + 99055.0833333333, 99055.125, 99055.1666666667, 99055.2083333333, + 99055.25, 99055.2916666667, 99055.3333333333, 99055.375, + 99055.4166666667, 99055.4583333333, 99055.5, 99055.5416666667, + 99055.5833333333, 99055.625, 99055.6666666667, 99055.7083333333, + 99055.75, 99055.7916666667, 99055.8333333333, 99055.875, + 99055.9166666667, 99055.9583333333, 99056, 99056.0416666667, + 99056.0833333333, 99056.125, 99056.1666666667, 99056.2083333333, + 99056.25, 99056.2916666667, 99056.3333333333, 99056.375, + 99056.4166666667, 99056.4583333333, 99056.5, 99056.5416666667, + 99056.5833333333, 99056.625, 99056.6666666667, 99056.7083333333, + 99056.75, 99056.7916666667, 99056.8333333333, 99056.875, + 99056.9166666667, 99056.9583333333, 99057, 99057.0416666667, + 99057.0833333333, 99057.125, 99057.1666666667, 99057.2083333333, + 99057.25, 99057.2916666667, 99057.3333333333, 99057.375, + 99057.4166666667, 99057.4583333333, 99057.5, 99057.5416666667, + 99057.5833333333, 99057.625, 99057.6666666667, 99057.7083333333, + 99057.75, 99057.7916666667, 99057.8333333333, 99057.875, + 99057.9166666667, 99057.9583333333, 99058, 99058.0416666667, + 99058.0833333333, 99058.125, 99058.1666666667, 99058.2083333333, + 99058.25, 99058.2916666667, 99058.3333333333, 99058.375, + 99058.4166666667, 99058.4583333333, 99058.5, 99058.5416666667, + 99058.5833333333, 99058.625, 99058.6666666667, 99058.7083333333, + 99058.75, 99058.7916666667, 99058.8333333333, 99058.875, + 99058.9166666667, 99058.9583333333, 99059, 99059.0416666667, + 99059.0833333333, 99059.125, 99059.1666666667, 99059.2083333333, + 99059.25, 99059.2916666667, 99059.3333333333, 99059.375, + 99059.4166666667, 99059.4583333333, 99059.5, 99059.5416666667, + 99059.5833333333, 99059.625, 99059.6666666667, 99059.7083333333, + 99059.75, 99059.7916666667, 99059.8333333333, 99059.875, + 99059.9166666667, 99059.9583333333, 99060, 99060.0416666667, + 99060.0833333333, 99060.125, 99060.1666666667, 99060.2083333333, + 99060.25, 99060.2916666667, 99060.3333333333, 99060.375, + 99060.4166666667, 99060.4583333333, 99060.5, 99060.5416666667, + 99060.5833333333, 99060.625, 99060.6666666667, 99060.7083333333, + 99060.75, 99060.7916666667, 99060.8333333333, 99060.875, + 99060.9166666667, 99060.9583333333, 99061, 99061.0416666667, + 99061.0833333333, 99061.125, 99061.1666666667, 99061.2083333333, + 99061.25, 99061.2916666667, 99061.3333333333, 99061.375, + 99061.4166666667, 99061.4583333333, 99061.5, 99061.5416666667, + 99061.5833333333, 99061.625, 99061.6666666667, 99061.7083333333, + 99061.75, 99061.7916666667, 99061.8333333333, 99061.875, + 99061.9166666667, 99061.9583333333, 99062, 99062.0416666667, + 99062.0833333333, 99062.125, 99062.1666666667, 99062.2083333333, + 99062.25, 99062.2916666667, 99062.3333333333, 99062.375, + 99062.4166666667, 99062.4583333333, 99062.5, 99062.5416666667, + 99062.5833333333, 99062.625, 99062.6666666667, 99062.7083333333, + 99062.75, 99062.7916666667, 99062.8333333333, 99062.875, + 99062.9166666667, 99062.9583333333, 99063, 99063.0416666667, + 99063.0833333333, 99063.125, 99063.1666666667, 99063.2083333333, + 99063.25, 99063.2916666667, 99063.3333333333, 99063.375, + 99063.4166666667, 99063.4583333333, 99063.5, 99063.5416666667, + 99063.5833333333, 99063.625, 99063.6666666667, 99063.7083333333, + 99063.75, 99063.7916666667, 99063.8333333333, 99063.875, + 99063.9166666667, 99063.9583333333, 99064, 99064.0416666667, + 99064.0833333333, 99064.125, 99064.1666666667, 99064.2083333333, + 99064.25, 99064.2916666667, 99064.3333333333, 99064.375, + 99064.4166666667, 99064.4583333333, 99064.5, 99064.5416666667, + 99064.5833333333, 99064.625, 99064.6666666667, 99064.7083333333, + 99064.75, 99064.7916666667, 99064.8333333333, 99064.875, + 99064.9166666667, 99064.9583333333, 99065, 99065.0416666667, + 99065.0833333333, 99065.125, 99065.1666666667, 99065.2083333333, + 99065.25, 99065.2916666667, 99065.3333333333, 99065.375, + 99065.4166666667, 99065.4583333333, 99065.5, 99065.5416666667, + 99065.5833333333, 99065.625, 99065.6666666667, 99065.7083333333, + 99065.75, 99065.7916666667, 99065.8333333333, 99065.875, + 99065.9166666667, 99065.9583333333, 99066, 99066.0416666667, + 99066.0833333333, 99066.125, 99066.1666666667, 99066.2083333333, + 99066.25, 99066.2916666667, 99066.3333333333, 99066.375, + 99066.4166666667, 99066.4583333333, 99066.5, 99066.5416666667, + 99066.5833333333, 99066.625, 99066.6666666667, 99066.7083333333, + 99066.75, 99066.7916666667, 99066.8333333333, 99066.875, + 99066.9166666667, 99066.9583333333, 99067, 99067.0416666667, + 99067.0833333333, 99067.125, 99067.1666666667, 99067.2083333333, + 99067.25, 99067.2916666667, 99067.3333333333, 99067.375, + 99067.4166666667, 99067.4583333333, 99067.5, 99067.5416666667, + 99067.5833333333, 99067.625, 99067.6666666667, 99067.7083333333, + 99067.75, 99067.7916666667, 99067.8333333333, 99067.875, + 99067.9166666667, 99067.9583333333, 99068, 99068.0416666667, + 99068.0833333333, 99068.125, 99068.1666666667, 99068.2083333333, + 99068.25, 99068.2916666667, 99068.3333333333, 99068.375, + 99068.4166666667, 99068.4583333333, 99068.5, 99068.5416666667, + 99068.5833333333, 99068.625, 99068.6666666667, 99068.7083333333, + 99068.75, 99068.7916666667, 99068.8333333333, 99068.875, + 99068.9166666667, 99068.9583333333, 99069, 99069.0416666667, + 99069.0833333333, 99069.125, 99069.1666666667, 99069.2083333333, + 99069.25, 99069.2916666667, 99069.3333333333, 99069.375, + 99069.4166666667, 99069.4583333333, 99069.5, 99069.5416666667, + 99069.5833333333, 99069.625, 99069.6666666667, 99069.7083333333, + 99069.75, 99069.7916666667, 99069.8333333333, 99069.875, + 99069.9166666667, 99069.9583333333, 99070, 99070.0416666667, + 99070.0833333333, 99070.125, 99070.1666666667, 99070.2083333333, + 99070.25, 99070.2916666667, 99070.3333333333, 99070.375, + 99070.4166666667, 99070.4583333333, 99070.5, 99070.5416666667, + 99070.5833333333, 99070.625, 99070.6666666667, 99070.7083333333, + 99070.75, 99070.7916666667, 99070.8333333333, 99070.875, + 99070.9166666667, 99070.9583333333, 99071, 99071.0416666667, + 99071.0833333333, 99071.125, 99071.1666666667, 99071.2083333333, + 99071.25, 99071.2916666667, 99071.3333333333, 99071.375, + 99071.4166666667, 99071.4583333333, 99071.5, 99071.5416666667, + 99071.5833333333, 99071.625, 99071.6666666667, 99071.7083333333, + 99071.75, 99071.7916666667, 99071.8333333333, 99071.875, + 99071.9166666667, 99071.9583333333, 99072, 99072.0416666667, + 99072.0833333333, 99072.125, 99072.1666666667, 99072.2083333333, + 99072.25, 99072.2916666667, 99072.3333333333, 99072.375, + 99072.4166666667, 99072.4583333333, 99072.5, 99072.5416666667, + 99072.5833333333, 99072.625, 99072.6666666667, 99072.7083333333, + 99072.75, 99072.7916666667, 99072.8333333333, 99072.875, + 99072.9166666667, 99072.9583333333, 99073, 99073.0416666667, + 99073.0833333333, 99073.125, 99073.1666666667, 99073.2083333333, + 99073.25, 99073.2916666667, 99073.3333333333, 99073.375, + 99073.4166666667, 99073.4583333333, 99073.5, 99073.5416666667, + 99073.5833333333, 99073.625, 99073.6666666667, 99073.7083333333, + 99073.75, 99073.7916666667, 99073.8333333333, 99073.875, + 99073.9166666667, 99073.9583333333, 99074, 99074.0416666667, + 99074.0833333333, 99074.125, 99074.1666666667, 99074.2083333333, + 99074.25, 99074.2916666667, 99074.3333333333, 99074.375, + 99074.4166666667, 99074.4583333333, 99074.5, 99074.5416666667, + 99074.5833333333, 99074.625, 99074.6666666667, 99074.7083333333, + 99074.75, 99074.7916666667, 99074.8333333333, 99074.875, + 99074.9166666667, 99074.9583333333, 99075, 99075.0416666667, + 99075.0833333333, 99075.125, 99075.1666666667, 99075.2083333333, + 99075.25, 99075.2916666667, 99075.3333333333, 99075.375, + 99075.4166666667, 99075.4583333333, 99075.5, 99075.5416666667, + 99075.5833333333, 99075.625, 99075.6666666667, 99075.7083333333, + 99075.75, 99075.7916666667, 99075.8333333333, 99075.875, + 99075.9166666667, 99075.9583333333, 99076, 99076.0416666667, + 99076.0833333333, 99076.125, 99076.1666666667, 99076.2083333333, + 99076.25, 99076.2916666667, 99076.3333333333, 99076.375, + 99076.4166666667, 99076.4583333333, 99076.5, 99076.5416666667, + 99076.5833333333, 99076.625, 99076.6666666667, 99076.7083333333, + 99076.75, 99076.7916666667, 99076.8333333333, 99076.875, + 99076.9166666667, 99076.9583333333, 99077, 99077.0416666667, + 99077.0833333333, 99077.125, 99077.1666666667, 99077.2083333333, + 99077.25, 99077.2916666667, 99077.3333333333, 99077.375, + 99077.4166666667, 99077.4583333333, 99077.5, 99077.5416666667, + 99077.5833333333, 99077.625, 99077.6666666667, 99077.7083333333, + 99077.75, 99077.7916666667, 99077.8333333333, 99077.875, + 99077.9166666667, 99077.9583333333, 99078, 99078.0416666667, + 99078.0833333333, 99078.125, 99078.1666666667, 99078.2083333333, + 99078.25, 99078.2916666667, 99078.3333333333, 99078.375, + 99078.4166666667, 99078.4583333333, 99078.5, 99078.5416666667, + 99078.5833333333, 99078.625, 99078.6666666667, 99078.7083333333, + 99078.75, 99078.7916666667, 99078.8333333333, 99078.875, + 99078.9166666667, 99078.9583333333, 99079, 99079.0416666667, + 99079.0833333333, 99079.125, 99079.1666666667, 99079.2083333333, + 99079.25, 99079.2916666667, 99079.3333333333, 99079.375, + 99079.4166666667, 99079.4583333333, 99079.5, 99079.5416666667, + 99079.5833333333, 99079.625, 99079.6666666667, 99079.7083333333, + 99079.75, 99079.7916666667, 99079.8333333333, 99079.875, + 99079.9166666667, 99079.9583333333, 99080, 99080.0416666667, + 99080.0833333333, 99080.125, 99080.1666666667, 99080.2083333333, + 99080.25, 99080.2916666667, 99080.3333333333, 99080.375, + 99080.4166666667, 99080.4583333333, 99080.5, 99080.5416666667, + 99080.5833333333, 99080.625, 99080.6666666667, 99080.7083333333, + 99080.75, 99080.7916666667, 99080.8333333333, 99080.875, + 99080.9166666667, 99080.9583333333, 99081, 99081.0416666667, + 99081.0833333333, 99081.125, 99081.1666666667, 99081.2083333333, + 99081.25, 99081.2916666667, 99081.3333333333, 99081.375, + 99081.4166666667, 99081.4583333333, 99081.5, 99081.5416666667, + 99081.5833333333, 99081.625, 99081.6666666667, 99081.7083333333, + 99081.75, 99081.7916666667, 99081.8333333333, 99081.875, + 99081.9166666667, 99081.9583333333, 99082, 99082.0416666667, + 99082.0833333333, 99082.125, 99082.1666666667, 99082.2083333333, + 99082.25, 99082.2916666667, 99082.3333333333, 99082.375, + 99082.4166666667, 99082.4583333333, 99082.5, 99082.5416666667, + 99082.5833333333, 99082.625, 99082.6666666667, 99082.7083333333, + 99082.75, 99082.7916666667, 99082.8333333333, 99082.875, + 99082.9166666667, 99082.9583333333, 99083, 99083.0416666667, + 99083.0833333333, 99083.125, 99083.1666666667, 99083.2083333333, + 99083.25, 99083.2916666667, 99083.3333333333, 99083.375, + 99083.4166666667, 99083.4583333333, 99083.5, 99083.5416666667, + 99083.5833333333, 99083.625, 99083.6666666667, 99083.7083333333, + 99083.75, 99083.7916666667, 99083.8333333333, 99083.875, + 99083.9166666667, 99083.9583333333, 99084, 99084.0416666667, + 99084.0833333333, 99084.125, 99084.1666666667, 99084.2083333333, + 99084.25, 99084.2916666667, 99084.3333333333, 99084.375, + 99084.4166666667, 99084.4583333333, 99084.5, 99084.5416666667, + 99084.5833333333, 99084.625, 99084.6666666667, 99084.7083333333, + 99084.75, 99084.7916666667, 99084.8333333333, 99084.875, + 99084.9166666667, 99084.9583333333, 99085, 99085.0416666667, + 99085.0833333333, 99085.125, 99085.1666666667, 99085.2083333333, + 99085.25, 99085.2916666667, 99085.3333333333, 99085.375, + 99085.4166666667, 99085.4583333333, 99085.5, 99085.5416666667, + 99085.5833333333, 99085.625, 99085.6666666667, 99085.7083333333, + 99085.75, 99085.7916666667, 99085.8333333333, 99085.875, + 99085.9166666667, 99085.9583333333, 99086, 99086.0416666667, + 99086.0833333333, 99086.125, 99086.1666666667, 99086.2083333333, + 99086.25, 99086.2916666667, 99086.3333333333, 99086.375, + 99086.4166666667, 99086.4583333333, 99086.5, 99086.5416666667, + 99086.5833333333, 99086.625, 99086.6666666667, 99086.7083333333, + 99086.75, 99086.7916666667, 99086.8333333333, 99086.875, + 99086.9166666667, 99086.9583333333, 99087, 99087.0416666667, + 99087.0833333333, 99087.125, 99087.1666666667, 99087.2083333333, + 99087.25, 99087.2916666667, 99087.3333333333, 99087.375, + 99087.4166666667, 99087.4583333333, 99087.5, 99087.5416666667, + 99087.5833333333, 99087.625, 99087.6666666667, 99087.7083333333, + 99087.75, 99087.7916666667, 99087.8333333333, 99087.875, + 99087.9166666667, 99087.9583333333, 99088, 99088.0416666667, + 99088.0833333333, 99088.125, 99088.1666666667, 99088.2083333333, + 99088.25, 99088.2916666667, 99088.3333333333, 99088.375, + 99088.4166666667, 99088.4583333333, 99088.5, 99088.5416666667, + 99088.5833333333, 99088.625, 99088.6666666667, 99088.7083333333, + 99088.75, 99088.7916666667, 99088.8333333333, 99088.875, + 99088.9166666667, 99088.9583333333, 99089, 99089.0416666667, + 99089.0833333333, 99089.125, 99089.1666666667, 99089.2083333333, + 99089.25, 99089.2916666667, 99089.3333333333, 99089.375, + 99089.4166666667, 99089.4583333333, 99089.5, 99089.5416666667, + 99089.5833333333, 99089.625, 99089.6666666667, 99089.7083333333, + 99089.75, 99089.7916666667, 99089.8333333333, 99089.875, + 99089.9166666667, 99089.9583333333, 99090, 99090.0416666667, + 99090.0833333333, 99090.125, 99090.1666666667, 99090.2083333333, + 99090.25, 99090.2916666667, 99090.3333333333, 99090.375, + 99090.4166666667, 99090.4583333333, 99090.5, 99090.5416666667, + 99090.5833333333, 99090.625, 99090.6666666667, 99090.7083333333, + 99090.75, 99090.7916666667, 99090.8333333333, 99090.875, + 99090.9166666667, 99090.9583333333, 99091, 99091.0416666667, + 99091.0833333333, 99091.125, 99091.1666666667, 99091.2083333333, + 99091.25, 99091.2916666667, 99091.3333333333, 99091.375, + 99091.4166666667, 99091.4583333333, 99091.5, 99091.5416666667, + 99091.5833333333, 99091.625, 99091.6666666667, 99091.7083333333, + 99091.75, 99091.7916666667, 99091.8333333333, 99091.875, + 99091.9166666667, 99091.9583333333, 99092, 99092.0416666667, + 99092.0833333333, 99092.125, 99092.1666666667, 99092.2083333333, + 99092.25, 99092.2916666667, 99092.3333333333, 99092.375, + 99092.4166666667, 99092.4583333333, 99092.5, 99092.5416666667, + 99092.5833333333, 99092.625, 99092.6666666667, 99092.7083333333, + 99092.75, 99092.7916666667, 99092.8333333333, 99092.875, + 99092.9166666667, 99092.9583333333, 99093, 99093.0416666667, + 99093.0833333333, 99093.125, 99093.1666666667, 99093.2083333333, + 99093.25, 99093.2916666667, 99093.3333333333, 99093.375, + 99093.4166666667, 99093.4583333333, 99093.5, 99093.5416666667, + 99093.5833333333, 99093.625, 99093.6666666667, 99093.7083333333, + 99093.75, 99093.7916666667, 99093.8333333333, 99093.875, + 99093.9166666667, 99093.9583333333, 99094, 99094.0416666667, + 99094.0833333333, 99094.125, 99094.1666666667, 99094.2083333333, + 99094.25, 99094.2916666667, 99094.3333333333, 99094.375, + 99094.4166666667, 99094.4583333333, 99094.5, 99094.5416666667, + 99094.5833333333, 99094.625, 99094.6666666667, 99094.7083333333, + 99094.75, 99094.7916666667, 99094.8333333333, 99094.875, + 99094.9166666667, 99094.9583333333, 99095, 99095.0416666667, + 99095.0833333333, 99095.125, 99095.1666666667, 99095.2083333333, + 99095.25, 99095.2916666667, 99095.3333333333, 99095.375, + 99095.4166666667, 99095.4583333333, 99095.5, 99095.5416666667, + 99095.5833333333, 99095.625, 99095.6666666667, 99095.7083333333, + 99095.75, 99095.7916666667, 99095.8333333333, 99095.875, + 99095.9166666667, 99095.9583333333, 99096, 99096.0416666667, + 99096.0833333333, 99096.125, 99096.1666666667, 99096.2083333333, + 99096.25, 99096.2916666667, 99096.3333333333, 99096.375, + 99096.4166666667, 99096.4583333333, 99096.5, 99096.5416666667, + 99096.5833333333, 99096.625, 99096.6666666667, 99096.7083333333, + 99096.75, 99096.7916666667, 99096.8333333333, 99096.875, + 99096.9166666667, 99096.9583333333, 99097, 99097.0416666667, + 99097.0833333333, 99097.125, 99097.1666666667, 99097.2083333333, + 99097.25, 99097.2916666667, 99097.3333333333, 99097.375, + 99097.4166666667, 99097.4583333333, 99097.5, 99097.5416666667, + 99097.5833333333, 99097.625, 99097.6666666667, 99097.7083333333, + 99097.75, 99097.7916666667, 99097.8333333333, 99097.875, + 99097.9166666667, 99097.9583333333, 99098, 99098.0416666667, + 99098.0833333333, 99098.125, 99098.1666666667, 99098.2083333333, + 99098.25, 99098.2916666667, 99098.3333333333, 99098.375, + 99098.4166666667, 99098.4583333333, 99098.5, 99098.5416666667, + 99098.5833333333, 99098.625, 99098.6666666667, 99098.7083333333, + 99098.75, 99098.7916666667, 99098.8333333333, 99098.875, + 99098.9166666667, 99098.9583333333, 99099, 99099.0416666667, + 99099.0833333333, 99099.125, 99099.1666666667, 99099.2083333333, + 99099.25, 99099.2916666667, 99099.3333333333, 99099.375, + 99099.4166666667, 99099.4583333333, 99099.5, 99099.5416666667, + 99099.5833333333, 99099.625, 99099.6666666667, 99099.7083333333, + 99099.75, 99099.7916666667, 99099.8333333333, 99099.875, + 99099.9166666667, 99099.9583333333, 99100, 99100.0416666667, + 99100.0833333333, 99100.125, 99100.1666666667, 99100.2083333333, + 99100.25, 99100.2916666667, 99100.3333333333, 99100.375, + 99100.4166666667, 99100.4583333333, 99100.5, 99100.5416666667, + 99100.5833333333, 99100.625, 99100.6666666667, 99100.7083333333, + 99100.75, 99100.7916666667, 99100.8333333333, 99100.875, + 99100.9166666667, 99100.9583333333, 99101, 99101.0416666667, + 99101.0833333333, 99101.125, 99101.1666666667, 99101.2083333333, + 99101.25, 99101.2916666667, 99101.3333333333, 99101.375, + 99101.4166666667, 99101.4583333333, 99101.5, 99101.5416666667, + 99101.5833333333, 99101.625, 99101.6666666667, 99101.7083333333, + 99101.75, 99101.7916666667, 99101.8333333333, 99101.875, + 99101.9166666667, 99101.9583333333, 99102, 99102.0416666667, + 99102.0833333333, 99102.125, 99102.1666666667, 99102.2083333333, + 99102.25, 99102.2916666667, 99102.3333333333, 99102.375, + 99102.4166666667, 99102.4583333333, 99102.5, 99102.5416666667, + 99102.5833333333, 99102.625, 99102.6666666667, 99102.7083333333, + 99102.75, 99102.7916666667, 99102.8333333333, 99102.875, + 99102.9166666667, 99102.9583333333, 99103, 99103.0416666667, + 99103.0833333333, 99103.125, 99103.1666666667, 99103.2083333333, + 99103.25, 99103.2916666667, 99103.3333333333, 99103.375, + 99103.4166666667, 99103.4583333333, 99103.5, 99103.5416666667, + 99103.5833333333, 99103.625, 99103.6666666667, 99103.7083333333, + 99103.75, 99103.7916666667, 99103.8333333333, 99103.875, + 99103.9166666667, 99103.9583333333, 99104, 99104.0416666667, + 99104.0833333333, 99104.125, 99104.1666666667, 99104.2083333333, + 99104.25, 99104.2916666667, 99104.3333333333, 99104.375, + 99104.4166666667, 99104.4583333333, 99104.5, 99104.5416666667, + 99104.5833333333, 99104.625, 99104.6666666667, 99104.7083333333, + 99104.75, 99104.7916666667, 99104.8333333333, 99104.875, + 99104.9166666667, 99104.9583333333, 99105, 99105.0416666667, + 99105.0833333333, 99105.125, 99105.1666666667, 99105.2083333333, + 99105.25, 99105.2916666667, 99105.3333333333, 99105.375, + 99105.4166666667, 99105.4583333333, 99105.5, 99105.5416666667, + 99105.5833333333, 99105.625, 99105.6666666667, 99105.7083333333, + 99105.75, 99105.7916666667, 99105.8333333333, 99105.875, + 99105.9166666667, 99105.9583333333, 99106, 99106.0416666667, + 99106.0833333333, 99106.125, 99106.1666666667, 99106.2083333333, + 99106.25, 99106.2916666667, 99106.3333333333, 99106.375, + 99106.4166666667, 99106.4583333333, 99106.5, 99106.5416666667, + 99106.5833333333, 99106.625, 99106.6666666667, 99106.7083333333, + 99106.75, 99106.7916666667, 99106.8333333333, 99106.875, + 99106.9166666667, 99106.9583333333, 99107, 99107.0416666667, + 99107.0833333333, 99107.125, 99107.1666666667, 99107.2083333333, + 99107.25, 99107.2916666667, 99107.3333333333, 99107.375, + 99107.4166666667, 99107.4583333333, 99107.5, 99107.5416666667, + 99107.5833333333, 99107.625, 99107.6666666667, 99107.7083333333, + 99107.75, 99107.7916666667, 99107.8333333333, 99107.875, + 99107.9166666667, 99107.9583333333, 99108, 99108.0416666667, + 99108.0833333333, 99108.125, 99108.1666666667, 99108.2083333333, + 99108.25, 99108.2916666667, 99108.3333333333, 99108.375, + 99108.4166666667, 99108.4583333333, 99108.5, 99108.5416666667, + 99108.5833333333, 99108.625, 99108.6666666667, 99108.7083333333, + 99108.75, 99108.7916666667, 99108.8333333333, 99108.875, + 99108.9166666667, 99108.9583333333, 99109, 99109.0416666667, + 99109.0833333333, 99109.125, 99109.1666666667, 99109.2083333333, + 99109.25, 99109.2916666667, 99109.3333333333, 99109.375, + 99109.4166666667, 99109.4583333333, 99109.5, 99109.5416666667, + 99109.5833333333, 99109.625, 99109.6666666667, 99109.7083333333, + 99109.75, 99109.7916666667, 99109.8333333333, 99109.875, + 99109.9166666667, 99109.9583333333, 99110, 99110.0416666667, + 99110.0833333333, 99110.125, 99110.1666666667, 99110.2083333333, + 99110.25, 99110.2916666667, 99110.3333333333, 99110.375, + 99110.4166666667, 99110.4583333333, 99110.5, 99110.5416666667, + 99110.5833333333, 99110.625, 99110.6666666667, 99110.7083333333, + 99110.75, 99110.7916666667, 99110.8333333333, 99110.875, + 99110.9166666667, 99110.9583333333, 99111, 99111.0416666667, + 99111.0833333333, 99111.125, 99111.1666666667, 99111.2083333333, + 99111.25, 99111.2916666667, 99111.3333333333, 99111.375, + 99111.4166666667, 99111.4583333333, 99111.5, 99111.5416666667, + 99111.5833333333, 99111.625, 99111.6666666667, 99111.7083333333, + 99111.75, 99111.7916666667, 99111.8333333333, 99111.875, + 99111.9166666667, 99111.9583333333, 99112, 99112.0416666667, + 99112.0833333333, 99112.125, 99112.1666666667, 99112.2083333333, + 99112.25, 99112.2916666667, 99112.3333333333, 99112.375, + 99112.4166666667, 99112.4583333333, 99112.5, 99112.5416666667, + 99112.5833333333, 99112.625, 99112.6666666667, 99112.7083333333, + 99112.75, 99112.7916666667, 99112.8333333333, 99112.875, + 99112.9166666667, 99112.9583333333, 99113, 99113.0416666667, + 99113.0833333333, 99113.125, 99113.1666666667, 99113.2083333333, + 99113.25, 99113.2916666667, 99113.3333333333, 99113.375, + 99113.4166666667, 99113.4583333333, 99113.5, 99113.5416666667, + 99113.5833333333, 99113.625, 99113.6666666667, 99113.7083333333, + 99113.75, 99113.7916666667, 99113.8333333333, 99113.875, + 99113.9166666667, 99113.9583333333, 99114, 99114.0416666667, + 99114.0833333333, 99114.125, 99114.1666666667, 99114.2083333333, + 99114.25, 99114.2916666667, 99114.3333333333, 99114.375, + 99114.4166666667, 99114.4583333333, 99114.5, 99114.5416666667, + 99114.5833333333, 99114.625, 99114.6666666667, 99114.7083333333, + 99114.75, 99114.7916666667, 99114.8333333333, 99114.875, + 99114.9166666667, 99114.9583333333, 99115, 99115.0416666667, + 99115.0833333333, 99115.125, 99115.1666666667, 99115.2083333333, + 99115.25, 99115.2916666667, 99115.3333333333, 99115.375, + 99115.4166666667, 99115.4583333333, 99115.5, 99115.5416666667, + 99115.5833333333, 99115.625, 99115.6666666667, 99115.7083333333, + 99115.75, 99115.7916666667, 99115.8333333333, 99115.875, + 99115.9166666667, 99115.9583333333, 99116, 99116.0416666667, + 99116.0833333333, 99116.125, 99116.1666666667, 99116.2083333333, + 99116.25, 99116.2916666667, 99116.3333333333, 99116.375, + 99116.4166666667, 99116.4583333333, 99116.5, 99116.5416666667, + 99116.5833333333, 99116.625, 99116.6666666667, 99116.7083333333, + 99116.75, 99116.7916666667, 99116.8333333333, 99116.875, + 99116.9166666667, 99116.9583333333, 99117, 99117.0416666667, + 99117.0833333333, 99117.125, 99117.1666666667, 99117.2083333333, + 99117.25, 99117.2916666667, 99117.3333333333, 99117.375, + 99117.4166666667, 99117.4583333333, 99117.5, 99117.5416666667, + 99117.5833333333, 99117.625, 99117.6666666667, 99117.7083333333, + 99117.75, 99117.7916666667, 99117.8333333333, 99117.875, + 99117.9166666667, 99117.9583333333, 99118, 99118.0416666667, + 99118.0833333333, 99118.125, 99118.1666666667, 99118.2083333333, + 99118.25, 99118.2916666667, 99118.3333333333, 99118.375, + 99118.4166666667, 99118.4583333333, 99118.5, 99118.5416666667, + 99118.5833333333, 99118.625, 99118.6666666667, 99118.7083333333, + 99118.75, 99118.7916666667, 99118.8333333333, 99118.875, + 99118.9166666667, 99118.9583333333, 99119, 99119.0416666667, + 99119.0833333333, 99119.125, 99119.1666666667, 99119.2083333333, + 99119.25, 99119.2916666667, 99119.3333333333, 99119.375, + 99119.4166666667, 99119.4583333333, 99119.5, 99119.5416666667, + 99119.5833333333, 99119.625, 99119.6666666667, 99119.7083333333, + 99119.75, 99119.7916666667, 99119.8333333333, 99119.875, + 99119.9166666667, 99119.9583333333, 99120, 99120.0416666667, + 99120.0833333333, 99120.125, 99120.1666666667, 99120.2083333333, + 99120.25, 99120.2916666667, 99120.3333333333, 99120.375, + 99120.4166666667, 99120.4583333333, 99120.5, 99120.5416666667, + 99120.5833333333, 99120.625, 99120.6666666667, 99120.7083333333, + 99120.75, 99120.7916666667, 99120.8333333333, 99120.875, + 99120.9166666667, 99120.9583333333, 99121, 99121.0416666667, + 99121.0833333333, 99121.125, 99121.1666666667, 99121.2083333333, + 99121.25, 99121.2916666667, 99121.3333333333, 99121.375, + 99121.4166666667, 99121.4583333333, 99121.5, 99121.5416666667, + 99121.5833333333, 99121.625, 99121.6666666667, 99121.7083333333, + 99121.75, 99121.7916666667, 99121.8333333333, 99121.875, + 99121.9166666667, 99121.9583333333, 99122, 99122.0416666667, + 99122.0833333333, 99122.125, 99122.1666666667, 99122.2083333333, + 99122.25, 99122.2916666667, 99122.3333333333, 99122.375, + 99122.4166666667, 99122.4583333333, 99122.5, 99122.5416666667, + 99122.5833333333, 99122.625, 99122.6666666667, 99122.7083333333, + 99122.75, 99122.7916666667, 99122.8333333333, 99122.875, + 99122.9166666667, 99122.9583333333, 99123, 99123.0416666667, + 99123.0833333333, 99123.125, 99123.1666666667, 99123.2083333333, + 99123.25, 99123.2916666667, 99123.3333333333, 99123.375, + 99123.4166666667, 99123.4583333333, 99123.5, 99123.5416666667, + 99123.5833333333, 99123.625, 99123.6666666667, 99123.7083333333, + 99123.75, 99123.7916666667, 99123.8333333333, 99123.875, + 99123.9166666667, 99123.9583333333, 99124, 99124.0416666667, + 99124.0833333333, 99124.125, 99124.1666666667, 99124.2083333333, + 99124.25, 99124.2916666667, 99124.3333333333, 99124.375, + 99124.4166666667, 99124.4583333333, 99124.5, 99124.5416666667, + 99124.5833333333, 99124.625, 99124.6666666667, 99124.7083333333, + 99124.75, 99124.7916666667, 99124.8333333333, 99124.875, + 99124.9166666667, 99124.9583333333, 99125, 99125.0416666667, + 99125.0833333333, 99125.125, 99125.1666666667, 99125.2083333333, + 99125.25, 99125.2916666667, 99125.3333333333, 99125.375, + 99125.4166666667, 99125.4583333333, 99125.5, 99125.5416666667, + 99125.5833333333, 99125.625, 99125.6666666667, 99125.7083333333, + 99125.75, 99125.7916666667, 99125.8333333333, 99125.875, + 99125.9166666667, 99125.9583333333, 99126, 99126.0416666667, + 99126.0833333333, 99126.125, 99126.1666666667, 99126.2083333333, + 99126.25, 99126.2916666667, 99126.3333333333, 99126.375, + 99126.4166666667, 99126.4583333333, 99126.5, 99126.5416666667, + 99126.5833333333, 99126.625, 99126.6666666667, 99126.7083333333, + 99126.75, 99126.7916666667, 99126.8333333333, 99126.875, + 99126.9166666667, 99126.9583333333, 99127, 99127.0416666667, + 99127.0833333333, 99127.125, 99127.1666666667, 99127.2083333333, + 99127.25, 99127.2916666667, 99127.3333333333, 99127.375, + 99127.4166666667, 99127.4583333333, 99127.5, 99127.5416666667, + 99127.5833333333, 99127.625, 99127.6666666667, 99127.7083333333, + 99127.75, 99127.7916666667, 99127.8333333333, 99127.875, + 99127.9166666667, 99127.9583333333, 99128, 99128.0416666667, + 99128.0833333333, 99128.125, 99128.1666666667, 99128.2083333333, + 99128.25, 99128.2916666667, 99128.3333333333, 99128.375, + 99128.4166666667, 99128.4583333333, 99128.5, 99128.5416666667, + 99128.5833333333, 99128.625, 99128.6666666667, 99128.7083333333, + 99128.75, 99128.7916666667, 99128.8333333333, 99128.875, + 99128.9166666667, 99128.9583333333, 99129, 99129.0416666667, + 99129.0833333333, 99129.125, 99129.1666666667, 99129.2083333333, + 99129.25, 99129.2916666667, 99129.3333333333, 99129.375, + 99129.4166666667, 99129.4583333333, 99129.5, 99129.5416666667, + 99129.5833333333, 99129.625, 99129.6666666667, 99129.7083333333, + 99129.75, 99129.7916666667, 99129.8333333333, 99129.875, + 99129.9166666667, 99129.9583333333, 99130, 99130.0416666667, + 99130.0833333333, 99130.125, 99130.1666666667, 99130.2083333333, + 99130.25, 99130.2916666667, 99130.3333333333, 99130.375, + 99130.4166666667, 99130.4583333333, 99130.5, 99130.5416666667, + 99130.5833333333, 99130.625, 99130.6666666667, 99130.7083333333, + 99130.75, 99130.7916666667, 99130.8333333333, 99130.875, + 99130.9166666667, 99130.9583333333, 99131, 99131.0416666667, + 99131.0833333333, 99131.125, 99131.1666666667, 99131.2083333333, + 99131.25, 99131.2916666667, 99131.3333333333, 99131.375, + 99131.4166666667, 99131.4583333333, 99131.5, 99131.5416666667, + 99131.5833333333, 99131.625, 99131.6666666667, 99131.7083333333, + 99131.75, 99131.7916666667, 99131.8333333333, 99131.875, + 99131.9166666667, 99131.9583333333, 99132, 99132.0416666667, + 99132.0833333333, 99132.125, 99132.1666666667, 99132.2083333333, + 99132.25, 99132.2916666667, 99132.3333333333, 99132.375, + 99132.4166666667, 99132.4583333333, 99132.5, 99132.5416666667, + 99132.5833333333, 99132.625, 99132.6666666667, 99132.7083333333, + 99132.75, 99132.7916666667, 99132.8333333333, 99132.875, + 99132.9166666667, 99132.9583333333, 99133, 99133.0416666667, + 99133.0833333333, 99133.125, 99133.1666666667, 99133.2083333333, + 99133.25, 99133.2916666667, 99133.3333333333, 99133.375, + 99133.4166666667, 99133.4583333333, 99133.5, 99133.5416666667, + 99133.5833333333, 99133.625, 99133.6666666667, 99133.7083333333, + 99133.75, 99133.7916666667, 99133.8333333333, 99133.875, + 99133.9166666667, 99133.9583333333, 99134, 99134.0416666667, + 99134.0833333333, 99134.125, 99134.1666666667, 99134.2083333333, + 99134.25, 99134.2916666667, 99134.3333333333, 99134.375, + 99134.4166666667, 99134.4583333333, 99134.5, 99134.5416666667, + 99134.5833333333, 99134.625, 99134.6666666667, 99134.7083333333, + 99134.75, 99134.7916666667, 99134.8333333333, 99134.875, + 99134.9166666667, 99134.9583333333, 99135, 99135.0416666667, + 99135.0833333333, 99135.125, 99135.1666666667, 99135.2083333333, + 99135.25, 99135.2916666667, 99135.3333333333, 99135.375, + 99135.4166666667, 99135.4583333333, 99135.5, 99135.5416666667, + 99135.5833333333, 99135.625, 99135.6666666667, 99135.7083333333, + 99135.75, 99135.7916666667, 99135.8333333333, 99135.875, + 99135.9166666667, 99135.9583333333, 99136, 99136.0416666667, + 99136.0833333333, 99136.125, 99136.1666666667, 99136.2083333333, + 99136.25, 99136.2916666667, 99136.3333333333, 99136.375, + 99136.4166666667, 99136.4583333333, 99136.5, 99136.5416666667, + 99136.5833333333, 99136.625, 99136.6666666667, 99136.7083333333, + 99136.75, 99136.7916666667, 99136.8333333333, 99136.875, + 99136.9166666667, 99136.9583333333, 99137, 99137.0416666667, + 99137.0833333333, 99137.125, 99137.1666666667, 99137.2083333333, + 99137.25, 99137.2916666667, 99137.3333333333, 99137.375, + 99137.4166666667, 99137.4583333333, 99137.5, 99137.5416666667, + 99137.5833333333, 99137.625, 99137.6666666667, 99137.7083333333, + 99137.75, 99137.7916666667, 99137.8333333333, 99137.875, + 99137.9166666667, 99137.9583333333, 99138, 99138.0416666667, + 99138.0833333333, 99138.125, 99138.1666666667, 99138.2083333333, + 99138.25, 99138.2916666667, 99138.3333333333, 99138.375, + 99138.4166666667, 99138.4583333333, 99138.5, 99138.5416666667, + 99138.5833333333, 99138.625, 99138.6666666667, 99138.7083333333, + 99138.75, 99138.7916666667, 99138.8333333333, 99138.875, + 99138.9166666667, 99138.9583333333, 99139, 99139.0416666667, + 99139.0833333333, 99139.125, 99139.1666666667, 99139.2083333333, + 99139.25, 99139.2916666667, 99139.3333333333, 99139.375, + 99139.4166666667, 99139.4583333333, 99139.5, 99139.5416666667, + 99139.5833333333, 99139.625, 99139.6666666667, 99139.7083333333, + 99139.75, 99139.7916666667, 99139.8333333333, 99139.875, + 99139.9166666667, 99139.9583333333, 99140, 99140.0416666667, + 99140.0833333333, 99140.125, 99140.1666666667, 99140.2083333333, + 99140.25, 99140.2916666667, 99140.3333333333, 99140.375, + 99140.4166666667, 99140.4583333333, 99140.5, 99140.5416666667, + 99140.5833333333, 99140.625, 99140.6666666667, 99140.7083333333, + 99140.75, 99140.7916666667, 99140.8333333333, 99140.875, + 99140.9166666667, 99140.9583333333, 99141, 99141.0416666667, + 99141.0833333333, 99141.125, 99141.1666666667, 99141.2083333333, + 99141.25, 99141.2916666667, 99141.3333333333, 99141.375, + 99141.4166666667, 99141.4583333333, 99141.5, 99141.5416666667, + 99141.5833333333, 99141.625, 99141.6666666667, 99141.7083333333, + 99141.75, 99141.7916666667, 99141.8333333333, 99141.875, + 99141.9166666667, 99141.9583333333, 99142, 99142.0416666667, + 99142.0833333333, 99142.125, 99142.1666666667, 99142.2083333333, + 99142.25, 99142.2916666667, 99142.3333333333, 99142.375, + 99142.4166666667, 99142.4583333333, 99142.5, 99142.5416666667, + 99142.5833333333, 99142.625, 99142.6666666667, 99142.7083333333, + 99142.75, 99142.7916666667, 99142.8333333333, 99142.875, + 99142.9166666667, 99142.9583333333, 99143, 99143.0416666667, + 99143.0833333333, 99143.125, 99143.1666666667, 99143.2083333333, + 99143.25, 99143.2916666667, 99143.3333333333, 99143.375, + 99143.4166666667, 99143.4583333333, 99143.5, 99143.5416666667, + 99143.5833333333, 99143.625, 99143.6666666667, 99143.7083333333, + 99143.75, 99143.7916666667, 99143.8333333333, 99143.875, + 99143.9166666667, 99143.9583333333, 99144, 99144.0416666667, + 99144.0833333333, 99144.125, 99144.1666666667, 99144.2083333333, + 99144.25, 99144.2916666667, 99144.3333333333, 99144.375, + 99144.4166666667, 99144.4583333333, 99144.5, 99144.5416666667, + 99144.5833333333, 99144.625, 99144.6666666667, 99144.7083333333, + 99144.75, 99144.7916666667, 99144.8333333333, 99144.875, + 99144.9166666667, 99144.9583333333, 99145, 99145.0416666667, + 99145.0833333333, 99145.125, 99145.1666666667, 99145.2083333333, + 99145.25, 99145.2916666667, 99145.3333333333, 99145.375, + 99145.4166666667, 99145.4583333333, 99145.5, 99145.5416666667, + 99145.5833333333, 99145.625, 99145.6666666667, 99145.7083333333, + 99145.75, 99145.7916666667, 99145.8333333333, 99145.875, + 99145.9166666667, 99145.9583333333, 99146, 99146.0416666667, + 99146.0833333333, 99146.125, 99146.1666666667, 99146.2083333333, + 99146.25, 99146.2916666667, 99146.3333333333, 99146.375, + 99146.4166666667, 99146.4583333333, 99146.5, 99146.5416666667, + 99146.5833333333, 99146.625, 99146.6666666667, 99146.7083333333, + 99146.75, 99146.7916666667, 99146.8333333333, 99146.875, + 99146.9166666667, 99146.9583333333, 99147, 99147.0416666667, + 99147.0833333333, 99147.125, 99147.1666666667, 99147.2083333333, + 99147.25, 99147.2916666667, 99147.3333333333, 99147.375, + 99147.4166666667, 99147.4583333333, 99147.5, 99147.5416666667, + 99147.5833333333, 99147.625, 99147.6666666667, 99147.7083333333, + 99147.75, 99147.7916666667, 99147.8333333333, 99147.875, + 99147.9166666667, 99147.9583333333, 99148, 99148.0416666667, + 99148.0833333333, 99148.125, 99148.1666666667, 99148.2083333333, + 99148.25, 99148.2916666667, 99148.3333333333, 99148.375, + 99148.4166666667, 99148.4583333333, 99148.5, 99148.5416666667, + 99148.5833333333, 99148.625, 99148.6666666667, 99148.7083333333, + 99148.75, 99148.7916666667, 99148.8333333333, 99148.875, + 99148.9166666667, 99148.9583333333, 99149, 99149.0416666667, + 99149.0833333333, 99149.125, 99149.1666666667, 99149.2083333333, + 99149.25, 99149.2916666667, 99149.3333333333, 99149.375, + 99149.4166666667, 99149.4583333333, 99149.5, 99149.5416666667, + 99149.5833333333, 99149.625, 99149.6666666667, 99149.7083333333, + 99149.75, 99149.7916666667, 99149.8333333333, 99149.875, + 99149.9166666667, 99149.9583333333, 99150, 99150.0416666667, + 99150.0833333333, 99150.125, 99150.1666666667, 99150.2083333333, + 99150.25, 99150.2916666667, 99150.3333333333, 99150.375, + 99150.4166666667, 99150.4583333333, 99150.5, 99150.5416666667, + 99150.5833333333, 99150.625, 99150.6666666667, 99150.7083333333, + 99150.75, 99150.7916666667, 99150.8333333333, 99150.875, + 99150.9166666667, 99150.9583333333, 99151, 99151.0416666667, + 99151.0833333333, 99151.125, 99151.1666666667, 99151.2083333333, + 99151.25, 99151.2916666667, 99151.3333333333, 99151.375, + 99151.4166666667, 99151.4583333333, 99151.5, 99151.5416666667, + 99151.5833333333, 99151.625, 99151.6666666667, 99151.7083333333, + 99151.75, 99151.7916666667, 99151.8333333333, 99151.875, + 99151.9166666667, 99151.9583333333, 99152, 99152.0416666667, + 99152.0833333333, 99152.125, 99152.1666666667, 99152.2083333333, + 99152.25, 99152.2916666667, 99152.3333333333, 99152.375, + 99152.4166666667, 99152.4583333333, 99152.5, 99152.5416666667, + 99152.5833333333, 99152.625, 99152.6666666667, 99152.7083333333, + 99152.75, 99152.7916666667, 99152.8333333333, 99152.875, + 99152.9166666667, 99152.9583333333, 99153, 99153.0416666667, + 99153.0833333333, 99153.125, 99153.1666666667, 99153.2083333333, + 99153.25, 99153.2916666667, 99153.3333333333, 99153.375, + 99153.4166666667, 99153.4583333333, 99153.5, 99153.5416666667, + 99153.5833333333, 99153.625, 99153.6666666667, 99153.7083333333, + 99153.75, 99153.7916666667, 99153.8333333333, 99153.875, + 99153.9166666667, 99153.9583333333, 99154, 99154.0416666667, + 99154.0833333333, 99154.125, 99154.1666666667, 99154.2083333333, + 99154.25, 99154.2916666667, 99154.3333333333, 99154.375, + 99154.4166666667, 99154.4583333333, 99154.5, 99154.5416666667, + 99154.5833333333, 99154.625, 99154.6666666667, 99154.7083333333, + 99154.75, 99154.7916666667, 99154.8333333333, 99154.875, + 99154.9166666667, 99154.9583333333, 99155, 99155.0416666667, + 99155.0833333333, 99155.125, 99155.1666666667, 99155.2083333333, + 99155.25, 99155.2916666667, 99155.3333333333, 99155.375, + 99155.4166666667, 99155.4583333333, 99155.5, 99155.5416666667, + 99155.5833333333, 99155.625, 99155.6666666667, 99155.7083333333, + 99155.75, 99155.7916666667, 99155.8333333333, 99155.875, + 99155.9166666667, 99155.9583333333, 99156, 99156.0416666667, + 99156.0833333333, 99156.125, 99156.1666666667, 99156.2083333333, + 99156.25, 99156.2916666667, 99156.3333333333, 99156.375, + 99156.4166666667, 99156.4583333333, 99156.5, 99156.5416666667, + 99156.5833333333, 99156.625, 99156.6666666667, 99156.7083333333, + 99156.75, 99156.7916666667, 99156.8333333333, 99156.875, + 99156.9166666667, 99156.9583333333, 99157, 99157.0416666667, + 99157.0833333333, 99157.125, 99157.1666666667, 99157.2083333333, + 99157.25, 99157.2916666667, 99157.3333333333, 99157.375, + 99157.4166666667, 99157.4583333333, 99157.5, 99157.5416666667, + 99157.5833333333, 99157.625, 99157.6666666667, 99157.7083333333, + 99157.75, 99157.7916666667, 99157.8333333333, 99157.875, + 99157.9166666667, 99157.9583333333, 99158, 99158.0416666667, + 99158.0833333333, 99158.125, 99158.1666666667, 99158.2083333333, + 99158.25, 99158.2916666667, 99158.3333333333, 99158.375, + 99158.4166666667, 99158.4583333333, 99158.5, 99158.5416666667, + 99158.5833333333, 99158.625, 99158.6666666667, 99158.7083333333, + 99158.75, 99158.7916666667, 99158.8333333333, 99158.875, + 99158.9166666667, 99158.9583333333, 99159, 99159.0416666667, + 99159.0833333333, 99159.125, 99159.1666666667, 99159.2083333333, + 99159.25, 99159.2916666667, 99159.3333333333, 99159.375, + 99159.4166666667, 99159.4583333333, 99159.5, 99159.5416666667, + 99159.5833333333, 99159.625, 99159.6666666667, 99159.7083333333, + 99159.75, 99159.7916666667, 99159.8333333333, 99159.875, + 99159.9166666667, 99159.9583333333, 99160, 99160.0416666667, + 99160.0833333333, 99160.125, 99160.1666666667, 99160.2083333333, + 99160.25, 99160.2916666667, 99160.3333333333, 99160.375, + 99160.4166666667, 99160.4583333333, 99160.5, 99160.5416666667, + 99160.5833333333, 99160.625, 99160.6666666667, 99160.7083333333, + 99160.75, 99160.7916666667, 99160.8333333333, 99160.875, + 99160.9166666667, 99160.9583333333, 99161, 99161.0416666667, + 99161.0833333333, 99161.125, 99161.1666666667, 99161.2083333333, + 99161.25, 99161.2916666667, 99161.3333333333, 99161.375, + 99161.4166666667, 99161.4583333333, 99161.5, 99161.5416666667, + 99161.5833333333, 99161.625, 99161.6666666667, 99161.7083333333, + 99161.75, 99161.7916666667, 99161.8333333333, 99161.875, + 99161.9166666667, 99161.9583333333, 99162, 99162.0416666667, + 99162.0833333333, 99162.125, 99162.1666666667, 99162.2083333333, + 99162.25, 99162.2916666667, 99162.3333333333, 99162.375, + 99162.4166666667, 99162.4583333333, 99162.5, 99162.5416666667, + 99162.5833333333, 99162.625, 99162.6666666667, 99162.7083333333, + 99162.75, 99162.7916666667, 99162.8333333333, 99162.875, + 99162.9166666667, 99162.9583333333, 99163, 99163.0416666667, + 99163.0833333333, 99163.125, 99163.1666666667, 99163.2083333333, + 99163.25, 99163.2916666667, 99163.3333333333, 99163.375, + 99163.4166666667, 99163.4583333333, 99163.5, 99163.5416666667, + 99163.5833333333, 99163.625, 99163.6666666667, 99163.7083333333, + 99163.75, 99163.7916666667, 99163.8333333333, 99163.875, + 99163.9166666667, 99163.9583333333, 99164, 99164.0416666667, + 99164.0833333333, 99164.125, 99164.1666666667, 99164.2083333333, + 99164.25, 99164.2916666667, 99164.3333333333, 99164.375, + 99164.4166666667, 99164.4583333333, 99164.5, 99164.5416666667, + 99164.5833333333, 99164.625, 99164.6666666667, 99164.7083333333, + 99164.75, 99164.7916666667, 99164.8333333333, 99164.875, + 99164.9166666667, 99164.9583333333, 99165, 99165.0416666667, + 99165.0833333333, 99165.125, 99165.1666666667, 99165.2083333333, + 99165.25, 99165.2916666667, 99165.3333333333, 99165.375, + 99165.4166666667, 99165.4583333333, 99165.5, 99165.5416666667, + 99165.5833333333, 99165.625, 99165.6666666667, 99165.7083333333, + 99165.75, 99165.7916666667, 99165.8333333333, 99165.875, + 99165.9166666667, 99165.9583333333, 99166, 99166.0416666667, + 99166.0833333333, 99166.125, 99166.1666666667, 99166.2083333333, + 99166.25, 99166.2916666667, 99166.3333333333, 99166.375, + 99166.4166666667, 99166.4583333333, 99166.5, 99166.5416666667, + 99166.5833333333, 99166.625, 99166.6666666667, 99166.7083333333, + 99166.75, 99166.7916666667, 99166.8333333333, 99166.875, + 99166.9166666667, 99166.9583333333, 99167, 99167.0416666667, + 99167.0833333333, 99167.125, 99167.1666666667, 99167.2083333333, + 99167.25, 99167.2916666667, 99167.3333333333, 99167.375, + 99167.4166666667, 99167.4583333333, 99167.5, 99167.5416666667, + 99167.5833333333, 99167.625, 99167.6666666667, 99167.7083333333, + 99167.75, 99167.7916666667, 99167.8333333333, 99167.875, + 99167.9166666667, 99167.9583333333, 99168, 99168.0416666667, + 99168.0833333333, 99168.125, 99168.1666666667, 99168.2083333333, + 99168.25, 99168.2916666667, 99168.3333333333, 99168.375, + 99168.4166666667, 99168.4583333333, 99168.5, 99168.5416666667, + 99168.5833333333, 99168.625, 99168.6666666667, 99168.7083333333, + 99168.75, 99168.7916666667, 99168.8333333333, 99168.875, + 99168.9166666667, 99168.9583333333, 99169, 99169.0416666667, + 99169.0833333333, 99169.125, 99169.1666666667, 99169.2083333333, + 99169.25, 99169.2916666667, 99169.3333333333, 99169.375, + 99169.4166666667, 99169.4583333333, 99169.5, 99169.5416666667, + 99169.5833333333, 99169.625, 99169.6666666667, 99169.7083333333, + 99169.75, 99169.7916666667, 99169.8333333333, 99169.875, + 99169.9166666667, 99169.9583333333, 99170, 99170.0416666667, + 99170.0833333333, 99170.125, 99170.1666666667, 99170.2083333333, + 99170.25, 99170.2916666667, 99170.3333333333, 99170.375, + 99170.4166666667, 99170.4583333333, 99170.5, 99170.5416666667, + 99170.5833333333, 99170.625, 99170.6666666667, 99170.7083333333, + 99170.75, 99170.7916666667, 99170.8333333333, 99170.875, + 99170.9166666667, 99170.9583333333, 99171, 99171.0416666667, + 99171.0833333333, 99171.125, 99171.1666666667, 99171.2083333333, + 99171.25, 99171.2916666667, 99171.3333333333, 99171.375, + 99171.4166666667, 99171.4583333333, 99171.5, 99171.5416666667, + 99171.5833333333, 99171.625, 99171.6666666667, 99171.7083333333, + 99171.75, 99171.7916666667, 99171.8333333333, 99171.875, + 99171.9166666667, 99171.9583333333, 99172, 99172.0416666667, + 99172.0833333333, 99172.125, 99172.1666666667, 99172.2083333333, + 99172.25, 99172.2916666667, 99172.3333333333, 99172.375, + 99172.4166666667, 99172.4583333333, 99172.5, 99172.5416666667, + 99172.5833333333, 99172.625, 99172.6666666667, 99172.7083333333, + 99172.75, 99172.7916666667, 99172.8333333333, 99172.875, + 99172.9166666667, 99172.9583333333, 99173, 99173.0416666667, + 99173.0833333333, 99173.125, 99173.1666666667, 99173.2083333333, + 99173.25, 99173.2916666667, 99173.3333333333, 99173.375, + 99173.4166666667, 99173.4583333333, 99173.5, 99173.5416666667, + 99173.5833333333, 99173.625, 99173.6666666667, 99173.7083333333, + 99173.75, 99173.7916666667, 99173.8333333333, 99173.875, + 99173.9166666667, 99173.9583333333, 99174, 99174.0416666667, + 99174.0833333333, 99174.125, 99174.1666666667, 99174.2083333333, + 99174.25, 99174.2916666667, 99174.3333333333, 99174.375, + 99174.4166666667, 99174.4583333333, 99174.5, 99174.5416666667, + 99174.5833333333, 99174.625, 99174.6666666667, 99174.7083333333, + 99174.75, 99174.7916666667, 99174.8333333333, 99174.875, + 99174.9166666667, 99174.9583333333, 99175, 99175.0416666667, + 99175.0833333333, 99175.125, 99175.1666666667, 99175.2083333333, + 99175.25, 99175.2916666667, 99175.3333333333, 99175.375, + 99175.4166666667, 99175.4583333333, 99175.5, 99175.5416666667, + 99175.5833333333, 99175.625, 99175.6666666667, 99175.7083333333, + 99175.75, 99175.7916666667, 99175.8333333333, 99175.875, + 99175.9166666667, 99175.9583333333, 99176, 99176.0416666667, + 99176.0833333333, 99176.125, 99176.1666666667, 99176.2083333333, + 99176.25, 99176.2916666667, 99176.3333333333, 99176.375, + 99176.4166666667, 99176.4583333333, 99176.5, 99176.5416666667, + 99176.5833333333, 99176.625, 99176.6666666667, 99176.7083333333, + 99176.75, 99176.7916666667, 99176.8333333333, 99176.875, + 99176.9166666667, 99176.9583333333, 99177, 99177.0416666667, + 99177.0833333333, 99177.125, 99177.1666666667, 99177.2083333333, + 99177.25, 99177.2916666667, 99177.3333333333, 99177.375, + 99177.4166666667, 99177.4583333333, 99177.5, 99177.5416666667, + 99177.5833333333, 99177.625, 99177.6666666667, 99177.7083333333, + 99177.75, 99177.7916666667, 99177.8333333333, 99177.875, + 99177.9166666667, 99177.9583333333, 99178, 99178.0416666667, + 99178.0833333333, 99178.125, 99178.1666666667, 99178.2083333333, + 99178.25, 99178.2916666667, 99178.3333333333, 99178.375, + 99178.4166666667, 99178.4583333333, 99178.5, 99178.5416666667, + 99178.5833333333, 99178.625, 99178.6666666667, 99178.7083333333, + 99178.75, 99178.7916666667, 99178.8333333333, 99178.875, + 99178.9166666667, 99178.9583333333, 99179, 99179.0416666667, + 99179.0833333333, 99179.125, 99179.1666666667, 99179.2083333333, + 99179.25, 99179.2916666667, 99179.3333333333, 99179.375, + 99179.4166666667, 99179.4583333333, 99179.5, 99179.5416666667, + 99179.5833333333, 99179.625, 99179.6666666667, 99179.7083333333, + 99179.75, 99179.7916666667, 99179.8333333333, 99179.875, + 99179.9166666667, 99179.9583333333, 99180, 99180.0416666667, + 99180.0833333333, 99180.125, 99180.1666666667, 99180.2083333333, + 99180.25, 99180.2916666667, 99180.3333333333, 99180.375, + 99180.4166666667, 99180.4583333333, 99180.5, 99180.5416666667, + 99180.5833333333, 99180.625, 99180.6666666667, 99180.7083333333, + 99180.75, 99180.7916666667, 99180.8333333333, 99180.875, + 99180.9166666667, 99180.9583333333, 99181, 99181.0416666667, + 99181.0833333333, 99181.125, 99181.1666666667, 99181.2083333333, + 99181.25, 99181.2916666667, 99181.3333333333, 99181.375, + 99181.4166666667, 99181.4583333333, 99181.5, 99181.5416666667, + 99181.5833333333, 99181.625, 99181.6666666667, 99181.7083333333, + 99181.75, 99181.7916666667, 99181.8333333333, 99181.875, + 99181.9166666667, 99181.9583333333, 99182, 99182.0416666667, + 99182.0833333333, 99182.125, 99182.1666666667, 99182.2083333333, + 99182.25, 99182.2916666667, 99182.3333333333, 99182.375, + 99182.4166666667, 99182.4583333333, 99182.5, 99182.5416666667, + 99182.5833333333, 99182.625, 99182.6666666667, 99182.7083333333, + 99182.75, 99182.7916666667, 99182.8333333333, 99182.875, + 99182.9166666667, 99182.9583333333, 99183, 99183.0416666667, + 99183.0833333333, 99183.125, 99183.1666666667, 99183.2083333333, + 99183.25, 99183.2916666667, 99183.3333333333, 99183.375, + 99183.4166666667, 99183.4583333333, 99183.5, 99183.5416666667, + 99183.5833333333, 99183.625, 99183.6666666667, 99183.7083333333, + 99183.75, 99183.7916666667, 99183.8333333333, 99183.875, + 99183.9166666667, 99183.9583333333, 99184, 99184.0416666667, + 99184.0833333333, 99184.125, 99184.1666666667, 99184.2083333333, + 99184.25, 99184.2916666667, 99184.3333333333, 99184.375, + 99184.4166666667, 99184.4583333333, 99184.5, 99184.5416666667, + 99184.5833333333, 99184.625, 99184.6666666667, 99184.7083333333, + 99184.75, 99184.7916666667, 99184.8333333333, 99184.875, + 99184.9166666667, 99184.9583333333, 99185, 99185.0416666667, + 99185.0833333333, 99185.125, 99185.1666666667, 99185.2083333333, + 99185.25, 99185.2916666667, 99185.3333333333, 99185.375, + 99185.4166666667, 99185.4583333333, 99185.5, 99185.5416666667, + 99185.5833333333, 99185.625, 99185.6666666667, 99185.7083333333, + 99185.75, 99185.7916666667, 99185.8333333333, 99185.875, + 99185.9166666667, 99185.9583333333, 99186, 99186.0416666667, + 99186.0833333333, 99186.125, 99186.1666666667, 99186.2083333333, + 99186.25, 99186.2916666667, 99186.3333333333, 99186.375, + 99186.4166666667, 99186.4583333333, 99186.5, 99186.5416666667, + 99186.5833333333, 99186.625, 99186.6666666667, 99186.7083333333, + 99186.75, 99186.7916666667, 99186.8333333333, 99186.875, + 99186.9166666667, 99186.9583333333, 99187, 99187.0416666667, + 99187.0833333333, 99187.125, 99187.1666666667, 99187.2083333333, + 99187.25, 99187.2916666667, 99187.3333333333, 99187.375, + 99187.4166666667, 99187.4583333333, 99187.5, 99187.5416666667, + 99187.5833333333, 99187.625, 99187.6666666667, 99187.7083333333, + 99187.75, 99187.7916666667, 99187.8333333333, 99187.875, + 99187.9166666667, 99187.9583333333, 99188, 99188.0416666667, + 99188.0833333333, 99188.125, 99188.1666666667, 99188.2083333333, + 99188.25, 99188.2916666667, 99188.3333333333, 99188.375, + 99188.4166666667, 99188.4583333333, 99188.5, 99188.5416666667, + 99188.5833333333, 99188.625, 99188.6666666667, 99188.7083333333, + 99188.75, 99188.7916666667, 99188.8333333333, 99188.875, + 99188.9166666667, 99188.9583333333, 99189, 99189.0416666667, + 99189.0833333333, 99189.125, 99189.1666666667, 99189.2083333333, + 99189.25, 99189.2916666667, 99189.3333333333, 99189.375, + 99189.4166666667, 99189.4583333333, 99189.5, 99189.5416666667, + 99189.5833333333, 99189.625, 99189.6666666667, 99189.7083333333, + 99189.75, 99189.7916666667, 99189.8333333333, 99189.875, + 99189.9166666667, 99189.9583333333, 99190, 99190.0416666667, + 99190.0833333333, 99190.125, 99190.1666666667, 99190.2083333333, + 99190.25, 99190.2916666667, 99190.3333333333, 99190.375, + 99190.4166666667, 99190.4583333333, 99190.5, 99190.5416666667, + 99190.5833333333, 99190.625, 99190.6666666667, 99190.7083333333, + 99190.75, 99190.7916666667, 99190.8333333333, 99190.875, + 99190.9166666667, 99190.9583333333, 99191, 99191.0416666667, + 99191.0833333333, 99191.125, 99191.1666666667, 99191.2083333333, + 99191.25, 99191.2916666667, 99191.3333333333, 99191.375, + 99191.4166666667, 99191.4583333333, 99191.5, 99191.5416666667, + 99191.5833333333, 99191.625, 99191.6666666667, 99191.7083333333, + 99191.75, 99191.7916666667, 99191.8333333333, 99191.875, + 99191.9166666667, 99191.9583333333, 99192, 99192.0416666667, + 99192.0833333333, 99192.125, 99192.1666666667, 99192.2083333333, + 99192.25, 99192.2916666667, 99192.3333333333, 99192.375, + 99192.4166666667, 99192.4583333333, 99192.5, 99192.5416666667, + 99192.5833333333, 99192.625, 99192.6666666667, 99192.7083333333, + 99192.75, 99192.7916666667, 99192.8333333333, 99192.875, + 99192.9166666667, 99192.9583333333, 99193, 99193.0416666667, + 99193.0833333333, 99193.125, 99193.1666666667, 99193.2083333333, + 99193.25, 99193.2916666667, 99193.3333333333, 99193.375, + 99193.4166666667, 99193.4583333333, 99193.5, 99193.5416666667, + 99193.5833333333, 99193.625, 99193.6666666667, 99193.7083333333, + 99193.75, 99193.7916666667, 99193.8333333333, 99193.875, + 99193.9166666667, 99193.9583333333, 99194, 99194.0416666667, + 99194.0833333333, 99194.125, 99194.1666666667, 99194.2083333333, + 99194.25, 99194.2916666667, 99194.3333333333, 99194.375, + 99194.4166666667, 99194.4583333333, 99194.5, 99194.5416666667, + 99194.5833333333, 99194.625, 99194.6666666667, 99194.7083333333, + 99194.75, 99194.7916666667, 99194.8333333333, 99194.875, + 99194.9166666667, 99194.9583333333, 99195, 99195.0416666667, + 99195.0833333333, 99195.125, 99195.1666666667, 99195.2083333333, + 99195.25, 99195.2916666667, 99195.3333333333, 99195.375, + 99195.4166666667, 99195.4583333333, 99195.5, 99195.5416666667, + 99195.5833333333, 99195.625, 99195.6666666667, 99195.7083333333, + 99195.75, 99195.7916666667, 99195.8333333333, 99195.875, + 99195.9166666667, 99195.9583333333, 99196, 99196.0416666667, + 99196.0833333333, 99196.125, 99196.1666666667, 99196.2083333333, + 99196.25, 99196.2916666667, 99196.3333333333, 99196.375, + 99196.4166666667, 99196.4583333333, 99196.5, 99196.5416666667, + 99196.5833333333, 99196.625, 99196.6666666667, 99196.7083333333, + 99196.75, 99196.7916666667, 99196.8333333333, 99196.875, + 99196.9166666667, 99196.9583333333, 99197, 99197.0416666667, + 99197.0833333333, 99197.125, 99197.1666666667, 99197.2083333333, + 99197.25, 99197.2916666667, 99197.3333333333, 99197.375, + 99197.4166666667, 99197.4583333333, 99197.5, 99197.5416666667, + 99197.5833333333, 99197.625, 99197.6666666667, 99197.7083333333, + 99197.75, 99197.7916666667, 99197.8333333333, 99197.875, + 99197.9166666667, 99197.9583333333, 99198, 99198.0416666667, + 99198.0833333333, 99198.125, 99198.1666666667, 99198.2083333333, + 99198.25, 99198.2916666667, 99198.3333333333, 99198.375, + 99198.4166666667, 99198.4583333333, 99198.5, 99198.5416666667, + 99198.5833333333, 99198.625, 99198.6666666667, 99198.7083333333, + 99198.75, 99198.7916666667, 99198.8333333333, 99198.875, + 99198.9166666667, 99198.9583333333, 99199, 99199.0416666667, + 99199.0833333333, 99199.125, 99199.1666666667, 99199.2083333333, + 99199.25, 99199.2916666667, 99199.3333333333, 99199.375, + 99199.4166666667, 99199.4583333333, 99199.5, 99199.5416666667, + 99199.5833333333, 99199.625, 99199.6666666667, 99199.7083333333, + 99199.75, 99199.7916666667, 99199.8333333333, 99199.875, + 99199.9166666667, 99199.9583333333, 99200, 99200.0416666667, + 99200.0833333333, 99200.125, 99200.1666666667, 99200.2083333333, + 99200.25, 99200.2916666667, 99200.3333333333, 99200.375, + 99200.4166666667, 99200.4583333333, 99200.5, 99200.5416666667, + 99200.5833333333, 99200.625, 99200.6666666667, 99200.7083333333, + 99200.75, 99200.7916666667, 99200.8333333333, 99200.875, + 99200.9166666667, 99200.9583333333, 99201, 99201.0416666667, + 99201.0833333333, 99201.125, 99201.1666666667, 99201.2083333333, + 99201.25, 99201.2916666667, 99201.3333333333, 99201.375, + 99201.4166666667, 99201.4583333333, 99201.5, 99201.5416666667, + 99201.5833333333, 99201.625, 99201.6666666667, 99201.7083333333, + 99201.75, 99201.7916666667, 99201.8333333333, 99201.875, + 99201.9166666667, 99201.9583333333, 99202, 99202.0416666667, + 99202.0833333333, 99202.125, 99202.1666666667, 99202.2083333333, + 99202.25, 99202.2916666667, 99202.3333333333, 99202.375, + 99202.4166666667, 99202.4583333333, 99202.5, 99202.5416666667, + 99202.5833333333, 99202.625, 99202.6666666667, 99202.7083333333, + 99202.75, 99202.7916666667, 99202.8333333333, 99202.875, + 99202.9166666667, 99202.9583333333, 99203, 99203.0416666667, + 99203.0833333333, 99203.125, 99203.1666666667, 99203.2083333333, + 99203.25, 99203.2916666667, 99203.3333333333, 99203.375, + 99203.4166666667, 99203.4583333333, 99203.5, 99203.5416666667, + 99203.5833333333, 99203.625, 99203.6666666667, 99203.7083333333, + 99203.75, 99203.7916666667, 99203.8333333333, 99203.875, + 99203.9166666667, 99203.9583333333, 99204, 99204.0416666667, + 99204.0833333333, 99204.125, 99204.1666666667, 99204.2083333333, + 99204.25, 99204.2916666667, 99204.3333333333, 99204.375, + 99204.4166666667, 99204.4583333333, 99204.5, 99204.5416666667, + 99204.5833333333, 99204.625, 99204.6666666667, 99204.7083333333, + 99204.75, 99204.7916666667, 99204.8333333333, 99204.875, + 99204.9166666667, 99204.9583333333, 99205, 99205.0416666667, + 99205.0833333333, 99205.125, 99205.1666666667, 99205.2083333333, + 99205.25, 99205.2916666667, 99205.3333333333, 99205.375, + 99205.4166666667, 99205.4583333333, 99205.5, 99205.5416666667, + 99205.5833333333, 99205.625, 99205.6666666667, 99205.7083333333, + 99205.75, 99205.7916666667, 99205.8333333333, 99205.875, + 99205.9166666667, 99205.9583333333, 99206, 99206.0416666667, + 99206.0833333333, 99206.125, 99206.1666666667, 99206.2083333333, + 99206.25, 99206.2916666667, 99206.3333333333, 99206.375, + 99206.4166666667, 99206.4583333333, 99206.5, 99206.5416666667, + 99206.5833333333, 99206.625, 99206.6666666667, 99206.7083333333, + 99206.75, 99206.7916666667, 99206.8333333333, 99206.875, + 99206.9166666667, 99206.9583333333, 99207, 99207.0416666667, + 99207.0833333333, 99207.125, 99207.1666666667, 99207.2083333333, + 99207.25, 99207.2916666667, 99207.3333333333, 99207.375, + 99207.4166666667, 99207.4583333333, 99207.5, 99207.5416666667, + 99207.5833333333, 99207.625, 99207.6666666667, 99207.7083333333, + 99207.75, 99207.7916666667, 99207.8333333333, 99207.875, + 99207.9166666667, 99207.9583333333, 99208, 99208.0416666667, + 99208.0833333333, 99208.125, 99208.1666666667, 99208.2083333333, + 99208.25, 99208.2916666667, 99208.3333333333, 99208.375, + 99208.4166666667, 99208.4583333333, 99208.5, 99208.5416666667, + 99208.5833333333, 99208.625, 99208.6666666667, 99208.7083333333, + 99208.75, 99208.7916666667, 99208.8333333333, 99208.875, + 99208.9166666667, 99208.9583333333, 99209, 99209.0416666667, + 99209.0833333333, 99209.125, 99209.1666666667, 99209.2083333333, + 99209.25, 99209.2916666667, 99209.3333333333, 99209.375, + 99209.4166666667, 99209.4583333333, 99209.5, 99209.5416666667, + 99209.5833333333, 99209.625, 99209.6666666667, 99209.7083333333, + 99209.75, 99209.7916666667, 99209.8333333333, 99209.875, + 99209.9166666667, 99209.9583333333, 99210, 99210.0416666667, + 99210.0833333333, 99210.125, 99210.1666666667, 99210.2083333333, + 99210.25, 99210.2916666667, 99210.3333333333, 99210.375, + 99210.4166666667, 99210.4583333333, 99210.5, 99210.5416666667, + 99210.5833333333, 99210.625, 99210.6666666667, 99210.7083333333, + 99210.75, 99210.7916666667, 99210.8333333333, 99210.875, + 99210.9166666667, 99210.9583333333, 99211, 99211.0416666667, + 99211.0833333333, 99211.125, 99211.1666666667, 99211.2083333333, + 99211.25, 99211.2916666667, 99211.3333333333, 99211.375, + 99211.4166666667, 99211.4583333333, 99211.5, 99211.5416666667, + 99211.5833333333, 99211.625, 99211.6666666667, 99211.7083333333, + 99211.75, 99211.7916666667, 99211.8333333333, 99211.875, + 99211.9166666667, 99211.9583333333, 99212, 99212.0416666667, + 99212.0833333333, 99212.125, 99212.1666666667, 99212.2083333333, + 99212.25, 99212.2916666667, 99212.3333333333, 99212.375, + 99212.4166666667, 99212.4583333333, 99212.5, 99212.5416666667, + 99212.5833333333, 99212.625, 99212.6666666667, 99212.7083333333, + 99212.75, 99212.7916666667, 99212.8333333333, 99212.875, + 99212.9166666667, 99212.9583333333, 99213, 99213.0416666667, + 99213.0833333333, 99213.125, 99213.1666666667, 99213.2083333333, + 99213.25, 99213.2916666667, 99213.3333333333, 99213.375, + 99213.4166666667, 99213.4583333333, 99213.5, 99213.5416666667, + 99213.5833333333, 99213.625, 99213.6666666667, 99213.7083333333, + 99213.75, 99213.7916666667, 99213.8333333333, 99213.875, + 99213.9166666667, 99213.9583333333, 99214, 99214.0416666667, + 99214.0833333333, 99214.125, 99214.1666666667, 99214.2083333333, + 99214.25, 99214.2916666667, 99214.3333333333, 99214.375, + 99214.4166666667, 99214.4583333333, 99214.5, 99214.5416666667, + 99214.5833333333, 99214.625, 99214.6666666667, 99214.7083333333, + 99214.75, 99214.7916666667, 99214.8333333333, 99214.875, + 99214.9166666667, 99214.9583333333, 99215, 99215.0416666667, + 99215.0833333333, 99215.125, 99215.1666666667, 99215.2083333333, + 99215.25, 99215.2916666667, 99215.3333333333, 99215.375, + 99215.4166666667, 99215.4583333333, 99215.5, 99215.5416666667, + 99215.5833333333, 99215.625, 99215.6666666667, 99215.7083333333, + 99215.75, 99215.7916666667, 99215.8333333333, 99215.875, + 99215.9166666667, 99215.9583333333, 99216, 99216.0416666667, + 99216.0833333333, 99216.125, 99216.1666666667, 99216.2083333333, + 99216.25, 99216.2916666667, 99216.3333333333, 99216.375, + 99216.4166666667, 99216.4583333333, 99216.5, 99216.5416666667, + 99216.5833333333, 99216.625, 99216.6666666667, 99216.7083333333, + 99216.75, 99216.7916666667, 99216.8333333333, 99216.875, + 99216.9166666667, 99216.9583333333, 99217, 99217.0416666667, + 99217.0833333333, 99217.125, 99217.1666666667, 99217.2083333333, + 99217.25, 99217.2916666667, 99217.3333333333, 99217.375, + 99217.4166666667, 99217.4583333333, 99217.5, 99217.5416666667, + 99217.5833333333, 99217.625, 99217.6666666667, 99217.7083333333, + 99217.75, 99217.7916666667, 99217.8333333333, 99217.875, + 99217.9166666667, 99217.9583333333, 99218, 99218.0416666667, + 99218.0833333333, 99218.125, 99218.1666666667, 99218.2083333333, + 99218.25, 99218.2916666667, 99218.3333333333, 99218.375, + 99218.4166666667, 99218.4583333333, 99218.5, 99218.5416666667, + 99218.5833333333, 99218.625, 99218.6666666667, 99218.7083333333, + 99218.75, 99218.7916666667, 99218.8333333333, 99218.875, + 99218.9166666667, 99218.9583333333, 99219, 99219.0416666667, + 99219.0833333333, 99219.125, 99219.1666666667, 99219.2083333333, + 99219.25, 99219.2916666667, 99219.3333333333, 99219.375, + 99219.4166666667, 99219.4583333333, 99219.5, 99219.5416666667, + 99219.5833333333, 99219.625, 99219.6666666667, 99219.7083333333, + 99219.75, 99219.7916666667, 99219.8333333333, 99219.875, + 99219.9166666667, 99219.9583333333, 99220, 99220.0416666667, + 99220.0833333333, 99220.125, 99220.1666666667, 99220.2083333333, + 99220.25, 99220.2916666667, 99220.3333333333, 99220.375, + 99220.4166666667, 99220.4583333333, 99220.5, 99220.5416666667, + 99220.5833333333, 99220.625, 99220.6666666667, 99220.7083333333, + 99220.75, 99220.7916666667, 99220.8333333333, 99220.875, + 99220.9166666667, 99220.9583333333, 99221, 99221.0416666667, + 99221.0833333333, 99221.125, 99221.1666666667, 99221.2083333333, + 99221.25, 99221.2916666667, 99221.3333333333, 99221.375, + 99221.4166666667, 99221.4583333333, 99221.5, 99221.5416666667, + 99221.5833333333, 99221.625, 99221.6666666667, 99221.7083333333, + 99221.75, 99221.7916666667, 99221.8333333333, 99221.875, + 99221.9166666667, 99221.9583333333, 99222, 99222.0416666667, + 99222.0833333333, 99222.125, 99222.1666666667, 99222.2083333333, + 99222.25, 99222.2916666667, 99222.3333333333, 99222.375, + 99222.4166666667, 99222.4583333333, 99222.5, 99222.5416666667, + 99222.5833333333, 99222.625, 99222.6666666667, 99222.7083333333, + 99222.75, 99222.7916666667, 99222.8333333333, 99222.875, + 99222.9166666667, 99222.9583333333, 99223, 99223.0416666667, + 99223.0833333333, 99223.125, 99223.1666666667, 99223.2083333333, + 99223.25, 99223.2916666667, 99223.3333333333, 99223.375, + 99223.4166666667, 99223.4583333333, 99223.5, 99223.5416666667, + 99223.5833333333, 99223.625, 99223.6666666667, 99223.7083333333, + 99223.75, 99223.7916666667, 99223.8333333333, 99223.875, + 99223.9166666667, 99223.9583333333, 99224, 99224.0416666667, + 99224.0833333333, 99224.125, 99224.1666666667, 99224.2083333333, + 99224.25, 99224.2916666667, 99224.3333333333, 99224.375, + 99224.4166666667, 99224.4583333333, 99224.5, 99224.5416666667, + 99224.5833333333, 99224.625, 99224.6666666667, 99224.7083333333, + 99224.75, 99224.7916666667, 99224.8333333333, 99224.875, + 99224.9166666667, 99224.9583333333, 99225, 99225.0416666667, + 99225.0833333333, 99225.125, 99225.1666666667, 99225.2083333333, + 99225.25, 99225.2916666667, 99225.3333333333, 99225.375, + 99225.4166666667, 99225.4583333333, 99225.5, 99225.5416666667, + 99225.5833333333, 99225.625, 99225.6666666667, 99225.7083333333, + 99225.75, 99225.7916666667, 99225.8333333333, 99225.875, + 99225.9166666667, 99225.9583333333, 99226, 99226.0416666667, + 99226.0833333333, 99226.125, 99226.1666666667, 99226.2083333333, + 99226.25, 99226.2916666667, 99226.3333333333, 99226.375, + 99226.4166666667, 99226.4583333333, 99226.5, 99226.5416666667, + 99226.5833333333, 99226.625, 99226.6666666667, 99226.7083333333, + 99226.75, 99226.7916666667, 99226.8333333333, 99226.875, + 99226.9166666667, 99226.9583333333, 99227, 99227.0416666667, + 99227.0833333333, 99227.125, 99227.1666666667, 99227.2083333333, + 99227.25, 99227.2916666667, 99227.3333333333, 99227.375, + 99227.4166666667, 99227.4583333333, 99227.5, 99227.5416666667, + 99227.5833333333, 99227.625, 99227.6666666667, 99227.7083333333, + 99227.75, 99227.7916666667, 99227.8333333333, 99227.875, + 99227.9166666667, 99227.9583333333, 99228, 99228.0416666667, + 99228.0833333333, 99228.125, 99228.1666666667, 99228.2083333333, + 99228.25, 99228.2916666667, 99228.3333333333, 99228.375, + 99228.4166666667, 99228.4583333333, 99228.5, 99228.5416666667, + 99228.5833333333, 99228.625, 99228.6666666667, 99228.7083333333, + 99228.75, 99228.7916666667, 99228.8333333333, 99228.875, + 99228.9166666667, 99228.9583333333, 99229, 99229.0416666667, + 99229.0833333333, 99229.125, 99229.1666666667, 99229.2083333333, + 99229.25, 99229.2916666667, 99229.3333333333, 99229.375, + 99229.4166666667, 99229.4583333333, 99229.5, 99229.5416666667, + 99229.5833333333, 99229.625, 99229.6666666667, 99229.7083333333, + 99229.75, 99229.7916666667, 99229.8333333333, 99229.875, + 99229.9166666667, 99229.9583333333, 99230, 99230.0416666667, + 99230.0833333333, 99230.125, 99230.1666666667, 99230.2083333333, + 99230.25, 99230.2916666667, 99230.3333333333, 99230.375, + 99230.4166666667, 99230.4583333333, 99230.5, 99230.5416666667, + 99230.5833333333, 99230.625, 99230.6666666667, 99230.7083333333, + 99230.75, 99230.7916666667, 99230.8333333333, 99230.875, + 99230.9166666667, 99230.9583333333, 99231, 99231.0416666667, + 99231.0833333333, 99231.125, 99231.1666666667, 99231.2083333333, + 99231.25, 99231.2916666667, 99231.3333333333, 99231.375, + 99231.4166666667, 99231.4583333333, 99231.5, 99231.5416666667, + 99231.5833333333, 99231.625, 99231.6666666667, 99231.7083333333, + 99231.75, 99231.7916666667, 99231.8333333333, 99231.875, + 99231.9166666667, 99231.9583333333, 99232, 99232.0416666667, + 99232.0833333333, 99232.125, 99232.1666666667, 99232.2083333333, + 99232.25, 99232.2916666667, 99232.3333333333, 99232.375, + 99232.4166666667, 99232.4583333333, 99232.5, 99232.5416666667, + 99232.5833333333, 99232.625, 99232.6666666667, 99232.7083333333, + 99232.75, 99232.7916666667, 99232.8333333333, 99232.875, + 99232.9166666667, 99232.9583333333, 99233, 99233.0416666667, + 99233.0833333333, 99233.125, 99233.1666666667, 99233.2083333333, + 99233.25, 99233.2916666667, 99233.3333333333, 99233.375, + 99233.4166666667, 99233.4583333333, 99233.5, 99233.5416666667, + 99233.5833333333, 99233.625, 99233.6666666667, 99233.7083333333, + 99233.75, 99233.7916666667, 99233.8333333333, 99233.875, + 99233.9166666667, 99233.9583333333, 99234, 99234.0416666667, + 99234.0833333333, 99234.125, 99234.1666666667, 99234.2083333333, + 99234.25, 99234.2916666667, 99234.3333333333, 99234.375, + 99234.4166666667, 99234.4583333333, 99234.5, 99234.5416666667, + 99234.5833333333, 99234.625, 99234.6666666667, 99234.7083333333, + 99234.75, 99234.7916666667, 99234.8333333333, 99234.875, + 99234.9166666667, 99234.9583333333, 99235, 99235.0416666667, + 99235.0833333333, 99235.125, 99235.1666666667, 99235.2083333333, + 99235.25, 99235.2916666667, 99235.3333333333, 99235.375, + 99235.4166666667, 99235.4583333333, 99235.5, 99235.5416666667, + 99235.5833333333, 99235.625, 99235.6666666667, 99235.7083333333, + 99235.75, 99235.7916666667, 99235.8333333333, 99235.875, + 99235.9166666667, 99235.9583333333, 99236, 99236.0416666667, + 99236.0833333333, 99236.125, 99236.1666666667, 99236.2083333333, + 99236.25, 99236.2916666667, 99236.3333333333, 99236.375, + 99236.4166666667, 99236.4583333333, 99236.5, 99236.5416666667, + 99236.5833333333, 99236.625, 99236.6666666667, 99236.7083333333, + 99236.75, 99236.7916666667, 99236.8333333333, 99236.875, + 99236.9166666667, 99236.9583333333, 99237, 99237.0416666667, + 99237.0833333333, 99237.125, 99237.1666666667, 99237.2083333333, + 99237.25, 99237.2916666667, 99237.3333333333, 99237.375, + 99237.4166666667, 99237.4583333333, 99237.5, 99237.5416666667, + 99237.5833333333, 99237.625, 99237.6666666667, 99237.7083333333, + 99237.75, 99237.7916666667, 99237.8333333333, 99237.875, + 99237.9166666667, 99237.9583333333, 99238, 99238.0416666667, + 99238.0833333333, 99238.125, 99238.1666666667, 99238.2083333333, + 99238.25, 99238.2916666667, 99238.3333333333, 99238.375, + 99238.4166666667, 99238.4583333333, 99238.5, 99238.5416666667, + 99238.5833333333, 99238.625, 99238.6666666667, 99238.7083333333, + 99238.75, 99238.7916666667, 99238.8333333333, 99238.875, + 99238.9166666667, 99238.9583333333, 99239, 99239.0416666667, + 99239.0833333333, 99239.125, 99239.1666666667, 99239.2083333333, + 99239.25, 99239.2916666667, 99239.3333333333, 99239.375, + 99239.4166666667, 99239.4583333333, 99239.5, 99239.5416666667, + 99239.5833333333, 99239.625, 99239.6666666667, 99239.7083333333, + 99239.75, 99239.7916666667, 99239.8333333333, 99239.875, + 99239.9166666667, 99239.9583333333, 99240, 99240.0416666667, + 99240.0833333333, 99240.125, 99240.1666666667, 99240.2083333333, + 99240.25, 99240.2916666667, 99240.3333333333, 99240.375, + 99240.4166666667, 99240.4583333333, 99240.5, 99240.5416666667, + 99240.5833333333, 99240.625, 99240.6666666667, 99240.7083333333, + 99240.75, 99240.7916666667, 99240.8333333333, 99240.875, + 99240.9166666667, 99240.9583333333, 99241, 99241.0416666667, + 99241.0833333333, 99241.125, 99241.1666666667, 99241.2083333333, + 99241.25, 99241.2916666667, 99241.3333333333, 99241.375, + 99241.4166666667, 99241.4583333333, 99241.5, 99241.5416666667, + 99241.5833333333, 99241.625, 99241.6666666667, 99241.7083333333, + 99241.75, 99241.7916666667, 99241.8333333333, 99241.875, + 99241.9166666667, 99241.9583333333, 99242, 99242.0416666667, + 99242.0833333333, 99242.125, 99242.1666666667, 99242.2083333333, + 99242.25, 99242.2916666667, 99242.3333333333, 99242.375, + 99242.4166666667, 99242.4583333333, 99242.5, 99242.5416666667, + 99242.5833333333, 99242.625, 99242.6666666667, 99242.7083333333, + 99242.75, 99242.7916666667, 99242.8333333333, 99242.875, + 99242.9166666667, 99242.9583333333, 99243, 99243.0416666667, + 99243.0833333333, 99243.125, 99243.1666666667, 99243.2083333333, + 99243.25, 99243.2916666667, 99243.3333333333, 99243.375, + 99243.4166666667, 99243.4583333333, 99243.5, 99243.5416666667, + 99243.5833333333, 99243.625, 99243.6666666667, 99243.7083333333, + 99243.75, 99243.7916666667, 99243.8333333333, 99243.875, + 99243.9166666667, 99243.9583333333, 99244, 99244.0416666667, + 99244.0833333333, 99244.125, 99244.1666666667, 99244.2083333333, + 99244.25, 99244.2916666667, 99244.3333333333, 99244.375, + 99244.4166666667, 99244.4583333333, 99244.5, 99244.5416666667, + 99244.5833333333, 99244.625, 99244.6666666667, 99244.7083333333, + 99244.75, 99244.7916666667, 99244.8333333333, 99244.875, + 99244.9166666667, 99244.9583333333, 99245, 99245.0416666667, + 99245.0833333333, 99245.125, 99245.1666666667, 99245.2083333333, + 99245.25, 99245.2916666667, 99245.3333333333, 99245.375, + 99245.4166666667, 99245.4583333333, 99245.5, 99245.5416666667, + 99245.5833333333, 99245.625, 99245.6666666667, 99245.7083333333, + 99245.75, 99245.7916666667, 99245.8333333333, 99245.875, + 99245.9166666667, 99245.9583333333, 99246, 99246.0416666667, + 99246.0833333333, 99246.125, 99246.1666666667, 99246.2083333333, + 99246.25, 99246.2916666667, 99246.3333333333, 99246.375, + 99246.4166666667, 99246.4583333333, 99246.5, 99246.5416666667, + 99246.5833333333, 99246.625, 99246.6666666667, 99246.7083333333, + 99246.75, 99246.7916666667, 99246.8333333333, 99246.875, + 99246.9166666667, 99246.9583333333, 99247, 99247.0416666667, + 99247.0833333333, 99247.125, 99247.1666666667, 99247.2083333333, + 99247.25, 99247.2916666667, 99247.3333333333, 99247.375, + 99247.4166666667, 99247.4583333333, 99247.5, 99247.5416666667, + 99247.5833333333, 99247.625, 99247.6666666667, 99247.7083333333, + 99247.75, 99247.7916666667, 99247.8333333333, 99247.875, + 99247.9166666667, 99247.9583333333, 99248, 99248.0416666667, + 99248.0833333333, 99248.125, 99248.1666666667, 99248.2083333333, + 99248.25, 99248.2916666667, 99248.3333333333, 99248.375, + 99248.4166666667, 99248.4583333333, 99248.5, 99248.5416666667, + 99248.5833333333, 99248.625, 99248.6666666667, 99248.7083333333, + 99248.75, 99248.7916666667, 99248.8333333333, 99248.875, + 99248.9166666667, 99248.9583333333, 99249, 99249.0416666667, + 99249.0833333333, 99249.125, 99249.1666666667, 99249.2083333333, + 99249.25, 99249.2916666667, 99249.3333333333, 99249.375, + 99249.4166666667, 99249.4583333333, 99249.5, 99249.5416666667, + 99249.5833333333, 99249.625, 99249.6666666667, 99249.7083333333, + 99249.75, 99249.7916666667, 99249.8333333333, 99249.875, + 99249.9166666667, 99249.9583333333, 99250, 99250.0416666667, + 99250.0833333333, 99250.125, 99250.1666666667, 99250.2083333333, + 99250.25, 99250.2916666667, 99250.3333333333, 99250.375, + 99250.4166666667, 99250.4583333333, 99250.5, 99250.5416666667, + 99250.5833333333, 99250.625, 99250.6666666667, 99250.7083333333, + 99250.75, 99250.7916666667, 99250.8333333333, 99250.875, + 99250.9166666667, 99250.9583333333, 99251, 99251.0416666667, + 99251.0833333333, 99251.125, 99251.1666666667, 99251.2083333333, + 99251.25, 99251.2916666667, 99251.3333333333, 99251.375, + 99251.4166666667, 99251.4583333333, 99251.5, 99251.5416666667, + 99251.5833333333, 99251.625, 99251.6666666667, 99251.7083333333, + 99251.75, 99251.7916666667, 99251.8333333333, 99251.875, + 99251.9166666667, 99251.9583333333, 99252, 99252.0416666667, + 99252.0833333333, 99252.125, 99252.1666666667, 99252.2083333333, + 99252.25, 99252.2916666667, 99252.3333333333, 99252.375, + 99252.4166666667, 99252.4583333333, 99252.5, 99252.5416666667, + 99252.5833333333, 99252.625, 99252.6666666667, 99252.7083333333, + 99252.75, 99252.7916666667, 99252.8333333333, 99252.875, + 99252.9166666667, 99252.9583333333, 99253, 99253.0416666667, + 99253.0833333333, 99253.125, 99253.1666666667, 99253.2083333333, + 99253.25, 99253.2916666667, 99253.3333333333, 99253.375, + 99253.4166666667, 99253.4583333333, 99253.5, 99253.5416666667, + 99253.5833333333, 99253.625, 99253.6666666667, 99253.7083333333, + 99253.75, 99253.7916666667, 99253.8333333333, 99253.875, + 99253.9166666667, 99253.9583333333, 99254, 99254.0416666667, + 99254.0833333333, 99254.125, 99254.1666666667, 99254.2083333333, + 99254.25, 99254.2916666667, 99254.3333333333, 99254.375, + 99254.4166666667, 99254.4583333333, 99254.5, 99254.5416666667, + 99254.5833333333, 99254.625, 99254.6666666667, 99254.7083333333, + 99254.75, 99254.7916666667, 99254.8333333333, 99254.875, + 99254.9166666667, 99254.9583333333, 99255, 99255.0416666667, + 99255.0833333333, 99255.125, 99255.1666666667, 99255.2083333333, + 99255.25, 99255.2916666667, 99255.3333333333, 99255.375, + 99255.4166666667, 99255.4583333333, 99255.5, 99255.5416666667, + 99255.5833333333, 99255.625, 99255.6666666667, 99255.7083333333, + 99255.75, 99255.7916666667, 99255.8333333333, 99255.875, + 99255.9166666667, 99255.9583333333, 99256, 99256.0416666667, + 99256.0833333333, 99256.125, 99256.1666666667, 99256.2083333333, + 99256.25, 99256.2916666667, 99256.3333333333, 99256.375, + 99256.4166666667, 99256.4583333333, 99256.5, 99256.5416666667, + 99256.5833333333, 99256.625, 99256.6666666667, 99256.7083333333, + 99256.75, 99256.7916666667, 99256.8333333333, 99256.875, + 99256.9166666667, 99256.9583333333, 99257, 99257.0416666667, + 99257.0833333333, 99257.125, 99257.1666666667, 99257.2083333333, + 99257.25, 99257.2916666667, 99257.3333333333, 99257.375, + 99257.4166666667, 99257.4583333333, 99257.5, 99257.5416666667, + 99257.5833333333, 99257.625, 99257.6666666667, 99257.7083333333, + 99257.75, 99257.7916666667, 99257.8333333333, 99257.875, + 99257.9166666667, 99257.9583333333, 99258, 99258.0416666667, + 99258.0833333333, 99258.125, 99258.1666666667, 99258.2083333333, + 99258.25, 99258.2916666667, 99258.3333333333, 99258.375, + 99258.4166666667, 99258.4583333333, 99258.5, 99258.5416666667, + 99258.5833333333, 99258.625, 99258.6666666667, 99258.7083333333, + 99258.75, 99258.7916666667, 99258.8333333333, 99258.875, + 99258.9166666667, 99258.9583333333, 99259, 99259.0416666667, + 99259.0833333333, 99259.125, 99259.1666666667, 99259.2083333333, + 99259.25, 99259.2916666667, 99259.3333333333, 99259.375, + 99259.4166666667, 99259.4583333333, 99259.5, 99259.5416666667, + 99259.5833333333, 99259.625, 99259.6666666667, 99259.7083333333, + 99259.75, 99259.7916666667, 99259.8333333333, 99259.875, + 99259.9166666667, 99259.9583333333, 99260, 99260.0416666667, + 99260.0833333333, 99260.125, 99260.1666666667, 99260.2083333333, + 99260.25, 99260.2916666667, 99260.3333333333, 99260.375, + 99260.4166666667, 99260.4583333333, 99260.5, 99260.5416666667, + 99260.5833333333, 99260.625, 99260.6666666667, 99260.7083333333, + 99260.75, 99260.7916666667, 99260.8333333333, 99260.875, + 99260.9166666667, 99260.9583333333, 99261, 99261.0416666667, + 99261.0833333333, 99261.125, 99261.1666666667, 99261.2083333333, + 99261.25, 99261.2916666667, 99261.3333333333, 99261.375, + 99261.4166666667, 99261.4583333333, 99261.5, 99261.5416666667, + 99261.5833333333, 99261.625, 99261.6666666667, 99261.7083333333, + 99261.75, 99261.7916666667, 99261.8333333333, 99261.875, + 99261.9166666667, 99261.9583333333, 99262, 99262.0416666667, + 99262.0833333333, 99262.125, 99262.1666666667, 99262.2083333333, + 99262.25, 99262.2916666667, 99262.3333333333, 99262.375, + 99262.4166666667, 99262.4583333333, 99262.5, 99262.5416666667, + 99262.5833333333, 99262.625, 99262.6666666667, 99262.7083333333, + 99262.75, 99262.7916666667, 99262.8333333333, 99262.875, + 99262.9166666667, 99262.9583333333, 99263, 99263.0416666667, + 99263.0833333333, 99263.125, 99263.1666666667, 99263.2083333333, + 99263.25, 99263.2916666667, 99263.3333333333, 99263.375, + 99263.4166666667, 99263.4583333333, 99263.5, 99263.5416666667, + 99263.5833333333, 99263.625, 99263.6666666667, 99263.7083333333, + 99263.75, 99263.7916666667, 99263.8333333333, 99263.875, + 99263.9166666667, 99263.9583333333, 99264, 99264.0416666667, + 99264.0833333333, 99264.125, 99264.1666666667, 99264.2083333333, + 99264.25, 99264.2916666667, 99264.3333333333, 99264.375, + 99264.4166666667, 99264.4583333333, 99264.5, 99264.5416666667, + 99264.5833333333, 99264.625, 99264.6666666667, 99264.7083333333, + 99264.75, 99264.7916666667, 99264.8333333333, 99264.875, + 99264.9166666667, 99264.9583333333, 99265, 99265.0416666667, + 99265.0833333333, 99265.125, 99265.1666666667, 99265.2083333333, + 99265.25, 99265.2916666667, 99265.3333333333, 99265.375, + 99265.4166666667, 99265.4583333333, 99265.5, 99265.5416666667, + 99265.5833333333, 99265.625, 99265.6666666667, 99265.7083333333, + 99265.75, 99265.7916666667, 99265.8333333333, 99265.875, + 99265.9166666667, 99265.9583333333, 99266, 99266.0416666667, + 99266.0833333333, 99266.125, 99266.1666666667, 99266.2083333333, + 99266.25, 99266.2916666667, 99266.3333333333, 99266.375, + 99266.4166666667, 99266.4583333333, 99266.5, 99266.5416666667, + 99266.5833333333, 99266.625, 99266.6666666667, 99266.7083333333, + 99266.75, 99266.7916666667, 99266.8333333333, 99266.875, + 99266.9166666667, 99266.9583333333, 99267, 99267.0416666667, + 99267.0833333333, 99267.125, 99267.1666666667, 99267.2083333333, + 99267.25, 99267.2916666667, 99267.3333333333, 99267.375, + 99267.4166666667, 99267.4583333333, 99267.5, 99267.5416666667, + 99267.5833333333, 99267.625, 99267.6666666667, 99267.7083333333, + 99267.75, 99267.7916666667, 99267.8333333333, 99267.875, + 99267.9166666667, 99267.9583333333, 99268, 99268.0416666667, + 99268.0833333333, 99268.125, 99268.1666666667, 99268.2083333333, + 99268.25, 99268.2916666667, 99268.3333333333, 99268.375, + 99268.4166666667, 99268.4583333333, 99268.5, 99268.5416666667, + 99268.5833333333, 99268.625, 99268.6666666667, 99268.7083333333, + 99268.75, 99268.7916666667, 99268.8333333333, 99268.875, + 99268.9166666667, 99268.9583333333, 99269, 99269.0416666667, + 99269.0833333333, 99269.125, 99269.1666666667, 99269.2083333333, + 99269.25, 99269.2916666667, 99269.3333333333, 99269.375, + 99269.4166666667, 99269.4583333333, 99269.5, 99269.5416666667, + 99269.5833333333, 99269.625, 99269.6666666667, 99269.7083333333, + 99269.75, 99269.7916666667, 99269.8333333333, 99269.875, + 99269.9166666667, 99269.9583333333, 99270, 99270.0416666667, + 99270.0833333333, 99270.125, 99270.1666666667, 99270.2083333333, + 99270.25, 99270.2916666667, 99270.3333333333, 99270.375, + 99270.4166666667, 99270.4583333333, 99270.5, 99270.5416666667, + 99270.5833333333, 99270.625, 99270.6666666667, 99270.7083333333, + 99270.75, 99270.7916666667, 99270.8333333333, 99270.875, + 99270.9166666667, 99270.9583333333, 99271, 99271.0416666667, + 99271.0833333333, 99271.125, 99271.1666666667, 99271.2083333333, + 99271.25, 99271.2916666667, 99271.3333333333, 99271.375, + 99271.4166666667, 99271.4583333333, 99271.5, 99271.5416666667, + 99271.5833333333, 99271.625, 99271.6666666667, 99271.7083333333, + 99271.75, 99271.7916666667, 99271.8333333333, 99271.875, + 99271.9166666667, 99271.9583333333, 99272, 99272.0416666667, + 99272.0833333333, 99272.125, 99272.1666666667, 99272.2083333333, + 99272.25, 99272.2916666667, 99272.3333333333, 99272.375, + 99272.4166666667, 99272.4583333333, 99272.5, 99272.5416666667, + 99272.5833333333, 99272.625, 99272.6666666667, 99272.7083333333, + 99272.75, 99272.7916666667, 99272.8333333333, 99272.875, + 99272.9166666667, 99272.9583333333, 99273, 99273.0416666667, + 99273.0833333333, 99273.125, 99273.1666666667, 99273.2083333333, + 99273.25, 99273.2916666667, 99273.3333333333, 99273.375, + 99273.4166666667, 99273.4583333333, 99273.5, 99273.5416666667, + 99273.5833333333, 99273.625, 99273.6666666667, 99273.7083333333, + 99273.75, 99273.7916666667, 99273.8333333333, 99273.875, + 99273.9166666667, 99273.9583333333, 99274, 99274.0416666667, + 99274.0833333333, 99274.125, 99274.1666666667, 99274.2083333333, + 99274.25, 99274.2916666667, 99274.3333333333, 99274.375, + 99274.4166666667, 99274.4583333333, 99274.5, 99274.5416666667, + 99274.5833333333, 99274.625, 99274.6666666667, 99274.7083333333, + 99274.75, 99274.7916666667, 99274.8333333333, 99274.875, + 99274.9166666667, 99274.9583333333, 99275, 99275.0416666667, + 99275.0833333333, 99275.125, 99275.1666666667, 99275.2083333333, + 99275.25, 99275.2916666667, 99275.3333333333, 99275.375, + 99275.4166666667, 99275.4583333333, 99275.5, 99275.5416666667, + 99275.5833333333, 99275.625, 99275.6666666667, 99275.7083333333, + 99275.75, 99275.7916666667, 99275.8333333333, 99275.875, + 99275.9166666667, 99275.9583333333, 99276, 99276.0416666667, + 99276.0833333333, 99276.125, 99276.1666666667, 99276.2083333333, + 99276.25, 99276.2916666667, 99276.3333333333, 99276.375, + 99276.4166666667, 99276.4583333333, 99276.5, 99276.5416666667, + 99276.5833333333, 99276.625, 99276.6666666667, 99276.7083333333, + 99276.75, 99276.7916666667, 99276.8333333333, 99276.875, + 99276.9166666667, 99276.9583333333, 99277, 99277.0416666667, + 99277.0833333333, 99277.125, 99277.1666666667, 99277.2083333333, + 99277.25, 99277.2916666667, 99277.3333333333, 99277.375, + 99277.4166666667, 99277.4583333333, 99277.5, 99277.5416666667, + 99277.5833333333, 99277.625, 99277.6666666667, 99277.7083333333, + 99277.75, 99277.7916666667, 99277.8333333333, 99277.875, + 99277.9166666667, 99277.9583333333, 99278, 99278.0416666667, + 99278.0833333333, 99278.125, 99278.1666666667, 99278.2083333333, + 99278.25, 99278.2916666667, 99278.3333333333, 99278.375, + 99278.4166666667, 99278.4583333333, 99278.5, 99278.5416666667, + 99278.5833333333, 99278.625, 99278.6666666667, 99278.7083333333, + 99278.75, 99278.7916666667, 99278.8333333333, 99278.875, + 99278.9166666667, 99278.9583333333, 99279, 99279.0416666667, + 99279.0833333333, 99279.125, 99279.1666666667, 99279.2083333333, + 99279.25, 99279.2916666667, 99279.3333333333, 99279.375, + 99279.4166666667, 99279.4583333333, 99279.5, 99279.5416666667, + 99279.5833333333, 99279.625, 99279.6666666667, 99279.7083333333, + 99279.75, 99279.7916666667, 99279.8333333333, 99279.875, + 99279.9166666667, 99279.9583333333, 99280, 99280.0416666667, + 99280.0833333333, 99280.125, 99280.1666666667, 99280.2083333333, + 99280.25, 99280.2916666667, 99280.3333333333, 99280.375, + 99280.4166666667, 99280.4583333333, 99280.5, 99280.5416666667, + 99280.5833333333, 99280.625, 99280.6666666667, 99280.7083333333, + 99280.75, 99280.7916666667, 99280.8333333333, 99280.875, + 99280.9166666667, 99280.9583333333, 99281, 99281.0416666667, + 99281.0833333333, 99281.125, 99281.1666666667, 99281.2083333333, + 99281.25, 99281.2916666667, 99281.3333333333, 99281.375, + 99281.4166666667, 99281.4583333333, 99281.5, 99281.5416666667, + 99281.5833333333, 99281.625, 99281.6666666667, 99281.7083333333, + 99281.75, 99281.7916666667, 99281.8333333333, 99281.875, + 99281.9166666667, 99281.9583333333, 99282, 99282.0416666667, + 99282.0833333333, 99282.125, 99282.1666666667, 99282.2083333333, + 99282.25, 99282.2916666667, 99282.3333333333, 99282.375, + 99282.4166666667, 99282.4583333333, 99282.5, 99282.5416666667, + 99282.5833333333, 99282.625, 99282.6666666667, 99282.7083333333, + 99282.75, 99282.7916666667, 99282.8333333333, 99282.875, + 99282.9166666667, 99282.9583333333, 99283, 99283.0416666667, + 99283.0833333333, 99283.125, 99283.1666666667, 99283.2083333333, + 99283.25, 99283.2916666667, 99283.3333333333, 99283.375, + 99283.4166666667, 99283.4583333333, 99283.5, 99283.5416666667, + 99283.5833333333, 99283.625, 99283.6666666667, 99283.7083333333, + 99283.75, 99283.7916666667, 99283.8333333333, 99283.875, + 99283.9166666667, 99283.9583333333, 99284, 99284.0416666667, + 99284.0833333333, 99284.125, 99284.1666666667, 99284.2083333333, + 99284.25, 99284.2916666667, 99284.3333333333, 99284.375, + 99284.4166666667, 99284.4583333333, 99284.5, 99284.5416666667, + 99284.5833333333, 99284.625, 99284.6666666667, 99284.7083333333, + 99284.75, 99284.7916666667, 99284.8333333333, 99284.875, + 99284.9166666667, 99284.9583333333, 99285, 99285.0416666667, + 99285.0833333333, 99285.125, 99285.1666666667, 99285.2083333333, + 99285.25, 99285.2916666667, 99285.3333333333, 99285.375, + 99285.4166666667, 99285.4583333333, 99285.5, 99285.5416666667, + 99285.5833333333, 99285.625, 99285.6666666667, 99285.7083333333, + 99285.75, 99285.7916666667, 99285.8333333333, 99285.875, + 99285.9166666667, 99285.9583333333, 99286, 99286.0416666667, + 99286.0833333333, 99286.125, 99286.1666666667, 99286.2083333333, + 99286.25, 99286.2916666667, 99286.3333333333, 99286.375, + 99286.4166666667, 99286.4583333333, 99286.5, 99286.5416666667, + 99286.5833333333, 99286.625, 99286.6666666667, 99286.7083333333, + 99286.75, 99286.7916666667, 99286.8333333333, 99286.875, + 99286.9166666667, 99286.9583333333, 99287, 99287.0416666667, + 99287.0833333333, 99287.125, 99287.1666666667, 99287.2083333333, + 99287.25, 99287.2916666667, 99287.3333333333, 99287.375, + 99287.4166666667, 99287.4583333333, 99287.5, 99287.5416666667, + 99287.5833333333, 99287.625, 99287.6666666667, 99287.7083333333, + 99287.75, 99287.7916666667, 99287.8333333333, 99287.875, + 99287.9166666667, 99287.9583333333, 99288, 99288.0416666667, + 99288.0833333333, 99288.125, 99288.1666666667, 99288.2083333333, + 99288.25, 99288.2916666667, 99288.3333333333, 99288.375, + 99288.4166666667, 99288.4583333333, 99288.5, 99288.5416666667, + 99288.5833333333, 99288.625, 99288.6666666667, 99288.7083333333, + 99288.75, 99288.7916666667, 99288.8333333333, 99288.875, + 99288.9166666667, 99288.9583333333, 99289, 99289.0416666667, + 99289.0833333333, 99289.125, 99289.1666666667, 99289.2083333333, + 99289.25, 99289.2916666667, 99289.3333333333, 99289.375, + 99289.4166666667, 99289.4583333333, 99289.5, 99289.5416666667, + 99289.5833333333, 99289.625, 99289.6666666667, 99289.7083333333, + 99289.75, 99289.7916666667, 99289.8333333333, 99289.875, + 99289.9166666667, 99289.9583333333, 99290, 99290.0416666667, + 99290.0833333333, 99290.125, 99290.1666666667, 99290.2083333333, + 99290.25, 99290.2916666667, 99290.3333333333, 99290.375, + 99290.4166666667, 99290.4583333333, 99290.5, 99290.5416666667, + 99290.5833333333, 99290.625, 99290.6666666667, 99290.7083333333, + 99290.75, 99290.7916666667, 99290.8333333333, 99290.875, + 99290.9166666667, 99290.9583333333, 99291, 99291.0416666667, + 99291.0833333333, 99291.125, 99291.1666666667, 99291.2083333333, + 99291.25, 99291.2916666667, 99291.3333333333, 99291.375, + 99291.4166666667, 99291.4583333333, 99291.5, 99291.5416666667, + 99291.5833333333, 99291.625, 99291.6666666667, 99291.7083333333, + 99291.75, 99291.7916666667, 99291.8333333333, 99291.875, + 99291.9166666667, 99291.9583333333, 99292, 99292.0416666667, + 99292.0833333333, 99292.125, 99292.1666666667, 99292.2083333333, + 99292.25, 99292.2916666667, 99292.3333333333, 99292.375, + 99292.4166666667, 99292.4583333333, 99292.5, 99292.5416666667, + 99292.5833333333, 99292.625, 99292.6666666667, 99292.7083333333, + 99292.75, 99292.7916666667, 99292.8333333333, 99292.875, + 99292.9166666667, 99292.9583333333, 99293, 99293.0416666667, + 99293.0833333333, 99293.125, 99293.1666666667, 99293.2083333333, + 99293.25, 99293.2916666667, 99293.3333333333, 99293.375, + 99293.4166666667, 99293.4583333333, 99293.5, 99293.5416666667, + 99293.5833333333, 99293.625, 99293.6666666667, 99293.7083333333, + 99293.75, 99293.7916666667, 99293.8333333333, 99293.875, + 99293.9166666667, 99293.9583333333, 99294, 99294.0416666667, + 99294.0833333333, 99294.125, 99294.1666666667, 99294.2083333333, + 99294.25, 99294.2916666667, 99294.3333333333, 99294.375, + 99294.4166666667, 99294.4583333333, 99294.5, 99294.5416666667, + 99294.5833333333, 99294.625, 99294.6666666667, 99294.7083333333, + 99294.75, 99294.7916666667, 99294.8333333333, 99294.875, + 99294.9166666667, 99294.9583333333, 99295, 99295.0416666667, + 99295.0833333333, 99295.125, 99295.1666666667, 99295.2083333333, + 99295.25, 99295.2916666667, 99295.3333333333, 99295.375, + 99295.4166666667, 99295.4583333333, 99295.5, 99295.5416666667, + 99295.5833333333, 99295.625, 99295.6666666667, 99295.7083333333, + 99295.75, 99295.7916666667, 99295.8333333333, 99295.875, + 99295.9166666667, 99295.9583333333, 99296, 99296.0416666667, + 99296.0833333333, 99296.125, 99296.1666666667, 99296.2083333333, + 99296.25, 99296.2916666667, 99296.3333333333, 99296.375, + 99296.4166666667, 99296.4583333333, 99296.5, 99296.5416666667, + 99296.5833333333, 99296.625, 99296.6666666667, 99296.7083333333, + 99296.75, 99296.7916666667, 99296.8333333333, 99296.875, + 99296.9166666667, 99296.9583333333, 99297, 99297.0416666667, + 99297.0833333333, 99297.125, 99297.1666666667, 99297.2083333333, + 99297.25, 99297.2916666667, 99297.3333333333, 99297.375, + 99297.4166666667, 99297.4583333333, 99297.5, 99297.5416666667, + 99297.5833333333, 99297.625, 99297.6666666667, 99297.7083333333, + 99297.75, 99297.7916666667, 99297.8333333333, 99297.875, + 99297.9166666667, 99297.9583333333, 99298, 99298.0416666667, + 99298.0833333333, 99298.125, 99298.1666666667, 99298.2083333333, + 99298.25, 99298.2916666667, 99298.3333333333, 99298.375, + 99298.4166666667, 99298.4583333333, 99298.5, 99298.5416666667, + 99298.5833333333, 99298.625, 99298.6666666667, 99298.7083333333, + 99298.75, 99298.7916666667, 99298.8333333333, 99298.875, + 99298.9166666667, 99298.9583333333, 99299, 99299.0416666667, + 99299.0833333333, 99299.125, 99299.1666666667, 99299.2083333333, + 99299.25, 99299.2916666667, 99299.3333333333, 99299.375, + 99299.4166666667, 99299.4583333333, 99299.5, 99299.5416666667, + 99299.5833333333, 99299.625, 99299.6666666667, 99299.7083333333, + 99299.75, 99299.7916666667, 99299.8333333333, 99299.875, + 99299.9166666667, 99299.9583333333, 99300, 99300.0416666667, + 99300.0833333333, 99300.125, 99300.1666666667, 99300.2083333333, + 99300.25, 99300.2916666667, 99300.3333333333, 99300.375, + 99300.4166666667, 99300.4583333333, 99300.5, 99300.5416666667, + 99300.5833333333, 99300.625, 99300.6666666667, 99300.7083333333, + 99300.75, 99300.7916666667, 99300.8333333333, 99300.875, + 99300.9166666667, 99300.9583333333, 99301, 99301.0416666667, + 99301.0833333333, 99301.125, 99301.1666666667, 99301.2083333333, + 99301.25, 99301.2916666667, 99301.3333333333, 99301.375, + 99301.4166666667, 99301.4583333333, 99301.5, 99301.5416666667, + 99301.5833333333, 99301.625, 99301.6666666667, 99301.7083333333, + 99301.75, 99301.7916666667, 99301.8333333333, 99301.875, + 99301.9166666667, 99301.9583333333, 99302, 99302.0416666667, + 99302.0833333333, 99302.125, 99302.1666666667, 99302.2083333333, + 99302.25, 99302.2916666667, 99302.3333333333, 99302.375, + 99302.4166666667, 99302.4583333333, 99302.5, 99302.5416666667, + 99302.5833333333, 99302.625, 99302.6666666667, 99302.7083333333, + 99302.75, 99302.7916666667, 99302.8333333333, 99302.875, + 99302.9166666667, 99302.9583333333, 99303, 99303.0416666667, + 99303.0833333333, 99303.125, 99303.1666666667, 99303.2083333333, + 99303.25, 99303.2916666667, 99303.3333333333, 99303.375, + 99303.4166666667, 99303.4583333333, 99303.5, 99303.5416666667, + 99303.5833333333, 99303.625, 99303.6666666667, 99303.7083333333, + 99303.75, 99303.7916666667, 99303.8333333333, 99303.875, + 99303.9166666667, 99303.9583333333, 99304, 99304.0416666667, + 99304.0833333333, 99304.125, 99304.1666666667, 99304.2083333333, + 99304.25, 99304.2916666667, 99304.3333333333, 99304.375, + 99304.4166666667, 99304.4583333333, 99304.5, 99304.5416666667, + 99304.5833333333, 99304.625, 99304.6666666667, 99304.7083333333, + 99304.75, 99304.7916666667, 99304.8333333333, 99304.875, + 99304.9166666667, 99304.9583333333, 99305, 99305.0416666667, + 99305.0833333333, 99305.125, 99305.1666666667, 99305.2083333333, + 99305.25, 99305.2916666667, 99305.3333333333, 99305.375, + 99305.4166666667, 99305.4583333333, 99305.5, 99305.5416666667, + 99305.5833333333, 99305.625, 99305.6666666667, 99305.7083333333, + 99305.75, 99305.7916666667, 99305.8333333333, 99305.875, + 99305.9166666667, 99305.9583333333, 99306, 99306.0416666667, + 99306.0833333333, 99306.125, 99306.1666666667, 99306.2083333333, + 99306.25, 99306.2916666667, 99306.3333333333, 99306.375, + 99306.4166666667, 99306.4583333333, 99306.5, 99306.5416666667, + 99306.5833333333, 99306.625, 99306.6666666667, 99306.7083333333, + 99306.75, 99306.7916666667, 99306.8333333333, 99306.875, + 99306.9166666667, 99306.9583333333, 99307, 99307.0416666667, + 99307.0833333333, 99307.125, 99307.1666666667, 99307.2083333333, + 99307.25, 99307.2916666667, 99307.3333333333, 99307.375, + 99307.4166666667, 99307.4583333333, 99307.5, 99307.5416666667, + 99307.5833333333, 99307.625, 99307.6666666667, 99307.7083333333, + 99307.75, 99307.7916666667, 99307.8333333333, 99307.875, + 99307.9166666667, 99307.9583333333, 99308, 99308.0416666667, + 99308.0833333333, 99308.125, 99308.1666666667, 99308.2083333333, + 99308.25, 99308.2916666667, 99308.3333333333, 99308.375, + 99308.4166666667, 99308.4583333333, 99308.5, 99308.5416666667, + 99308.5833333333, 99308.625, 99308.6666666667, 99308.7083333333, + 99308.75, 99308.7916666667, 99308.8333333333, 99308.875, + 99308.9166666667, 99308.9583333333, 99309, 99309.0416666667, + 99309.0833333333, 99309.125, 99309.1666666667, 99309.2083333333, + 99309.25, 99309.2916666667, 99309.3333333333, 99309.375, + 99309.4166666667, 99309.4583333333, 99309.5, 99309.5416666667, + 99309.5833333333, 99309.625, 99309.6666666667, 99309.7083333333, + 99309.75, 99309.7916666667, 99309.8333333333, 99309.875, + 99309.9166666667, 99309.9583333333, 99310, 99310.0416666667, + 99310.0833333333, 99310.125, 99310.1666666667, 99310.2083333333, + 99310.25, 99310.2916666667, 99310.3333333333, 99310.375, + 99310.4166666667, 99310.4583333333, 99310.5, 99310.5416666667, + 99310.5833333333, 99310.625, 99310.6666666667, 99310.7083333333, + 99310.75, 99310.7916666667, 99310.8333333333, 99310.875, + 99310.9166666667, 99310.9583333333, 99311, 99311.0416666667, + 99311.0833333333, 99311.125, 99311.1666666667, 99311.2083333333, + 99311.25, 99311.2916666667, 99311.3333333333, 99311.375, + 99311.4166666667, 99311.4583333333, 99311.5, 99311.5416666667, + 99311.5833333333, 99311.625, 99311.6666666667, 99311.7083333333, + 99311.75, 99311.7916666667, 99311.8333333333, 99311.875, + 99311.9166666667, 99311.9583333333, 99312, 99312.0416666667, + 99312.0833333333, 99312.125, 99312.1666666667, 99312.2083333333, + 99312.25, 99312.2916666667, 99312.3333333333, 99312.375, + 99312.4166666667, 99312.4583333333, 99312.5, 99312.5416666667, + 99312.5833333333, 99312.625, 99312.6666666667, 99312.7083333333, + 99312.75, 99312.7916666667, 99312.8333333333, 99312.875, + 99312.9166666667, 99312.9583333333, 99313, 99313.0416666667, + 99313.0833333333, 99313.125, 99313.1666666667, 99313.2083333333, + 99313.25, 99313.2916666667, 99313.3333333333, 99313.375, + 99313.4166666667, 99313.4583333333, 99313.5, 99313.5416666667, + 99313.5833333333, 99313.625, 99313.6666666667, 99313.7083333333, + 99313.75, 99313.7916666667, 99313.8333333333, 99313.875, + 99313.9166666667, 99313.9583333333, 99314, 99314.0416666667, + 99314.0833333333, 99314.125, 99314.1666666667, 99314.2083333333, + 99314.25, 99314.2916666667, 99314.3333333333, 99314.375, + 99314.4166666667, 99314.4583333333, 99314.5, 99314.5416666667, + 99314.5833333333, 99314.625, 99314.6666666667, 99314.7083333333, + 99314.75, 99314.7916666667, 99314.8333333333, 99314.875, + 99314.9166666667, 99314.9583333333, 99315, 99315.0416666667, + 99315.0833333333, 99315.125, 99315.1666666667, 99315.2083333333, + 99315.25, 99315.2916666667, 99315.3333333333, 99315.375, + 99315.4166666667, 99315.4583333333, 99315.5, 99315.5416666667, + 99315.5833333333, 99315.625, 99315.6666666667, 99315.7083333333, + 99315.75, 99315.7916666667, 99315.8333333333, 99315.875, + 99315.9166666667, 99315.9583333333, 99316, 99316.0416666667, + 99316.0833333333, 99316.125, 99316.1666666667, 99316.2083333333, + 99316.25, 99316.2916666667, 99316.3333333333, 99316.375, + 99316.4166666667, 99316.4583333333, 99316.5, 99316.5416666667, + 99316.5833333333, 99316.625, 99316.6666666667, 99316.7083333333, + 99316.75, 99316.7916666667, 99316.8333333333, 99316.875, + 99316.9166666667, 99316.9583333333, 99317, 99317.0416666667, + 99317.0833333333, 99317.125, 99317.1666666667, 99317.2083333333, + 99317.25, 99317.2916666667, 99317.3333333333, 99317.375, + 99317.4166666667, 99317.4583333333, 99317.5, 99317.5416666667, + 99317.5833333333, 99317.625, 99317.6666666667, 99317.7083333333, + 99317.75, 99317.7916666667, 99317.8333333333, 99317.875, + 99317.9166666667, 99317.9583333333, 99318, 99318.0416666667, + 99318.0833333333, 99318.125, 99318.1666666667, 99318.2083333333, + 99318.25, 99318.2916666667, 99318.3333333333, 99318.375, + 99318.4166666667, 99318.4583333333, 99318.5, 99318.5416666667, + 99318.5833333333, 99318.625, 99318.6666666667, 99318.7083333333, + 99318.75, 99318.7916666667, 99318.8333333333, 99318.875, + 99318.9166666667, 99318.9583333333, 99319, 99319.0416666667, + 99319.0833333333, 99319.125, 99319.1666666667, 99319.2083333333, + 99319.25, 99319.2916666667, 99319.3333333333, 99319.375, + 99319.4166666667, 99319.4583333333, 99319.5, 99319.5416666667, + 99319.5833333333, 99319.625, 99319.6666666667, 99319.7083333333, + 99319.75, 99319.7916666667, 99319.8333333333, 99319.875, + 99319.9166666667, 99319.9583333333, 99320, 99320.0416666667, + 99320.0833333333, 99320.125, 99320.1666666667, 99320.2083333333, + 99320.25, 99320.2916666667, 99320.3333333333, 99320.375, + 99320.4166666667, 99320.4583333333, 99320.5, 99320.5416666667, + 99320.5833333333, 99320.625, 99320.6666666667, 99320.7083333333, + 99320.75, 99320.7916666667, 99320.8333333333, 99320.875, + 99320.9166666667, 99320.9583333333, 99321, 99321.0416666667, + 99321.0833333333, 99321.125, 99321.1666666667, 99321.2083333333, + 99321.25, 99321.2916666667, 99321.3333333333, 99321.375, + 99321.4166666667, 99321.4583333333, 99321.5, 99321.5416666667, + 99321.5833333333, 99321.625, 99321.6666666667, 99321.7083333333, + 99321.75, 99321.7916666667, 99321.8333333333, 99321.875, + 99321.9166666667, 99321.9583333333, 99322, 99322.0416666667, + 99322.0833333333, 99322.125, 99322.1666666667, 99322.2083333333, + 99322.25, 99322.2916666667, 99322.3333333333, 99322.375, + 99322.4166666667, 99322.4583333333, 99322.5, 99322.5416666667, + 99322.5833333333, 99322.625, 99322.6666666667, 99322.7083333333, + 99322.75, 99322.7916666667, 99322.8333333333, 99322.875, + 99322.9166666667, 99322.9583333333, 99323, 99323.0416666667, + 99323.0833333333, 99323.125, 99323.1666666667, 99323.2083333333, + 99323.25, 99323.2916666667, 99323.3333333333, 99323.375, + 99323.4166666667, 99323.4583333333, 99323.5, 99323.5416666667, + 99323.5833333333, 99323.625, 99323.6666666667, 99323.7083333333, + 99323.75, 99323.7916666667, 99323.8333333333, 99323.875, + 99323.9166666667, 99323.9583333333, 99324, 99324.0416666667, + 99324.0833333333, 99324.125, 99324.1666666667, 99324.2083333333, + 99324.25, 99324.2916666667, 99324.3333333333, 99324.375, + 99324.4166666667, 99324.4583333333, 99324.5, 99324.5416666667, + 99324.5833333333, 99324.625, 99324.6666666667, 99324.7083333333, + 99324.75, 99324.7916666667, 99324.8333333333, 99324.875, + 99324.9166666667, 99324.9583333333, 99325, 99325.0416666667, + 99325.0833333333, 99325.125, 99325.1666666667, 99325.2083333333, + 99325.25, 99325.2916666667, 99325.3333333333, 99325.375, + 99325.4166666667, 99325.4583333333, 99325.5, 99325.5416666667, + 99325.5833333333, 99325.625, 99325.6666666667, 99325.7083333333, + 99325.75, 99325.7916666667, 99325.8333333333, 99325.875, + 99325.9166666667, 99325.9583333333, 99326, 99326.0416666667, + 99326.0833333333, 99326.125, 99326.1666666667, 99326.2083333333, + 99326.25, 99326.2916666667, 99326.3333333333, 99326.375, + 99326.4166666667, 99326.4583333333, 99326.5, 99326.5416666667, + 99326.5833333333, 99326.625, 99326.6666666667, 99326.7083333333, + 99326.75, 99326.7916666667, 99326.8333333333, 99326.875, + 99326.9166666667, 99326.9583333333, 99327, 99327.0416666667, + 99327.0833333333, 99327.125, 99327.1666666667, 99327.2083333333, + 99327.25, 99327.2916666667, 99327.3333333333, 99327.375, + 99327.4166666667, 99327.4583333333, 99327.5, 99327.5416666667, + 99327.5833333333, 99327.625, 99327.6666666667, 99327.7083333333, + 99327.75, 99327.7916666667, 99327.8333333333, 99327.875, + 99327.9166666667, 99327.9583333333, 99328, 99328.0416666667, + 99328.0833333333, 99328.125, 99328.1666666667, 99328.2083333333, + 99328.25, 99328.2916666667, 99328.3333333333, 99328.375, + 99328.4166666667, 99328.4583333333, 99328.5, 99328.5416666667, + 99328.5833333333, 99328.625, 99328.6666666667, 99328.7083333333, + 99328.75, 99328.7916666667, 99328.8333333333, 99328.875, + 99328.9166666667, 99328.9583333333, 99329, 99329.0416666667, + 99329.0833333333, 99329.125, 99329.1666666667, 99329.2083333333, + 99329.25, 99329.2916666667, 99329.3333333333, 99329.375, + 99329.4166666667, 99329.4583333333, 99329.5, 99329.5416666667, + 99329.5833333333, 99329.625, 99329.6666666667, 99329.7083333333, + 99329.75, 99329.7916666667, 99329.8333333333, 99329.875, + 99329.9166666667, 99329.9583333333, 99330, 99330.0416666667, + 99330.0833333333, 99330.125, 99330.1666666667, 99330.2083333333, + 99330.25, 99330.2916666667, 99330.3333333333, 99330.375, + 99330.4166666667, 99330.4583333333, 99330.5, 99330.5416666667, + 99330.5833333333, 99330.625, 99330.6666666667, 99330.7083333333, + 99330.75, 99330.7916666667, 99330.8333333333, 99330.875, + 99330.9166666667, 99330.9583333333, 99331, 99331.0416666667, + 99331.0833333333, 99331.125, 99331.1666666667, 99331.2083333333, + 99331.25, 99331.2916666667, 99331.3333333333, 99331.375, + 99331.4166666667, 99331.4583333333, 99331.5, 99331.5416666667, + 99331.5833333333, 99331.625, 99331.6666666667, 99331.7083333333, + 99331.75, 99331.7916666667, 99331.8333333333, 99331.875, + 99331.9166666667, 99331.9583333333, 99332, 99332.0416666667, + 99332.0833333333, 99332.125, 99332.1666666667, 99332.2083333333, + 99332.25, 99332.2916666667, 99332.3333333333, 99332.375, + 99332.4166666667, 99332.4583333333, 99332.5, 99332.5416666667, + 99332.5833333333, 99332.625, 99332.6666666667, 99332.7083333333, + 99332.75, 99332.7916666667, 99332.8333333333, 99332.875, + 99332.9166666667, 99332.9583333333, 99333, 99333.0416666667, + 99333.0833333333, 99333.125, 99333.1666666667, 99333.2083333333, + 99333.25, 99333.2916666667, 99333.3333333333, 99333.375, + 99333.4166666667, 99333.4583333333, 99333.5, 99333.5416666667, + 99333.5833333333, 99333.625, 99333.6666666667, 99333.7083333333, + 99333.75, 99333.7916666667, 99333.8333333333, 99333.875, + 99333.9166666667, 99333.9583333333, 99334, 99334.0416666667, + 99334.0833333333, 99334.125, 99334.1666666667, 99334.2083333333, + 99334.25, 99334.2916666667, 99334.3333333333, 99334.375, + 99334.4166666667, 99334.4583333333, 99334.5, 99334.5416666667, + 99334.5833333333, 99334.625, 99334.6666666667, 99334.7083333333, + 99334.75, 99334.7916666667, 99334.8333333333, 99334.875, + 99334.9166666667, 99334.9583333333, 99335, 99335.0416666667, + 99335.0833333333, 99335.125, 99335.1666666667, 99335.2083333333, + 99335.25, 99335.2916666667, 99335.3333333333, 99335.375, + 99335.4166666667, 99335.4583333333, 99335.5, 99335.5416666667, + 99335.5833333333, 99335.625, 99335.6666666667, 99335.7083333333, + 99335.75, 99335.7916666667, 99335.8333333333, 99335.875, + 99335.9166666667, 99335.9583333333, 99336, 99336.0416666667, + 99336.0833333333, 99336.125, 99336.1666666667, 99336.2083333333, + 99336.25, 99336.2916666667, 99336.3333333333, 99336.375, + 99336.4166666667, 99336.4583333333, 99336.5, 99336.5416666667, + 99336.5833333333, 99336.625, 99336.6666666667, 99336.7083333333, + 99336.75, 99336.7916666667, 99336.8333333333, 99336.875, + 99336.9166666667, 99336.9583333333, 99337, 99337.0416666667, + 99337.0833333333, 99337.125, 99337.1666666667, 99337.2083333333, + 99337.25, 99337.2916666667, 99337.3333333333, 99337.375, + 99337.4166666667, 99337.4583333333, 99337.5, 99337.5416666667, + 99337.5833333333, 99337.625, 99337.6666666667, 99337.7083333333, + 99337.75, 99337.7916666667, 99337.8333333333, 99337.875, + 99337.9166666667, 99337.9583333333, 99338, 99338.0416666667, + 99338.0833333333, 99338.125, 99338.1666666667, 99338.2083333333, + 99338.25, 99338.2916666667, 99338.3333333333, 99338.375, + 99338.4166666667, 99338.4583333333, 99338.5, 99338.5416666667, + 99338.5833333333, 99338.625, 99338.6666666667, 99338.7083333333, + 99338.75, 99338.7916666667, 99338.8333333333, 99338.875, + 99338.9166666667, 99338.9583333333, 99339, 99339.0416666667, + 99339.0833333333, 99339.125, 99339.1666666667, 99339.2083333333, + 99339.25, 99339.2916666667, 99339.3333333333, 99339.375, + 99339.4166666667, 99339.4583333333, 99339.5, 99339.5416666667, + 99339.5833333333, 99339.625, 99339.6666666667, 99339.7083333333, + 99339.75, 99339.7916666667, 99339.8333333333, 99339.875, + 99339.9166666667, 99339.9583333333, 99340, 99340.0416666667, + 99340.0833333333, 99340.125, 99340.1666666667, 99340.2083333333, + 99340.25, 99340.2916666667, 99340.3333333333, 99340.375, + 99340.4166666667, 99340.4583333333, 99340.5, 99340.5416666667, + 99340.5833333333, 99340.625, 99340.6666666667, 99340.7083333333, + 99340.75, 99340.7916666667, 99340.8333333333, 99340.875, + 99340.9166666667, 99340.9583333333, 99341, 99341.0416666667, + 99341.0833333333, 99341.125, 99341.1666666667, 99341.2083333333, + 99341.25, 99341.2916666667, 99341.3333333333, 99341.375, + 99341.4166666667, 99341.4583333333, 99341.5, 99341.5416666667, + 99341.5833333333, 99341.625, 99341.6666666667, 99341.7083333333, + 99341.75, 99341.7916666667, 99341.8333333333, 99341.875, + 99341.9166666667, 99341.9583333333, 99342, 99342.0416666667, + 99342.0833333333, 99342.125, 99342.1666666667, 99342.2083333333, + 99342.25, 99342.2916666667, 99342.3333333333, 99342.375, + 99342.4166666667, 99342.4583333333, 99342.5, 99342.5416666667, + 99342.5833333333, 99342.625, 99342.6666666667, 99342.7083333333, + 99342.75, 99342.7916666667, 99342.8333333333, 99342.875, + 99342.9166666667, 99342.9583333333, 99343, 99343.0416666667, + 99343.0833333333, 99343.125, 99343.1666666667, 99343.2083333333, + 99343.25, 99343.2916666667, 99343.3333333333, 99343.375, + 99343.4166666667, 99343.4583333333, 99343.5, 99343.5416666667, + 99343.5833333333, 99343.625, 99343.6666666667, 99343.7083333333, + 99343.75, 99343.7916666667, 99343.8333333333, 99343.875, + 99343.9166666667, 99343.9583333333, 99344, 99344.0416666667, + 99344.0833333333, 99344.125, 99344.1666666667, 99344.2083333333, + 99344.25, 99344.2916666667, 99344.3333333333, 99344.375, + 99344.4166666667, 99344.4583333333, 99344.5, 99344.5416666667, + 99344.5833333333, 99344.625, 99344.6666666667, 99344.7083333333, + 99344.75, 99344.7916666667, 99344.8333333333, 99344.875, + 99344.9166666667, 99344.9583333333, 99345, 99345.0416666667, + 99345.0833333333, 99345.125, 99345.1666666667, 99345.2083333333, + 99345.25, 99345.2916666667, 99345.3333333333, 99345.375, + 99345.4166666667, 99345.4583333333, 99345.5, 99345.5416666667, + 99345.5833333333, 99345.625, 99345.6666666667, 99345.7083333333, + 99345.75, 99345.7916666667, 99345.8333333333, 99345.875, + 99345.9166666667, 99345.9583333333 ; + + time_bounds = + 98980, 98980.09, + 98980.09, 98980.12, + 98980.12, 98980.16, + 98980.16, 98980.21, + 98980.21, 98980.25, + 98980.25, 98980.29, + 98980.29, 98980.34, + 98980.34, 98980.38, + 98980.38, 98980.41, + 98980.41, 98980.46, + 98980.46, 98980.5, + 98980.5, 98980.54, + 98980.54, 98980.59, + 98980.59, 98980.62, + 98980.62, 98980.66, + 98980.66, 98980.71, + 98980.71, 98980.75, + 98980.75, 98980.79, + 98980.79, 98980.84, + 98980.84, 98980.88, + 98980.88, 98980.91, + 98980.91, 98980.96, + 98980.96, 98981, + 98981, 98981.04, + 98981.04, 98981.09, + 98981.09, 98981.12, + 98981.12, 98981.16, + 98981.16, 98981.21, + 98981.21, 98981.25, + 98981.25, 98981.29, + 98981.29, 98981.34, + 98981.34, 98981.38, + 98981.38, 98981.41, + 98981.41, 98981.46, + 98981.46, 98981.5, + 98981.5, 98981.54, + 98981.54, 98981.59, + 98981.59, 98981.62, + 98981.62, 98981.66, + 98981.66, 98981.71, + 98981.71, 98981.75, + 98981.75, 98981.79, + 98981.79, 98981.84, + 98981.84, 98981.88, + 98981.88, 98981.91, + 98981.91, 98981.96, + 98981.96, 98982, + 98982, 98982.04, + 98982.04, 98982.09, + 98982.09, 98982.12, + 98982.12, 98982.16, + 98982.16, 98982.21, + 98982.21, 98982.25, + 98982.25, 98982.29, + 98982.29, 98982.34, + 98982.34, 98982.38, + 98982.38, 98982.41, + 98982.41, 98982.46, + 98982.46, 98982.5, + 98982.5, 98982.54, + 98982.54, 98982.59, + 98982.59, 98982.62, + 98982.62, 98982.66, + 98982.66, 98982.71, + 98982.71, 98982.75, + 98982.75, 98982.79, + 98982.79, 98982.84, + 98982.84, 98982.88, + 98982.88, 98982.91, + 98982.91, 98982.96, + 98982.96, 98983, + 98983, 98983.04, + 98983.04, 98983.09, + 98983.09, 98983.12, + 98983.12, 98983.16, + 98983.16, 98983.21, + 98983.21, 98983.25, + 98983.25, 98983.29, + 98983.29, 98983.34, + 98983.34, 98983.38, + 98983.38, 98983.41, + 98983.41, 98983.46, + 98983.46, 98983.5, + 98983.5, 98983.54, + 98983.54, 98983.59, + 98983.59, 98983.62, + 98983.62, 98983.66, + 98983.66, 98983.71, + 98983.71, 98983.75, + 98983.75, 98983.79, + 98983.79, 98983.84, + 98983.84, 98983.88, + 98983.88, 98983.91, + 98983.91, 98983.96, + 98983.96, 98984, + 98984, 98984.04, + 98984.04, 98984.09, + 98984.09, 98984.12, + 98984.12, 98984.16, + 98984.16, 98984.21, + 98984.21, 98984.25, + 98984.25, 98984.29, + 98984.29, 98984.34, + 98984.34, 98984.38, + 98984.38, 98984.41, + 98984.41, 98984.46, + 98984.46, 98984.5, + 98984.5, 98984.54, + 98984.54, 98984.59, + 98984.59, 98984.62, + 98984.62, 98984.66, + 98984.66, 98984.71, + 98984.71, 98984.75, + 98984.75, 98984.79, + 98984.79, 98984.84, + 98984.84, 98984.88, + 98984.88, 98984.91, + 98984.91, 98984.96, + 98984.96, 98985, + 98985, 98985.04, + 98985.04, 98985.09, + 98985.09, 98985.12, + 98985.12, 98985.16, + 98985.16, 98985.21, + 98985.21, 98985.25, + 98985.25, 98985.29, + 98985.29, 98985.34, + 98985.34, 98985.38, + 98985.38, 98985.41, + 98985.41, 98985.46, + 98985.46, 98985.5, + 98985.5, 98985.54, + 98985.54, 98985.59, + 98985.59, 98985.62, + 98985.62, 98985.66, + 98985.66, 98985.71, + 98985.71, 98985.75, + 98985.75, 98985.79, + 98985.79, 98985.84, + 98985.84, 98985.88, + 98985.88, 98985.91, + 98985.91, 98985.96, + 98985.96, 98986, + 98986, 98986.04, + 98986.04, 98986.09, + 98986.09, 98986.12, + 98986.12, 98986.16, + 98986.16, 98986.21, + 98986.21, 98986.25, + 98986.25, 98986.29, + 98986.29, 98986.34, + 98986.34, 98986.38, + 98986.38, 98986.41, + 98986.41, 98986.46, + 98986.46, 98986.5, + 98986.5, 98986.54, + 98986.54, 98986.59, + 98986.59, 98986.62, + 98986.62, 98986.66, + 98986.66, 98986.71, + 98986.71, 98986.75, + 98986.75, 98986.79, + 98986.79, 98986.84, + 98986.84, 98986.88, + 98986.88, 98986.91, + 98986.91, 98986.96, + 98986.96, 98987, + 98987, 98987.04, + 98987.04, 98987.09, + 98987.09, 98987.12, + 98987.12, 98987.16, + 98987.16, 98987.21, + 98987.21, 98987.25, + 98987.25, 98987.29, + 98987.29, 98987.34, + 98987.34, 98987.38, + 98987.38, 98987.41, + 98987.41, 98987.46, + 98987.46, 98987.5, + 98987.5, 98987.54, + 98987.54, 98987.59, + 98987.59, 98987.62, + 98987.62, 98987.66, + 98987.66, 98987.71, + 98987.71, 98987.75, + 98987.75, 98987.79, + 98987.79, 98987.84, + 98987.84, 98987.88, + 98987.88, 98987.91, + 98987.91, 98987.96, + 98987.96, 98988, + 98988, 98988.04, + 98988.04, 98988.09, + 98988.09, 98988.12, + 98988.12, 98988.16, + 98988.16, 98988.21, + 98988.21, 98988.25, + 98988.25, 98988.29, + 98988.29, 98988.34, + 98988.34, 98988.38, + 98988.38, 98988.41, + 98988.41, 98988.46, + 98988.46, 98988.5, + 98988.5, 98988.54, + 98988.54, 98988.59, + 98988.59, 98988.62, + 98988.62, 98988.66, + 98988.66, 98988.71, + 98988.71, 98988.75, + 98988.75, 98988.79, + 98988.79, 98988.84, + 98988.84, 98988.88, + 98988.88, 98988.91, + 98988.91, 98988.96, + 98988.96, 98989, + 98989, 98989.04, + 98989.04, 98989.09, + 98989.09, 98989.12, + 98989.12, 98989.16, + 98989.16, 98989.21, + 98989.21, 98989.25, + 98989.25, 98989.29, + 98989.29, 98989.34, + 98989.34, 98989.38, + 98989.38, 98989.41, + 98989.41, 98989.46, + 98989.46, 98989.5, + 98989.5, 98989.54, + 98989.54, 98989.59, + 98989.59, 98989.62, + 98989.62, 98989.66, + 98989.66, 98989.71, + 98989.71, 98989.75, + 98989.75, 98989.79, + 98989.79, 98989.84, + 98989.84, 98989.88, + 98989.88, 98989.91, + 98989.91, 98989.96, + 98989.96, 98990, + 98990, 98990.04, + 98990.04, 98990.09, + 98990.09, 98990.12, + 98990.12, 98990.16, + 98990.16, 98990.21, + 98990.21, 98990.25, + 98990.25, 98990.29, + 98990.29, 98990.34, + 98990.34, 98990.38, + 98990.38, 98990.41, + 98990.41, 98990.46, + 98990.46, 98990.5, + 98990.5, 98990.54, + 98990.54, 98990.59, + 98990.59, 98990.62, + 98990.62, 98990.66, + 98990.66, 98990.71, + 98990.71, 98990.75, + 98990.75, 98990.79, + 98990.79, 98990.84, + 98990.84, 98990.88, + 98990.88, 98990.91, + 98990.91, 98990.96, + 98990.96, 98991, + 98991, 98991.04, + 98991.04, 98991.09, + 98991.09, 98991.12, + 98991.12, 98991.16, + 98991.16, 98991.21, + 98991.21, 98991.25, + 98991.25, 98991.29, + 98991.29, 98991.34, + 98991.34, 98991.38, + 98991.38, 98991.41, + 98991.41, 98991.46, + 98991.46, 98991.5, + 98991.5, 98991.54, + 98991.54, 98991.59, + 98991.59, 98991.62, + 98991.62, 98991.66, + 98991.66, 98991.71, + 98991.71, 98991.75, + 98991.75, 98991.79, + 98991.79, 98991.84, + 98991.84, 98991.88, + 98991.88, 98991.91, + 98991.91, 98991.96, + 98991.96, 98992, + 98992, 98992.04, + 98992.04, 98992.09, + 98992.09, 98992.12, + 98992.12, 98992.16, + 98992.16, 98992.21, + 98992.21, 98992.25, + 98992.25, 98992.29, + 98992.29, 98992.34, + 98992.34, 98992.38, + 98992.38, 98992.41, + 98992.41, 98992.46, + 98992.46, 98992.5, + 98992.5, 98992.54, + 98992.54, 98992.59, + 98992.59, 98992.62, + 98992.62, 98992.66, + 98992.66, 98992.71, + 98992.71, 98992.75, + 98992.75, 98992.79, + 98992.79, 98992.84, + 98992.84, 98992.88, + 98992.88, 98992.91, + 98992.91, 98992.96, + 98992.96, 98993, + 98993, 98993.04, + 98993.04, 98993.09, + 98993.09, 98993.12, + 98993.12, 98993.16, + 98993.16, 98993.21, + 98993.21, 98993.25, + 98993.25, 98993.29, + 98993.29, 98993.34, + 98993.34, 98993.38, + 98993.38, 98993.41, + 98993.41, 98993.46, + 98993.46, 98993.5, + 98993.5, 98993.54, + 98993.54, 98993.59, + 98993.59, 98993.62, + 98993.62, 98993.66, + 98993.66, 98993.71, + 98993.71, 98993.75, + 98993.75, 98993.79, + 98993.79, 98993.84, + 98993.84, 98993.88, + 98993.88, 98993.91, + 98993.91, 98993.96, + 98993.96, 98994, + 98994, 98994.04, + 98994.04, 98994.09, + 98994.09, 98994.12, + 98994.12, 98994.16, + 98994.16, 98994.21, + 98994.21, 98994.25, + 98994.25, 98994.29, + 98994.29, 98994.34, + 98994.34, 98994.38, + 98994.38, 98994.41, + 98994.41, 98994.46, + 98994.46, 98994.5, + 98994.5, 98994.54, + 98994.54, 98994.59, + 98994.59, 98994.62, + 98994.62, 98994.66, + 98994.66, 98994.71, + 98994.71, 98994.75, + 98994.75, 98994.79, + 98994.79, 98994.84, + 98994.84, 98994.88, + 98994.88, 98994.91, + 98994.91, 98994.96, + 98994.96, 98995, + 98995, 98995.04, + 98995.04, 98995.09, + 98995.09, 98995.12, + 98995.12, 98995.16, + 98995.16, 98995.21, + 98995.21, 98995.25, + 98995.25, 98995.29, + 98995.29, 98995.34, + 98995.34, 98995.38, + 98995.38, 98995.41, + 98995.41, 98995.46, + 98995.46, 98995.5, + 98995.5, 98995.54, + 98995.54, 98995.59, + 98995.59, 98995.62, + 98995.62, 98995.66, + 98995.66, 98995.71, + 98995.71, 98995.75, + 98995.75, 98995.79, + 98995.79, 98995.84, + 98995.84, 98995.88, + 98995.88, 98995.91, + 98995.91, 98995.96, + 98995.96, 98996, + 98996, 98996.04, + 98996.04, 98996.09, + 98996.09, 98996.12, + 98996.12, 98996.16, + 98996.16, 98996.21, + 98996.21, 98996.25, + 98996.25, 98996.29, + 98996.29, 98996.34, + 98996.34, 98996.38, + 98996.38, 98996.41, + 98996.41, 98996.46, + 98996.46, 98996.5, + 98996.5, 98996.54, + 98996.54, 98996.59, + 98996.59, 98996.62, + 98996.62, 98996.66, + 98996.66, 98996.71, + 98996.71, 98996.75, + 98996.75, 98996.79, + 98996.79, 98996.84, + 98996.84, 98996.88, + 98996.88, 98996.91, + 98996.91, 98996.96, + 98996.96, 98997, + 98997, 98997.04, + 98997.04, 98997.09, + 98997.09, 98997.12, + 98997.12, 98997.16, + 98997.16, 98997.21, + 98997.21, 98997.25, + 98997.25, 98997.29, + 98997.29, 98997.34, + 98997.34, 98997.38, + 98997.38, 98997.41, + 98997.41, 98997.46, + 98997.46, 98997.5, + 98997.5, 98997.54, + 98997.54, 98997.59, + 98997.59, 98997.62, + 98997.62, 98997.66, + 98997.66, 98997.71, + 98997.71, 98997.75, + 98997.75, 98997.79, + 98997.79, 98997.84, + 98997.84, 98997.88, + 98997.88, 98997.91, + 98997.91, 98997.96, + 98997.96, 98998, + 98998, 98998.04, + 98998.04, 98998.09, + 98998.09, 98998.12, + 98998.12, 98998.16, + 98998.16, 98998.21, + 98998.21, 98998.25, + 98998.25, 98998.29, + 98998.29, 98998.34, + 98998.34, 98998.38, + 98998.38, 98998.41, + 98998.41, 98998.46, + 98998.46, 98998.5, + 98998.5, 98998.54, + 98998.54, 98998.59, + 98998.59, 98998.62, + 98998.62, 98998.66, + 98998.66, 98998.71, + 98998.71, 98998.75, + 98998.75, 98998.79, + 98998.79, 98998.84, + 98998.84, 98998.88, + 98998.88, 98998.91, + 98998.91, 98998.96, + 98998.96, 98999, + 98999, 98999.04, + 98999.04, 98999.09, + 98999.09, 98999.12, + 98999.12, 98999.16, + 98999.16, 98999.21, + 98999.21, 98999.25, + 98999.25, 98999.29, + 98999.29, 98999.34, + 98999.34, 98999.38, + 98999.38, 98999.41, + 98999.41, 98999.46, + 98999.46, 98999.5, + 98999.5, 98999.54, + 98999.54, 98999.59, + 98999.59, 98999.62, + 98999.62, 98999.66, + 98999.66, 98999.71, + 98999.71, 98999.75, + 98999.75, 98999.79, + 98999.79, 98999.84, + 98999.84, 98999.88, + 98999.88, 98999.91, + 98999.91, 98999.96, + 98999.96, 99000, + 99000, 99000.04, + 99000.04, 99000.09, + 99000.09, 99000.12, + 99000.12, 99000.16, + 99000.16, 99000.21, + 99000.21, 99000.25, + 99000.25, 99000.29, + 99000.29, 99000.34, + 99000.34, 99000.38, + 99000.38, 99000.41, + 99000.41, 99000.46, + 99000.46, 99000.5, + 99000.5, 99000.54, + 99000.54, 99000.59, + 99000.59, 99000.62, + 99000.62, 99000.66, + 99000.66, 99000.71, + 99000.71, 99000.75, + 99000.75, 99000.79, + 99000.79, 99000.84, + 99000.84, 99000.88, + 99000.88, 99000.91, + 99000.91, 99000.96, + 99000.96, 99001, + 99001, 99001.04, + 99001.04, 99001.09, + 99001.09, 99001.12, + 99001.12, 99001.16, + 99001.16, 99001.21, + 99001.21, 99001.25, + 99001.25, 99001.29, + 99001.29, 99001.34, + 99001.34, 99001.38, + 99001.38, 99001.41, + 99001.41, 99001.46, + 99001.46, 99001.5, + 99001.5, 99001.54, + 99001.54, 99001.59, + 99001.59, 99001.62, + 99001.62, 99001.66, + 99001.66, 99001.71, + 99001.71, 99001.75, + 99001.75, 99001.79, + 99001.79, 99001.84, + 99001.84, 99001.88, + 99001.88, 99001.91, + 99001.91, 99001.96, + 99001.96, 99002, + 99002, 99002.04, + 99002.04, 99002.09, + 99002.09, 99002.12, + 99002.12, 99002.16, + 99002.16, 99002.21, + 99002.21, 99002.25, + 99002.25, 99002.29, + 99002.29, 99002.34, + 99002.34, 99002.38, + 99002.38, 99002.41, + 99002.41, 99002.46, + 99002.46, 99002.5, + 99002.5, 99002.54, + 99002.54, 99002.59, + 99002.59, 99002.62, + 99002.62, 99002.66, + 99002.66, 99002.71, + 99002.71, 99002.75, + 99002.75, 99002.79, + 99002.79, 99002.84, + 99002.84, 99002.88, + 99002.88, 99002.91, + 99002.91, 99002.96, + 99002.96, 99003, + 99003, 99003.04, + 99003.04, 99003.09, + 99003.09, 99003.12, + 99003.12, 99003.16, + 99003.16, 99003.21, + 99003.21, 99003.25, + 99003.25, 99003.29, + 99003.29, 99003.34, + 99003.34, 99003.38, + 99003.38, 99003.41, + 99003.41, 99003.46, + 99003.46, 99003.5, + 99003.5, 99003.54, + 99003.54, 99003.59, + 99003.59, 99003.62, + 99003.62, 99003.66, + 99003.66, 99003.71, + 99003.71, 99003.75, + 99003.75, 99003.79, + 99003.79, 99003.84, + 99003.84, 99003.88, + 99003.88, 99003.91, + 99003.91, 99003.96, + 99003.96, 99004, + 99004, 99004.04, + 99004.04, 99004.09, + 99004.09, 99004.12, + 99004.12, 99004.16, + 99004.16, 99004.21, + 99004.21, 99004.25, + 99004.25, 99004.29, + 99004.29, 99004.34, + 99004.34, 99004.38, + 99004.38, 99004.41, + 99004.41, 99004.46, + 99004.46, 99004.5, + 99004.5, 99004.54, + 99004.54, 99004.59, + 99004.59, 99004.62, + 99004.62, 99004.66, + 99004.66, 99004.71, + 99004.71, 99004.75, + 99004.75, 99004.79, + 99004.79, 99004.84, + 99004.84, 99004.88, + 99004.88, 99004.91, + 99004.91, 99004.96, + 99004.96, 99005, + 99005, 99005.04, + 99005.04, 99005.09, + 99005.09, 99005.12, + 99005.12, 99005.16, + 99005.16, 99005.21, + 99005.21, 99005.25, + 99005.25, 99005.29, + 99005.29, 99005.34, + 99005.34, 99005.38, + 99005.38, 99005.41, + 99005.41, 99005.46, + 99005.46, 99005.5, + 99005.5, 99005.54, + 99005.54, 99005.59, + 99005.59, 99005.62, + 99005.62, 99005.66, + 99005.66, 99005.71, + 99005.71, 99005.75, + 99005.75, 99005.79, + 99005.79, 99005.84, + 99005.84, 99005.88, + 99005.88, 99005.91, + 99005.91, 99005.96, + 99005.96, 99006, + 99006, 99006.04, + 99006.04, 99006.09, + 99006.09, 99006.12, + 99006.12, 99006.16, + 99006.16, 99006.21, + 99006.21, 99006.25, + 99006.25, 99006.29, + 99006.29, 99006.34, + 99006.34, 99006.38, + 99006.38, 99006.41, + 99006.41, 99006.46, + 99006.46, 99006.5, + 99006.5, 99006.54, + 99006.54, 99006.59, + 99006.59, 99006.62, + 99006.62, 99006.66, + 99006.66, 99006.71, + 99006.71, 99006.75, + 99006.75, 99006.79, + 99006.79, 99006.84, + 99006.84, 99006.88, + 99006.88, 99006.91, + 99006.91, 99006.96, + 99006.96, 99007, + 99007, 99007.04, + 99007.04, 99007.09, + 99007.09, 99007.12, + 99007.12, 99007.16, + 99007.16, 99007.21, + 99007.21, 99007.25, + 99007.25, 99007.29, + 99007.29, 99007.34, + 99007.34, 99007.38, + 99007.38, 99007.41, + 99007.41, 99007.46, + 99007.46, 99007.5, + 99007.5, 99007.54, + 99007.54, 99007.59, + 99007.59, 99007.62, + 99007.62, 99007.66, + 99007.66, 99007.71, + 99007.71, 99007.75, + 99007.75, 99007.79, + 99007.79, 99007.84, + 99007.84, 99007.88, + 99007.88, 99007.91, + 99007.91, 99007.96, + 99007.96, 99008, + 99008, 99008.04, + 99008.04, 99008.09, + 99008.09, 99008.12, + 99008.12, 99008.16, + 99008.16, 99008.21, + 99008.21, 99008.25, + 99008.25, 99008.29, + 99008.29, 99008.34, + 99008.34, 99008.38, + 99008.38, 99008.41, + 99008.41, 99008.46, + 99008.46, 99008.5, + 99008.5, 99008.54, + 99008.54, 99008.59, + 99008.59, 99008.62, + 99008.62, 99008.66, + 99008.66, 99008.71, + 99008.71, 99008.75, + 99008.75, 99008.79, + 99008.79, 99008.84, + 99008.84, 99008.88, + 99008.88, 99008.91, + 99008.91, 99008.96, + 99008.96, 99009, + 99009, 99009.04, + 99009.04, 99009.09, + 99009.09, 99009.12, + 99009.12, 99009.16, + 99009.16, 99009.21, + 99009.21, 99009.25, + 99009.25, 99009.29, + 99009.29, 99009.34, + 99009.34, 99009.38, + 99009.38, 99009.41, + 99009.41, 99009.46, + 99009.46, 99009.5, + 99009.5, 99009.54, + 99009.54, 99009.59, + 99009.59, 99009.62, + 99009.62, 99009.66, + 99009.66, 99009.71, + 99009.71, 99009.75, + 99009.75, 99009.79, + 99009.79, 99009.84, + 99009.84, 99009.88, + 99009.88, 99009.91, + 99009.91, 99009.96, + 99009.96, 99010, + 99010, 99010.04, + 99010.04, 99010.09, + 99010.09, 99010.12, + 99010.12, 99010.16, + 99010.16, 99010.21, + 99010.21, 99010.25, + 99010.25, 99010.29, + 99010.29, 99010.34, + 99010.34, 99010.38, + 99010.38, 99010.41, + 99010.41, 99010.46, + 99010.46, 99010.5, + 99010.5, 99010.54, + 99010.54, 99010.59, + 99010.59, 99010.62, + 99010.62, 99010.66, + 99010.66, 99010.71, + 99010.71, 99010.75, + 99010.75, 99010.79, + 99010.79, 99010.84, + 99010.84, 99010.88, + 99010.88, 99010.91, + 99010.91, 99010.96, + 99010.96, 99011, + 99011, 99011.04, + 99011.04, 99011.09, + 99011.09, 99011.12, + 99011.12, 99011.16, + 99011.16, 99011.21, + 99011.21, 99011.25, + 99011.25, 99011.29, + 99011.29, 99011.34, + 99011.34, 99011.38, + 99011.38, 99011.41, + 99011.41, 99011.46, + 99011.46, 99011.5, + 99011.5, 99011.54, + 99011.54, 99011.59, + 99011.59, 99011.62, + 99011.62, 99011.66, + 99011.66, 99011.71, + 99011.71, 99011.75, + 99011.75, 99011.79, + 99011.79, 99011.84, + 99011.84, 99011.88, + 99011.88, 99011.91, + 99011.91, 99011.96, + 99011.96, 99012, + 99012, 99012.04, + 99012.04, 99012.09, + 99012.09, 99012.12, + 99012.12, 99012.16, + 99012.16, 99012.21, + 99012.21, 99012.25, + 99012.25, 99012.29, + 99012.29, 99012.34, + 99012.34, 99012.38, + 99012.38, 99012.41, + 99012.41, 99012.46, + 99012.46, 99012.5, + 99012.5, 99012.54, + 99012.54, 99012.59, + 99012.59, 99012.62, + 99012.62, 99012.66, + 99012.66, 99012.71, + 99012.71, 99012.75, + 99012.75, 99012.79, + 99012.79, 99012.84, + 99012.84, 99012.88, + 99012.88, 99012.91, + 99012.91, 99012.96, + 99012.96, 99013, + 99013, 99013.04, + 99013.04, 99013.09, + 99013.09, 99013.12, + 99013.12, 99013.16, + 99013.16, 99013.21, + 99013.21, 99013.25, + 99013.25, 99013.29, + 99013.29, 99013.34, + 99013.34, 99013.38, + 99013.38, 99013.41, + 99013.41, 99013.46, + 99013.46, 99013.5, + 99013.5, 99013.54, + 99013.54, 99013.59, + 99013.59, 99013.62, + 99013.62, 99013.66, + 99013.66, 99013.71, + 99013.71, 99013.75, + 99013.75, 99013.79, + 99013.79, 99013.84, + 99013.84, 99013.88, + 99013.88, 99013.91, + 99013.91, 99013.96, + 99013.96, 99014, + 99014, 99014.04, + 99014.04, 99014.09, + 99014.09, 99014.12, + 99014.12, 99014.16, + 99014.16, 99014.21, + 99014.21, 99014.25, + 99014.25, 99014.29, + 99014.29, 99014.34, + 99014.34, 99014.38, + 99014.38, 99014.41, + 99014.41, 99014.46, + 99014.46, 99014.5, + 99014.5, 99014.54, + 99014.54, 99014.59, + 99014.59, 99014.62, + 99014.62, 99014.66, + 99014.66, 99014.71, + 99014.71, 99014.75, + 99014.75, 99014.79, + 99014.79, 99014.84, + 99014.84, 99014.88, + 99014.88, 99014.91, + 99014.91, 99014.96, + 99014.96, 99015, + 99015, 99015.04, + 99015.04, 99015.09, + 99015.09, 99015.12, + 99015.12, 99015.16, + 99015.16, 99015.21, + 99015.21, 99015.25, + 99015.25, 99015.29, + 99015.29, 99015.34, + 99015.34, 99015.38, + 99015.38, 99015.41, + 99015.41, 99015.46, + 99015.46, 99015.5, + 99015.5, 99015.54, + 99015.54, 99015.59, + 99015.59, 99015.62, + 99015.62, 99015.66, + 99015.66, 99015.71, + 99015.71, 99015.75, + 99015.75, 99015.79, + 99015.79, 99015.84, + 99015.84, 99015.88, + 99015.88, 99015.91, + 99015.91, 99015.96, + 99015.96, 99016, + 99016, 99016.04, + 99016.04, 99016.09, + 99016.09, 99016.12, + 99016.12, 99016.16, + 99016.16, 99016.21, + 99016.21, 99016.25, + 99016.25, 99016.29, + 99016.29, 99016.34, + 99016.34, 99016.38, + 99016.38, 99016.41, + 99016.41, 99016.46, + 99016.46, 99016.5, + 99016.5, 99016.54, + 99016.54, 99016.59, + 99016.59, 99016.62, + 99016.62, 99016.66, + 99016.66, 99016.71, + 99016.71, 99016.75, + 99016.75, 99016.79, + 99016.79, 99016.84, + 99016.84, 99016.88, + 99016.88, 99016.91, + 99016.91, 99016.96, + 99016.96, 99017, + 99017, 99017.04, + 99017.04, 99017.09, + 99017.09, 99017.12, + 99017.12, 99017.16, + 99017.16, 99017.21, + 99017.21, 99017.25, + 99017.25, 99017.29, + 99017.29, 99017.34, + 99017.34, 99017.38, + 99017.38, 99017.41, + 99017.41, 99017.46, + 99017.46, 99017.5, + 99017.5, 99017.54, + 99017.54, 99017.59, + 99017.59, 99017.62, + 99017.62, 99017.66, + 99017.66, 99017.71, + 99017.71, 99017.75, + 99017.75, 99017.79, + 99017.79, 99017.84, + 99017.84, 99017.88, + 99017.88, 99017.91, + 99017.91, 99017.96, + 99017.96, 99018, + 99018, 99018.04, + 99018.04, 99018.09, + 99018.09, 99018.12, + 99018.12, 99018.16, + 99018.16, 99018.21, + 99018.21, 99018.25, + 99018.25, 99018.29, + 99018.29, 99018.34, + 99018.34, 99018.38, + 99018.38, 99018.41, + 99018.41, 99018.46, + 99018.46, 99018.5, + 99018.5, 99018.54, + 99018.54, 99018.59, + 99018.59, 99018.62, + 99018.62, 99018.66, + 99018.66, 99018.71, + 99018.71, 99018.75, + 99018.75, 99018.79, + 99018.79, 99018.84, + 99018.84, 99018.88, + 99018.88, 99018.91, + 99018.91, 99018.96, + 99018.96, 99019, + 99019, 99019.04, + 99019.04, 99019.09, + 99019.09, 99019.12, + 99019.12, 99019.16, + 99019.16, 99019.21, + 99019.21, 99019.25, + 99019.25, 99019.29, + 99019.29, 99019.34, + 99019.34, 99019.38, + 99019.38, 99019.41, + 99019.41, 99019.46, + 99019.46, 99019.5, + 99019.5, 99019.54, + 99019.54, 99019.59, + 99019.59, 99019.62, + 99019.62, 99019.66, + 99019.66, 99019.71, + 99019.71, 99019.75, + 99019.75, 99019.79, + 99019.79, 99019.84, + 99019.84, 99019.88, + 99019.88, 99019.91, + 99019.91, 99019.96, + 99019.96, 99020, + 99020, 99020.04, + 99020.04, 99020.09, + 99020.09, 99020.12, + 99020.12, 99020.16, + 99020.16, 99020.21, + 99020.21, 99020.25, + 99020.25, 99020.29, + 99020.29, 99020.34, + 99020.34, 99020.38, + 99020.38, 99020.41, + 99020.41, 99020.46, + 99020.46, 99020.5, + 99020.5, 99020.54, + 99020.54, 99020.59, + 99020.59, 99020.62, + 99020.62, 99020.66, + 99020.66, 99020.71, + 99020.71, 99020.75, + 99020.75, 99020.79, + 99020.79, 99020.84, + 99020.84, 99020.88, + 99020.88, 99020.91, + 99020.91, 99020.96, + 99020.96, 99021, + 99021, 99021.04, + 99021.04, 99021.09, + 99021.09, 99021.12, + 99021.12, 99021.16, + 99021.16, 99021.21, + 99021.21, 99021.25, + 99021.25, 99021.29, + 99021.29, 99021.34, + 99021.34, 99021.38, + 99021.38, 99021.41, + 99021.41, 99021.46, + 99021.46, 99021.5, + 99021.5, 99021.54, + 99021.54, 99021.59, + 99021.59, 99021.62, + 99021.62, 99021.66, + 99021.66, 99021.71, + 99021.71, 99021.75, + 99021.75, 99021.79, + 99021.79, 99021.84, + 99021.84, 99021.88, + 99021.88, 99021.91, + 99021.91, 99021.96, + 99021.96, 99022, + 99022, 99022.04, + 99022.04, 99022.09, + 99022.09, 99022.12, + 99022.12, 99022.16, + 99022.16, 99022.21, + 99022.21, 99022.25, + 99022.25, 99022.29, + 99022.29, 99022.34, + 99022.34, 99022.38, + 99022.38, 99022.41, + 99022.41, 99022.46, + 99022.46, 99022.5, + 99022.5, 99022.54, + 99022.54, 99022.59, + 99022.59, 99022.62, + 99022.62, 99022.66, + 99022.66, 99022.71, + 99022.71, 99022.75, + 99022.75, 99022.79, + 99022.79, 99022.84, + 99022.84, 99022.88, + 99022.88, 99022.91, + 99022.91, 99022.96, + 99022.96, 99023, + 99023, 99023.04, + 99023.04, 99023.09, + 99023.09, 99023.12, + 99023.12, 99023.16, + 99023.16, 99023.21, + 99023.21, 99023.25, + 99023.25, 99023.29, + 99023.29, 99023.34, + 99023.34, 99023.38, + 99023.38, 99023.41, + 99023.41, 99023.46, + 99023.46, 99023.5, + 99023.5, 99023.54, + 99023.54, 99023.59, + 99023.59, 99023.62, + 99023.62, 99023.66, + 99023.66, 99023.71, + 99023.71, 99023.75, + 99023.75, 99023.79, + 99023.79, 99023.84, + 99023.84, 99023.88, + 99023.88, 99023.91, + 99023.91, 99023.96, + 99023.96, 99024, + 99024, 99024.04, + 99024.04, 99024.09, + 99024.09, 99024.12, + 99024.12, 99024.16, + 99024.16, 99024.21, + 99024.21, 99024.25, + 99024.25, 99024.29, + 99024.29, 99024.34, + 99024.34, 99024.38, + 99024.38, 99024.41, + 99024.41, 99024.46, + 99024.46, 99024.5, + 99024.5, 99024.54, + 99024.54, 99024.59, + 99024.59, 99024.62, + 99024.62, 99024.66, + 99024.66, 99024.71, + 99024.71, 99024.75, + 99024.75, 99024.79, + 99024.79, 99024.84, + 99024.84, 99024.88, + 99024.88, 99024.91, + 99024.91, 99024.96, + 99024.96, 99025, + 99025, 99025.04, + 99025.04, 99025.09, + 99025.09, 99025.12, + 99025.12, 99025.16, + 99025.16, 99025.21, + 99025.21, 99025.25, + 99025.25, 99025.29, + 99025.29, 99025.34, + 99025.34, 99025.38, + 99025.38, 99025.41, + 99025.41, 99025.46, + 99025.46, 99025.5, + 99025.5, 99025.54, + 99025.54, 99025.59, + 99025.59, 99025.62, + 99025.62, 99025.66, + 99025.66, 99025.71, + 99025.71, 99025.75, + 99025.75, 99025.79, + 99025.79, 99025.84, + 99025.84, 99025.88, + 99025.88, 99025.91, + 99025.91, 99025.96, + 99025.96, 99026, + 99026, 99026.04, + 99026.04, 99026.09, + 99026.09, 99026.12, + 99026.12, 99026.16, + 99026.16, 99026.21, + 99026.21, 99026.25, + 99026.25, 99026.29, + 99026.29, 99026.34, + 99026.34, 99026.38, + 99026.38, 99026.41, + 99026.41, 99026.46, + 99026.46, 99026.5, + 99026.5, 99026.54, + 99026.54, 99026.59, + 99026.59, 99026.62, + 99026.62, 99026.66, + 99026.66, 99026.71, + 99026.71, 99026.75, + 99026.75, 99026.79, + 99026.79, 99026.84, + 99026.84, 99026.88, + 99026.88, 99026.91, + 99026.91, 99026.96, + 99026.96, 99027, + 99027, 99027.04, + 99027.04, 99027.09, + 99027.09, 99027.12, + 99027.12, 99027.16, + 99027.16, 99027.21, + 99027.21, 99027.25, + 99027.25, 99027.29, + 99027.29, 99027.34, + 99027.34, 99027.38, + 99027.38, 99027.41, + 99027.41, 99027.46, + 99027.46, 99027.5, + 99027.5, 99027.54, + 99027.54, 99027.59, + 99027.59, 99027.62, + 99027.62, 99027.66, + 99027.66, 99027.71, + 99027.71, 99027.75, + 99027.75, 99027.79, + 99027.79, 99027.84, + 99027.84, 99027.88, + 99027.88, 99027.91, + 99027.91, 99027.96, + 99027.96, 99028, + 99028, 99028.04, + 99028.04, 99028.09, + 99028.09, 99028.12, + 99028.12, 99028.16, + 99028.16, 99028.21, + 99028.21, 99028.25, + 99028.25, 99028.29, + 99028.29, 99028.34, + 99028.34, 99028.38, + 99028.38, 99028.41, + 99028.41, 99028.46, + 99028.46, 99028.5, + 99028.5, 99028.54, + 99028.54, 99028.59, + 99028.59, 99028.62, + 99028.62, 99028.66, + 99028.66, 99028.71, + 99028.71, 99028.75, + 99028.75, 99028.79, + 99028.79, 99028.84, + 99028.84, 99028.88, + 99028.88, 99028.91, + 99028.91, 99028.96, + 99028.96, 99029, + 99029, 99029.04, + 99029.04, 99029.09, + 99029.09, 99029.12, + 99029.12, 99029.16, + 99029.16, 99029.21, + 99029.21, 99029.25, + 99029.25, 99029.29, + 99029.29, 99029.34, + 99029.34, 99029.38, + 99029.38, 99029.41, + 99029.41, 99029.46, + 99029.46, 99029.5, + 99029.5, 99029.54, + 99029.54, 99029.59, + 99029.59, 99029.62, + 99029.62, 99029.66, + 99029.66, 99029.71, + 99029.71, 99029.75, + 99029.75, 99029.79, + 99029.79, 99029.84, + 99029.84, 99029.88, + 99029.88, 99029.91, + 99029.91, 99029.96, + 99029.96, 99030, + 99030, 99030.04, + 99030.04, 99030.09, + 99030.09, 99030.12, + 99030.12, 99030.16, + 99030.16, 99030.21, + 99030.21, 99030.25, + 99030.25, 99030.29, + 99030.29, 99030.34, + 99030.34, 99030.38, + 99030.38, 99030.41, + 99030.41, 99030.46, + 99030.46, 99030.5, + 99030.5, 99030.54, + 99030.54, 99030.59, + 99030.59, 99030.62, + 99030.62, 99030.66, + 99030.66, 99030.71, + 99030.71, 99030.75, + 99030.75, 99030.79, + 99030.79, 99030.84, + 99030.84, 99030.88, + 99030.88, 99030.91, + 99030.91, 99030.96, + 99030.96, 99031, + 99031, 99031.04, + 99031.04, 99031.09, + 99031.09, 99031.12, + 99031.12, 99031.16, + 99031.16, 99031.21, + 99031.21, 99031.25, + 99031.25, 99031.29, + 99031.29, 99031.34, + 99031.34, 99031.38, + 99031.38, 99031.41, + 99031.41, 99031.46, + 99031.46, 99031.5, + 99031.5, 99031.54, + 99031.54, 99031.59, + 99031.59, 99031.62, + 99031.62, 99031.66, + 99031.66, 99031.71, + 99031.71, 99031.75, + 99031.75, 99031.79, + 99031.79, 99031.84, + 99031.84, 99031.88, + 99031.88, 99031.91, + 99031.91, 99031.96, + 99031.96, 99032, + 99032, 99032.04, + 99032.04, 99032.09, + 99032.09, 99032.12, + 99032.12, 99032.16, + 99032.16, 99032.21, + 99032.21, 99032.25, + 99032.25, 99032.29, + 99032.29, 99032.34, + 99032.34, 99032.38, + 99032.38, 99032.41, + 99032.41, 99032.46, + 99032.46, 99032.5, + 99032.5, 99032.54, + 99032.54, 99032.59, + 99032.59, 99032.62, + 99032.62, 99032.66, + 99032.66, 99032.71, + 99032.71, 99032.75, + 99032.75, 99032.79, + 99032.79, 99032.84, + 99032.84, 99032.88, + 99032.88, 99032.91, + 99032.91, 99032.96, + 99032.96, 99033, + 99033, 99033.04, + 99033.04, 99033.09, + 99033.09, 99033.12, + 99033.12, 99033.16, + 99033.16, 99033.21, + 99033.21, 99033.25, + 99033.25, 99033.29, + 99033.29, 99033.34, + 99033.34, 99033.38, + 99033.38, 99033.41, + 99033.41, 99033.46, + 99033.46, 99033.5, + 99033.5, 99033.54, + 99033.54, 99033.59, + 99033.59, 99033.62, + 99033.62, 99033.66, + 99033.66, 99033.71, + 99033.71, 99033.75, + 99033.75, 99033.79, + 99033.79, 99033.84, + 99033.84, 99033.88, + 99033.88, 99033.91, + 99033.91, 99033.96, + 99033.96, 99034, + 99034, 99034.04, + 99034.04, 99034.09, + 99034.09, 99034.12, + 99034.12, 99034.16, + 99034.16, 99034.21, + 99034.21, 99034.25, + 99034.25, 99034.29, + 99034.29, 99034.34, + 99034.34, 99034.38, + 99034.38, 99034.41, + 99034.41, 99034.46, + 99034.46, 99034.5, + 99034.5, 99034.54, + 99034.54, 99034.59, + 99034.59, 99034.62, + 99034.62, 99034.66, + 99034.66, 99034.71, + 99034.71, 99034.75, + 99034.75, 99034.79, + 99034.79, 99034.84, + 99034.84, 99034.88, + 99034.88, 99034.91, + 99034.91, 99034.96, + 99034.96, 99035, + 99035, 99035.04, + 99035.04, 99035.09, + 99035.09, 99035.12, + 99035.12, 99035.16, + 99035.16, 99035.21, + 99035.21, 99035.25, + 99035.25, 99035.29, + 99035.29, 99035.34, + 99035.34, 99035.38, + 99035.38, 99035.41, + 99035.41, 99035.46, + 99035.46, 99035.5, + 99035.5, 99035.54, + 99035.54, 99035.59, + 99035.59, 99035.62, + 99035.62, 99035.66, + 99035.66, 99035.71, + 99035.71, 99035.75, + 99035.75, 99035.79, + 99035.79, 99035.84, + 99035.84, 99035.88, + 99035.88, 99035.91, + 99035.91, 99035.96, + 99035.96, 99036, + 99036, 99036.04, + 99036.04, 99036.09, + 99036.09, 99036.12, + 99036.12, 99036.16, + 99036.16, 99036.21, + 99036.21, 99036.25, + 99036.25, 99036.29, + 99036.29, 99036.34, + 99036.34, 99036.38, + 99036.38, 99036.41, + 99036.41, 99036.46, + 99036.46, 99036.5, + 99036.5, 99036.54, + 99036.54, 99036.59, + 99036.59, 99036.62, + 99036.62, 99036.66, + 99036.66, 99036.71, + 99036.71, 99036.75, + 99036.75, 99036.79, + 99036.79, 99036.84, + 99036.84, 99036.88, + 99036.88, 99036.91, + 99036.91, 99036.96, + 99036.96, 99037, + 99037, 99037.04, + 99037.04, 99037.09, + 99037.09, 99037.12, + 99037.12, 99037.16, + 99037.16, 99037.21, + 99037.21, 99037.25, + 99037.25, 99037.29, + 99037.29, 99037.34, + 99037.34, 99037.38, + 99037.38, 99037.41, + 99037.41, 99037.46, + 99037.46, 99037.5, + 99037.5, 99037.54, + 99037.54, 99037.59, + 99037.59, 99037.62, + 99037.62, 99037.66, + 99037.66, 99037.71, + 99037.71, 99037.75, + 99037.75, 99037.79, + 99037.79, 99037.84, + 99037.84, 99037.88, + 99037.88, 99037.91, + 99037.91, 99037.96, + 99037.96, 99038, + 99038, 99038.04, + 99038.04, 99038.09, + 99038.09, 99038.12, + 99038.12, 99038.16, + 99038.16, 99038.21, + 99038.21, 99038.25, + 99038.25, 99038.29, + 99038.29, 99038.34, + 99038.34, 99038.38, + 99038.38, 99038.41, + 99038.41, 99038.46, + 99038.46, 99038.5, + 99038.5, 99038.54, + 99038.54, 99038.59, + 99038.59, 99038.62, + 99038.62, 99038.66, + 99038.66, 99038.71, + 99038.71, 99038.75, + 99038.75, 99038.79, + 99038.79, 99038.84, + 99038.84, 99038.88, + 99038.88, 99038.91, + 99038.91, 99038.96, + 99038.96, 99039, + 99039, 99039.04, + 99039.04, 99039.09, + 99039.09, 99039.12, + 99039.12, 99039.16, + 99039.16, 99039.21, + 99039.21, 99039.25, + 99039.25, 99039.29, + 99039.29, 99039.34, + 99039.34, 99039.38, + 99039.38, 99039.41, + 99039.41, 99039.46, + 99039.46, 99039.5, + 99039.5, 99039.54, + 99039.54, 99039.59, + 99039.59, 99039.62, + 99039.62, 99039.66, + 99039.66, 99039.71, + 99039.71, 99039.75, + 99039.75, 99039.79, + 99039.79, 99039.84, + 99039.84, 99039.88, + 99039.88, 99039.91, + 99039.91, 99039.96, + 99039.96, 99040, + 99040, 99040.04, + 99040.04, 99040.09, + 99040.09, 99040.12, + 99040.12, 99040.16, + 99040.16, 99040.21, + 99040.21, 99040.25, + 99040.25, 99040.29, + 99040.29, 99040.34, + 99040.34, 99040.38, + 99040.38, 99040.41, + 99040.41, 99040.46, + 99040.46, 99040.5, + 99040.5, 99040.54, + 99040.54, 99040.59, + 99040.59, 99040.62, + 99040.62, 99040.66, + 99040.66, 99040.71, + 99040.71, 99040.75, + 99040.75, 99040.79, + 99040.79, 99040.84, + 99040.84, 99040.88, + 99040.88, 99040.91, + 99040.91, 99040.96, + 99040.96, 99041, + 99041, 99041.04, + 99041.04, 99041.09, + 99041.09, 99041.12, + 99041.12, 99041.16, + 99041.16, 99041.21, + 99041.21, 99041.25, + 99041.25, 99041.29, + 99041.29, 99041.34, + 99041.34, 99041.38, + 99041.38, 99041.41, + 99041.41, 99041.46, + 99041.46, 99041.5, + 99041.5, 99041.54, + 99041.54, 99041.59, + 99041.59, 99041.62, + 99041.62, 99041.66, + 99041.66, 99041.71, + 99041.71, 99041.75, + 99041.75, 99041.79, + 99041.79, 99041.84, + 99041.84, 99041.88, + 99041.88, 99041.91, + 99041.91, 99041.96, + 99041.96, 99042, + 99042, 99042.04, + 99042.04, 99042.09, + 99042.09, 99042.12, + 99042.12, 99042.16, + 99042.16, 99042.21, + 99042.21, 99042.25, + 99042.25, 99042.29, + 99042.29, 99042.34, + 99042.34, 99042.38, + 99042.38, 99042.41, + 99042.41, 99042.46, + 99042.46, 99042.5, + 99042.5, 99042.54, + 99042.54, 99042.59, + 99042.59, 99042.62, + 99042.62, 99042.66, + 99042.66, 99042.71, + 99042.71, 99042.75, + 99042.75, 99042.79, + 99042.79, 99042.84, + 99042.84, 99042.88, + 99042.88, 99042.91, + 99042.91, 99042.96, + 99042.96, 99043, + 99043, 99043.04, + 99043.04, 99043.09, + 99043.09, 99043.12, + 99043.12, 99043.16, + 99043.16, 99043.21, + 99043.21, 99043.25, + 99043.25, 99043.29, + 99043.29, 99043.34, + 99043.34, 99043.38, + 99043.38, 99043.41, + 99043.41, 99043.46, + 99043.46, 99043.5, + 99043.5, 99043.54, + 99043.54, 99043.59, + 99043.59, 99043.62, + 99043.62, 99043.66, + 99043.66, 99043.71, + 99043.71, 99043.75, + 99043.75, 99043.79, + 99043.79, 99043.84, + 99043.84, 99043.88, + 99043.88, 99043.91, + 99043.91, 99043.96, + 99043.96, 99044, + 99044, 99044.04, + 99044.04, 99044.09, + 99044.09, 99044.12, + 99044.12, 99044.16, + 99044.16, 99044.21, + 99044.21, 99044.25, + 99044.25, 99044.29, + 99044.29, 99044.34, + 99044.34, 99044.38, + 99044.38, 99044.41, + 99044.41, 99044.46, + 99044.46, 99044.5, + 99044.5, 99044.54, + 99044.54, 99044.59, + 99044.59, 99044.62, + 99044.62, 99044.66, + 99044.66, 99044.71, + 99044.71, 99044.75, + 99044.75, 99044.79, + 99044.79, 99044.84, + 99044.84, 99044.88, + 99044.88, 99044.91, + 99044.91, 99044.96, + 99044.96, 99045, + 99045, 99045.04, + 99045.04, 99045.09, + 99045.09, 99045.12, + 99045.12, 99045.16, + 99045.16, 99045.21, + 99045.21, 99045.25, + 99045.25, 99045.29, + 99045.29, 99045.34, + 99045.34, 99045.38, + 99045.38, 99045.41, + 99045.41, 99045.46, + 99045.46, 99045.5, + 99045.5, 99045.54, + 99045.54, 99045.59, + 99045.59, 99045.62, + 99045.62, 99045.66, + 99045.66, 99045.71, + 99045.71, 99045.75, + 99045.75, 99045.79, + 99045.79, 99045.84, + 99045.84, 99045.88, + 99045.88, 99045.91, + 99045.91, 99045.96, + 99045.96, 99046, + 99046, 99046.04, + 99046.04, 99046.09, + 99046.09, 99046.12, + 99046.12, 99046.16, + 99046.16, 99046.21, + 99046.21, 99046.25, + 99046.25, 99046.29, + 99046.29, 99046.34, + 99046.34, 99046.38, + 99046.38, 99046.41, + 99046.41, 99046.46, + 99046.46, 99046.5, + 99046.5, 99046.54, + 99046.54, 99046.59, + 99046.59, 99046.62, + 99046.62, 99046.66, + 99046.66, 99046.71, + 99046.71, 99046.75, + 99046.75, 99046.79, + 99046.79, 99046.84, + 99046.84, 99046.88, + 99046.88, 99046.91, + 99046.91, 99046.96, + 99046.96, 99047, + 99047, 99047.04, + 99047.04, 99047.09, + 99047.09, 99047.12, + 99047.12, 99047.16, + 99047.16, 99047.21, + 99047.21, 99047.25, + 99047.25, 99047.29, + 99047.29, 99047.34, + 99047.34, 99047.38, + 99047.38, 99047.41, + 99047.41, 99047.46, + 99047.46, 99047.5, + 99047.5, 99047.54, + 99047.54, 99047.59, + 99047.59, 99047.62, + 99047.62, 99047.66, + 99047.66, 99047.71, + 99047.71, 99047.75, + 99047.75, 99047.79, + 99047.79, 99047.84, + 99047.84, 99047.88, + 99047.88, 99047.91, + 99047.91, 99047.96, + 99047.96, 99048, + 99048, 99048.04, + 99048.04, 99048.09, + 99048.09, 99048.12, + 99048.12, 99048.16, + 99048.16, 99048.21, + 99048.21, 99048.25, + 99048.25, 99048.29, + 99048.29, 99048.34, + 99048.34, 99048.38, + 99048.38, 99048.41, + 99048.41, 99048.46, + 99048.46, 99048.5, + 99048.5, 99048.54, + 99048.54, 99048.59, + 99048.59, 99048.62, + 99048.62, 99048.66, + 99048.66, 99048.71, + 99048.71, 99048.75, + 99048.75, 99048.79, + 99048.79, 99048.84, + 99048.84, 99048.88, + 99048.88, 99048.91, + 99048.91, 99048.96, + 99048.96, 99049, + 99049, 99049.04, + 99049.04, 99049.09, + 99049.09, 99049.12, + 99049.12, 99049.16, + 99049.16, 99049.21, + 99049.21, 99049.25, + 99049.25, 99049.29, + 99049.29, 99049.34, + 99049.34, 99049.38, + 99049.38, 99049.41, + 99049.41, 99049.46, + 99049.46, 99049.5, + 99049.5, 99049.54, + 99049.54, 99049.59, + 99049.59, 99049.62, + 99049.62, 99049.66, + 99049.66, 99049.71, + 99049.71, 99049.75, + 99049.75, 99049.79, + 99049.79, 99049.84, + 99049.84, 99049.88, + 99049.88, 99049.91, + 99049.91, 99049.96, + 99049.96, 99050, + 99050, 99050.04, + 99050.04, 99050.09, + 99050.09, 99050.12, + 99050.12, 99050.16, + 99050.16, 99050.21, + 99050.21, 99050.25, + 99050.25, 99050.29, + 99050.29, 99050.34, + 99050.34, 99050.38, + 99050.38, 99050.41, + 99050.41, 99050.46, + 99050.46, 99050.5, + 99050.5, 99050.54, + 99050.54, 99050.59, + 99050.59, 99050.62, + 99050.62, 99050.66, + 99050.66, 99050.71, + 99050.71, 99050.75, + 99050.75, 99050.79, + 99050.79, 99050.84, + 99050.84, 99050.88, + 99050.88, 99050.91, + 99050.91, 99050.96, + 99050.96, 99051, + 99051, 99051.04, + 99051.04, 99051.09, + 99051.09, 99051.12, + 99051.12, 99051.16, + 99051.16, 99051.21, + 99051.21, 99051.25, + 99051.25, 99051.29, + 99051.29, 99051.34, + 99051.34, 99051.38, + 99051.38, 99051.41, + 99051.41, 99051.46, + 99051.46, 99051.5, + 99051.5, 99051.54, + 99051.54, 99051.59, + 99051.59, 99051.62, + 99051.62, 99051.66, + 99051.66, 99051.71, + 99051.71, 99051.75, + 99051.75, 99051.79, + 99051.79, 99051.84, + 99051.84, 99051.88, + 99051.88, 99051.91, + 99051.91, 99051.96, + 99051.96, 99052, + 99052, 99052.04, + 99052.04, 99052.09, + 99052.09, 99052.12, + 99052.12, 99052.16, + 99052.16, 99052.21, + 99052.21, 99052.25, + 99052.25, 99052.29, + 99052.29, 99052.34, + 99052.34, 99052.38, + 99052.38, 99052.41, + 99052.41, 99052.46, + 99052.46, 99052.5, + 99052.5, 99052.54, + 99052.54, 99052.59, + 99052.59, 99052.62, + 99052.62, 99052.66, + 99052.66, 99052.71, + 99052.71, 99052.75, + 99052.75, 99052.79, + 99052.79, 99052.84, + 99052.84, 99052.88, + 99052.88, 99052.91, + 99052.91, 99052.96, + 99052.96, 99053, + 99053, 99053.04, + 99053.04, 99053.09, + 99053.09, 99053.12, + 99053.12, 99053.16, + 99053.16, 99053.21, + 99053.21, 99053.25, + 99053.25, 99053.29, + 99053.29, 99053.34, + 99053.34, 99053.38, + 99053.38, 99053.41, + 99053.41, 99053.46, + 99053.46, 99053.5, + 99053.5, 99053.54, + 99053.54, 99053.59, + 99053.59, 99053.62, + 99053.62, 99053.66, + 99053.66, 99053.71, + 99053.71, 99053.75, + 99053.75, 99053.79, + 99053.79, 99053.84, + 99053.84, 99053.88, + 99053.88, 99053.91, + 99053.91, 99053.96, + 99053.96, 99054, + 99054, 99054.04, + 99054.04, 99054.09, + 99054.09, 99054.12, + 99054.12, 99054.16, + 99054.16, 99054.21, + 99054.21, 99054.25, + 99054.25, 99054.29, + 99054.29, 99054.34, + 99054.34, 99054.38, + 99054.38, 99054.41, + 99054.41, 99054.46, + 99054.46, 99054.5, + 99054.5, 99054.54, + 99054.54, 99054.59, + 99054.59, 99054.62, + 99054.62, 99054.66, + 99054.66, 99054.71, + 99054.71, 99054.75, + 99054.75, 99054.79, + 99054.79, 99054.84, + 99054.84, 99054.88, + 99054.88, 99054.91, + 99054.91, 99054.96, + 99054.96, 99055, + 99055, 99055.04, + 99055.04, 99055.09, + 99055.09, 99055.12, + 99055.12, 99055.16, + 99055.16, 99055.21, + 99055.21, 99055.25, + 99055.25, 99055.29, + 99055.29, 99055.34, + 99055.34, 99055.38, + 99055.38, 99055.41, + 99055.41, 99055.46, + 99055.46, 99055.5, + 99055.5, 99055.54, + 99055.54, 99055.59, + 99055.59, 99055.62, + 99055.62, 99055.66, + 99055.66, 99055.71, + 99055.71, 99055.75, + 99055.75, 99055.79, + 99055.79, 99055.84, + 99055.84, 99055.88, + 99055.88, 99055.91, + 99055.91, 99055.96, + 99055.96, 99056, + 99056, 99056.04, + 99056.04, 99056.09, + 99056.09, 99056.12, + 99056.12, 99056.16, + 99056.16, 99056.21, + 99056.21, 99056.25, + 99056.25, 99056.29, + 99056.29, 99056.34, + 99056.34, 99056.38, + 99056.38, 99056.41, + 99056.41, 99056.46, + 99056.46, 99056.5, + 99056.5, 99056.54, + 99056.54, 99056.59, + 99056.59, 99056.62, + 99056.62, 99056.66, + 99056.66, 99056.71, + 99056.71, 99056.75, + 99056.75, 99056.79, + 99056.79, 99056.84, + 99056.84, 99056.88, + 99056.88, 99056.91, + 99056.91, 99056.96, + 99056.96, 99057, + 99057, 99057.04, + 99057.04, 99057.09, + 99057.09, 99057.12, + 99057.12, 99057.16, + 99057.16, 99057.21, + 99057.21, 99057.25, + 99057.25, 99057.29, + 99057.29, 99057.34, + 99057.34, 99057.38, + 99057.38, 99057.41, + 99057.41, 99057.46, + 99057.46, 99057.5, + 99057.5, 99057.54, + 99057.54, 99057.59, + 99057.59, 99057.62, + 99057.62, 99057.66, + 99057.66, 99057.71, + 99057.71, 99057.75, + 99057.75, 99057.79, + 99057.79, 99057.84, + 99057.84, 99057.88, + 99057.88, 99057.91, + 99057.91, 99057.96, + 99057.96, 99058, + 99058, 99058.04, + 99058.04, 99058.09, + 99058.09, 99058.12, + 99058.12, 99058.16, + 99058.16, 99058.21, + 99058.21, 99058.25, + 99058.25, 99058.29, + 99058.29, 99058.34, + 99058.34, 99058.38, + 99058.38, 99058.41, + 99058.41, 99058.46, + 99058.46, 99058.5, + 99058.5, 99058.54, + 99058.54, 99058.59, + 99058.59, 99058.62, + 99058.62, 99058.66, + 99058.66, 99058.71, + 99058.71, 99058.75, + 99058.75, 99058.79, + 99058.79, 99058.84, + 99058.84, 99058.88, + 99058.88, 99058.91, + 99058.91, 99058.96, + 99058.96, 99059, + 99059, 99059.04, + 99059.04, 99059.09, + 99059.09, 99059.12, + 99059.12, 99059.16, + 99059.16, 99059.21, + 99059.21, 99059.25, + 99059.25, 99059.29, + 99059.29, 99059.34, + 99059.34, 99059.38, + 99059.38, 99059.41, + 99059.41, 99059.46, + 99059.46, 99059.5, + 99059.5, 99059.54, + 99059.54, 99059.59, + 99059.59, 99059.62, + 99059.62, 99059.66, + 99059.66, 99059.71, + 99059.71, 99059.75, + 99059.75, 99059.79, + 99059.79, 99059.84, + 99059.84, 99059.88, + 99059.88, 99059.91, + 99059.91, 99059.96, + 99059.96, 99060, + 99060, 99060.04, + 99060.04, 99060.09, + 99060.09, 99060.12, + 99060.12, 99060.16, + 99060.16, 99060.21, + 99060.21, 99060.25, + 99060.25, 99060.29, + 99060.29, 99060.34, + 99060.34, 99060.38, + 99060.38, 99060.41, + 99060.41, 99060.46, + 99060.46, 99060.5, + 99060.5, 99060.54, + 99060.54, 99060.59, + 99060.59, 99060.62, + 99060.62, 99060.66, + 99060.66, 99060.71, + 99060.71, 99060.75, + 99060.75, 99060.79, + 99060.79, 99060.84, + 99060.84, 99060.88, + 99060.88, 99060.91, + 99060.91, 99060.96, + 99060.96, 99061, + 99061, 99061.04, + 99061.04, 99061.09, + 99061.09, 99061.12, + 99061.12, 99061.16, + 99061.16, 99061.21, + 99061.21, 99061.25, + 99061.25, 99061.29, + 99061.29, 99061.34, + 99061.34, 99061.38, + 99061.38, 99061.41, + 99061.41, 99061.46, + 99061.46, 99061.5, + 99061.5, 99061.54, + 99061.54, 99061.59, + 99061.59, 99061.62, + 99061.62, 99061.66, + 99061.66, 99061.71, + 99061.71, 99061.75, + 99061.75, 99061.79, + 99061.79, 99061.84, + 99061.84, 99061.88, + 99061.88, 99061.91, + 99061.91, 99061.96, + 99061.96, 99062, + 99062, 99062.04, + 99062.04, 99062.09, + 99062.09, 99062.12, + 99062.12, 99062.16, + 99062.16, 99062.21, + 99062.21, 99062.25, + 99062.25, 99062.29, + 99062.29, 99062.34, + 99062.34, 99062.38, + 99062.38, 99062.41, + 99062.41, 99062.46, + 99062.46, 99062.5, + 99062.5, 99062.54, + 99062.54, 99062.59, + 99062.59, 99062.62, + 99062.62, 99062.66, + 99062.66, 99062.71, + 99062.71, 99062.75, + 99062.75, 99062.79, + 99062.79, 99062.84, + 99062.84, 99062.88, + 99062.88, 99062.91, + 99062.91, 99062.96, + 99062.96, 99063, + 99063, 99063.04, + 99063.04, 99063.09, + 99063.09, 99063.12, + 99063.12, 99063.16, + 99063.16, 99063.21, + 99063.21, 99063.25, + 99063.25, 99063.29, + 99063.29, 99063.34, + 99063.34, 99063.38, + 99063.38, 99063.41, + 99063.41, 99063.46, + 99063.46, 99063.5, + 99063.5, 99063.54, + 99063.54, 99063.59, + 99063.59, 99063.62, + 99063.62, 99063.66, + 99063.66, 99063.71, + 99063.71, 99063.75, + 99063.75, 99063.79, + 99063.79, 99063.84, + 99063.84, 99063.88, + 99063.88, 99063.91, + 99063.91, 99063.96, + 99063.96, 99064, + 99064, 99064.04, + 99064.04, 99064.09, + 99064.09, 99064.12, + 99064.12, 99064.16, + 99064.16, 99064.21, + 99064.21, 99064.25, + 99064.25, 99064.29, + 99064.29, 99064.34, + 99064.34, 99064.38, + 99064.38, 99064.41, + 99064.41, 99064.46, + 99064.46, 99064.5, + 99064.5, 99064.54, + 99064.54, 99064.59, + 99064.59, 99064.62, + 99064.62, 99064.66, + 99064.66, 99064.71, + 99064.71, 99064.75, + 99064.75, 99064.79, + 99064.79, 99064.84, + 99064.84, 99064.88, + 99064.88, 99064.91, + 99064.91, 99064.96, + 99064.96, 99065, + 99065, 99065.04, + 99065.04, 99065.09, + 99065.09, 99065.12, + 99065.12, 99065.16, + 99065.16, 99065.21, + 99065.21, 99065.25, + 99065.25, 99065.29, + 99065.29, 99065.34, + 99065.34, 99065.38, + 99065.38, 99065.41, + 99065.41, 99065.46, + 99065.46, 99065.5, + 99065.5, 99065.54, + 99065.54, 99065.59, + 99065.59, 99065.62, + 99065.62, 99065.66, + 99065.66, 99065.71, + 99065.71, 99065.75, + 99065.75, 99065.79, + 99065.79, 99065.84, + 99065.84, 99065.88, + 99065.88, 99065.91, + 99065.91, 99065.96, + 99065.96, 99066, + 99066, 99066.04, + 99066.04, 99066.09, + 99066.09, 99066.12, + 99066.12, 99066.16, + 99066.16, 99066.21, + 99066.21, 99066.25, + 99066.25, 99066.29, + 99066.29, 99066.34, + 99066.34, 99066.38, + 99066.38, 99066.41, + 99066.41, 99066.46, + 99066.46, 99066.5, + 99066.5, 99066.54, + 99066.54, 99066.59, + 99066.59, 99066.62, + 99066.62, 99066.66, + 99066.66, 99066.71, + 99066.71, 99066.75, + 99066.75, 99066.79, + 99066.79, 99066.84, + 99066.84, 99066.88, + 99066.88, 99066.91, + 99066.91, 99066.96, + 99066.96, 99067, + 99067, 99067.04, + 99067.04, 99067.09, + 99067.09, 99067.12, + 99067.12, 99067.16, + 99067.16, 99067.21, + 99067.21, 99067.25, + 99067.25, 99067.29, + 99067.29, 99067.34, + 99067.34, 99067.38, + 99067.38, 99067.41, + 99067.41, 99067.46, + 99067.46, 99067.5, + 99067.5, 99067.54, + 99067.54, 99067.59, + 99067.59, 99067.62, + 99067.62, 99067.66, + 99067.66, 99067.71, + 99067.71, 99067.75, + 99067.75, 99067.79, + 99067.79, 99067.84, + 99067.84, 99067.88, + 99067.88, 99067.91, + 99067.91, 99067.96, + 99067.96, 99068, + 99068, 99068.04, + 99068.04, 99068.09, + 99068.09, 99068.12, + 99068.12, 99068.16, + 99068.16, 99068.21, + 99068.21, 99068.25, + 99068.25, 99068.29, + 99068.29, 99068.34, + 99068.34, 99068.38, + 99068.38, 99068.41, + 99068.41, 99068.46, + 99068.46, 99068.5, + 99068.5, 99068.54, + 99068.54, 99068.59, + 99068.59, 99068.62, + 99068.62, 99068.66, + 99068.66, 99068.71, + 99068.71, 99068.75, + 99068.75, 99068.79, + 99068.79, 99068.84, + 99068.84, 99068.88, + 99068.88, 99068.91, + 99068.91, 99068.96, + 99068.96, 99069, + 99069, 99069.04, + 99069.04, 99069.09, + 99069.09, 99069.12, + 99069.12, 99069.16, + 99069.16, 99069.21, + 99069.21, 99069.25, + 99069.25, 99069.29, + 99069.29, 99069.34, + 99069.34, 99069.38, + 99069.38, 99069.41, + 99069.41, 99069.46, + 99069.46, 99069.5, + 99069.5, 99069.54, + 99069.54, 99069.59, + 99069.59, 99069.62, + 99069.62, 99069.66, + 99069.66, 99069.71, + 99069.71, 99069.75, + 99069.75, 99069.79, + 99069.79, 99069.84, + 99069.84, 99069.88, + 99069.88, 99069.91, + 99069.91, 99069.96, + 99069.96, 99070, + 99070, 99070.04, + 99070.04, 99070.09, + 99070.09, 99070.12, + 99070.12, 99070.16, + 99070.16, 99070.21, + 99070.21, 99070.25, + 99070.25, 99070.29, + 99070.29, 99070.34, + 99070.34, 99070.38, + 99070.38, 99070.41, + 99070.41, 99070.46, + 99070.46, 99070.5, + 99070.5, 99070.54, + 99070.54, 99070.59, + 99070.59, 99070.62, + 99070.62, 99070.66, + 99070.66, 99070.71, + 99070.71, 99070.75, + 99070.75, 99070.79, + 99070.79, 99070.84, + 99070.84, 99070.88, + 99070.88, 99070.91, + 99070.91, 99070.96, + 99070.96, 99071, + 99071, 99071.04, + 99071.04, 99071.09, + 99071.09, 99071.12, + 99071.12, 99071.16, + 99071.16, 99071.21, + 99071.21, 99071.25, + 99071.25, 99071.29, + 99071.29, 99071.34, + 99071.34, 99071.38, + 99071.38, 99071.41, + 99071.41, 99071.46, + 99071.46, 99071.5, + 99071.5, 99071.54, + 99071.54, 99071.59, + 99071.59, 99071.62, + 99071.62, 99071.66, + 99071.66, 99071.71, + 99071.71, 99071.75, + 99071.75, 99071.79, + 99071.79, 99071.84, + 99071.84, 99071.88, + 99071.88, 99071.91, + 99071.91, 99071.96, + 99071.96, 99072, + 99072, 99072.04, + 99072.04, 99072.09, + 99072.09, 99072.12, + 99072.12, 99072.16, + 99072.16, 99072.21, + 99072.21, 99072.25, + 99072.25, 99072.29, + 99072.29, 99072.34, + 99072.34, 99072.38, + 99072.38, 99072.41, + 99072.41, 99072.46, + 99072.46, 99072.5, + 99072.5, 99072.54, + 99072.54, 99072.59, + 99072.59, 99072.62, + 99072.62, 99072.66, + 99072.66, 99072.71, + 99072.71, 99072.75, + 99072.75, 99072.79, + 99072.79, 99072.84, + 99072.84, 99072.88, + 99072.88, 99072.91, + 99072.91, 99072.96, + 99072.96, 99073, + 99073, 99073.04, + 99073.04, 99073.09, + 99073.09, 99073.12, + 99073.12, 99073.16, + 99073.16, 99073.21, + 99073.21, 99073.25, + 99073.25, 99073.29, + 99073.29, 99073.34, + 99073.34, 99073.38, + 99073.38, 99073.41, + 99073.41, 99073.46, + 99073.46, 99073.5, + 99073.5, 99073.54, + 99073.54, 99073.59, + 99073.59, 99073.62, + 99073.62, 99073.66, + 99073.66, 99073.71, + 99073.71, 99073.75, + 99073.75, 99073.79, + 99073.79, 99073.84, + 99073.84, 99073.88, + 99073.88, 99073.91, + 99073.91, 99073.96, + 99073.96, 99074, + 99074, 99074.04, + 99074.04, 99074.09, + 99074.09, 99074.12, + 99074.12, 99074.16, + 99074.16, 99074.21, + 99074.21, 99074.25, + 99074.25, 99074.29, + 99074.29, 99074.34, + 99074.34, 99074.38, + 99074.38, 99074.41, + 99074.41, 99074.46, + 99074.46, 99074.5, + 99074.5, 99074.54, + 99074.54, 99074.59, + 99074.59, 99074.62, + 99074.62, 99074.66, + 99074.66, 99074.71, + 99074.71, 99074.75, + 99074.75, 99074.79, + 99074.79, 99074.84, + 99074.84, 99074.88, + 99074.88, 99074.91, + 99074.91, 99074.96, + 99074.96, 99075, + 99075, 99075.04, + 99075.04, 99075.09, + 99075.09, 99075.12, + 99075.12, 99075.16, + 99075.16, 99075.21, + 99075.21, 99075.25, + 99075.25, 99075.29, + 99075.29, 99075.34, + 99075.34, 99075.38, + 99075.38, 99075.41, + 99075.41, 99075.46, + 99075.46, 99075.5, + 99075.5, 99075.54, + 99075.54, 99075.59, + 99075.59, 99075.62, + 99075.62, 99075.66, + 99075.66, 99075.71, + 99075.71, 99075.75, + 99075.75, 99075.79, + 99075.79, 99075.84, + 99075.84, 99075.88, + 99075.88, 99075.91, + 99075.91, 99075.96, + 99075.96, 99076, + 99076, 99076.04, + 99076.04, 99076.09, + 99076.09, 99076.12, + 99076.12, 99076.16, + 99076.16, 99076.21, + 99076.21, 99076.25, + 99076.25, 99076.29, + 99076.29, 99076.34, + 99076.34, 99076.38, + 99076.38, 99076.41, + 99076.41, 99076.46, + 99076.46, 99076.5, + 99076.5, 99076.54, + 99076.54, 99076.59, + 99076.59, 99076.62, + 99076.62, 99076.66, + 99076.66, 99076.71, + 99076.71, 99076.75, + 99076.75, 99076.79, + 99076.79, 99076.84, + 99076.84, 99076.88, + 99076.88, 99076.91, + 99076.91, 99076.96, + 99076.96, 99077, + 99077, 99077.04, + 99077.04, 99077.09, + 99077.09, 99077.12, + 99077.12, 99077.16, + 99077.16, 99077.21, + 99077.21, 99077.25, + 99077.25, 99077.29, + 99077.29, 99077.34, + 99077.34, 99077.38, + 99077.38, 99077.41, + 99077.41, 99077.46, + 99077.46, 99077.5, + 99077.5, 99077.54, + 99077.54, 99077.59, + 99077.59, 99077.62, + 99077.62, 99077.66, + 99077.66, 99077.71, + 99077.71, 99077.75, + 99077.75, 99077.79, + 99077.79, 99077.84, + 99077.84, 99077.88, + 99077.88, 99077.91, + 99077.91, 99077.96, + 99077.96, 99078, + 99078, 99078.04, + 99078.04, 99078.09, + 99078.09, 99078.12, + 99078.12, 99078.16, + 99078.16, 99078.21, + 99078.21, 99078.25, + 99078.25, 99078.29, + 99078.29, 99078.34, + 99078.34, 99078.38, + 99078.38, 99078.41, + 99078.41, 99078.46, + 99078.46, 99078.5, + 99078.5, 99078.54, + 99078.54, 99078.59, + 99078.59, 99078.62, + 99078.62, 99078.66, + 99078.66, 99078.71, + 99078.71, 99078.75, + 99078.75, 99078.79, + 99078.79, 99078.84, + 99078.84, 99078.88, + 99078.88, 99078.91, + 99078.91, 99078.96, + 99078.96, 99079, + 99079, 99079.04, + 99079.04, 99079.09, + 99079.09, 99079.12, + 99079.12, 99079.16, + 99079.16, 99079.21, + 99079.21, 99079.25, + 99079.25, 99079.29, + 99079.29, 99079.34, + 99079.34, 99079.38, + 99079.38, 99079.41, + 99079.41, 99079.46, + 99079.46, 99079.5, + 99079.5, 99079.54, + 99079.54, 99079.59, + 99079.59, 99079.62, + 99079.62, 99079.66, + 99079.66, 99079.71, + 99079.71, 99079.75, + 99079.75, 99079.79, + 99079.79, 99079.84, + 99079.84, 99079.88, + 99079.88, 99079.91, + 99079.91, 99079.96, + 99079.96, 99080, + 99080, 99080.04, + 99080.04, 99080.09, + 99080.09, 99080.12, + 99080.12, 99080.16, + 99080.16, 99080.21, + 99080.21, 99080.25, + 99080.25, 99080.29, + 99080.29, 99080.34, + 99080.34, 99080.38, + 99080.38, 99080.41, + 99080.41, 99080.46, + 99080.46, 99080.5, + 99080.5, 99080.54, + 99080.54, 99080.59, + 99080.59, 99080.62, + 99080.62, 99080.66, + 99080.66, 99080.71, + 99080.71, 99080.75, + 99080.75, 99080.79, + 99080.79, 99080.84, + 99080.84, 99080.88, + 99080.88, 99080.91, + 99080.91, 99080.96, + 99080.96, 99081, + 99081, 99081.04, + 99081.04, 99081.09, + 99081.09, 99081.12, + 99081.12, 99081.16, + 99081.16, 99081.21, + 99081.21, 99081.25, + 99081.25, 99081.29, + 99081.29, 99081.34, + 99081.34, 99081.38, + 99081.38, 99081.41, + 99081.41, 99081.46, + 99081.46, 99081.5, + 99081.5, 99081.54, + 99081.54, 99081.59, + 99081.59, 99081.62, + 99081.62, 99081.66, + 99081.66, 99081.71, + 99081.71, 99081.75, + 99081.75, 99081.79, + 99081.79, 99081.84, + 99081.84, 99081.88, + 99081.88, 99081.91, + 99081.91, 99081.96, + 99081.96, 99082, + 99082, 99082.04, + 99082.04, 99082.09, + 99082.09, 99082.12, + 99082.12, 99082.16, + 99082.16, 99082.21, + 99082.21, 99082.25, + 99082.25, 99082.29, + 99082.29, 99082.34, + 99082.34, 99082.38, + 99082.38, 99082.41, + 99082.41, 99082.46, + 99082.46, 99082.5, + 99082.5, 99082.54, + 99082.54, 99082.59, + 99082.59, 99082.62, + 99082.62, 99082.66, + 99082.66, 99082.71, + 99082.71, 99082.75, + 99082.75, 99082.79, + 99082.79, 99082.84, + 99082.84, 99082.88, + 99082.88, 99082.91, + 99082.91, 99082.96, + 99082.96, 99083, + 99083, 99083.04, + 99083.04, 99083.09, + 99083.09, 99083.12, + 99083.12, 99083.16, + 99083.16, 99083.21, + 99083.21, 99083.25, + 99083.25, 99083.29, + 99083.29, 99083.34, + 99083.34, 99083.38, + 99083.38, 99083.41, + 99083.41, 99083.46, + 99083.46, 99083.5, + 99083.5, 99083.54, + 99083.54, 99083.59, + 99083.59, 99083.62, + 99083.62, 99083.66, + 99083.66, 99083.71, + 99083.71, 99083.75, + 99083.75, 99083.79, + 99083.79, 99083.84, + 99083.84, 99083.88, + 99083.88, 99083.91, + 99083.91, 99083.96, + 99083.96, 99084, + 99084, 99084.04, + 99084.04, 99084.09, + 99084.09, 99084.12, + 99084.12, 99084.16, + 99084.16, 99084.21, + 99084.21, 99084.25, + 99084.25, 99084.29, + 99084.29, 99084.34, + 99084.34, 99084.38, + 99084.38, 99084.41, + 99084.41, 99084.46, + 99084.46, 99084.5, + 99084.5, 99084.54, + 99084.54, 99084.59, + 99084.59, 99084.62, + 99084.62, 99084.66, + 99084.66, 99084.71, + 99084.71, 99084.75, + 99084.75, 99084.79, + 99084.79, 99084.84, + 99084.84, 99084.88, + 99084.88, 99084.91, + 99084.91, 99084.96, + 99084.96, 99085, + 99085, 99085.04, + 99085.04, 99085.09, + 99085.09, 99085.12, + 99085.12, 99085.16, + 99085.16, 99085.21, + 99085.21, 99085.25, + 99085.25, 99085.29, + 99085.29, 99085.34, + 99085.34, 99085.38, + 99085.38, 99085.41, + 99085.41, 99085.46, + 99085.46, 99085.5, + 99085.5, 99085.54, + 99085.54, 99085.59, + 99085.59, 99085.62, + 99085.62, 99085.66, + 99085.66, 99085.71, + 99085.71, 99085.75, + 99085.75, 99085.79, + 99085.79, 99085.84, + 99085.84, 99085.88, + 99085.88, 99085.91, + 99085.91, 99085.96, + 99085.96, 99086, + 99086, 99086.04, + 99086.04, 99086.09, + 99086.09, 99086.12, + 99086.12, 99086.16, + 99086.16, 99086.21, + 99086.21, 99086.25, + 99086.25, 99086.29, + 99086.29, 99086.34, + 99086.34, 99086.38, + 99086.38, 99086.41, + 99086.41, 99086.46, + 99086.46, 99086.5, + 99086.5, 99086.54, + 99086.54, 99086.59, + 99086.59, 99086.62, + 99086.62, 99086.66, + 99086.66, 99086.71, + 99086.71, 99086.75, + 99086.75, 99086.79, + 99086.79, 99086.84, + 99086.84, 99086.88, + 99086.88, 99086.91, + 99086.91, 99086.96, + 99086.96, 99087, + 99087, 99087.04, + 99087.04, 99087.09, + 99087.09, 99087.12, + 99087.12, 99087.16, + 99087.16, 99087.21, + 99087.21, 99087.25, + 99087.25, 99087.29, + 99087.29, 99087.34, + 99087.34, 99087.38, + 99087.38, 99087.41, + 99087.41, 99087.46, + 99087.46, 99087.5, + 99087.5, 99087.54, + 99087.54, 99087.59, + 99087.59, 99087.62, + 99087.62, 99087.66, + 99087.66, 99087.71, + 99087.71, 99087.75, + 99087.75, 99087.79, + 99087.79, 99087.84, + 99087.84, 99087.88, + 99087.88, 99087.91, + 99087.91, 99087.96, + 99087.96, 99088, + 99088, 99088.04, + 99088.04, 99088.09, + 99088.09, 99088.12, + 99088.12, 99088.16, + 99088.16, 99088.21, + 99088.21, 99088.25, + 99088.25, 99088.29, + 99088.29, 99088.34, + 99088.34, 99088.38, + 99088.38, 99088.41, + 99088.41, 99088.46, + 99088.46, 99088.5, + 99088.5, 99088.54, + 99088.54, 99088.59, + 99088.59, 99088.62, + 99088.62, 99088.66, + 99088.66, 99088.71, + 99088.71, 99088.75, + 99088.75, 99088.79, + 99088.79, 99088.84, + 99088.84, 99088.88, + 99088.88, 99088.91, + 99088.91, 99088.96, + 99088.96, 99089, + 99089, 99089.04, + 99089.04, 99089.09, + 99089.09, 99089.12, + 99089.12, 99089.16, + 99089.16, 99089.21, + 99089.21, 99089.25, + 99089.25, 99089.29, + 99089.29, 99089.34, + 99089.34, 99089.38, + 99089.38, 99089.41, + 99089.41, 99089.46, + 99089.46, 99089.5, + 99089.5, 99089.54, + 99089.54, 99089.59, + 99089.59, 99089.62, + 99089.62, 99089.66, + 99089.66, 99089.71, + 99089.71, 99089.75, + 99089.75, 99089.79, + 99089.79, 99089.84, + 99089.84, 99089.88, + 99089.88, 99089.91, + 99089.91, 99089.96, + 99089.96, 99090, + 99090, 99090.04, + 99090.04, 99090.09, + 99090.09, 99090.12, + 99090.12, 99090.16, + 99090.16, 99090.21, + 99090.21, 99090.25, + 99090.25, 99090.29, + 99090.29, 99090.34, + 99090.34, 99090.38, + 99090.38, 99090.41, + 99090.41, 99090.46, + 99090.46, 99090.5, + 99090.5, 99090.54, + 99090.54, 99090.59, + 99090.59, 99090.62, + 99090.62, 99090.66, + 99090.66, 99090.71, + 99090.71, 99090.75, + 99090.75, 99090.79, + 99090.79, 99090.84, + 99090.84, 99090.88, + 99090.88, 99090.91, + 99090.91, 99090.96, + 99090.96, 99091, + 99091, 99091.04, + 99091.04, 99091.09, + 99091.09, 99091.12, + 99091.12, 99091.16, + 99091.16, 99091.21, + 99091.21, 99091.25, + 99091.25, 99091.29, + 99091.29, 99091.34, + 99091.34, 99091.38, + 99091.38, 99091.41, + 99091.41, 99091.46, + 99091.46, 99091.5, + 99091.5, 99091.54, + 99091.54, 99091.59, + 99091.59, 99091.62, + 99091.62, 99091.66, + 99091.66, 99091.71, + 99091.71, 99091.75, + 99091.75, 99091.79, + 99091.79, 99091.84, + 99091.84, 99091.88, + 99091.88, 99091.91, + 99091.91, 99091.96, + 99091.96, 99092, + 99092, 99092.04, + 99092.04, 99092.09, + 99092.09, 99092.12, + 99092.12, 99092.16, + 99092.16, 99092.21, + 99092.21, 99092.25, + 99092.25, 99092.29, + 99092.29, 99092.34, + 99092.34, 99092.38, + 99092.38, 99092.41, + 99092.41, 99092.46, + 99092.46, 99092.5, + 99092.5, 99092.54, + 99092.54, 99092.59, + 99092.59, 99092.62, + 99092.62, 99092.66, + 99092.66, 99092.71, + 99092.71, 99092.75, + 99092.75, 99092.79, + 99092.79, 99092.84, + 99092.84, 99092.88, + 99092.88, 99092.91, + 99092.91, 99092.96, + 99092.96, 99093, + 99093, 99093.04, + 99093.04, 99093.09, + 99093.09, 99093.12, + 99093.12, 99093.16, + 99093.16, 99093.21, + 99093.21, 99093.25, + 99093.25, 99093.29, + 99093.29, 99093.34, + 99093.34, 99093.38, + 99093.38, 99093.41, + 99093.41, 99093.46, + 99093.46, 99093.5, + 99093.5, 99093.54, + 99093.54, 99093.59, + 99093.59, 99093.62, + 99093.62, 99093.66, + 99093.66, 99093.71, + 99093.71, 99093.75, + 99093.75, 99093.79, + 99093.79, 99093.84, + 99093.84, 99093.88, + 99093.88, 99093.91, + 99093.91, 99093.96, + 99093.96, 99094, + 99094, 99094.04, + 99094.04, 99094.09, + 99094.09, 99094.12, + 99094.12, 99094.16, + 99094.16, 99094.21, + 99094.21, 99094.25, + 99094.25, 99094.29, + 99094.29, 99094.34, + 99094.34, 99094.38, + 99094.38, 99094.41, + 99094.41, 99094.46, + 99094.46, 99094.5, + 99094.5, 99094.54, + 99094.54, 99094.59, + 99094.59, 99094.62, + 99094.62, 99094.66, + 99094.66, 99094.71, + 99094.71, 99094.75, + 99094.75, 99094.79, + 99094.79, 99094.84, + 99094.84, 99094.88, + 99094.88, 99094.91, + 99094.91, 99094.96, + 99094.96, 99095, + 99095, 99095.04, + 99095.04, 99095.09, + 99095.09, 99095.12, + 99095.12, 99095.16, + 99095.16, 99095.21, + 99095.21, 99095.25, + 99095.25, 99095.29, + 99095.29, 99095.34, + 99095.34, 99095.38, + 99095.38, 99095.41, + 99095.41, 99095.46, + 99095.46, 99095.5, + 99095.5, 99095.54, + 99095.54, 99095.59, + 99095.59, 99095.62, + 99095.62, 99095.66, + 99095.66, 99095.71, + 99095.71, 99095.75, + 99095.75, 99095.79, + 99095.79, 99095.84, + 99095.84, 99095.88, + 99095.88, 99095.91, + 99095.91, 99095.96, + 99095.96, 99096, + 99096, 99096.04, + 99096.04, 99096.09, + 99096.09, 99096.12, + 99096.12, 99096.16, + 99096.16, 99096.21, + 99096.21, 99096.25, + 99096.25, 99096.29, + 99096.29, 99096.34, + 99096.34, 99096.38, + 99096.38, 99096.41, + 99096.41, 99096.46, + 99096.46, 99096.5, + 99096.5, 99096.54, + 99096.54, 99096.59, + 99096.59, 99096.62, + 99096.62, 99096.66, + 99096.66, 99096.71, + 99096.71, 99096.75, + 99096.75, 99096.79, + 99096.79, 99096.84, + 99096.84, 99096.88, + 99096.88, 99096.91, + 99096.91, 99096.96, + 99096.96, 99097, + 99097, 99097.04, + 99097.04, 99097.09, + 99097.09, 99097.12, + 99097.12, 99097.16, + 99097.16, 99097.21, + 99097.21, 99097.25, + 99097.25, 99097.29, + 99097.29, 99097.34, + 99097.34, 99097.38, + 99097.38, 99097.41, + 99097.41, 99097.46, + 99097.46, 99097.5, + 99097.5, 99097.54, + 99097.54, 99097.59, + 99097.59, 99097.62, + 99097.62, 99097.66, + 99097.66, 99097.71, + 99097.71, 99097.75, + 99097.75, 99097.79, + 99097.79, 99097.84, + 99097.84, 99097.88, + 99097.88, 99097.91, + 99097.91, 99097.96, + 99097.96, 99098, + 99098, 99098.04, + 99098.04, 99098.09, + 99098.09, 99098.12, + 99098.12, 99098.16, + 99098.16, 99098.21, + 99098.21, 99098.25, + 99098.25, 99098.29, + 99098.29, 99098.34, + 99098.34, 99098.38, + 99098.38, 99098.41, + 99098.41, 99098.46, + 99098.46, 99098.5, + 99098.5, 99098.54, + 99098.54, 99098.59, + 99098.59, 99098.62, + 99098.62, 99098.66, + 99098.66, 99098.71, + 99098.71, 99098.75, + 99098.75, 99098.79, + 99098.79, 99098.84, + 99098.84, 99098.88, + 99098.88, 99098.91, + 99098.91, 99098.96, + 99098.96, 99099, + 99099, 99099.04, + 99099.04, 99099.09, + 99099.09, 99099.12, + 99099.12, 99099.16, + 99099.16, 99099.21, + 99099.21, 99099.25, + 99099.25, 99099.29, + 99099.29, 99099.34, + 99099.34, 99099.38, + 99099.38, 99099.41, + 99099.41, 99099.46, + 99099.46, 99099.5, + 99099.5, 99099.54, + 99099.54, 99099.59, + 99099.59, 99099.62, + 99099.62, 99099.66, + 99099.66, 99099.71, + 99099.71, 99099.75, + 99099.75, 99099.79, + 99099.79, 99099.84, + 99099.84, 99099.88, + 99099.88, 99099.91, + 99099.91, 99099.96, + 99099.96, 99100, + 99100, 99100.04, + 99100.04, 99100.09, + 99100.09, 99100.12, + 99100.12, 99100.16, + 99100.16, 99100.21, + 99100.21, 99100.25, + 99100.25, 99100.29, + 99100.29, 99100.34, + 99100.34, 99100.38, + 99100.38, 99100.41, + 99100.41, 99100.46, + 99100.46, 99100.5, + 99100.5, 99100.54, + 99100.54, 99100.59, + 99100.59, 99100.62, + 99100.62, 99100.66, + 99100.66, 99100.71, + 99100.71, 99100.75, + 99100.75, 99100.79, + 99100.79, 99100.84, + 99100.84, 99100.88, + 99100.88, 99100.91, + 99100.91, 99100.96, + 99100.96, 99101, + 99101, 99101.04, + 99101.04, 99101.09, + 99101.09, 99101.12, + 99101.12, 99101.16, + 99101.16, 99101.21, + 99101.21, 99101.25, + 99101.25, 99101.29, + 99101.29, 99101.34, + 99101.34, 99101.38, + 99101.38, 99101.41, + 99101.41, 99101.46, + 99101.46, 99101.5, + 99101.5, 99101.54, + 99101.54, 99101.59, + 99101.59, 99101.62, + 99101.62, 99101.66, + 99101.66, 99101.71, + 99101.71, 99101.75, + 99101.75, 99101.79, + 99101.79, 99101.84, + 99101.84, 99101.88, + 99101.88, 99101.91, + 99101.91, 99101.96, + 99101.96, 99102, + 99102, 99102.04, + 99102.04, 99102.09, + 99102.09, 99102.12, + 99102.12, 99102.16, + 99102.16, 99102.21, + 99102.21, 99102.25, + 99102.25, 99102.29, + 99102.29, 99102.34, + 99102.34, 99102.38, + 99102.38, 99102.41, + 99102.41, 99102.46, + 99102.46, 99102.5, + 99102.5, 99102.54, + 99102.54, 99102.59, + 99102.59, 99102.62, + 99102.62, 99102.66, + 99102.66, 99102.71, + 99102.71, 99102.75, + 99102.75, 99102.79, + 99102.79, 99102.84, + 99102.84, 99102.88, + 99102.88, 99102.91, + 99102.91, 99102.96, + 99102.96, 99103, + 99103, 99103.04, + 99103.04, 99103.09, + 99103.09, 99103.12, + 99103.12, 99103.16, + 99103.16, 99103.21, + 99103.21, 99103.25, + 99103.25, 99103.29, + 99103.29, 99103.34, + 99103.34, 99103.38, + 99103.38, 99103.41, + 99103.41, 99103.46, + 99103.46, 99103.5, + 99103.5, 99103.54, + 99103.54, 99103.59, + 99103.59, 99103.62, + 99103.62, 99103.66, + 99103.66, 99103.71, + 99103.71, 99103.75, + 99103.75, 99103.79, + 99103.79, 99103.84, + 99103.84, 99103.88, + 99103.88, 99103.91, + 99103.91, 99103.96, + 99103.96, 99104, + 99104, 99104.04, + 99104.04, 99104.09, + 99104.09, 99104.12, + 99104.12, 99104.16, + 99104.16, 99104.21, + 99104.21, 99104.25, + 99104.25, 99104.29, + 99104.29, 99104.34, + 99104.34, 99104.38, + 99104.38, 99104.41, + 99104.41, 99104.46, + 99104.46, 99104.5, + 99104.5, 99104.54, + 99104.54, 99104.59, + 99104.59, 99104.62, + 99104.62, 99104.66, + 99104.66, 99104.71, + 99104.71, 99104.75, + 99104.75, 99104.79, + 99104.79, 99104.84, + 99104.84, 99104.88, + 99104.88, 99104.91, + 99104.91, 99104.96, + 99104.96, 99105, + 99105, 99105.04, + 99105.04, 99105.09, + 99105.09, 99105.12, + 99105.12, 99105.16, + 99105.16, 99105.21, + 99105.21, 99105.25, + 99105.25, 99105.29, + 99105.29, 99105.34, + 99105.34, 99105.38, + 99105.38, 99105.41, + 99105.41, 99105.46, + 99105.46, 99105.5, + 99105.5, 99105.54, + 99105.54, 99105.59, + 99105.59, 99105.62, + 99105.62, 99105.66, + 99105.66, 99105.71, + 99105.71, 99105.75, + 99105.75, 99105.79, + 99105.79, 99105.84, + 99105.84, 99105.88, + 99105.88, 99105.91, + 99105.91, 99105.96, + 99105.96, 99106, + 99106, 99106.04, + 99106.04, 99106.09, + 99106.09, 99106.12, + 99106.12, 99106.16, + 99106.16, 99106.21, + 99106.21, 99106.25, + 99106.25, 99106.29, + 99106.29, 99106.34, + 99106.34, 99106.38, + 99106.38, 99106.41, + 99106.41, 99106.46, + 99106.46, 99106.5, + 99106.5, 99106.54, + 99106.54, 99106.59, + 99106.59, 99106.62, + 99106.62, 99106.66, + 99106.66, 99106.71, + 99106.71, 99106.75, + 99106.75, 99106.79, + 99106.79, 99106.84, + 99106.84, 99106.88, + 99106.88, 99106.91, + 99106.91, 99106.96, + 99106.96, 99107, + 99107, 99107.04, + 99107.04, 99107.09, + 99107.09, 99107.12, + 99107.12, 99107.16, + 99107.16, 99107.21, + 99107.21, 99107.25, + 99107.25, 99107.29, + 99107.29, 99107.34, + 99107.34, 99107.38, + 99107.38, 99107.41, + 99107.41, 99107.46, + 99107.46, 99107.5, + 99107.5, 99107.54, + 99107.54, 99107.59, + 99107.59, 99107.62, + 99107.62, 99107.66, + 99107.66, 99107.71, + 99107.71, 99107.75, + 99107.75, 99107.79, + 99107.79, 99107.84, + 99107.84, 99107.88, + 99107.88, 99107.91, + 99107.91, 99107.96, + 99107.96, 99108, + 99108, 99108.04, + 99108.04, 99108.09, + 99108.09, 99108.12, + 99108.12, 99108.16, + 99108.16, 99108.21, + 99108.21, 99108.25, + 99108.25, 99108.29, + 99108.29, 99108.34, + 99108.34, 99108.38, + 99108.38, 99108.41, + 99108.41, 99108.46, + 99108.46, 99108.5, + 99108.5, 99108.54, + 99108.54, 99108.59, + 99108.59, 99108.62, + 99108.62, 99108.66, + 99108.66, 99108.71, + 99108.71, 99108.75, + 99108.75, 99108.79, + 99108.79, 99108.84, + 99108.84, 99108.88, + 99108.88, 99108.91, + 99108.91, 99108.96, + 99108.96, 99109, + 99109, 99109.04, + 99109.04, 99109.09, + 99109.09, 99109.12, + 99109.12, 99109.16, + 99109.16, 99109.21, + 99109.21, 99109.25, + 99109.25, 99109.29, + 99109.29, 99109.34, + 99109.34, 99109.38, + 99109.38, 99109.41, + 99109.41, 99109.46, + 99109.46, 99109.5, + 99109.5, 99109.54, + 99109.54, 99109.59, + 99109.59, 99109.62, + 99109.62, 99109.66, + 99109.66, 99109.71, + 99109.71, 99109.75, + 99109.75, 99109.79, + 99109.79, 99109.84, + 99109.84, 99109.88, + 99109.88, 99109.91, + 99109.91, 99109.96, + 99109.96, 99110, + 99110, 99110.04, + 99110.04, 99110.09, + 99110.09, 99110.12, + 99110.12, 99110.16, + 99110.16, 99110.21, + 99110.21, 99110.25, + 99110.25, 99110.29, + 99110.29, 99110.34, + 99110.34, 99110.38, + 99110.38, 99110.41, + 99110.41, 99110.46, + 99110.46, 99110.5, + 99110.5, 99110.54, + 99110.54, 99110.59, + 99110.59, 99110.62, + 99110.62, 99110.66, + 99110.66, 99110.71, + 99110.71, 99110.75, + 99110.75, 99110.79, + 99110.79, 99110.84, + 99110.84, 99110.88, + 99110.88, 99110.91, + 99110.91, 99110.96, + 99110.96, 99111, + 99111, 99111.04, + 99111.04, 99111.09, + 99111.09, 99111.12, + 99111.12, 99111.16, + 99111.16, 99111.21, + 99111.21, 99111.25, + 99111.25, 99111.29, + 99111.29, 99111.34, + 99111.34, 99111.38, + 99111.38, 99111.41, + 99111.41, 99111.46, + 99111.46, 99111.5, + 99111.5, 99111.54, + 99111.54, 99111.59, + 99111.59, 99111.62, + 99111.62, 99111.66, + 99111.66, 99111.71, + 99111.71, 99111.75, + 99111.75, 99111.79, + 99111.79, 99111.84, + 99111.84, 99111.88, + 99111.88, 99111.91, + 99111.91, 99111.96, + 99111.96, 99112, + 99112, 99112.04, + 99112.04, 99112.09, + 99112.09, 99112.12, + 99112.12, 99112.16, + 99112.16, 99112.21, + 99112.21, 99112.25, + 99112.25, 99112.29, + 99112.29, 99112.34, + 99112.34, 99112.38, + 99112.38, 99112.41, + 99112.41, 99112.46, + 99112.46, 99112.5, + 99112.5, 99112.54, + 99112.54, 99112.59, + 99112.59, 99112.62, + 99112.62, 99112.66, + 99112.66, 99112.71, + 99112.71, 99112.75, + 99112.75, 99112.79, + 99112.79, 99112.84, + 99112.84, 99112.88, + 99112.88, 99112.91, + 99112.91, 99112.96, + 99112.96, 99113, + 99113, 99113.04, + 99113.04, 99113.09, + 99113.09, 99113.12, + 99113.12, 99113.16, + 99113.16, 99113.21, + 99113.21, 99113.25, + 99113.25, 99113.29, + 99113.29, 99113.34, + 99113.34, 99113.38, + 99113.38, 99113.41, + 99113.41, 99113.46, + 99113.46, 99113.5, + 99113.5, 99113.54, + 99113.54, 99113.59, + 99113.59, 99113.62, + 99113.62, 99113.66, + 99113.66, 99113.71, + 99113.71, 99113.75, + 99113.75, 99113.79, + 99113.79, 99113.84, + 99113.84, 99113.88, + 99113.88, 99113.91, + 99113.91, 99113.96, + 99113.96, 99114, + 99114, 99114.04, + 99114.04, 99114.09, + 99114.09, 99114.12, + 99114.12, 99114.16, + 99114.16, 99114.21, + 99114.21, 99114.25, + 99114.25, 99114.29, + 99114.29, 99114.34, + 99114.34, 99114.38, + 99114.38, 99114.41, + 99114.41, 99114.46, + 99114.46, 99114.5, + 99114.5, 99114.54, + 99114.54, 99114.59, + 99114.59, 99114.62, + 99114.62, 99114.66, + 99114.66, 99114.71, + 99114.71, 99114.75, + 99114.75, 99114.79, + 99114.79, 99114.84, + 99114.84, 99114.88, + 99114.88, 99114.91, + 99114.91, 99114.96, + 99114.96, 99115, + 99115, 99115.04, + 99115.04, 99115.09, + 99115.09, 99115.12, + 99115.12, 99115.16, + 99115.16, 99115.21, + 99115.21, 99115.25, + 99115.25, 99115.29, + 99115.29, 99115.34, + 99115.34, 99115.38, + 99115.38, 99115.41, + 99115.41, 99115.46, + 99115.46, 99115.5, + 99115.5, 99115.54, + 99115.54, 99115.59, + 99115.59, 99115.62, + 99115.62, 99115.66, + 99115.66, 99115.71, + 99115.71, 99115.75, + 99115.75, 99115.79, + 99115.79, 99115.84, + 99115.84, 99115.88, + 99115.88, 99115.91, + 99115.91, 99115.96, + 99115.96, 99116, + 99116, 99116.04, + 99116.04, 99116.09, + 99116.09, 99116.12, + 99116.12, 99116.16, + 99116.16, 99116.21, + 99116.21, 99116.25, + 99116.25, 99116.29, + 99116.29, 99116.34, + 99116.34, 99116.38, + 99116.38, 99116.41, + 99116.41, 99116.46, + 99116.46, 99116.5, + 99116.5, 99116.54, + 99116.54, 99116.59, + 99116.59, 99116.62, + 99116.62, 99116.66, + 99116.66, 99116.71, + 99116.71, 99116.75, + 99116.75, 99116.79, + 99116.79, 99116.84, + 99116.84, 99116.88, + 99116.88, 99116.91, + 99116.91, 99116.96, + 99116.96, 99117, + 99117, 99117.04, + 99117.04, 99117.09, + 99117.09, 99117.12, + 99117.12, 99117.16, + 99117.16, 99117.21, + 99117.21, 99117.25, + 99117.25, 99117.29, + 99117.29, 99117.34, + 99117.34, 99117.38, + 99117.38, 99117.41, + 99117.41, 99117.46, + 99117.46, 99117.5, + 99117.5, 99117.54, + 99117.54, 99117.59, + 99117.59, 99117.62, + 99117.62, 99117.66, + 99117.66, 99117.71, + 99117.71, 99117.75, + 99117.75, 99117.79, + 99117.79, 99117.84, + 99117.84, 99117.88, + 99117.88, 99117.91, + 99117.91, 99117.96, + 99117.96, 99118, + 99118, 99118.04, + 99118.04, 99118.09, + 99118.09, 99118.12, + 99118.12, 99118.16, + 99118.16, 99118.21, + 99118.21, 99118.25, + 99118.25, 99118.29, + 99118.29, 99118.34, + 99118.34, 99118.38, + 99118.38, 99118.41, + 99118.41, 99118.46, + 99118.46, 99118.5, + 99118.5, 99118.54, + 99118.54, 99118.59, + 99118.59, 99118.62, + 99118.62, 99118.66, + 99118.66, 99118.71, + 99118.71, 99118.75, + 99118.75, 99118.79, + 99118.79, 99118.84, + 99118.84, 99118.88, + 99118.88, 99118.91, + 99118.91, 99118.96, + 99118.96, 99119, + 99119, 99119.04, + 99119.04, 99119.09, + 99119.09, 99119.12, + 99119.12, 99119.16, + 99119.16, 99119.21, + 99119.21, 99119.25, + 99119.25, 99119.29, + 99119.29, 99119.34, + 99119.34, 99119.38, + 99119.38, 99119.41, + 99119.41, 99119.46, + 99119.46, 99119.5, + 99119.5, 99119.54, + 99119.54, 99119.59, + 99119.59, 99119.62, + 99119.62, 99119.66, + 99119.66, 99119.71, + 99119.71, 99119.75, + 99119.75, 99119.79, + 99119.79, 99119.84, + 99119.84, 99119.88, + 99119.88, 99119.91, + 99119.91, 99119.96, + 99119.96, 99120, + 99120, 99120.04, + 99120.04, 99120.09, + 99120.09, 99120.12, + 99120.12, 99120.16, + 99120.16, 99120.21, + 99120.21, 99120.25, + 99120.25, 99120.29, + 99120.29, 99120.34, + 99120.34, 99120.38, + 99120.38, 99120.41, + 99120.41, 99120.46, + 99120.46, 99120.5, + 99120.5, 99120.54, + 99120.54, 99120.59, + 99120.59, 99120.62, + 99120.62, 99120.66, + 99120.66, 99120.71, + 99120.71, 99120.75, + 99120.75, 99120.79, + 99120.79, 99120.84, + 99120.84, 99120.88, + 99120.88, 99120.91, + 99120.91, 99120.96, + 99120.96, 99121, + 99121, 99121.04, + 99121.04, 99121.09, + 99121.09, 99121.12, + 99121.12, 99121.16, + 99121.16, 99121.21, + 99121.21, 99121.25, + 99121.25, 99121.29, + 99121.29, 99121.34, + 99121.34, 99121.38, + 99121.38, 99121.41, + 99121.41, 99121.46, + 99121.46, 99121.5, + 99121.5, 99121.54, + 99121.54, 99121.59, + 99121.59, 99121.62, + 99121.62, 99121.66, + 99121.66, 99121.71, + 99121.71, 99121.75, + 99121.75, 99121.79, + 99121.79, 99121.84, + 99121.84, 99121.88, + 99121.88, 99121.91, + 99121.91, 99121.96, + 99121.96, 99122, + 99122, 99122.04, + 99122.04, 99122.09, + 99122.09, 99122.12, + 99122.12, 99122.16, + 99122.16, 99122.21, + 99122.21, 99122.25, + 99122.25, 99122.29, + 99122.29, 99122.34, + 99122.34, 99122.38, + 99122.38, 99122.41, + 99122.41, 99122.46, + 99122.46, 99122.5, + 99122.5, 99122.54, + 99122.54, 99122.59, + 99122.59, 99122.62, + 99122.62, 99122.66, + 99122.66, 99122.71, + 99122.71, 99122.75, + 99122.75, 99122.79, + 99122.79, 99122.84, + 99122.84, 99122.88, + 99122.88, 99122.91, + 99122.91, 99122.96, + 99122.96, 99123, + 99123, 99123.04, + 99123.04, 99123.09, + 99123.09, 99123.12, + 99123.12, 99123.16, + 99123.16, 99123.21, + 99123.21, 99123.25, + 99123.25, 99123.29, + 99123.29, 99123.34, + 99123.34, 99123.38, + 99123.38, 99123.41, + 99123.41, 99123.46, + 99123.46, 99123.5, + 99123.5, 99123.54, + 99123.54, 99123.59, + 99123.59, 99123.62, + 99123.62, 99123.66, + 99123.66, 99123.71, + 99123.71, 99123.75, + 99123.75, 99123.79, + 99123.79, 99123.84, + 99123.84, 99123.88, + 99123.88, 99123.91, + 99123.91, 99123.96, + 99123.96, 99124, + 99124, 99124.04, + 99124.04, 99124.09, + 99124.09, 99124.12, + 99124.12, 99124.16, + 99124.16, 99124.21, + 99124.21, 99124.25, + 99124.25, 99124.29, + 99124.29, 99124.34, + 99124.34, 99124.38, + 99124.38, 99124.41, + 99124.41, 99124.46, + 99124.46, 99124.5, + 99124.5, 99124.54, + 99124.54, 99124.59, + 99124.59, 99124.62, + 99124.62, 99124.66, + 99124.66, 99124.71, + 99124.71, 99124.75, + 99124.75, 99124.79, + 99124.79, 99124.84, + 99124.84, 99124.88, + 99124.88, 99124.91, + 99124.91, 99124.96, + 99124.96, 99125, + 99125, 99125.04, + 99125.04, 99125.09, + 99125.09, 99125.12, + 99125.12, 99125.16, + 99125.16, 99125.21, + 99125.21, 99125.25, + 99125.25, 99125.29, + 99125.29, 99125.34, + 99125.34, 99125.38, + 99125.38, 99125.41, + 99125.41, 99125.46, + 99125.46, 99125.5, + 99125.5, 99125.54, + 99125.54, 99125.59, + 99125.59, 99125.62, + 99125.62, 99125.66, + 99125.66, 99125.71, + 99125.71, 99125.75, + 99125.75, 99125.79, + 99125.79, 99125.84, + 99125.84, 99125.88, + 99125.88, 99125.91, + 99125.91, 99125.96, + 99125.96, 99126, + 99126, 99126.04, + 99126.04, 99126.09, + 99126.09, 99126.12, + 99126.12, 99126.16, + 99126.16, 99126.21, + 99126.21, 99126.25, + 99126.25, 99126.29, + 99126.29, 99126.34, + 99126.34, 99126.38, + 99126.38, 99126.41, + 99126.41, 99126.46, + 99126.46, 99126.5, + 99126.5, 99126.54, + 99126.54, 99126.59, + 99126.59, 99126.62, + 99126.62, 99126.66, + 99126.66, 99126.71, + 99126.71, 99126.75, + 99126.75, 99126.79, + 99126.79, 99126.84, + 99126.84, 99126.88, + 99126.88, 99126.91, + 99126.91, 99126.96, + 99126.96, 99127, + 99127, 99127.04, + 99127.04, 99127.09, + 99127.09, 99127.12, + 99127.12, 99127.16, + 99127.16, 99127.21, + 99127.21, 99127.25, + 99127.25, 99127.29, + 99127.29, 99127.34, + 99127.34, 99127.38, + 99127.38, 99127.41, + 99127.41, 99127.46, + 99127.46, 99127.5, + 99127.5, 99127.54, + 99127.54, 99127.59, + 99127.59, 99127.62, + 99127.62, 99127.66, + 99127.66, 99127.71, + 99127.71, 99127.75, + 99127.75, 99127.79, + 99127.79, 99127.84, + 99127.84, 99127.88, + 99127.88, 99127.91, + 99127.91, 99127.96, + 99127.96, 99128, + 99128, 99128.04, + 99128.04, 99128.09, + 99128.09, 99128.12, + 99128.12, 99128.16, + 99128.16, 99128.21, + 99128.21, 99128.25, + 99128.25, 99128.29, + 99128.29, 99128.34, + 99128.34, 99128.38, + 99128.38, 99128.41, + 99128.41, 99128.46, + 99128.46, 99128.5, + 99128.5, 99128.54, + 99128.54, 99128.59, + 99128.59, 99128.62, + 99128.62, 99128.66, + 99128.66, 99128.71, + 99128.71, 99128.75, + 99128.75, 99128.79, + 99128.79, 99128.84, + 99128.84, 99128.88, + 99128.88, 99128.91, + 99128.91, 99128.96, + 99128.96, 99129, + 99129, 99129.04, + 99129.04, 99129.09, + 99129.09, 99129.12, + 99129.12, 99129.16, + 99129.16, 99129.21, + 99129.21, 99129.25, + 99129.25, 99129.29, + 99129.29, 99129.34, + 99129.34, 99129.38, + 99129.38, 99129.41, + 99129.41, 99129.46, + 99129.46, 99129.5, + 99129.5, 99129.54, + 99129.54, 99129.59, + 99129.59, 99129.62, + 99129.62, 99129.66, + 99129.66, 99129.71, + 99129.71, 99129.75, + 99129.75, 99129.79, + 99129.79, 99129.84, + 99129.84, 99129.88, + 99129.88, 99129.91, + 99129.91, 99129.96, + 99129.96, 99130, + 99130, 99130.04, + 99130.04, 99130.09, + 99130.09, 99130.12, + 99130.12, 99130.16, + 99130.16, 99130.21, + 99130.21, 99130.25, + 99130.25, 99130.29, + 99130.29, 99130.34, + 99130.34, 99130.38, + 99130.38, 99130.41, + 99130.41, 99130.46, + 99130.46, 99130.5, + 99130.5, 99130.54, + 99130.54, 99130.59, + 99130.59, 99130.62, + 99130.62, 99130.66, + 99130.66, 99130.71, + 99130.71, 99130.75, + 99130.75, 99130.79, + 99130.79, 99130.84, + 99130.84, 99130.88, + 99130.88, 99130.91, + 99130.91, 99130.96, + 99130.96, 99131, + 99131, 99131.04, + 99131.04, 99131.09, + 99131.09, 99131.12, + 99131.12, 99131.16, + 99131.16, 99131.21, + 99131.21, 99131.25, + 99131.25, 99131.29, + 99131.29, 99131.34, + 99131.34, 99131.38, + 99131.38, 99131.41, + 99131.41, 99131.46, + 99131.46, 99131.5, + 99131.5, 99131.54, + 99131.54, 99131.59, + 99131.59, 99131.62, + 99131.62, 99131.66, + 99131.66, 99131.71, + 99131.71, 99131.75, + 99131.75, 99131.79, + 99131.79, 99131.84, + 99131.84, 99131.88, + 99131.88, 99131.91, + 99131.91, 99131.96, + 99131.96, 99132, + 99132, 99132.04, + 99132.04, 99132.09, + 99132.09, 99132.12, + 99132.12, 99132.16, + 99132.16, 99132.21, + 99132.21, 99132.25, + 99132.25, 99132.29, + 99132.29, 99132.34, + 99132.34, 99132.38, + 99132.38, 99132.41, + 99132.41, 99132.46, + 99132.46, 99132.5, + 99132.5, 99132.54, + 99132.54, 99132.59, + 99132.59, 99132.62, + 99132.62, 99132.66, + 99132.66, 99132.71, + 99132.71, 99132.75, + 99132.75, 99132.79, + 99132.79, 99132.84, + 99132.84, 99132.88, + 99132.88, 99132.91, + 99132.91, 99132.96, + 99132.96, 99133, + 99133, 99133.04, + 99133.04, 99133.09, + 99133.09, 99133.12, + 99133.12, 99133.16, + 99133.16, 99133.21, + 99133.21, 99133.25, + 99133.25, 99133.29, + 99133.29, 99133.34, + 99133.34, 99133.38, + 99133.38, 99133.41, + 99133.41, 99133.46, + 99133.46, 99133.5, + 99133.5, 99133.54, + 99133.54, 99133.59, + 99133.59, 99133.62, + 99133.62, 99133.66, + 99133.66, 99133.71, + 99133.71, 99133.75, + 99133.75, 99133.79, + 99133.79, 99133.84, + 99133.84, 99133.88, + 99133.88, 99133.91, + 99133.91, 99133.96, + 99133.96, 99134, + 99134, 99134.04, + 99134.04, 99134.09, + 99134.09, 99134.12, + 99134.12, 99134.16, + 99134.16, 99134.21, + 99134.21, 99134.25, + 99134.25, 99134.29, + 99134.29, 99134.34, + 99134.34, 99134.38, + 99134.38, 99134.41, + 99134.41, 99134.46, + 99134.46, 99134.5, + 99134.5, 99134.54, + 99134.54, 99134.59, + 99134.59, 99134.62, + 99134.62, 99134.66, + 99134.66, 99134.71, + 99134.71, 99134.75, + 99134.75, 99134.79, + 99134.79, 99134.84, + 99134.84, 99134.88, + 99134.88, 99134.91, + 99134.91, 99134.96, + 99134.96, 99135, + 99135, 99135.04, + 99135.04, 99135.09, + 99135.09, 99135.12, + 99135.12, 99135.16, + 99135.16, 99135.21, + 99135.21, 99135.25, + 99135.25, 99135.29, + 99135.29, 99135.34, + 99135.34, 99135.38, + 99135.38, 99135.41, + 99135.41, 99135.46, + 99135.46, 99135.5, + 99135.5, 99135.54, + 99135.54, 99135.59, + 99135.59, 99135.62, + 99135.62, 99135.66, + 99135.66, 99135.71, + 99135.71, 99135.75, + 99135.75, 99135.79, + 99135.79, 99135.84, + 99135.84, 99135.88, + 99135.88, 99135.91, + 99135.91, 99135.96, + 99135.96, 99136, + 99136, 99136.04, + 99136.04, 99136.09, + 99136.09, 99136.12, + 99136.12, 99136.16, + 99136.16, 99136.21, + 99136.21, 99136.25, + 99136.25, 99136.29, + 99136.29, 99136.34, + 99136.34, 99136.38, + 99136.38, 99136.41, + 99136.41, 99136.46, + 99136.46, 99136.5, + 99136.5, 99136.54, + 99136.54, 99136.59, + 99136.59, 99136.62, + 99136.62, 99136.66, + 99136.66, 99136.71, + 99136.71, 99136.75, + 99136.75, 99136.79, + 99136.79, 99136.84, + 99136.84, 99136.88, + 99136.88, 99136.91, + 99136.91, 99136.96, + 99136.96, 99137, + 99137, 99137.04, + 99137.04, 99137.09, + 99137.09, 99137.12, + 99137.12, 99137.16, + 99137.16, 99137.21, + 99137.21, 99137.25, + 99137.25, 99137.29, + 99137.29, 99137.34, + 99137.34, 99137.38, + 99137.38, 99137.41, + 99137.41, 99137.46, + 99137.46, 99137.5, + 99137.5, 99137.54, + 99137.54, 99137.59, + 99137.59, 99137.62, + 99137.62, 99137.66, + 99137.66, 99137.71, + 99137.71, 99137.75, + 99137.75, 99137.79, + 99137.79, 99137.84, + 99137.84, 99137.88, + 99137.88, 99137.91, + 99137.91, 99137.96, + 99137.96, 99138, + 99138, 99138.04, + 99138.04, 99138.09, + 99138.09, 99138.12, + 99138.12, 99138.16, + 99138.16, 99138.21, + 99138.21, 99138.25, + 99138.25, 99138.29, + 99138.29, 99138.34, + 99138.34, 99138.38, + 99138.38, 99138.41, + 99138.41, 99138.46, + 99138.46, 99138.5, + 99138.5, 99138.54, + 99138.54, 99138.59, + 99138.59, 99138.62, + 99138.62, 99138.66, + 99138.66, 99138.71, + 99138.71, 99138.75, + 99138.75, 99138.79, + 99138.79, 99138.84, + 99138.84, 99138.88, + 99138.88, 99138.91, + 99138.91, 99138.96, + 99138.96, 99139, + 99139, 99139.04, + 99139.04, 99139.09, + 99139.09, 99139.12, + 99139.12, 99139.16, + 99139.16, 99139.21, + 99139.21, 99139.25, + 99139.25, 99139.29, + 99139.29, 99139.34, + 99139.34, 99139.38, + 99139.38, 99139.41, + 99139.41, 99139.46, + 99139.46, 99139.5, + 99139.5, 99139.54, + 99139.54, 99139.59, + 99139.59, 99139.62, + 99139.62, 99139.66, + 99139.66, 99139.71, + 99139.71, 99139.75, + 99139.75, 99139.79, + 99139.79, 99139.84, + 99139.84, 99139.88, + 99139.88, 99139.91, + 99139.91, 99139.96, + 99139.96, 99140, + 99140, 99140.04, + 99140.04, 99140.09, + 99140.09, 99140.12, + 99140.12, 99140.16, + 99140.16, 99140.21, + 99140.21, 99140.25, + 99140.25, 99140.29, + 99140.29, 99140.34, + 99140.34, 99140.38, + 99140.38, 99140.41, + 99140.41, 99140.46, + 99140.46, 99140.5, + 99140.5, 99140.54, + 99140.54, 99140.59, + 99140.59, 99140.62, + 99140.62, 99140.66, + 99140.66, 99140.71, + 99140.71, 99140.75, + 99140.75, 99140.79, + 99140.79, 99140.84, + 99140.84, 99140.88, + 99140.88, 99140.91, + 99140.91, 99140.96, + 99140.96, 99141, + 99141, 99141.04, + 99141.04, 99141.09, + 99141.09, 99141.12, + 99141.12, 99141.16, + 99141.16, 99141.21, + 99141.21, 99141.25, + 99141.25, 99141.29, + 99141.29, 99141.34, + 99141.34, 99141.38, + 99141.38, 99141.41, + 99141.41, 99141.46, + 99141.46, 99141.5, + 99141.5, 99141.54, + 99141.54, 99141.59, + 99141.59, 99141.62, + 99141.62, 99141.66, + 99141.66, 99141.71, + 99141.71, 99141.75, + 99141.75, 99141.79, + 99141.79, 99141.84, + 99141.84, 99141.88, + 99141.88, 99141.91, + 99141.91, 99141.96, + 99141.96, 99142, + 99142, 99142.04, + 99142.04, 99142.09, + 99142.09, 99142.12, + 99142.12, 99142.16, + 99142.16, 99142.21, + 99142.21, 99142.25, + 99142.25, 99142.29, + 99142.29, 99142.34, + 99142.34, 99142.38, + 99142.38, 99142.41, + 99142.41, 99142.46, + 99142.46, 99142.5, + 99142.5, 99142.54, + 99142.54, 99142.59, + 99142.59, 99142.62, + 99142.62, 99142.66, + 99142.66, 99142.71, + 99142.71, 99142.75, + 99142.75, 99142.79, + 99142.79, 99142.84, + 99142.84, 99142.88, + 99142.88, 99142.91, + 99142.91, 99142.96, + 99142.96, 99143, + 99143, 99143.04, + 99143.04, 99143.09, + 99143.09, 99143.12, + 99143.12, 99143.16, + 99143.16, 99143.21, + 99143.21, 99143.25, + 99143.25, 99143.29, + 99143.29, 99143.34, + 99143.34, 99143.38, + 99143.38, 99143.41, + 99143.41, 99143.46, + 99143.46, 99143.5, + 99143.5, 99143.54, + 99143.54, 99143.59, + 99143.59, 99143.62, + 99143.62, 99143.66, + 99143.66, 99143.71, + 99143.71, 99143.75, + 99143.75, 99143.79, + 99143.79, 99143.84, + 99143.84, 99143.88, + 99143.88, 99143.91, + 99143.91, 99143.96, + 99143.96, 99144, + 99144, 99144.04, + 99144.04, 99144.09, + 99144.09, 99144.12, + 99144.12, 99144.16, + 99144.16, 99144.21, + 99144.21, 99144.25, + 99144.25, 99144.29, + 99144.29, 99144.34, + 99144.34, 99144.38, + 99144.38, 99144.41, + 99144.41, 99144.46, + 99144.46, 99144.5, + 99144.5, 99144.54, + 99144.54, 99144.59, + 99144.59, 99144.62, + 99144.62, 99144.66, + 99144.66, 99144.71, + 99144.71, 99144.75, + 99144.75, 99144.79, + 99144.79, 99144.84, + 99144.84, 99144.88, + 99144.88, 99144.91, + 99144.91, 99144.96, + 99144.96, 99145, + 99145, 99145.04, + 99145.04, 99145.09, + 99145.09, 99145.12, + 99145.12, 99145.16, + 99145.16, 99145.21, + 99145.21, 99145.25, + 99145.25, 99145.29, + 99145.29, 99145.34, + 99145.34, 99145.38, + 99145.38, 99145.41, + 99145.41, 99145.46, + 99145.46, 99145.5, + 99145.5, 99145.54, + 99145.54, 99145.59, + 99145.59, 99145.62, + 99145.62, 99145.66, + 99145.66, 99145.71, + 99145.71, 99145.75, + 99145.75, 99145.79, + 99145.79, 99145.84, + 99145.84, 99145.88, + 99145.88, 99145.91, + 99145.91, 99145.96, + 99145.96, 99146, + 99146, 99146.04, + 99146.04, 99146.09, + 99146.09, 99146.12, + 99146.12, 99146.16, + 99146.16, 99146.21, + 99146.21, 99146.25, + 99146.25, 99146.29, + 99146.29, 99146.34, + 99146.34, 99146.38, + 99146.38, 99146.41, + 99146.41, 99146.46, + 99146.46, 99146.5, + 99146.5, 99146.54, + 99146.54, 99146.59, + 99146.59, 99146.62, + 99146.62, 99146.66, + 99146.66, 99146.71, + 99146.71, 99146.75, + 99146.75, 99146.79, + 99146.79, 99146.84, + 99146.84, 99146.88, + 99146.88, 99146.91, + 99146.91, 99146.96, + 99146.96, 99147, + 99147, 99147.04, + 99147.04, 99147.09, + 99147.09, 99147.12, + 99147.12, 99147.16, + 99147.16, 99147.21, + 99147.21, 99147.25, + 99147.25, 99147.29, + 99147.29, 99147.34, + 99147.34, 99147.38, + 99147.38, 99147.41, + 99147.41, 99147.46, + 99147.46, 99147.5, + 99147.5, 99147.54, + 99147.54, 99147.59, + 99147.59, 99147.62, + 99147.62, 99147.66, + 99147.66, 99147.71, + 99147.71, 99147.75, + 99147.75, 99147.79, + 99147.79, 99147.84, + 99147.84, 99147.88, + 99147.88, 99147.91, + 99147.91, 99147.96, + 99147.96, 99148, + 99148, 99148.04, + 99148.04, 99148.09, + 99148.09, 99148.12, + 99148.12, 99148.16, + 99148.16, 99148.21, + 99148.21, 99148.25, + 99148.25, 99148.29, + 99148.29, 99148.34, + 99148.34, 99148.38, + 99148.38, 99148.41, + 99148.41, 99148.46, + 99148.46, 99148.5, + 99148.5, 99148.54, + 99148.54, 99148.59, + 99148.59, 99148.62, + 99148.62, 99148.66, + 99148.66, 99148.71, + 99148.71, 99148.75, + 99148.75, 99148.79, + 99148.79, 99148.84, + 99148.84, 99148.88, + 99148.88, 99148.91, + 99148.91, 99148.96, + 99148.96, 99149, + 99149, 99149.04, + 99149.04, 99149.09, + 99149.09, 99149.12, + 99149.12, 99149.16, + 99149.16, 99149.21, + 99149.21, 99149.25, + 99149.25, 99149.29, + 99149.29, 99149.34, + 99149.34, 99149.38, + 99149.38, 99149.41, + 99149.41, 99149.46, + 99149.46, 99149.5, + 99149.5, 99149.54, + 99149.54, 99149.59, + 99149.59, 99149.62, + 99149.62, 99149.66, + 99149.66, 99149.71, + 99149.71, 99149.75, + 99149.75, 99149.79, + 99149.79, 99149.84, + 99149.84, 99149.88, + 99149.88, 99149.91, + 99149.91, 99149.96, + 99149.96, 99150, + 99150, 99150.04, + 99150.04, 99150.09, + 99150.09, 99150.12, + 99150.12, 99150.16, + 99150.16, 99150.21, + 99150.21, 99150.25, + 99150.25, 99150.29, + 99150.29, 99150.34, + 99150.34, 99150.38, + 99150.38, 99150.41, + 99150.41, 99150.46, + 99150.46, 99150.5, + 99150.5, 99150.54, + 99150.54, 99150.59, + 99150.59, 99150.62, + 99150.62, 99150.66, + 99150.66, 99150.71, + 99150.71, 99150.75, + 99150.75, 99150.79, + 99150.79, 99150.84, + 99150.84, 99150.88, + 99150.88, 99150.91, + 99150.91, 99150.96, + 99150.96, 99151, + 99151, 99151.04, + 99151.04, 99151.09, + 99151.09, 99151.12, + 99151.12, 99151.16, + 99151.16, 99151.21, + 99151.21, 99151.25, + 99151.25, 99151.29, + 99151.29, 99151.34, + 99151.34, 99151.38, + 99151.38, 99151.41, + 99151.41, 99151.46, + 99151.46, 99151.5, + 99151.5, 99151.54, + 99151.54, 99151.59, + 99151.59, 99151.62, + 99151.62, 99151.66, + 99151.66, 99151.71, + 99151.71, 99151.75, + 99151.75, 99151.79, + 99151.79, 99151.84, + 99151.84, 99151.88, + 99151.88, 99151.91, + 99151.91, 99151.96, + 99151.96, 99152, + 99152, 99152.04, + 99152.04, 99152.09, + 99152.09, 99152.12, + 99152.12, 99152.16, + 99152.16, 99152.21, + 99152.21, 99152.25, + 99152.25, 99152.29, + 99152.29, 99152.34, + 99152.34, 99152.38, + 99152.38, 99152.41, + 99152.41, 99152.46, + 99152.46, 99152.5, + 99152.5, 99152.54, + 99152.54, 99152.59, + 99152.59, 99152.62, + 99152.62, 99152.66, + 99152.66, 99152.71, + 99152.71, 99152.75, + 99152.75, 99152.79, + 99152.79, 99152.84, + 99152.84, 99152.88, + 99152.88, 99152.91, + 99152.91, 99152.96, + 99152.96, 99153, + 99153, 99153.04, + 99153.04, 99153.09, + 99153.09, 99153.12, + 99153.12, 99153.16, + 99153.16, 99153.21, + 99153.21, 99153.25, + 99153.25, 99153.29, + 99153.29, 99153.34, + 99153.34, 99153.38, + 99153.38, 99153.41, + 99153.41, 99153.46, + 99153.46, 99153.5, + 99153.5, 99153.54, + 99153.54, 99153.59, + 99153.59, 99153.62, + 99153.62, 99153.66, + 99153.66, 99153.71, + 99153.71, 99153.75, + 99153.75, 99153.79, + 99153.79, 99153.84, + 99153.84, 99153.88, + 99153.88, 99153.91, + 99153.91, 99153.96, + 99153.96, 99154, + 99154, 99154.04, + 99154.04, 99154.09, + 99154.09, 99154.12, + 99154.12, 99154.16, + 99154.16, 99154.21, + 99154.21, 99154.25, + 99154.25, 99154.29, + 99154.29, 99154.34, + 99154.34, 99154.38, + 99154.38, 99154.41, + 99154.41, 99154.46, + 99154.46, 99154.5, + 99154.5, 99154.54, + 99154.54, 99154.59, + 99154.59, 99154.62, + 99154.62, 99154.66, + 99154.66, 99154.71, + 99154.71, 99154.75, + 99154.75, 99154.79, + 99154.79, 99154.84, + 99154.84, 99154.88, + 99154.88, 99154.91, + 99154.91, 99154.96, + 99154.96, 99155, + 99155, 99155.04, + 99155.04, 99155.09, + 99155.09, 99155.12, + 99155.12, 99155.16, + 99155.16, 99155.21, + 99155.21, 99155.25, + 99155.25, 99155.29, + 99155.29, 99155.34, + 99155.34, 99155.38, + 99155.38, 99155.41, + 99155.41, 99155.46, + 99155.46, 99155.5, + 99155.5, 99155.54, + 99155.54, 99155.59, + 99155.59, 99155.62, + 99155.62, 99155.66, + 99155.66, 99155.71, + 99155.71, 99155.75, + 99155.75, 99155.79, + 99155.79, 99155.84, + 99155.84, 99155.88, + 99155.88, 99155.91, + 99155.91, 99155.96, + 99155.96, 99156, + 99156, 99156.04, + 99156.04, 99156.09, + 99156.09, 99156.12, + 99156.12, 99156.16, + 99156.16, 99156.21, + 99156.21, 99156.25, + 99156.25, 99156.29, + 99156.29, 99156.34, + 99156.34, 99156.38, + 99156.38, 99156.41, + 99156.41, 99156.46, + 99156.46, 99156.5, + 99156.5, 99156.54, + 99156.54, 99156.59, + 99156.59, 99156.62, + 99156.62, 99156.66, + 99156.66, 99156.71, + 99156.71, 99156.75, + 99156.75, 99156.79, + 99156.79, 99156.84, + 99156.84, 99156.88, + 99156.88, 99156.91, + 99156.91, 99156.96, + 99156.96, 99157, + 99157, 99157.04, + 99157.04, 99157.09, + 99157.09, 99157.12, + 99157.12, 99157.16, + 99157.16, 99157.21, + 99157.21, 99157.25, + 99157.25, 99157.29, + 99157.29, 99157.34, + 99157.34, 99157.38, + 99157.38, 99157.41, + 99157.41, 99157.46, + 99157.46, 99157.5, + 99157.5, 99157.54, + 99157.54, 99157.59, + 99157.59, 99157.62, + 99157.62, 99157.66, + 99157.66, 99157.71, + 99157.71, 99157.75, + 99157.75, 99157.79, + 99157.79, 99157.84, + 99157.84, 99157.88, + 99157.88, 99157.91, + 99157.91, 99157.96, + 99157.96, 99158, + 99158, 99158.04, + 99158.04, 99158.09, + 99158.09, 99158.12, + 99158.12, 99158.16, + 99158.16, 99158.21, + 99158.21, 99158.25, + 99158.25, 99158.29, + 99158.29, 99158.34, + 99158.34, 99158.38, + 99158.38, 99158.41, + 99158.41, 99158.46, + 99158.46, 99158.5, + 99158.5, 99158.54, + 99158.54, 99158.59, + 99158.59, 99158.62, + 99158.62, 99158.66, + 99158.66, 99158.71, + 99158.71, 99158.75, + 99158.75, 99158.79, + 99158.79, 99158.84, + 99158.84, 99158.88, + 99158.88, 99158.91, + 99158.91, 99158.96, + 99158.96, 99159, + 99159, 99159.04, + 99159.04, 99159.09, + 99159.09, 99159.12, + 99159.12, 99159.16, + 99159.16, 99159.21, + 99159.21, 99159.25, + 99159.25, 99159.29, + 99159.29, 99159.34, + 99159.34, 99159.38, + 99159.38, 99159.41, + 99159.41, 99159.46, + 99159.46, 99159.5, + 99159.5, 99159.54, + 99159.54, 99159.59, + 99159.59, 99159.62, + 99159.62, 99159.66, + 99159.66, 99159.71, + 99159.71, 99159.75, + 99159.75, 99159.79, + 99159.79, 99159.84, + 99159.84, 99159.88, + 99159.88, 99159.91, + 99159.91, 99159.96, + 99159.96, 99160, + 99160, 99160.04, + 99160.04, 99160.09, + 99160.09, 99160.12, + 99160.12, 99160.16, + 99160.16, 99160.21, + 99160.21, 99160.25, + 99160.25, 99160.29, + 99160.29, 99160.34, + 99160.34, 99160.38, + 99160.38, 99160.41, + 99160.41, 99160.46, + 99160.46, 99160.5, + 99160.5, 99160.54, + 99160.54, 99160.59, + 99160.59, 99160.62, + 99160.62, 99160.66, + 99160.66, 99160.71, + 99160.71, 99160.75, + 99160.75, 99160.79, + 99160.79, 99160.84, + 99160.84, 99160.88, + 99160.88, 99160.91, + 99160.91, 99160.96, + 99160.96, 99161, + 99161, 99161.04, + 99161.04, 99161.09, + 99161.09, 99161.12, + 99161.12, 99161.16, + 99161.16, 99161.21, + 99161.21, 99161.25, + 99161.25, 99161.29, + 99161.29, 99161.34, + 99161.34, 99161.38, + 99161.38, 99161.41, + 99161.41, 99161.46, + 99161.46, 99161.5, + 99161.5, 99161.54, + 99161.54, 99161.59, + 99161.59, 99161.62, + 99161.62, 99161.66, + 99161.66, 99161.71, + 99161.71, 99161.75, + 99161.75, 99161.79, + 99161.79, 99161.84, + 99161.84, 99161.88, + 99161.88, 99161.91, + 99161.91, 99161.96, + 99161.96, 99162, + 99162, 99162.04, + 99162.04, 99162.09, + 99162.09, 99162.12, + 99162.12, 99162.16, + 99162.16, 99162.21, + 99162.21, 99162.25, + 99162.25, 99162.29, + 99162.29, 99162.34, + 99162.34, 99162.38, + 99162.38, 99162.41, + 99162.41, 99162.46, + 99162.46, 99162.5, + 99162.5, 99162.54, + 99162.54, 99162.59, + 99162.59, 99162.62, + 99162.62, 99162.66, + 99162.66, 99162.71, + 99162.71, 99162.75, + 99162.75, 99162.79, + 99162.79, 99162.84, + 99162.84, 99162.88, + 99162.88, 99162.91, + 99162.91, 99162.96, + 99162.96, 99163, + 99163, 99163.04, + 99163.04, 99163.09, + 99163.09, 99163.12, + 99163.12, 99163.16, + 99163.16, 99163.21, + 99163.21, 99163.25, + 99163.25, 99163.29, + 99163.29, 99163.34, + 99163.34, 99163.38, + 99163.38, 99163.41, + 99163.41, 99163.46, + 99163.46, 99163.5, + 99163.5, 99163.54, + 99163.54, 99163.59, + 99163.59, 99163.62, + 99163.62, 99163.66, + 99163.66, 99163.71, + 99163.71, 99163.75, + 99163.75, 99163.79, + 99163.79, 99163.84, + 99163.84, 99163.88, + 99163.88, 99163.91, + 99163.91, 99163.96, + 99163.96, 99164, + 99164, 99164.04, + 99164.04, 99164.09, + 99164.09, 99164.12, + 99164.12, 99164.16, + 99164.16, 99164.21, + 99164.21, 99164.25, + 99164.25, 99164.29, + 99164.29, 99164.34, + 99164.34, 99164.38, + 99164.38, 99164.41, + 99164.41, 99164.46, + 99164.46, 99164.5, + 99164.5, 99164.54, + 99164.54, 99164.59, + 99164.59, 99164.62, + 99164.62, 99164.66, + 99164.66, 99164.71, + 99164.71, 99164.75, + 99164.75, 99164.79, + 99164.79, 99164.84, + 99164.84, 99164.88, + 99164.88, 99164.91, + 99164.91, 99164.96, + 99164.96, 99165, + 99165, 99165.04, + 99165.04, 99165.09, + 99165.09, 99165.12, + 99165.12, 99165.16, + 99165.16, 99165.21, + 99165.21, 99165.25, + 99165.25, 99165.29, + 99165.29, 99165.34, + 99165.34, 99165.38, + 99165.38, 99165.41, + 99165.41, 99165.46, + 99165.46, 99165.5, + 99165.5, 99165.54, + 99165.54, 99165.59, + 99165.59, 99165.62, + 99165.62, 99165.66, + 99165.66, 99165.71, + 99165.71, 99165.75, + 99165.75, 99165.79, + 99165.79, 99165.84, + 99165.84, 99165.88, + 99165.88, 99165.91, + 99165.91, 99165.96, + 99165.96, 99166, + 99166, 99166.04, + 99166.04, 99166.09, + 99166.09, 99166.12, + 99166.12, 99166.16, + 99166.16, 99166.21, + 99166.21, 99166.25, + 99166.25, 99166.29, + 99166.29, 99166.34, + 99166.34, 99166.38, + 99166.38, 99166.41, + 99166.41, 99166.46, + 99166.46, 99166.5, + 99166.5, 99166.54, + 99166.54, 99166.59, + 99166.59, 99166.62, + 99166.62, 99166.66, + 99166.66, 99166.71, + 99166.71, 99166.75, + 99166.75, 99166.79, + 99166.79, 99166.84, + 99166.84, 99166.88, + 99166.88, 99166.91, + 99166.91, 99166.96, + 99166.96, 99167, + 99167, 99167.04, + 99167.04, 99167.09, + 99167.09, 99167.12, + 99167.12, 99167.16, + 99167.16, 99167.21, + 99167.21, 99167.25, + 99167.25, 99167.29, + 99167.29, 99167.34, + 99167.34, 99167.38, + 99167.38, 99167.41, + 99167.41, 99167.46, + 99167.46, 99167.5, + 99167.5, 99167.54, + 99167.54, 99167.59, + 99167.59, 99167.62, + 99167.62, 99167.66, + 99167.66, 99167.71, + 99167.71, 99167.75, + 99167.75, 99167.79, + 99167.79, 99167.84, + 99167.84, 99167.88, + 99167.88, 99167.91, + 99167.91, 99167.96, + 99167.96, 99168, + 99168, 99168.04, + 99168.04, 99168.09, + 99168.09, 99168.12, + 99168.12, 99168.16, + 99168.16, 99168.21, + 99168.21, 99168.25, + 99168.25, 99168.29, + 99168.29, 99168.34, + 99168.34, 99168.38, + 99168.38, 99168.41, + 99168.41, 99168.46, + 99168.46, 99168.5, + 99168.5, 99168.54, + 99168.54, 99168.59, + 99168.59, 99168.62, + 99168.62, 99168.66, + 99168.66, 99168.71, + 99168.71, 99168.75, + 99168.75, 99168.79, + 99168.79, 99168.84, + 99168.84, 99168.88, + 99168.88, 99168.91, + 99168.91, 99168.96, + 99168.96, 99169, + 99169, 99169.04, + 99169.04, 99169.09, + 99169.09, 99169.12, + 99169.12, 99169.16, + 99169.16, 99169.21, + 99169.21, 99169.25, + 99169.25, 99169.29, + 99169.29, 99169.34, + 99169.34, 99169.38, + 99169.38, 99169.41, + 99169.41, 99169.46, + 99169.46, 99169.5, + 99169.5, 99169.54, + 99169.54, 99169.59, + 99169.59, 99169.62, + 99169.62, 99169.66, + 99169.66, 99169.71, + 99169.71, 99169.75, + 99169.75, 99169.79, + 99169.79, 99169.84, + 99169.84, 99169.88, + 99169.88, 99169.91, + 99169.91, 99169.96, + 99169.96, 99170, + 99170, 99170.04, + 99170.04, 99170.09, + 99170.09, 99170.12, + 99170.12, 99170.16, + 99170.16, 99170.21, + 99170.21, 99170.25, + 99170.25, 99170.29, + 99170.29, 99170.34, + 99170.34, 99170.38, + 99170.38, 99170.41, + 99170.41, 99170.46, + 99170.46, 99170.5, + 99170.5, 99170.54, + 99170.54, 99170.59, + 99170.59, 99170.62, + 99170.62, 99170.66, + 99170.66, 99170.71, + 99170.71, 99170.75, + 99170.75, 99170.79, + 99170.79, 99170.84, + 99170.84, 99170.88, + 99170.88, 99170.91, + 99170.91, 99170.96, + 99170.96, 99171, + 99171, 99171.04, + 99171.04, 99171.09, + 99171.09, 99171.12, + 99171.12, 99171.16, + 99171.16, 99171.21, + 99171.21, 99171.25, + 99171.25, 99171.29, + 99171.29, 99171.34, + 99171.34, 99171.38, + 99171.38, 99171.41, + 99171.41, 99171.46, + 99171.46, 99171.5, + 99171.5, 99171.54, + 99171.54, 99171.59, + 99171.59, 99171.62, + 99171.62, 99171.66, + 99171.66, 99171.71, + 99171.71, 99171.75, + 99171.75, 99171.79, + 99171.79, 99171.84, + 99171.84, 99171.88, + 99171.88, 99171.91, + 99171.91, 99171.96, + 99171.96, 99172, + 99172, 99172.04, + 99172.04, 99172.09, + 99172.09, 99172.12, + 99172.12, 99172.16, + 99172.16, 99172.21, + 99172.21, 99172.25, + 99172.25, 99172.29, + 99172.29, 99172.34, + 99172.34, 99172.38, + 99172.38, 99172.41, + 99172.41, 99172.46, + 99172.46, 99172.5, + 99172.5, 99172.54, + 99172.54, 99172.59, + 99172.59, 99172.62, + 99172.62, 99172.66, + 99172.66, 99172.71, + 99172.71, 99172.75, + 99172.75, 99172.79, + 99172.79, 99172.84, + 99172.84, 99172.88, + 99172.88, 99172.91, + 99172.91, 99172.96, + 99172.96, 99173, + 99173, 99173.04, + 99173.04, 99173.09, + 99173.09, 99173.12, + 99173.12, 99173.16, + 99173.16, 99173.21, + 99173.21, 99173.25, + 99173.25, 99173.29, + 99173.29, 99173.34, + 99173.34, 99173.38, + 99173.38, 99173.41, + 99173.41, 99173.46, + 99173.46, 99173.5, + 99173.5, 99173.54, + 99173.54, 99173.59, + 99173.59, 99173.62, + 99173.62, 99173.66, + 99173.66, 99173.71, + 99173.71, 99173.75, + 99173.75, 99173.79, + 99173.79, 99173.84, + 99173.84, 99173.88, + 99173.88, 99173.91, + 99173.91, 99173.96, + 99173.96, 99174, + 99174, 99174.04, + 99174.04, 99174.09, + 99174.09, 99174.12, + 99174.12, 99174.16, + 99174.16, 99174.21, + 99174.21, 99174.25, + 99174.25, 99174.29, + 99174.29, 99174.34, + 99174.34, 99174.38, + 99174.38, 99174.41, + 99174.41, 99174.46, + 99174.46, 99174.5, + 99174.5, 99174.54, + 99174.54, 99174.59, + 99174.59, 99174.62, + 99174.62, 99174.66, + 99174.66, 99174.71, + 99174.71, 99174.75, + 99174.75, 99174.79, + 99174.79, 99174.84, + 99174.84, 99174.88, + 99174.88, 99174.91, + 99174.91, 99174.96, + 99174.96, 99175, + 99175, 99175.04, + 99175.04, 99175.09, + 99175.09, 99175.12, + 99175.12, 99175.16, + 99175.16, 99175.21, + 99175.21, 99175.25, + 99175.25, 99175.29, + 99175.29, 99175.34, + 99175.34, 99175.38, + 99175.38, 99175.41, + 99175.41, 99175.46, + 99175.46, 99175.5, + 99175.5, 99175.54, + 99175.54, 99175.59, + 99175.59, 99175.62, + 99175.62, 99175.66, + 99175.66, 99175.71, + 99175.71, 99175.75, + 99175.75, 99175.79, + 99175.79, 99175.84, + 99175.84, 99175.88, + 99175.88, 99175.91, + 99175.91, 99175.96, + 99175.96, 99176, + 99176, 99176.04, + 99176.04, 99176.09, + 99176.09, 99176.12, + 99176.12, 99176.16, + 99176.16, 99176.21, + 99176.21, 99176.25, + 99176.25, 99176.29, + 99176.29, 99176.34, + 99176.34, 99176.38, + 99176.38, 99176.41, + 99176.41, 99176.46, + 99176.46, 99176.5, + 99176.5, 99176.54, + 99176.54, 99176.59, + 99176.59, 99176.62, + 99176.62, 99176.66, + 99176.66, 99176.71, + 99176.71, 99176.75, + 99176.75, 99176.79, + 99176.79, 99176.84, + 99176.84, 99176.88, + 99176.88, 99176.91, + 99176.91, 99176.96, + 99176.96, 99177, + 99177, 99177.04, + 99177.04, 99177.09, + 99177.09, 99177.12, + 99177.12, 99177.16, + 99177.16, 99177.21, + 99177.21, 99177.25, + 99177.25, 99177.29, + 99177.29, 99177.34, + 99177.34, 99177.38, + 99177.38, 99177.41, + 99177.41, 99177.46, + 99177.46, 99177.5, + 99177.5, 99177.54, + 99177.54, 99177.59, + 99177.59, 99177.62, + 99177.62, 99177.66, + 99177.66, 99177.71, + 99177.71, 99177.75, + 99177.75, 99177.79, + 99177.79, 99177.84, + 99177.84, 99177.88, + 99177.88, 99177.91, + 99177.91, 99177.96, + 99177.96, 99178, + 99178, 99178.04, + 99178.04, 99178.09, + 99178.09, 99178.12, + 99178.12, 99178.16, + 99178.16, 99178.21, + 99178.21, 99178.25, + 99178.25, 99178.29, + 99178.29, 99178.34, + 99178.34, 99178.38, + 99178.38, 99178.41, + 99178.41, 99178.46, + 99178.46, 99178.5, + 99178.5, 99178.54, + 99178.54, 99178.59, + 99178.59, 99178.62, + 99178.62, 99178.66, + 99178.66, 99178.71, + 99178.71, 99178.75, + 99178.75, 99178.79, + 99178.79, 99178.84, + 99178.84, 99178.88, + 99178.88, 99178.91, + 99178.91, 99178.96, + 99178.96, 99179, + 99179, 99179.04, + 99179.04, 99179.09, + 99179.09, 99179.12, + 99179.12, 99179.16, + 99179.16, 99179.21, + 99179.21, 99179.25, + 99179.25, 99179.29, + 99179.29, 99179.34, + 99179.34, 99179.38, + 99179.38, 99179.41, + 99179.41, 99179.46, + 99179.46, 99179.5, + 99179.5, 99179.54, + 99179.54, 99179.59, + 99179.59, 99179.62, + 99179.62, 99179.66, + 99179.66, 99179.71, + 99179.71, 99179.75, + 99179.75, 99179.79, + 99179.79, 99179.84, + 99179.84, 99179.88, + 99179.88, 99179.91, + 99179.91, 99179.96, + 99179.96, 99180, + 99180, 99180.04, + 99180.04, 99180.09, + 99180.09, 99180.12, + 99180.12, 99180.16, + 99180.16, 99180.21, + 99180.21, 99180.25, + 99180.25, 99180.29, + 99180.29, 99180.34, + 99180.34, 99180.38, + 99180.38, 99180.41, + 99180.41, 99180.46, + 99180.46, 99180.5, + 99180.5, 99180.54, + 99180.54, 99180.59, + 99180.59, 99180.62, + 99180.62, 99180.66, + 99180.66, 99180.71, + 99180.71, 99180.75, + 99180.75, 99180.79, + 99180.79, 99180.84, + 99180.84, 99180.88, + 99180.88, 99180.91, + 99180.91, 99180.96, + 99180.96, 99181, + 99181, 99181.04, + 99181.04, 99181.09, + 99181.09, 99181.12, + 99181.12, 99181.16, + 99181.16, 99181.21, + 99181.21, 99181.25, + 99181.25, 99181.29, + 99181.29, 99181.34, + 99181.34, 99181.38, + 99181.38, 99181.41, + 99181.41, 99181.46, + 99181.46, 99181.5, + 99181.5, 99181.54, + 99181.54, 99181.59, + 99181.59, 99181.62, + 99181.62, 99181.66, + 99181.66, 99181.71, + 99181.71, 99181.75, + 99181.75, 99181.79, + 99181.79, 99181.84, + 99181.84, 99181.88, + 99181.88, 99181.91, + 99181.91, 99181.96, + 99181.96, 99182, + 99182, 99182.04, + 99182.04, 99182.09, + 99182.09, 99182.12, + 99182.12, 99182.16, + 99182.16, 99182.21, + 99182.21, 99182.25, + 99182.25, 99182.29, + 99182.29, 99182.34, + 99182.34, 99182.38, + 99182.38, 99182.41, + 99182.41, 99182.46, + 99182.46, 99182.5, + 99182.5, 99182.54, + 99182.54, 99182.59, + 99182.59, 99182.62, + 99182.62, 99182.66, + 99182.66, 99182.71, + 99182.71, 99182.75, + 99182.75, 99182.79, + 99182.79, 99182.84, + 99182.84, 99182.88, + 99182.88, 99182.91, + 99182.91, 99182.96, + 99182.96, 99183, + 99183, 99183.04, + 99183.04, 99183.09, + 99183.09, 99183.12, + 99183.12, 99183.16, + 99183.16, 99183.21, + 99183.21, 99183.25, + 99183.25, 99183.29, + 99183.29, 99183.34, + 99183.34, 99183.38, + 99183.38, 99183.41, + 99183.41, 99183.46, + 99183.46, 99183.5, + 99183.5, 99183.54, + 99183.54, 99183.59, + 99183.59, 99183.62, + 99183.62, 99183.66, + 99183.66, 99183.71, + 99183.71, 99183.75, + 99183.75, 99183.79, + 99183.79, 99183.84, + 99183.84, 99183.88, + 99183.88, 99183.91, + 99183.91, 99183.96, + 99183.96, 99184, + 99184, 99184.04, + 99184.04, 99184.09, + 99184.09, 99184.12, + 99184.12, 99184.16, + 99184.16, 99184.21, + 99184.21, 99184.25, + 99184.25, 99184.29, + 99184.29, 99184.34, + 99184.34, 99184.38, + 99184.38, 99184.41, + 99184.41, 99184.46, + 99184.46, 99184.5, + 99184.5, 99184.54, + 99184.54, 99184.59, + 99184.59, 99184.62, + 99184.62, 99184.66, + 99184.66, 99184.71, + 99184.71, 99184.75, + 99184.75, 99184.79, + 99184.79, 99184.84, + 99184.84, 99184.88, + 99184.88, 99184.91, + 99184.91, 99184.96, + 99184.96, 99185, + 99185, 99185.04, + 99185.04, 99185.09, + 99185.09, 99185.12, + 99185.12, 99185.16, + 99185.16, 99185.21, + 99185.21, 99185.25, + 99185.25, 99185.29, + 99185.29, 99185.34, + 99185.34, 99185.38, + 99185.38, 99185.41, + 99185.41, 99185.46, + 99185.46, 99185.5, + 99185.5, 99185.54, + 99185.54, 99185.59, + 99185.59, 99185.62, + 99185.62, 99185.66, + 99185.66, 99185.71, + 99185.71, 99185.75, + 99185.75, 99185.79, + 99185.79, 99185.84, + 99185.84, 99185.88, + 99185.88, 99185.91, + 99185.91, 99185.96, + 99185.96, 99186, + 99186, 99186.04, + 99186.04, 99186.09, + 99186.09, 99186.12, + 99186.12, 99186.16, + 99186.16, 99186.21, + 99186.21, 99186.25, + 99186.25, 99186.29, + 99186.29, 99186.34, + 99186.34, 99186.38, + 99186.38, 99186.41, + 99186.41, 99186.46, + 99186.46, 99186.5, + 99186.5, 99186.54, + 99186.54, 99186.59, + 99186.59, 99186.62, + 99186.62, 99186.66, + 99186.66, 99186.71, + 99186.71, 99186.75, + 99186.75, 99186.79, + 99186.79, 99186.84, + 99186.84, 99186.88, + 99186.88, 99186.91, + 99186.91, 99186.96, + 99186.96, 99187, + 99187, 99187.04, + 99187.04, 99187.09, + 99187.09, 99187.12, + 99187.12, 99187.16, + 99187.16, 99187.21, + 99187.21, 99187.25, + 99187.25, 99187.29, + 99187.29, 99187.34, + 99187.34, 99187.38, + 99187.38, 99187.41, + 99187.41, 99187.46, + 99187.46, 99187.5, + 99187.5, 99187.54, + 99187.54, 99187.59, + 99187.59, 99187.62, + 99187.62, 99187.66, + 99187.66, 99187.71, + 99187.71, 99187.75, + 99187.75, 99187.79, + 99187.79, 99187.84, + 99187.84, 99187.88, + 99187.88, 99187.91, + 99187.91, 99187.96, + 99187.96, 99188, + 99188, 99188.04, + 99188.04, 99188.09, + 99188.09, 99188.12, + 99188.12, 99188.16, + 99188.16, 99188.21, + 99188.21, 99188.25, + 99188.25, 99188.29, + 99188.29, 99188.34, + 99188.34, 99188.38, + 99188.38, 99188.41, + 99188.41, 99188.46, + 99188.46, 99188.5, + 99188.5, 99188.54, + 99188.54, 99188.59, + 99188.59, 99188.62, + 99188.62, 99188.66, + 99188.66, 99188.71, + 99188.71, 99188.75, + 99188.75, 99188.79, + 99188.79, 99188.84, + 99188.84, 99188.88, + 99188.88, 99188.91, + 99188.91, 99188.96, + 99188.96, 99189, + 99189, 99189.04, + 99189.04, 99189.09, + 99189.09, 99189.12, + 99189.12, 99189.16, + 99189.16, 99189.21, + 99189.21, 99189.25, + 99189.25, 99189.29, + 99189.29, 99189.34, + 99189.34, 99189.38, + 99189.38, 99189.41, + 99189.41, 99189.46, + 99189.46, 99189.5, + 99189.5, 99189.54, + 99189.54, 99189.59, + 99189.59, 99189.62, + 99189.62, 99189.66, + 99189.66, 99189.71, + 99189.71, 99189.75, + 99189.75, 99189.79, + 99189.79, 99189.84, + 99189.84, 99189.88, + 99189.88, 99189.91, + 99189.91, 99189.96, + 99189.96, 99190, + 99190, 99190.04, + 99190.04, 99190.09, + 99190.09, 99190.12, + 99190.12, 99190.16, + 99190.16, 99190.21, + 99190.21, 99190.25, + 99190.25, 99190.29, + 99190.29, 99190.34, + 99190.34, 99190.38, + 99190.38, 99190.41, + 99190.41, 99190.46, + 99190.46, 99190.5, + 99190.5, 99190.54, + 99190.54, 99190.59, + 99190.59, 99190.62, + 99190.62, 99190.66, + 99190.66, 99190.71, + 99190.71, 99190.75, + 99190.75, 99190.79, + 99190.79, 99190.84, + 99190.84, 99190.88, + 99190.88, 99190.91, + 99190.91, 99190.96, + 99190.96, 99191, + 99191, 99191.04, + 99191.04, 99191.09, + 99191.09, 99191.12, + 99191.12, 99191.16, + 99191.16, 99191.21, + 99191.21, 99191.25, + 99191.25, 99191.29, + 99191.29, 99191.34, + 99191.34, 99191.38, + 99191.38, 99191.41, + 99191.41, 99191.46, + 99191.46, 99191.5, + 99191.5, 99191.54, + 99191.54, 99191.59, + 99191.59, 99191.62, + 99191.62, 99191.66, + 99191.66, 99191.71, + 99191.71, 99191.75, + 99191.75, 99191.79, + 99191.79, 99191.84, + 99191.84, 99191.88, + 99191.88, 99191.91, + 99191.91, 99191.96, + 99191.96, 99192, + 99192, 99192.04, + 99192.04, 99192.09, + 99192.09, 99192.12, + 99192.12, 99192.16, + 99192.16, 99192.21, + 99192.21, 99192.25, + 99192.25, 99192.29, + 99192.29, 99192.34, + 99192.34, 99192.38, + 99192.38, 99192.41, + 99192.41, 99192.46, + 99192.46, 99192.5, + 99192.5, 99192.54, + 99192.54, 99192.59, + 99192.59, 99192.62, + 99192.62, 99192.66, + 99192.66, 99192.71, + 99192.71, 99192.75, + 99192.75, 99192.79, + 99192.79, 99192.84, + 99192.84, 99192.88, + 99192.88, 99192.91, + 99192.91, 99192.96, + 99192.96, 99193, + 99193, 99193.04, + 99193.04, 99193.09, + 99193.09, 99193.12, + 99193.12, 99193.16, + 99193.16, 99193.21, + 99193.21, 99193.25, + 99193.25, 99193.29, + 99193.29, 99193.34, + 99193.34, 99193.38, + 99193.38, 99193.41, + 99193.41, 99193.46, + 99193.46, 99193.5, + 99193.5, 99193.54, + 99193.54, 99193.59, + 99193.59, 99193.62, + 99193.62, 99193.66, + 99193.66, 99193.71, + 99193.71, 99193.75, + 99193.75, 99193.79, + 99193.79, 99193.84, + 99193.84, 99193.88, + 99193.88, 99193.91, + 99193.91, 99193.96, + 99193.96, 99194, + 99194, 99194.04, + 99194.04, 99194.09, + 99194.09, 99194.12, + 99194.12, 99194.16, + 99194.16, 99194.21, + 99194.21, 99194.25, + 99194.25, 99194.29, + 99194.29, 99194.34, + 99194.34, 99194.38, + 99194.38, 99194.41, + 99194.41, 99194.46, + 99194.46, 99194.5, + 99194.5, 99194.54, + 99194.54, 99194.59, + 99194.59, 99194.62, + 99194.62, 99194.66, + 99194.66, 99194.71, + 99194.71, 99194.75, + 99194.75, 99194.79, + 99194.79, 99194.84, + 99194.84, 99194.88, + 99194.88, 99194.91, + 99194.91, 99194.96, + 99194.96, 99195, + 99195, 99195.04, + 99195.04, 99195.09, + 99195.09, 99195.12, + 99195.12, 99195.16, + 99195.16, 99195.21, + 99195.21, 99195.25, + 99195.25, 99195.29, + 99195.29, 99195.34, + 99195.34, 99195.38, + 99195.38, 99195.41, + 99195.41, 99195.46, + 99195.46, 99195.5, + 99195.5, 99195.54, + 99195.54, 99195.59, + 99195.59, 99195.62, + 99195.62, 99195.66, + 99195.66, 99195.71, + 99195.71, 99195.75, + 99195.75, 99195.79, + 99195.79, 99195.84, + 99195.84, 99195.88, + 99195.88, 99195.91, + 99195.91, 99195.96, + 99195.96, 99196, + 99196, 99196.04, + 99196.04, 99196.09, + 99196.09, 99196.12, + 99196.12, 99196.16, + 99196.16, 99196.21, + 99196.21, 99196.25, + 99196.25, 99196.29, + 99196.29, 99196.34, + 99196.34, 99196.38, + 99196.38, 99196.41, + 99196.41, 99196.46, + 99196.46, 99196.5, + 99196.5, 99196.54, + 99196.54, 99196.59, + 99196.59, 99196.62, + 99196.62, 99196.66, + 99196.66, 99196.71, + 99196.71, 99196.75, + 99196.75, 99196.79, + 99196.79, 99196.84, + 99196.84, 99196.88, + 99196.88, 99196.91, + 99196.91, 99196.96, + 99196.96, 99197, + 99197, 99197.04, + 99197.04, 99197.09, + 99197.09, 99197.12, + 99197.12, 99197.16, + 99197.16, 99197.21, + 99197.21, 99197.25, + 99197.25, 99197.29, + 99197.29, 99197.34, + 99197.34, 99197.38, + 99197.38, 99197.41, + 99197.41, 99197.46, + 99197.46, 99197.5, + 99197.5, 99197.54, + 99197.54, 99197.59, + 99197.59, 99197.62, + 99197.62, 99197.66, + 99197.66, 99197.71, + 99197.71, 99197.75, + 99197.75, 99197.79, + 99197.79, 99197.84, + 99197.84, 99197.88, + 99197.88, 99197.91, + 99197.91, 99197.96, + 99197.96, 99198, + 99198, 99198.04, + 99198.04, 99198.09, + 99198.09, 99198.12, + 99198.12, 99198.16, + 99198.16, 99198.21, + 99198.21, 99198.25, + 99198.25, 99198.29, + 99198.29, 99198.34, + 99198.34, 99198.38, + 99198.38, 99198.41, + 99198.41, 99198.46, + 99198.46, 99198.5, + 99198.5, 99198.54, + 99198.54, 99198.59, + 99198.59, 99198.62, + 99198.62, 99198.66, + 99198.66, 99198.71, + 99198.71, 99198.75, + 99198.75, 99198.79, + 99198.79, 99198.84, + 99198.84, 99198.88, + 99198.88, 99198.91, + 99198.91, 99198.96, + 99198.96, 99199, + 99199, 99199.04, + 99199.04, 99199.09, + 99199.09, 99199.12, + 99199.12, 99199.16, + 99199.16, 99199.21, + 99199.21, 99199.25, + 99199.25, 99199.29, + 99199.29, 99199.34, + 99199.34, 99199.38, + 99199.38, 99199.41, + 99199.41, 99199.46, + 99199.46, 99199.5, + 99199.5, 99199.54, + 99199.54, 99199.59, + 99199.59, 99199.62, + 99199.62, 99199.66, + 99199.66, 99199.71, + 99199.71, 99199.75, + 99199.75, 99199.79, + 99199.79, 99199.84, + 99199.84, 99199.88, + 99199.88, 99199.91, + 99199.91, 99199.96, + 99199.96, 99200, + 99200, 99200.04, + 99200.04, 99200.09, + 99200.09, 99200.12, + 99200.12, 99200.16, + 99200.16, 99200.21, + 99200.21, 99200.25, + 99200.25, 99200.29, + 99200.29, 99200.34, + 99200.34, 99200.38, + 99200.38, 99200.41, + 99200.41, 99200.46, + 99200.46, 99200.5, + 99200.5, 99200.54, + 99200.54, 99200.59, + 99200.59, 99200.62, + 99200.62, 99200.66, + 99200.66, 99200.71, + 99200.71, 99200.75, + 99200.75, 99200.79, + 99200.79, 99200.84, + 99200.84, 99200.88, + 99200.88, 99200.91, + 99200.91, 99200.96, + 99200.96, 99201, + 99201, 99201.04, + 99201.04, 99201.09, + 99201.09, 99201.12, + 99201.12, 99201.16, + 99201.16, 99201.21, + 99201.21, 99201.25, + 99201.25, 99201.29, + 99201.29, 99201.34, + 99201.34, 99201.38, + 99201.38, 99201.41, + 99201.41, 99201.46, + 99201.46, 99201.5, + 99201.5, 99201.54, + 99201.54, 99201.59, + 99201.59, 99201.62, + 99201.62, 99201.66, + 99201.66, 99201.71, + 99201.71, 99201.75, + 99201.75, 99201.79, + 99201.79, 99201.84, + 99201.84, 99201.88, + 99201.88, 99201.91, + 99201.91, 99201.96, + 99201.96, 99202, + 99202, 99202.04, + 99202.04, 99202.09, + 99202.09, 99202.12, + 99202.12, 99202.16, + 99202.16, 99202.21, + 99202.21, 99202.25, + 99202.25, 99202.29, + 99202.29, 99202.34, + 99202.34, 99202.38, + 99202.38, 99202.41, + 99202.41, 99202.46, + 99202.46, 99202.5, + 99202.5, 99202.54, + 99202.54, 99202.59, + 99202.59, 99202.62, + 99202.62, 99202.66, + 99202.66, 99202.71, + 99202.71, 99202.75, + 99202.75, 99202.79, + 99202.79, 99202.84, + 99202.84, 99202.88, + 99202.88, 99202.91, + 99202.91, 99202.96, + 99202.96, 99203, + 99203, 99203.04, + 99203.04, 99203.09, + 99203.09, 99203.12, + 99203.12, 99203.16, + 99203.16, 99203.21, + 99203.21, 99203.25, + 99203.25, 99203.29, + 99203.29, 99203.34, + 99203.34, 99203.38, + 99203.38, 99203.41, + 99203.41, 99203.46, + 99203.46, 99203.5, + 99203.5, 99203.54, + 99203.54, 99203.59, + 99203.59, 99203.62, + 99203.62, 99203.66, + 99203.66, 99203.71, + 99203.71, 99203.75, + 99203.75, 99203.79, + 99203.79, 99203.84, + 99203.84, 99203.88, + 99203.88, 99203.91, + 99203.91, 99203.96, + 99203.96, 99204, + 99204, 99204.04, + 99204.04, 99204.09, + 99204.09, 99204.12, + 99204.12, 99204.16, + 99204.16, 99204.21, + 99204.21, 99204.25, + 99204.25, 99204.29, + 99204.29, 99204.34, + 99204.34, 99204.38, + 99204.38, 99204.41, + 99204.41, 99204.46, + 99204.46, 99204.5, + 99204.5, 99204.54, + 99204.54, 99204.59, + 99204.59, 99204.62, + 99204.62, 99204.66, + 99204.66, 99204.71, + 99204.71, 99204.75, + 99204.75, 99204.79, + 99204.79, 99204.84, + 99204.84, 99204.88, + 99204.88, 99204.91, + 99204.91, 99204.96, + 99204.96, 99205, + 99205, 99205.04, + 99205.04, 99205.09, + 99205.09, 99205.12, + 99205.12, 99205.16, + 99205.16, 99205.21, + 99205.21, 99205.25, + 99205.25, 99205.29, + 99205.29, 99205.34, + 99205.34, 99205.38, + 99205.38, 99205.41, + 99205.41, 99205.46, + 99205.46, 99205.5, + 99205.5, 99205.54, + 99205.54, 99205.59, + 99205.59, 99205.62, + 99205.62, 99205.66, + 99205.66, 99205.71, + 99205.71, 99205.75, + 99205.75, 99205.79, + 99205.79, 99205.84, + 99205.84, 99205.88, + 99205.88, 99205.91, + 99205.91, 99205.96, + 99205.96, 99206, + 99206, 99206.04, + 99206.04, 99206.09, + 99206.09, 99206.12, + 99206.12, 99206.16, + 99206.16, 99206.21, + 99206.21, 99206.25, + 99206.25, 99206.29, + 99206.29, 99206.34, + 99206.34, 99206.38, + 99206.38, 99206.41, + 99206.41, 99206.46, + 99206.46, 99206.5, + 99206.5, 99206.54, + 99206.54, 99206.59, + 99206.59, 99206.62, + 99206.62, 99206.66, + 99206.66, 99206.71, + 99206.71, 99206.75, + 99206.75, 99206.79, + 99206.79, 99206.84, + 99206.84, 99206.88, + 99206.88, 99206.91, + 99206.91, 99206.96, + 99206.96, 99207, + 99207, 99207.04, + 99207.04, 99207.09, + 99207.09, 99207.12, + 99207.12, 99207.16, + 99207.16, 99207.21, + 99207.21, 99207.25, + 99207.25, 99207.29, + 99207.29, 99207.34, + 99207.34, 99207.38, + 99207.38, 99207.41, + 99207.41, 99207.46, + 99207.46, 99207.5, + 99207.5, 99207.54, + 99207.54, 99207.59, + 99207.59, 99207.62, + 99207.62, 99207.66, + 99207.66, 99207.71, + 99207.71, 99207.75, + 99207.75, 99207.79, + 99207.79, 99207.84, + 99207.84, 99207.88, + 99207.88, 99207.91, + 99207.91, 99207.96, + 99207.96, 99208, + 99208, 99208.04, + 99208.04, 99208.09, + 99208.09, 99208.12, + 99208.12, 99208.16, + 99208.16, 99208.21, + 99208.21, 99208.25, + 99208.25, 99208.29, + 99208.29, 99208.34, + 99208.34, 99208.38, + 99208.38, 99208.41, + 99208.41, 99208.46, + 99208.46, 99208.5, + 99208.5, 99208.54, + 99208.54, 99208.59, + 99208.59, 99208.62, + 99208.62, 99208.66, + 99208.66, 99208.71, + 99208.71, 99208.75, + 99208.75, 99208.79, + 99208.79, 99208.84, + 99208.84, 99208.88, + 99208.88, 99208.91, + 99208.91, 99208.96, + 99208.96, 99209, + 99209, 99209.04, + 99209.04, 99209.09, + 99209.09, 99209.12, + 99209.12, 99209.16, + 99209.16, 99209.21, + 99209.21, 99209.25, + 99209.25, 99209.29, + 99209.29, 99209.34, + 99209.34, 99209.38, + 99209.38, 99209.41, + 99209.41, 99209.46, + 99209.46, 99209.5, + 99209.5, 99209.54, + 99209.54, 99209.59, + 99209.59, 99209.62, + 99209.62, 99209.66, + 99209.66, 99209.71, + 99209.71, 99209.75, + 99209.75, 99209.79, + 99209.79, 99209.84, + 99209.84, 99209.88, + 99209.88, 99209.91, + 99209.91, 99209.96, + 99209.96, 99210, + 99210, 99210.04, + 99210.04, 99210.09, + 99210.09, 99210.12, + 99210.12, 99210.16, + 99210.16, 99210.21, + 99210.21, 99210.25, + 99210.25, 99210.29, + 99210.29, 99210.34, + 99210.34, 99210.38, + 99210.38, 99210.41, + 99210.41, 99210.46, + 99210.46, 99210.5, + 99210.5, 99210.54, + 99210.54, 99210.59, + 99210.59, 99210.62, + 99210.62, 99210.66, + 99210.66, 99210.71, + 99210.71, 99210.75, + 99210.75, 99210.79, + 99210.79, 99210.84, + 99210.84, 99210.88, + 99210.88, 99210.91, + 99210.91, 99210.96, + 99210.96, 99211, + 99211, 99211.04, + 99211.04, 99211.09, + 99211.09, 99211.12, + 99211.12, 99211.16, + 99211.16, 99211.21, + 99211.21, 99211.25, + 99211.25, 99211.29, + 99211.29, 99211.34, + 99211.34, 99211.38, + 99211.38, 99211.41, + 99211.41, 99211.46, + 99211.46, 99211.5, + 99211.5, 99211.54, + 99211.54, 99211.59, + 99211.59, 99211.62, + 99211.62, 99211.66, + 99211.66, 99211.71, + 99211.71, 99211.75, + 99211.75, 99211.79, + 99211.79, 99211.84, + 99211.84, 99211.88, + 99211.88, 99211.91, + 99211.91, 99211.96, + 99211.96, 99212, + 99212, 99212.04, + 99212.04, 99212.09, + 99212.09, 99212.12, + 99212.12, 99212.16, + 99212.16, 99212.21, + 99212.21, 99212.25, + 99212.25, 99212.29, + 99212.29, 99212.34, + 99212.34, 99212.38, + 99212.38, 99212.41, + 99212.41, 99212.46, + 99212.46, 99212.5, + 99212.5, 99212.54, + 99212.54, 99212.59, + 99212.59, 99212.62, + 99212.62, 99212.66, + 99212.66, 99212.71, + 99212.71, 99212.75, + 99212.75, 99212.79, + 99212.79, 99212.84, + 99212.84, 99212.88, + 99212.88, 99212.91, + 99212.91, 99212.96, + 99212.96, 99213, + 99213, 99213.04, + 99213.04, 99213.09, + 99213.09, 99213.12, + 99213.12, 99213.16, + 99213.16, 99213.21, + 99213.21, 99213.25, + 99213.25, 99213.29, + 99213.29, 99213.34, + 99213.34, 99213.38, + 99213.38, 99213.41, + 99213.41, 99213.46, + 99213.46, 99213.5, + 99213.5, 99213.54, + 99213.54, 99213.59, + 99213.59, 99213.62, + 99213.62, 99213.66, + 99213.66, 99213.71, + 99213.71, 99213.75, + 99213.75, 99213.79, + 99213.79, 99213.84, + 99213.84, 99213.88, + 99213.88, 99213.91, + 99213.91, 99213.96, + 99213.96, 99214, + 99214, 99214.04, + 99214.04, 99214.09, + 99214.09, 99214.12, + 99214.12, 99214.16, + 99214.16, 99214.21, + 99214.21, 99214.25, + 99214.25, 99214.29, + 99214.29, 99214.34, + 99214.34, 99214.38, + 99214.38, 99214.41, + 99214.41, 99214.46, + 99214.46, 99214.5, + 99214.5, 99214.54, + 99214.54, 99214.59, + 99214.59, 99214.62, + 99214.62, 99214.66, + 99214.66, 99214.71, + 99214.71, 99214.75, + 99214.75, 99214.79, + 99214.79, 99214.84, + 99214.84, 99214.88, + 99214.88, 99214.91, + 99214.91, 99214.96, + 99214.96, 99215, + 99215, 99215.04, + 99215.04, 99215.09, + 99215.09, 99215.12, + 99215.12, 99215.16, + 99215.16, 99215.21, + 99215.21, 99215.25, + 99215.25, 99215.29, + 99215.29, 99215.34, + 99215.34, 99215.38, + 99215.38, 99215.41, + 99215.41, 99215.46, + 99215.46, 99215.5, + 99215.5, 99215.54, + 99215.54, 99215.59, + 99215.59, 99215.62, + 99215.62, 99215.66, + 99215.66, 99215.71, + 99215.71, 99215.75, + 99215.75, 99215.79, + 99215.79, 99215.84, + 99215.84, 99215.88, + 99215.88, 99215.91, + 99215.91, 99215.96, + 99215.96, 99216, + 99216, 99216.04, + 99216.04, 99216.09, + 99216.09, 99216.12, + 99216.12, 99216.16, + 99216.16, 99216.21, + 99216.21, 99216.25, + 99216.25, 99216.29, + 99216.29, 99216.34, + 99216.34, 99216.38, + 99216.38, 99216.41, + 99216.41, 99216.46, + 99216.46, 99216.5, + 99216.5, 99216.54, + 99216.54, 99216.59, + 99216.59, 99216.62, + 99216.62, 99216.66, + 99216.66, 99216.71, + 99216.71, 99216.75, + 99216.75, 99216.79, + 99216.79, 99216.84, + 99216.84, 99216.88, + 99216.88, 99216.91, + 99216.91, 99216.96, + 99216.96, 99217, + 99217, 99217.04, + 99217.04, 99217.09, + 99217.09, 99217.12, + 99217.12, 99217.16, + 99217.16, 99217.21, + 99217.21, 99217.25, + 99217.25, 99217.29, + 99217.29, 99217.34, + 99217.34, 99217.38, + 99217.38, 99217.41, + 99217.41, 99217.46, + 99217.46, 99217.5, + 99217.5, 99217.54, + 99217.54, 99217.59, + 99217.59, 99217.62, + 99217.62, 99217.66, + 99217.66, 99217.71, + 99217.71, 99217.75, + 99217.75, 99217.79, + 99217.79, 99217.84, + 99217.84, 99217.88, + 99217.88, 99217.91, + 99217.91, 99217.96, + 99217.96, 99218, + 99218, 99218.04, + 99218.04, 99218.09, + 99218.09, 99218.12, + 99218.12, 99218.16, + 99218.16, 99218.21, + 99218.21, 99218.25, + 99218.25, 99218.29, + 99218.29, 99218.34, + 99218.34, 99218.38, + 99218.38, 99218.41, + 99218.41, 99218.46, + 99218.46, 99218.5, + 99218.5, 99218.54, + 99218.54, 99218.59, + 99218.59, 99218.62, + 99218.62, 99218.66, + 99218.66, 99218.71, + 99218.71, 99218.75, + 99218.75, 99218.79, + 99218.79, 99218.84, + 99218.84, 99218.88, + 99218.88, 99218.91, + 99218.91, 99218.96, + 99218.96, 99219, + 99219, 99219.04, + 99219.04, 99219.09, + 99219.09, 99219.12, + 99219.12, 99219.16, + 99219.16, 99219.21, + 99219.21, 99219.25, + 99219.25, 99219.29, + 99219.29, 99219.34, + 99219.34, 99219.38, + 99219.38, 99219.41, + 99219.41, 99219.46, + 99219.46, 99219.5, + 99219.5, 99219.54, + 99219.54, 99219.59, + 99219.59, 99219.62, + 99219.62, 99219.66, + 99219.66, 99219.71, + 99219.71, 99219.75, + 99219.75, 99219.79, + 99219.79, 99219.84, + 99219.84, 99219.88, + 99219.88, 99219.91, + 99219.91, 99219.96, + 99219.96, 99220, + 99220, 99220.04, + 99220.04, 99220.09, + 99220.09, 99220.12, + 99220.12, 99220.16, + 99220.16, 99220.21, + 99220.21, 99220.25, + 99220.25, 99220.29, + 99220.29, 99220.34, + 99220.34, 99220.38, + 99220.38, 99220.41, + 99220.41, 99220.46, + 99220.46, 99220.5, + 99220.5, 99220.54, + 99220.54, 99220.59, + 99220.59, 99220.62, + 99220.62, 99220.66, + 99220.66, 99220.71, + 99220.71, 99220.75, + 99220.75, 99220.79, + 99220.79, 99220.84, + 99220.84, 99220.88, + 99220.88, 99220.91, + 99220.91, 99220.96, + 99220.96, 99221, + 99221, 99221.04, + 99221.04, 99221.09, + 99221.09, 99221.12, + 99221.12, 99221.16, + 99221.16, 99221.21, + 99221.21, 99221.25, + 99221.25, 99221.29, + 99221.29, 99221.34, + 99221.34, 99221.38, + 99221.38, 99221.41, + 99221.41, 99221.46, + 99221.46, 99221.5, + 99221.5, 99221.54, + 99221.54, 99221.59, + 99221.59, 99221.62, + 99221.62, 99221.66, + 99221.66, 99221.71, + 99221.71, 99221.75, + 99221.75, 99221.79, + 99221.79, 99221.84, + 99221.84, 99221.88, + 99221.88, 99221.91, + 99221.91, 99221.96, + 99221.96, 99222, + 99222, 99222.04, + 99222.04, 99222.09, + 99222.09, 99222.12, + 99222.12, 99222.16, + 99222.16, 99222.21, + 99222.21, 99222.25, + 99222.25, 99222.29, + 99222.29, 99222.34, + 99222.34, 99222.38, + 99222.38, 99222.41, + 99222.41, 99222.46, + 99222.46, 99222.5, + 99222.5, 99222.54, + 99222.54, 99222.59, + 99222.59, 99222.62, + 99222.62, 99222.66, + 99222.66, 99222.71, + 99222.71, 99222.75, + 99222.75, 99222.79, + 99222.79, 99222.84, + 99222.84, 99222.88, + 99222.88, 99222.91, + 99222.91, 99222.96, + 99222.96, 99223, + 99223, 99223.04, + 99223.04, 99223.09, + 99223.09, 99223.12, + 99223.12, 99223.16, + 99223.16, 99223.21, + 99223.21, 99223.25, + 99223.25, 99223.29, + 99223.29, 99223.34, + 99223.34, 99223.38, + 99223.38, 99223.41, + 99223.41, 99223.46, + 99223.46, 99223.5, + 99223.5, 99223.54, + 99223.54, 99223.59, + 99223.59, 99223.62, + 99223.62, 99223.66, + 99223.66, 99223.71, + 99223.71, 99223.75, + 99223.75, 99223.79, + 99223.79, 99223.84, + 99223.84, 99223.88, + 99223.88, 99223.91, + 99223.91, 99223.96, + 99223.96, 99224, + 99224, 99224.04, + 99224.04, 99224.09, + 99224.09, 99224.12, + 99224.12, 99224.16, + 99224.16, 99224.21, + 99224.21, 99224.25, + 99224.25, 99224.29, + 99224.29, 99224.34, + 99224.34, 99224.38, + 99224.38, 99224.41, + 99224.41, 99224.46, + 99224.46, 99224.5, + 99224.5, 99224.54, + 99224.54, 99224.59, + 99224.59, 99224.62, + 99224.62, 99224.66, + 99224.66, 99224.71, + 99224.71, 99224.75, + 99224.75, 99224.79, + 99224.79, 99224.84, + 99224.84, 99224.88, + 99224.88, 99224.91, + 99224.91, 99224.96, + 99224.96, 99225, + 99225, 99225.04, + 99225.04, 99225.09, + 99225.09, 99225.12, + 99225.12, 99225.16, + 99225.16, 99225.21, + 99225.21, 99225.25, + 99225.25, 99225.29, + 99225.29, 99225.34, + 99225.34, 99225.38, + 99225.38, 99225.41, + 99225.41, 99225.46, + 99225.46, 99225.5, + 99225.5, 99225.54, + 99225.54, 99225.59, + 99225.59, 99225.62, + 99225.62, 99225.66, + 99225.66, 99225.71, + 99225.71, 99225.75, + 99225.75, 99225.79, + 99225.79, 99225.84, + 99225.84, 99225.88, + 99225.88, 99225.91, + 99225.91, 99225.96, + 99225.96, 99226, + 99226, 99226.04, + 99226.04, 99226.09, + 99226.09, 99226.12, + 99226.12, 99226.16, + 99226.16, 99226.21, + 99226.21, 99226.25, + 99226.25, 99226.29, + 99226.29, 99226.34, + 99226.34, 99226.38, + 99226.38, 99226.41, + 99226.41, 99226.46, + 99226.46, 99226.5, + 99226.5, 99226.54, + 99226.54, 99226.59, + 99226.59, 99226.62, + 99226.62, 99226.66, + 99226.66, 99226.71, + 99226.71, 99226.75, + 99226.75, 99226.79, + 99226.79, 99226.84, + 99226.84, 99226.88, + 99226.88, 99226.91, + 99226.91, 99226.96, + 99226.96, 99227, + 99227, 99227.04, + 99227.04, 99227.09, + 99227.09, 99227.12, + 99227.12, 99227.16, + 99227.16, 99227.21, + 99227.21, 99227.25, + 99227.25, 99227.29, + 99227.29, 99227.34, + 99227.34, 99227.38, + 99227.38, 99227.41, + 99227.41, 99227.46, + 99227.46, 99227.5, + 99227.5, 99227.54, + 99227.54, 99227.59, + 99227.59, 99227.62, + 99227.62, 99227.66, + 99227.66, 99227.71, + 99227.71, 99227.75, + 99227.75, 99227.79, + 99227.79, 99227.84, + 99227.84, 99227.88, + 99227.88, 99227.91, + 99227.91, 99227.96, + 99227.96, 99228, + 99228, 99228.04, + 99228.04, 99228.09, + 99228.09, 99228.12, + 99228.12, 99228.16, + 99228.16, 99228.21, + 99228.21, 99228.25, + 99228.25, 99228.29, + 99228.29, 99228.34, + 99228.34, 99228.38, + 99228.38, 99228.41, + 99228.41, 99228.46, + 99228.46, 99228.5, + 99228.5, 99228.54, + 99228.54, 99228.59, + 99228.59, 99228.62, + 99228.62, 99228.66, + 99228.66, 99228.71, + 99228.71, 99228.75, + 99228.75, 99228.79, + 99228.79, 99228.84, + 99228.84, 99228.88, + 99228.88, 99228.91, + 99228.91, 99228.96, + 99228.96, 99229, + 99229, 99229.04, + 99229.04, 99229.09, + 99229.09, 99229.12, + 99229.12, 99229.16, + 99229.16, 99229.21, + 99229.21, 99229.25, + 99229.25, 99229.29, + 99229.29, 99229.34, + 99229.34, 99229.38, + 99229.38, 99229.41, + 99229.41, 99229.46, + 99229.46, 99229.5, + 99229.5, 99229.54, + 99229.54, 99229.59, + 99229.59, 99229.62, + 99229.62, 99229.66, + 99229.66, 99229.71, + 99229.71, 99229.75, + 99229.75, 99229.79, + 99229.79, 99229.84, + 99229.84, 99229.88, + 99229.88, 99229.91, + 99229.91, 99229.96, + 99229.96, 99230, + 99230, 99230.04, + 99230.04, 99230.09, + 99230.09, 99230.12, + 99230.12, 99230.16, + 99230.16, 99230.21, + 99230.21, 99230.25, + 99230.25, 99230.29, + 99230.29, 99230.34, + 99230.34, 99230.38, + 99230.38, 99230.41, + 99230.41, 99230.46, + 99230.46, 99230.5, + 99230.5, 99230.54, + 99230.54, 99230.59, + 99230.59, 99230.62, + 99230.62, 99230.66, + 99230.66, 99230.71, + 99230.71, 99230.75, + 99230.75, 99230.79, + 99230.79, 99230.84, + 99230.84, 99230.88, + 99230.88, 99230.91, + 99230.91, 99230.96, + 99230.96, 99231, + 99231, 99231.04, + 99231.04, 99231.09, + 99231.09, 99231.12, + 99231.12, 99231.16, + 99231.16, 99231.21, + 99231.21, 99231.25, + 99231.25, 99231.29, + 99231.29, 99231.34, + 99231.34, 99231.38, + 99231.38, 99231.41, + 99231.41, 99231.46, + 99231.46, 99231.5, + 99231.5, 99231.54, + 99231.54, 99231.59, + 99231.59, 99231.62, + 99231.62, 99231.66, + 99231.66, 99231.71, + 99231.71, 99231.75, + 99231.75, 99231.79, + 99231.79, 99231.84, + 99231.84, 99231.88, + 99231.88, 99231.91, + 99231.91, 99231.96, + 99231.96, 99232, + 99232, 99232.04, + 99232.04, 99232.09, + 99232.09, 99232.12, + 99232.12, 99232.16, + 99232.16, 99232.21, + 99232.21, 99232.25, + 99232.25, 99232.29, + 99232.29, 99232.34, + 99232.34, 99232.38, + 99232.38, 99232.41, + 99232.41, 99232.46, + 99232.46, 99232.5, + 99232.5, 99232.54, + 99232.54, 99232.59, + 99232.59, 99232.62, + 99232.62, 99232.66, + 99232.66, 99232.71, + 99232.71, 99232.75, + 99232.75, 99232.79, + 99232.79, 99232.84, + 99232.84, 99232.88, + 99232.88, 99232.91, + 99232.91, 99232.96, + 99232.96, 99233, + 99233, 99233.04, + 99233.04, 99233.09, + 99233.09, 99233.12, + 99233.12, 99233.16, + 99233.16, 99233.21, + 99233.21, 99233.25, + 99233.25, 99233.29, + 99233.29, 99233.34, + 99233.34, 99233.38, + 99233.38, 99233.41, + 99233.41, 99233.46, + 99233.46, 99233.5, + 99233.5, 99233.54, + 99233.54, 99233.59, + 99233.59, 99233.62, + 99233.62, 99233.66, + 99233.66, 99233.71, + 99233.71, 99233.75, + 99233.75, 99233.79, + 99233.79, 99233.84, + 99233.84, 99233.88, + 99233.88, 99233.91, + 99233.91, 99233.96, + 99233.96, 99234, + 99234, 99234.04, + 99234.04, 99234.09, + 99234.09, 99234.12, + 99234.12, 99234.16, + 99234.16, 99234.21, + 99234.21, 99234.25, + 99234.25, 99234.29, + 99234.29, 99234.34, + 99234.34, 99234.38, + 99234.38, 99234.41, + 99234.41, 99234.46, + 99234.46, 99234.5, + 99234.5, 99234.54, + 99234.54, 99234.59, + 99234.59, 99234.62, + 99234.62, 99234.66, + 99234.66, 99234.71, + 99234.71, 99234.75, + 99234.75, 99234.79, + 99234.79, 99234.84, + 99234.84, 99234.88, + 99234.88, 99234.91, + 99234.91, 99234.96, + 99234.96, 99235, + 99235, 99235.04, + 99235.04, 99235.09, + 99235.09, 99235.12, + 99235.12, 99235.16, + 99235.16, 99235.21, + 99235.21, 99235.25, + 99235.25, 99235.29, + 99235.29, 99235.34, + 99235.34, 99235.38, + 99235.38, 99235.41, + 99235.41, 99235.46, + 99235.46, 99235.5, + 99235.5, 99235.54, + 99235.54, 99235.59, + 99235.59, 99235.62, + 99235.62, 99235.66, + 99235.66, 99235.71, + 99235.71, 99235.75, + 99235.75, 99235.79, + 99235.79, 99235.84, + 99235.84, 99235.88, + 99235.88, 99235.91, + 99235.91, 99235.96, + 99235.96, 99236, + 99236, 99236.04, + 99236.04, 99236.09, + 99236.09, 99236.12, + 99236.12, 99236.16, + 99236.16, 99236.21, + 99236.21, 99236.25, + 99236.25, 99236.29, + 99236.29, 99236.34, + 99236.34, 99236.38, + 99236.38, 99236.41, + 99236.41, 99236.46, + 99236.46, 99236.5, + 99236.5, 99236.54, + 99236.54, 99236.59, + 99236.59, 99236.62, + 99236.62, 99236.66, + 99236.66, 99236.71, + 99236.71, 99236.75, + 99236.75, 99236.79, + 99236.79, 99236.84, + 99236.84, 99236.88, + 99236.88, 99236.91, + 99236.91, 99236.96, + 99236.96, 99237, + 99237, 99237.04, + 99237.04, 99237.09, + 99237.09, 99237.12, + 99237.12, 99237.16, + 99237.16, 99237.21, + 99237.21, 99237.25, + 99237.25, 99237.29, + 99237.29, 99237.34, + 99237.34, 99237.38, + 99237.38, 99237.41, + 99237.41, 99237.46, + 99237.46, 99237.5, + 99237.5, 99237.54, + 99237.54, 99237.59, + 99237.59, 99237.62, + 99237.62, 99237.66, + 99237.66, 99237.71, + 99237.71, 99237.75, + 99237.75, 99237.79, + 99237.79, 99237.84, + 99237.84, 99237.88, + 99237.88, 99237.91, + 99237.91, 99237.96, + 99237.96, 99238, + 99238, 99238.04, + 99238.04, 99238.09, + 99238.09, 99238.12, + 99238.12, 99238.16, + 99238.16, 99238.21, + 99238.21, 99238.25, + 99238.25, 99238.29, + 99238.29, 99238.34, + 99238.34, 99238.38, + 99238.38, 99238.41, + 99238.41, 99238.46, + 99238.46, 99238.5, + 99238.5, 99238.54, + 99238.54, 99238.59, + 99238.59, 99238.62, + 99238.62, 99238.66, + 99238.66, 99238.71, + 99238.71, 99238.75, + 99238.75, 99238.79, + 99238.79, 99238.84, + 99238.84, 99238.88, + 99238.88, 99238.91, + 99238.91, 99238.96, + 99238.96, 99239, + 99239, 99239.04, + 99239.04, 99239.09, + 99239.09, 99239.12, + 99239.12, 99239.16, + 99239.16, 99239.21, + 99239.21, 99239.25, + 99239.25, 99239.29, + 99239.29, 99239.34, + 99239.34, 99239.38, + 99239.38, 99239.41, + 99239.41, 99239.46, + 99239.46, 99239.5, + 99239.5, 99239.54, + 99239.54, 99239.59, + 99239.59, 99239.62, + 99239.62, 99239.66, + 99239.66, 99239.71, + 99239.71, 99239.75, + 99239.75, 99239.79, + 99239.79, 99239.84, + 99239.84, 99239.88, + 99239.88, 99239.91, + 99239.91, 99239.96, + 99239.96, 99240, + 99240, 99240.04, + 99240.04, 99240.09, + 99240.09, 99240.12, + 99240.12, 99240.16, + 99240.16, 99240.21, + 99240.21, 99240.25, + 99240.25, 99240.29, + 99240.29, 99240.34, + 99240.34, 99240.38, + 99240.38, 99240.41, + 99240.41, 99240.46, + 99240.46, 99240.5, + 99240.5, 99240.54, + 99240.54, 99240.59, + 99240.59, 99240.62, + 99240.62, 99240.66, + 99240.66, 99240.71, + 99240.71, 99240.75, + 99240.75, 99240.79, + 99240.79, 99240.84, + 99240.84, 99240.88, + 99240.88, 99240.91, + 99240.91, 99240.96, + 99240.96, 99241, + 99241, 99241.04, + 99241.04, 99241.09, + 99241.09, 99241.12, + 99241.12, 99241.16, + 99241.16, 99241.21, + 99241.21, 99241.25, + 99241.25, 99241.29, + 99241.29, 99241.34, + 99241.34, 99241.38, + 99241.38, 99241.41, + 99241.41, 99241.46, + 99241.46, 99241.5, + 99241.5, 99241.54, + 99241.54, 99241.59, + 99241.59, 99241.62, + 99241.62, 99241.66, + 99241.66, 99241.71, + 99241.71, 99241.75, + 99241.75, 99241.79, + 99241.79, 99241.84, + 99241.84, 99241.88, + 99241.88, 99241.91, + 99241.91, 99241.96, + 99241.96, 99242, + 99242, 99242.04, + 99242.04, 99242.09, + 99242.09, 99242.12, + 99242.12, 99242.16, + 99242.16, 99242.21, + 99242.21, 99242.25, + 99242.25, 99242.29, + 99242.29, 99242.34, + 99242.34, 99242.38, + 99242.38, 99242.41, + 99242.41, 99242.46, + 99242.46, 99242.5, + 99242.5, 99242.54, + 99242.54, 99242.59, + 99242.59, 99242.62, + 99242.62, 99242.66, + 99242.66, 99242.71, + 99242.71, 99242.75, + 99242.75, 99242.79, + 99242.79, 99242.84, + 99242.84, 99242.88, + 99242.88, 99242.91, + 99242.91, 99242.96, + 99242.96, 99243, + 99243, 99243.04, + 99243.04, 99243.09, + 99243.09, 99243.12, + 99243.12, 99243.16, + 99243.16, 99243.21, + 99243.21, 99243.25, + 99243.25, 99243.29, + 99243.29, 99243.34, + 99243.34, 99243.38, + 99243.38, 99243.41, + 99243.41, 99243.46, + 99243.46, 99243.5, + 99243.5, 99243.54, + 99243.54, 99243.59, + 99243.59, 99243.62, + 99243.62, 99243.66, + 99243.66, 99243.71, + 99243.71, 99243.75, + 99243.75, 99243.79, + 99243.79, 99243.84, + 99243.84, 99243.88, + 99243.88, 99243.91, + 99243.91, 99243.96, + 99243.96, 99244, + 99244, 99244.04, + 99244.04, 99244.09, + 99244.09, 99244.12, + 99244.12, 99244.16, + 99244.16, 99244.21, + 99244.21, 99244.25, + 99244.25, 99244.29, + 99244.29, 99244.34, + 99244.34, 99244.38, + 99244.38, 99244.41, + 99244.41, 99244.46, + 99244.46, 99244.5, + 99244.5, 99244.54, + 99244.54, 99244.59, + 99244.59, 99244.62, + 99244.62, 99244.66, + 99244.66, 99244.71, + 99244.71, 99244.75, + 99244.75, 99244.79, + 99244.79, 99244.84, + 99244.84, 99244.88, + 99244.88, 99244.91, + 99244.91, 99244.96, + 99244.96, 99245, + 99245, 99245.04, + 99245.04, 99245.09, + 99245.09, 99245.12, + 99245.12, 99245.16, + 99245.16, 99245.21, + 99245.21, 99245.25, + 99245.25, 99245.29, + 99245.29, 99245.34, + 99245.34, 99245.38, + 99245.38, 99245.41, + 99245.41, 99245.46, + 99245.46, 99245.5, + 99245.5, 99245.54, + 99245.54, 99245.59, + 99245.59, 99245.62, + 99245.62, 99245.66, + 99245.66, 99245.71, + 99245.71, 99245.75, + 99245.75, 99245.79, + 99245.79, 99245.84, + 99245.84, 99245.88, + 99245.88, 99245.91, + 99245.91, 99245.96, + 99245.96, 99246, + 99246, 99246.04, + 99246.04, 99246.09, + 99246.09, 99246.12, + 99246.12, 99246.16, + 99246.16, 99246.21, + 99246.21, 99246.25, + 99246.25, 99246.29, + 99246.29, 99246.34, + 99246.34, 99246.38, + 99246.38, 99246.41, + 99246.41, 99246.46, + 99246.46, 99246.5, + 99246.5, 99246.54, + 99246.54, 99246.59, + 99246.59, 99246.62, + 99246.62, 99246.66, + 99246.66, 99246.71, + 99246.71, 99246.75, + 99246.75, 99246.79, + 99246.79, 99246.84, + 99246.84, 99246.88, + 99246.88, 99246.91, + 99246.91, 99246.96, + 99246.96, 99247, + 99247, 99247.04, + 99247.04, 99247.09, + 99247.09, 99247.12, + 99247.12, 99247.16, + 99247.16, 99247.21, + 99247.21, 99247.25, + 99247.25, 99247.29, + 99247.29, 99247.34, + 99247.34, 99247.38, + 99247.38, 99247.41, + 99247.41, 99247.46, + 99247.46, 99247.5, + 99247.5, 99247.54, + 99247.54, 99247.59, + 99247.59, 99247.62, + 99247.62, 99247.66, + 99247.66, 99247.71, + 99247.71, 99247.75, + 99247.75, 99247.79, + 99247.79, 99247.84, + 99247.84, 99247.88, + 99247.88, 99247.91, + 99247.91, 99247.96, + 99247.96, 99248, + 99248, 99248.04, + 99248.04, 99248.09, + 99248.09, 99248.12, + 99248.12, 99248.16, + 99248.16, 99248.21, + 99248.21, 99248.25, + 99248.25, 99248.29, + 99248.29, 99248.34, + 99248.34, 99248.38, + 99248.38, 99248.41, + 99248.41, 99248.46, + 99248.46, 99248.5, + 99248.5, 99248.54, + 99248.54, 99248.59, + 99248.59, 99248.62, + 99248.62, 99248.66, + 99248.66, 99248.71, + 99248.71, 99248.75, + 99248.75, 99248.79, + 99248.79, 99248.84, + 99248.84, 99248.88, + 99248.88, 99248.91, + 99248.91, 99248.96, + 99248.96, 99249, + 99249, 99249.04, + 99249.04, 99249.09, + 99249.09, 99249.12, + 99249.12, 99249.16, + 99249.16, 99249.21, + 99249.21, 99249.25, + 99249.25, 99249.29, + 99249.29, 99249.34, + 99249.34, 99249.38, + 99249.38, 99249.41, + 99249.41, 99249.46, + 99249.46, 99249.5, + 99249.5, 99249.54, + 99249.54, 99249.59, + 99249.59, 99249.62, + 99249.62, 99249.66, + 99249.66, 99249.71, + 99249.71, 99249.75, + 99249.75, 99249.79, + 99249.79, 99249.84, + 99249.84, 99249.88, + 99249.88, 99249.91, + 99249.91, 99249.96, + 99249.96, 99250, + 99250, 99250.04, + 99250.04, 99250.09, + 99250.09, 99250.12, + 99250.12, 99250.16, + 99250.16, 99250.21, + 99250.21, 99250.25, + 99250.25, 99250.29, + 99250.29, 99250.34, + 99250.34, 99250.38, + 99250.38, 99250.41, + 99250.41, 99250.46, + 99250.46, 99250.5, + 99250.5, 99250.54, + 99250.54, 99250.59, + 99250.59, 99250.62, + 99250.62, 99250.66, + 99250.66, 99250.71, + 99250.71, 99250.75, + 99250.75, 99250.79, + 99250.79, 99250.84, + 99250.84, 99250.88, + 99250.88, 99250.91, + 99250.91, 99250.96, + 99250.96, 99251, + 99251, 99251.04, + 99251.04, 99251.09, + 99251.09, 99251.12, + 99251.12, 99251.16, + 99251.16, 99251.21, + 99251.21, 99251.25, + 99251.25, 99251.29, + 99251.29, 99251.34, + 99251.34, 99251.38, + 99251.38, 99251.41, + 99251.41, 99251.46, + 99251.46, 99251.5, + 99251.5, 99251.54, + 99251.54, 99251.59, + 99251.59, 99251.62, + 99251.62, 99251.66, + 99251.66, 99251.71, + 99251.71, 99251.75, + 99251.75, 99251.79, + 99251.79, 99251.84, + 99251.84, 99251.88, + 99251.88, 99251.91, + 99251.91, 99251.96, + 99251.96, 99252, + 99252, 99252.04, + 99252.04, 99252.09, + 99252.09, 99252.12, + 99252.12, 99252.16, + 99252.16, 99252.21, + 99252.21, 99252.25, + 99252.25, 99252.29, + 99252.29, 99252.34, + 99252.34, 99252.38, + 99252.38, 99252.41, + 99252.41, 99252.46, + 99252.46, 99252.5, + 99252.5, 99252.54, + 99252.54, 99252.59, + 99252.59, 99252.62, + 99252.62, 99252.66, + 99252.66, 99252.71, + 99252.71, 99252.75, + 99252.75, 99252.79, + 99252.79, 99252.84, + 99252.84, 99252.88, + 99252.88, 99252.91, + 99252.91, 99252.96, + 99252.96, 99253, + 99253, 99253.04, + 99253.04, 99253.09, + 99253.09, 99253.12, + 99253.12, 99253.16, + 99253.16, 99253.21, + 99253.21, 99253.25, + 99253.25, 99253.29, + 99253.29, 99253.34, + 99253.34, 99253.38, + 99253.38, 99253.41, + 99253.41, 99253.46, + 99253.46, 99253.5, + 99253.5, 99253.54, + 99253.54, 99253.59, + 99253.59, 99253.62, + 99253.62, 99253.66, + 99253.66, 99253.71, + 99253.71, 99253.75, + 99253.75, 99253.79, + 99253.79, 99253.84, + 99253.84, 99253.88, + 99253.88, 99253.91, + 99253.91, 99253.96, + 99253.96, 99254, + 99254, 99254.04, + 99254.04, 99254.09, + 99254.09, 99254.12, + 99254.12, 99254.16, + 99254.16, 99254.21, + 99254.21, 99254.25, + 99254.25, 99254.29, + 99254.29, 99254.34, + 99254.34, 99254.38, + 99254.38, 99254.41, + 99254.41, 99254.46, + 99254.46, 99254.5, + 99254.5, 99254.54, + 99254.54, 99254.59, + 99254.59, 99254.62, + 99254.62, 99254.66, + 99254.66, 99254.71, + 99254.71, 99254.75, + 99254.75, 99254.79, + 99254.79, 99254.84, + 99254.84, 99254.88, + 99254.88, 99254.91, + 99254.91, 99254.96, + 99254.96, 99255, + 99255, 99255.04, + 99255.04, 99255.09, + 99255.09, 99255.12, + 99255.12, 99255.16, + 99255.16, 99255.21, + 99255.21, 99255.25, + 99255.25, 99255.29, + 99255.29, 99255.34, + 99255.34, 99255.38, + 99255.38, 99255.41, + 99255.41, 99255.46, + 99255.46, 99255.5, + 99255.5, 99255.54, + 99255.54, 99255.59, + 99255.59, 99255.62, + 99255.62, 99255.66, + 99255.66, 99255.71, + 99255.71, 99255.75, + 99255.75, 99255.79, + 99255.79, 99255.84, + 99255.84, 99255.88, + 99255.88, 99255.91, + 99255.91, 99255.96, + 99255.96, 99256, + 99256, 99256.04, + 99256.04, 99256.09, + 99256.09, 99256.12, + 99256.12, 99256.16, + 99256.16, 99256.21, + 99256.21, 99256.25, + 99256.25, 99256.29, + 99256.29, 99256.34, + 99256.34, 99256.38, + 99256.38, 99256.41, + 99256.41, 99256.46, + 99256.46, 99256.5, + 99256.5, 99256.54, + 99256.54, 99256.59, + 99256.59, 99256.62, + 99256.62, 99256.66, + 99256.66, 99256.71, + 99256.71, 99256.75, + 99256.75, 99256.79, + 99256.79, 99256.84, + 99256.84, 99256.88, + 99256.88, 99256.91, + 99256.91, 99256.96, + 99256.96, 99257, + 99257, 99257.04, + 99257.04, 99257.09, + 99257.09, 99257.12, + 99257.12, 99257.16, + 99257.16, 99257.21, + 99257.21, 99257.25, + 99257.25, 99257.29, + 99257.29, 99257.34, + 99257.34, 99257.38, + 99257.38, 99257.41, + 99257.41, 99257.46, + 99257.46, 99257.5, + 99257.5, 99257.54, + 99257.54, 99257.59, + 99257.59, 99257.62, + 99257.62, 99257.66, + 99257.66, 99257.71, + 99257.71, 99257.75, + 99257.75, 99257.79, + 99257.79, 99257.84, + 99257.84, 99257.88, + 99257.88, 99257.91, + 99257.91, 99257.96, + 99257.96, 99258, + 99258, 99258.04, + 99258.04, 99258.09, + 99258.09, 99258.12, + 99258.12, 99258.16, + 99258.16, 99258.21, + 99258.21, 99258.25, + 99258.25, 99258.29, + 99258.29, 99258.34, + 99258.34, 99258.38, + 99258.38, 99258.41, + 99258.41, 99258.46, + 99258.46, 99258.5, + 99258.5, 99258.54, + 99258.54, 99258.59, + 99258.59, 99258.62, + 99258.62, 99258.66, + 99258.66, 99258.71, + 99258.71, 99258.75, + 99258.75, 99258.79, + 99258.79, 99258.84, + 99258.84, 99258.88, + 99258.88, 99258.91, + 99258.91, 99258.96, + 99258.96, 99259, + 99259, 99259.04, + 99259.04, 99259.09, + 99259.09, 99259.12, + 99259.12, 99259.16, + 99259.16, 99259.21, + 99259.21, 99259.25, + 99259.25, 99259.29, + 99259.29, 99259.34, + 99259.34, 99259.38, + 99259.38, 99259.41, + 99259.41, 99259.46, + 99259.46, 99259.5, + 99259.5, 99259.54, + 99259.54, 99259.59, + 99259.59, 99259.62, + 99259.62, 99259.66, + 99259.66, 99259.71, + 99259.71, 99259.75, + 99259.75, 99259.79, + 99259.79, 99259.84, + 99259.84, 99259.88, + 99259.88, 99259.91, + 99259.91, 99259.96, + 99259.96, 99260, + 99260, 99260.04, + 99260.04, 99260.09, + 99260.09, 99260.12, + 99260.12, 99260.16, + 99260.16, 99260.21, + 99260.21, 99260.25, + 99260.25, 99260.29, + 99260.29, 99260.34, + 99260.34, 99260.38, + 99260.38, 99260.41, + 99260.41, 99260.46, + 99260.46, 99260.5, + 99260.5, 99260.54, + 99260.54, 99260.59, + 99260.59, 99260.62, + 99260.62, 99260.66, + 99260.66, 99260.71, + 99260.71, 99260.75, + 99260.75, 99260.79, + 99260.79, 99260.84, + 99260.84, 99260.88, + 99260.88, 99260.91, + 99260.91, 99260.96, + 99260.96, 99261, + 99261, 99261.04, + 99261.04, 99261.09, + 99261.09, 99261.12, + 99261.12, 99261.16, + 99261.16, 99261.21, + 99261.21, 99261.25, + 99261.25, 99261.29, + 99261.29, 99261.34, + 99261.34, 99261.38, + 99261.38, 99261.41, + 99261.41, 99261.46, + 99261.46, 99261.5, + 99261.5, 99261.54, + 99261.54, 99261.59, + 99261.59, 99261.62, + 99261.62, 99261.66, + 99261.66, 99261.71, + 99261.71, 99261.75, + 99261.75, 99261.79, + 99261.79, 99261.84, + 99261.84, 99261.88, + 99261.88, 99261.91, + 99261.91, 99261.96, + 99261.96, 99262, + 99262, 99262.04, + 99262.04, 99262.09, + 99262.09, 99262.12, + 99262.12, 99262.16, + 99262.16, 99262.21, + 99262.21, 99262.25, + 99262.25, 99262.29, + 99262.29, 99262.34, + 99262.34, 99262.38, + 99262.38, 99262.41, + 99262.41, 99262.46, + 99262.46, 99262.5, + 99262.5, 99262.54, + 99262.54, 99262.59, + 99262.59, 99262.62, + 99262.62, 99262.66, + 99262.66, 99262.71, + 99262.71, 99262.75, + 99262.75, 99262.79, + 99262.79, 99262.84, + 99262.84, 99262.88, + 99262.88, 99262.91, + 99262.91, 99262.96, + 99262.96, 99263, + 99263, 99263.04, + 99263.04, 99263.09, + 99263.09, 99263.12, + 99263.12, 99263.16, + 99263.16, 99263.21, + 99263.21, 99263.25, + 99263.25, 99263.29, + 99263.29, 99263.34, + 99263.34, 99263.38, + 99263.38, 99263.41, + 99263.41, 99263.46, + 99263.46, 99263.5, + 99263.5, 99263.54, + 99263.54, 99263.59, + 99263.59, 99263.62, + 99263.62, 99263.66, + 99263.66, 99263.71, + 99263.71, 99263.75, + 99263.75, 99263.79, + 99263.79, 99263.84, + 99263.84, 99263.88, + 99263.88, 99263.91, + 99263.91, 99263.96, + 99263.96, 99264, + 99264, 99264.04, + 99264.04, 99264.09, + 99264.09, 99264.12, + 99264.12, 99264.16, + 99264.16, 99264.21, + 99264.21, 99264.25, + 99264.25, 99264.29, + 99264.29, 99264.34, + 99264.34, 99264.38, + 99264.38, 99264.41, + 99264.41, 99264.46, + 99264.46, 99264.5, + 99264.5, 99264.54, + 99264.54, 99264.59, + 99264.59, 99264.62, + 99264.62, 99264.66, + 99264.66, 99264.71, + 99264.71, 99264.75, + 99264.75, 99264.79, + 99264.79, 99264.84, + 99264.84, 99264.88, + 99264.88, 99264.91, + 99264.91, 99264.96, + 99264.96, 99265, + 99265, 99265.04, + 99265.04, 99265.09, + 99265.09, 99265.12, + 99265.12, 99265.16, + 99265.16, 99265.21, + 99265.21, 99265.25, + 99265.25, 99265.29, + 99265.29, 99265.34, + 99265.34, 99265.38, + 99265.38, 99265.41, + 99265.41, 99265.46, + 99265.46, 99265.5, + 99265.5, 99265.54, + 99265.54, 99265.59, + 99265.59, 99265.62, + 99265.62, 99265.66, + 99265.66, 99265.71, + 99265.71, 99265.75, + 99265.75, 99265.79, + 99265.79, 99265.84, + 99265.84, 99265.88, + 99265.88, 99265.91, + 99265.91, 99265.96, + 99265.96, 99266, + 99266, 99266.04, + 99266.04, 99266.09, + 99266.09, 99266.12, + 99266.12, 99266.16, + 99266.16, 99266.21, + 99266.21, 99266.25, + 99266.25, 99266.29, + 99266.29, 99266.34, + 99266.34, 99266.38, + 99266.38, 99266.41, + 99266.41, 99266.46, + 99266.46, 99266.5, + 99266.5, 99266.54, + 99266.54, 99266.59, + 99266.59, 99266.62, + 99266.62, 99266.66, + 99266.66, 99266.71, + 99266.71, 99266.75, + 99266.75, 99266.79, + 99266.79, 99266.84, + 99266.84, 99266.88, + 99266.88, 99266.91, + 99266.91, 99266.96, + 99266.96, 99267, + 99267, 99267.04, + 99267.04, 99267.09, + 99267.09, 99267.12, + 99267.12, 99267.16, + 99267.16, 99267.21, + 99267.21, 99267.25, + 99267.25, 99267.29, + 99267.29, 99267.34, + 99267.34, 99267.38, + 99267.38, 99267.41, + 99267.41, 99267.46, + 99267.46, 99267.5, + 99267.5, 99267.54, + 99267.54, 99267.59, + 99267.59, 99267.62, + 99267.62, 99267.66, + 99267.66, 99267.71, + 99267.71, 99267.75, + 99267.75, 99267.79, + 99267.79, 99267.84, + 99267.84, 99267.88, + 99267.88, 99267.91, + 99267.91, 99267.96, + 99267.96, 99268, + 99268, 99268.04, + 99268.04, 99268.09, + 99268.09, 99268.12, + 99268.12, 99268.16, + 99268.16, 99268.21, + 99268.21, 99268.25, + 99268.25, 99268.29, + 99268.29, 99268.34, + 99268.34, 99268.38, + 99268.38, 99268.41, + 99268.41, 99268.46, + 99268.46, 99268.5, + 99268.5, 99268.54, + 99268.54, 99268.59, + 99268.59, 99268.62, + 99268.62, 99268.66, + 99268.66, 99268.71, + 99268.71, 99268.75, + 99268.75, 99268.79, + 99268.79, 99268.84, + 99268.84, 99268.88, + 99268.88, 99268.91, + 99268.91, 99268.96, + 99268.96, 99269, + 99269, 99269.04, + 99269.04, 99269.09, + 99269.09, 99269.12, + 99269.12, 99269.16, + 99269.16, 99269.21, + 99269.21, 99269.25, + 99269.25, 99269.29, + 99269.29, 99269.34, + 99269.34, 99269.38, + 99269.38, 99269.41, + 99269.41, 99269.46, + 99269.46, 99269.5, + 99269.5, 99269.54, + 99269.54, 99269.59, + 99269.59, 99269.62, + 99269.62, 99269.66, + 99269.66, 99269.71, + 99269.71, 99269.75, + 99269.75, 99269.79, + 99269.79, 99269.84, + 99269.84, 99269.88, + 99269.88, 99269.91, + 99269.91, 99269.96, + 99269.96, 99270, + 99270, 99270.04, + 99270.04, 99270.09, + 99270.09, 99270.12, + 99270.12, 99270.16, + 99270.16, 99270.21, + 99270.21, 99270.25, + 99270.25, 99270.29, + 99270.29, 99270.34, + 99270.34, 99270.38, + 99270.38, 99270.41, + 99270.41, 99270.46, + 99270.46, 99270.5, + 99270.5, 99270.54, + 99270.54, 99270.59, + 99270.59, 99270.62, + 99270.62, 99270.66, + 99270.66, 99270.71, + 99270.71, 99270.75, + 99270.75, 99270.79, + 99270.79, 99270.84, + 99270.84, 99270.88, + 99270.88, 99270.91, + 99270.91, 99270.96, + 99270.96, 99271, + 99271, 99271.04, + 99271.04, 99271.09, + 99271.09, 99271.12, + 99271.12, 99271.16, + 99271.16, 99271.21, + 99271.21, 99271.25, + 99271.25, 99271.29, + 99271.29, 99271.34, + 99271.34, 99271.38, + 99271.38, 99271.41, + 99271.41, 99271.46, + 99271.46, 99271.5, + 99271.5, 99271.54, + 99271.54, 99271.59, + 99271.59, 99271.62, + 99271.62, 99271.66, + 99271.66, 99271.71, + 99271.71, 99271.75, + 99271.75, 99271.79, + 99271.79, 99271.84, + 99271.84, 99271.88, + 99271.88, 99271.91, + 99271.91, 99271.96, + 99271.96, 99272, + 99272, 99272.04, + 99272.04, 99272.09, + 99272.09, 99272.12, + 99272.12, 99272.16, + 99272.16, 99272.21, + 99272.21, 99272.25, + 99272.25, 99272.29, + 99272.29, 99272.34, + 99272.34, 99272.38, + 99272.38, 99272.41, + 99272.41, 99272.46, + 99272.46, 99272.5, + 99272.5, 99272.54, + 99272.54, 99272.59, + 99272.59, 99272.62, + 99272.62, 99272.66, + 99272.66, 99272.71, + 99272.71, 99272.75, + 99272.75, 99272.79, + 99272.79, 99272.84, + 99272.84, 99272.88, + 99272.88, 99272.91, + 99272.91, 99272.96, + 99272.96, 99273, + 99273, 99273.04, + 99273.04, 99273.09, + 99273.09, 99273.12, + 99273.12, 99273.16, + 99273.16, 99273.21, + 99273.21, 99273.25, + 99273.25, 99273.29, + 99273.29, 99273.34, + 99273.34, 99273.38, + 99273.38, 99273.41, + 99273.41, 99273.46, + 99273.46, 99273.5, + 99273.5, 99273.54, + 99273.54, 99273.59, + 99273.59, 99273.62, + 99273.62, 99273.66, + 99273.66, 99273.71, + 99273.71, 99273.75, + 99273.75, 99273.79, + 99273.79, 99273.84, + 99273.84, 99273.88, + 99273.88, 99273.91, + 99273.91, 99273.96, + 99273.96, 99274, + 99274, 99274.04, + 99274.04, 99274.09, + 99274.09, 99274.12, + 99274.12, 99274.16, + 99274.16, 99274.21, + 99274.21, 99274.25, + 99274.25, 99274.29, + 99274.29, 99274.34, + 99274.34, 99274.38, + 99274.38, 99274.41, + 99274.41, 99274.46, + 99274.46, 99274.5, + 99274.5, 99274.54, + 99274.54, 99274.59, + 99274.59, 99274.62, + 99274.62, 99274.66, + 99274.66, 99274.71, + 99274.71, 99274.75, + 99274.75, 99274.79, + 99274.79, 99274.84, + 99274.84, 99274.88, + 99274.88, 99274.91, + 99274.91, 99274.96, + 99274.96, 99275, + 99275, 99275.04, + 99275.04, 99275.09, + 99275.09, 99275.12, + 99275.12, 99275.16, + 99275.16, 99275.21, + 99275.21, 99275.25, + 99275.25, 99275.29, + 99275.29, 99275.34, + 99275.34, 99275.38, + 99275.38, 99275.41, + 99275.41, 99275.46, + 99275.46, 99275.5, + 99275.5, 99275.54, + 99275.54, 99275.59, + 99275.59, 99275.62, + 99275.62, 99275.66, + 99275.66, 99275.71, + 99275.71, 99275.75, + 99275.75, 99275.79, + 99275.79, 99275.84, + 99275.84, 99275.88, + 99275.88, 99275.91, + 99275.91, 99275.96, + 99275.96, 99276, + 99276, 99276.04, + 99276.04, 99276.09, + 99276.09, 99276.12, + 99276.12, 99276.16, + 99276.16, 99276.21, + 99276.21, 99276.25, + 99276.25, 99276.29, + 99276.29, 99276.34, + 99276.34, 99276.38, + 99276.38, 99276.41, + 99276.41, 99276.46, + 99276.46, 99276.5, + 99276.5, 99276.54, + 99276.54, 99276.59, + 99276.59, 99276.62, + 99276.62, 99276.66, + 99276.66, 99276.71, + 99276.71, 99276.75, + 99276.75, 99276.79, + 99276.79, 99276.84, + 99276.84, 99276.88, + 99276.88, 99276.91, + 99276.91, 99276.96, + 99276.96, 99277, + 99277, 99277.04, + 99277.04, 99277.09, + 99277.09, 99277.12, + 99277.12, 99277.16, + 99277.16, 99277.21, + 99277.21, 99277.25, + 99277.25, 99277.29, + 99277.29, 99277.34, + 99277.34, 99277.38, + 99277.38, 99277.41, + 99277.41, 99277.46, + 99277.46, 99277.5, + 99277.5, 99277.54, + 99277.54, 99277.59, + 99277.59, 99277.62, + 99277.62, 99277.66, + 99277.66, 99277.71, + 99277.71, 99277.75, + 99277.75, 99277.79, + 99277.79, 99277.84, + 99277.84, 99277.88, + 99277.88, 99277.91, + 99277.91, 99277.96, + 99277.96, 99278, + 99278, 99278.04, + 99278.04, 99278.09, + 99278.09, 99278.12, + 99278.12, 99278.16, + 99278.16, 99278.21, + 99278.21, 99278.25, + 99278.25, 99278.29, + 99278.29, 99278.34, + 99278.34, 99278.38, + 99278.38, 99278.41, + 99278.41, 99278.46, + 99278.46, 99278.5, + 99278.5, 99278.54, + 99278.54, 99278.59, + 99278.59, 99278.62, + 99278.62, 99278.66, + 99278.66, 99278.71, + 99278.71, 99278.75, + 99278.75, 99278.79, + 99278.79, 99278.84, + 99278.84, 99278.88, + 99278.88, 99278.91, + 99278.91, 99278.96, + 99278.96, 99279, + 99279, 99279.04, + 99279.04, 99279.09, + 99279.09, 99279.12, + 99279.12, 99279.16, + 99279.16, 99279.21, + 99279.21, 99279.25, + 99279.25, 99279.29, + 99279.29, 99279.34, + 99279.34, 99279.38, + 99279.38, 99279.41, + 99279.41, 99279.46, + 99279.46, 99279.5, + 99279.5, 99279.54, + 99279.54, 99279.59, + 99279.59, 99279.62, + 99279.62, 99279.66, + 99279.66, 99279.71, + 99279.71, 99279.75, + 99279.75, 99279.79, + 99279.79, 99279.84, + 99279.84, 99279.88, + 99279.88, 99279.91, + 99279.91, 99279.96, + 99279.96, 99280, + 99280, 99280.04, + 99280.04, 99280.09, + 99280.09, 99280.12, + 99280.12, 99280.16, + 99280.16, 99280.21, + 99280.21, 99280.25, + 99280.25, 99280.29, + 99280.29, 99280.34, + 99280.34, 99280.38, + 99280.38, 99280.41, + 99280.41, 99280.46, + 99280.46, 99280.5, + 99280.5, 99280.54, + 99280.54, 99280.59, + 99280.59, 99280.62, + 99280.62, 99280.66, + 99280.66, 99280.71, + 99280.71, 99280.75, + 99280.75, 99280.79, + 99280.79, 99280.84, + 99280.84, 99280.88, + 99280.88, 99280.91, + 99280.91, 99280.96, + 99280.96, 99281, + 99281, 99281.04, + 99281.04, 99281.09, + 99281.09, 99281.12, + 99281.12, 99281.16, + 99281.16, 99281.21, + 99281.21, 99281.25, + 99281.25, 99281.29, + 99281.29, 99281.34, + 99281.34, 99281.38, + 99281.38, 99281.41, + 99281.41, 99281.46, + 99281.46, 99281.5, + 99281.5, 99281.54, + 99281.54, 99281.59, + 99281.59, 99281.62, + 99281.62, 99281.66, + 99281.66, 99281.71, + 99281.71, 99281.75, + 99281.75, 99281.79, + 99281.79, 99281.84, + 99281.84, 99281.88, + 99281.88, 99281.91, + 99281.91, 99281.96, + 99281.96, 99282, + 99282, 99282.04, + 99282.04, 99282.09, + 99282.09, 99282.12, + 99282.12, 99282.16, + 99282.16, 99282.21, + 99282.21, 99282.25, + 99282.25, 99282.29, + 99282.29, 99282.34, + 99282.34, 99282.38, + 99282.38, 99282.41, + 99282.41, 99282.46, + 99282.46, 99282.5, + 99282.5, 99282.54, + 99282.54, 99282.59, + 99282.59, 99282.62, + 99282.62, 99282.66, + 99282.66, 99282.71, + 99282.71, 99282.75, + 99282.75, 99282.79, + 99282.79, 99282.84, + 99282.84, 99282.88, + 99282.88, 99282.91, + 99282.91, 99282.96, + 99282.96, 99283, + 99283, 99283.04, + 99283.04, 99283.09, + 99283.09, 99283.12, + 99283.12, 99283.16, + 99283.16, 99283.21, + 99283.21, 99283.25, + 99283.25, 99283.29, + 99283.29, 99283.34, + 99283.34, 99283.38, + 99283.38, 99283.41, + 99283.41, 99283.46, + 99283.46, 99283.5, + 99283.5, 99283.54, + 99283.54, 99283.59, + 99283.59, 99283.62, + 99283.62, 99283.66, + 99283.66, 99283.71, + 99283.71, 99283.75, + 99283.75, 99283.79, + 99283.79, 99283.84, + 99283.84, 99283.88, + 99283.88, 99283.91, + 99283.91, 99283.96, + 99283.96, 99284, + 99284, 99284.04, + 99284.04, 99284.09, + 99284.09, 99284.12, + 99284.12, 99284.16, + 99284.16, 99284.21, + 99284.21, 99284.25, + 99284.25, 99284.29, + 99284.29, 99284.34, + 99284.34, 99284.38, + 99284.38, 99284.41, + 99284.41, 99284.46, + 99284.46, 99284.5, + 99284.5, 99284.54, + 99284.54, 99284.59, + 99284.59, 99284.62, + 99284.62, 99284.66, + 99284.66, 99284.71, + 99284.71, 99284.75, + 99284.75, 99284.79, + 99284.79, 99284.84, + 99284.84, 99284.88, + 99284.88, 99284.91, + 99284.91, 99284.96, + 99284.96, 99285, + 99285, 99285.04, + 99285.04, 99285.09, + 99285.09, 99285.12, + 99285.12, 99285.16, + 99285.16, 99285.21, + 99285.21, 99285.25, + 99285.25, 99285.29, + 99285.29, 99285.34, + 99285.34, 99285.38, + 99285.38, 99285.41, + 99285.41, 99285.46, + 99285.46, 99285.5, + 99285.5, 99285.54, + 99285.54, 99285.59, + 99285.59, 99285.62, + 99285.62, 99285.66, + 99285.66, 99285.71, + 99285.71, 99285.75, + 99285.75, 99285.79, + 99285.79, 99285.84, + 99285.84, 99285.88, + 99285.88, 99285.91, + 99285.91, 99285.96, + 99285.96, 99286, + 99286, 99286.04, + 99286.04, 99286.09, + 99286.09, 99286.12, + 99286.12, 99286.16, + 99286.16, 99286.21, + 99286.21, 99286.25, + 99286.25, 99286.29, + 99286.29, 99286.34, + 99286.34, 99286.38, + 99286.38, 99286.41, + 99286.41, 99286.46, + 99286.46, 99286.5, + 99286.5, 99286.54, + 99286.54, 99286.59, + 99286.59, 99286.62, + 99286.62, 99286.66, + 99286.66, 99286.71, + 99286.71, 99286.75, + 99286.75, 99286.79, + 99286.79, 99286.84, + 99286.84, 99286.88, + 99286.88, 99286.91, + 99286.91, 99286.96, + 99286.96, 99287, + 99287, 99287.04, + 99287.04, 99287.09, + 99287.09, 99287.12, + 99287.12, 99287.16, + 99287.16, 99287.21, + 99287.21, 99287.25, + 99287.25, 99287.29, + 99287.29, 99287.34, + 99287.34, 99287.38, + 99287.38, 99287.41, + 99287.41, 99287.46, + 99287.46, 99287.5, + 99287.5, 99287.54, + 99287.54, 99287.59, + 99287.59, 99287.62, + 99287.62, 99287.66, + 99287.66, 99287.71, + 99287.71, 99287.75, + 99287.75, 99287.79, + 99287.79, 99287.84, + 99287.84, 99287.88, + 99287.88, 99287.91, + 99287.91, 99287.96, + 99287.96, 99288, + 99288, 99288.04, + 99288.04, 99288.09, + 99288.09, 99288.12, + 99288.12, 99288.16, + 99288.16, 99288.21, + 99288.21, 99288.25, + 99288.25, 99288.29, + 99288.29, 99288.34, + 99288.34, 99288.38, + 99288.38, 99288.41, + 99288.41, 99288.46, + 99288.46, 99288.5, + 99288.5, 99288.54, + 99288.54, 99288.59, + 99288.59, 99288.62, + 99288.62, 99288.66, + 99288.66, 99288.71, + 99288.71, 99288.75, + 99288.75, 99288.79, + 99288.79, 99288.84, + 99288.84, 99288.88, + 99288.88, 99288.91, + 99288.91, 99288.96, + 99288.96, 99289, + 99289, 99289.04, + 99289.04, 99289.09, + 99289.09, 99289.12, + 99289.12, 99289.16, + 99289.16, 99289.21, + 99289.21, 99289.25, + 99289.25, 99289.29, + 99289.29, 99289.34, + 99289.34, 99289.38, + 99289.38, 99289.41, + 99289.41, 99289.46, + 99289.46, 99289.5, + 99289.5, 99289.54, + 99289.54, 99289.59, + 99289.59, 99289.62, + 99289.62, 99289.66, + 99289.66, 99289.71, + 99289.71, 99289.75, + 99289.75, 99289.79, + 99289.79, 99289.84, + 99289.84, 99289.88, + 99289.88, 99289.91, + 99289.91, 99289.96, + 99289.96, 99290, + 99290, 99290.04, + 99290.04, 99290.09, + 99290.09, 99290.12, + 99290.12, 99290.16, + 99290.16, 99290.21, + 99290.21, 99290.25, + 99290.25, 99290.29, + 99290.29, 99290.34, + 99290.34, 99290.38, + 99290.38, 99290.41, + 99290.41, 99290.46, + 99290.46, 99290.5, + 99290.5, 99290.54, + 99290.54, 99290.59, + 99290.59, 99290.62, + 99290.62, 99290.66, + 99290.66, 99290.71, + 99290.71, 99290.75, + 99290.75, 99290.79, + 99290.79, 99290.84, + 99290.84, 99290.88, + 99290.88, 99290.91, + 99290.91, 99290.96, + 99290.96, 99291, + 99291, 99291.04, + 99291.04, 99291.09, + 99291.09, 99291.12, + 99291.12, 99291.16, + 99291.16, 99291.21, + 99291.21, 99291.25, + 99291.25, 99291.29, + 99291.29, 99291.34, + 99291.34, 99291.38, + 99291.38, 99291.41, + 99291.41, 99291.46, + 99291.46, 99291.5, + 99291.5, 99291.54, + 99291.54, 99291.59, + 99291.59, 99291.62, + 99291.62, 99291.66, + 99291.66, 99291.71, + 99291.71, 99291.75, + 99291.75, 99291.79, + 99291.79, 99291.84, + 99291.84, 99291.88, + 99291.88, 99291.91, + 99291.91, 99291.96, + 99291.96, 99292, + 99292, 99292.04, + 99292.04, 99292.09, + 99292.09, 99292.12, + 99292.12, 99292.16, + 99292.16, 99292.21, + 99292.21, 99292.25, + 99292.25, 99292.29, + 99292.29, 99292.34, + 99292.34, 99292.38, + 99292.38, 99292.41, + 99292.41, 99292.46, + 99292.46, 99292.5, + 99292.5, 99292.54, + 99292.54, 99292.59, + 99292.59, 99292.62, + 99292.62, 99292.66, + 99292.66, 99292.71, + 99292.71, 99292.75, + 99292.75, 99292.79, + 99292.79, 99292.84, + 99292.84, 99292.88, + 99292.88, 99292.91, + 99292.91, 99292.96, + 99292.96, 99293, + 99293, 99293.04, + 99293.04, 99293.09, + 99293.09, 99293.12, + 99293.12, 99293.16, + 99293.16, 99293.21, + 99293.21, 99293.25, + 99293.25, 99293.29, + 99293.29, 99293.34, + 99293.34, 99293.38, + 99293.38, 99293.41, + 99293.41, 99293.46, + 99293.46, 99293.5, + 99293.5, 99293.54, + 99293.54, 99293.59, + 99293.59, 99293.62, + 99293.62, 99293.66, + 99293.66, 99293.71, + 99293.71, 99293.75, + 99293.75, 99293.79, + 99293.79, 99293.84, + 99293.84, 99293.88, + 99293.88, 99293.91, + 99293.91, 99293.96, + 99293.96, 99294, + 99294, 99294.04, + 99294.04, 99294.09, + 99294.09, 99294.12, + 99294.12, 99294.16, + 99294.16, 99294.21, + 99294.21, 99294.25, + 99294.25, 99294.29, + 99294.29, 99294.34, + 99294.34, 99294.38, + 99294.38, 99294.41, + 99294.41, 99294.46, + 99294.46, 99294.5, + 99294.5, 99294.54, + 99294.54, 99294.59, + 99294.59, 99294.62, + 99294.62, 99294.66, + 99294.66, 99294.71, + 99294.71, 99294.75, + 99294.75, 99294.79, + 99294.79, 99294.84, + 99294.84, 99294.88, + 99294.88, 99294.91, + 99294.91, 99294.96, + 99294.96, 99295, + 99295, 99295.04, + 99295.04, 99295.09, + 99295.09, 99295.12, + 99295.12, 99295.16, + 99295.16, 99295.21, + 99295.21, 99295.25, + 99295.25, 99295.29, + 99295.29, 99295.34, + 99295.34, 99295.38, + 99295.38, 99295.41, + 99295.41, 99295.46, + 99295.46, 99295.5, + 99295.5, 99295.54, + 99295.54, 99295.59, + 99295.59, 99295.62, + 99295.62, 99295.66, + 99295.66, 99295.71, + 99295.71, 99295.75, + 99295.75, 99295.79, + 99295.79, 99295.84, + 99295.84, 99295.88, + 99295.88, 99295.91, + 99295.91, 99295.96, + 99295.96, 99296, + 99296, 99296.04, + 99296.04, 99296.09, + 99296.09, 99296.12, + 99296.12, 99296.16, + 99296.16, 99296.21, + 99296.21, 99296.25, + 99296.25, 99296.29, + 99296.29, 99296.34, + 99296.34, 99296.38, + 99296.38, 99296.41, + 99296.41, 99296.46, + 99296.46, 99296.5, + 99296.5, 99296.54, + 99296.54, 99296.59, + 99296.59, 99296.62, + 99296.62, 99296.66, + 99296.66, 99296.71, + 99296.71, 99296.75, + 99296.75, 99296.79, + 99296.79, 99296.84, + 99296.84, 99296.88, + 99296.88, 99296.91, + 99296.91, 99296.96, + 99296.96, 99297, + 99297, 99297.04, + 99297.04, 99297.09, + 99297.09, 99297.12, + 99297.12, 99297.16, + 99297.16, 99297.21, + 99297.21, 99297.25, + 99297.25, 99297.29, + 99297.29, 99297.34, + 99297.34, 99297.38, + 99297.38, 99297.41, + 99297.41, 99297.46, + 99297.46, 99297.5, + 99297.5, 99297.54, + 99297.54, 99297.59, + 99297.59, 99297.62, + 99297.62, 99297.66, + 99297.66, 99297.71, + 99297.71, 99297.75, + 99297.75, 99297.79, + 99297.79, 99297.84, + 99297.84, 99297.88, + 99297.88, 99297.91, + 99297.91, 99297.96, + 99297.96, 99298, + 99298, 99298.04, + 99298.04, 99298.09, + 99298.09, 99298.12, + 99298.12, 99298.16, + 99298.16, 99298.21, + 99298.21, 99298.25, + 99298.25, 99298.29, + 99298.29, 99298.34, + 99298.34, 99298.38, + 99298.38, 99298.41, + 99298.41, 99298.46, + 99298.46, 99298.5, + 99298.5, 99298.54, + 99298.54, 99298.59, + 99298.59, 99298.62, + 99298.62, 99298.66, + 99298.66, 99298.71, + 99298.71, 99298.75, + 99298.75, 99298.79, + 99298.79, 99298.84, + 99298.84, 99298.88, + 99298.88, 99298.91, + 99298.91, 99298.96, + 99298.96, 99299, + 99299, 99299.04, + 99299.04, 99299.09, + 99299.09, 99299.12, + 99299.12, 99299.16, + 99299.16, 99299.21, + 99299.21, 99299.25, + 99299.25, 99299.29, + 99299.29, 99299.34, + 99299.34, 99299.38, + 99299.38, 99299.41, + 99299.41, 99299.46, + 99299.46, 99299.5, + 99299.5, 99299.54, + 99299.54, 99299.59, + 99299.59, 99299.62, + 99299.62, 99299.66, + 99299.66, 99299.71, + 99299.71, 99299.75, + 99299.75, 99299.79, + 99299.79, 99299.84, + 99299.84, 99299.88, + 99299.88, 99299.91, + 99299.91, 99299.96, + 99299.96, 99300, + 99300, 99300.04, + 99300.04, 99300.09, + 99300.09, 99300.12, + 99300.12, 99300.16, + 99300.16, 99300.21, + 99300.21, 99300.25, + 99300.25, 99300.29, + 99300.29, 99300.34, + 99300.34, 99300.38, + 99300.38, 99300.41, + 99300.41, 99300.46, + 99300.46, 99300.5, + 99300.5, 99300.54, + 99300.54, 99300.59, + 99300.59, 99300.62, + 99300.62, 99300.66, + 99300.66, 99300.71, + 99300.71, 99300.75, + 99300.75, 99300.79, + 99300.79, 99300.84, + 99300.84, 99300.88, + 99300.88, 99300.91, + 99300.91, 99300.96, + 99300.96, 99301, + 99301, 99301.04, + 99301.04, 99301.09, + 99301.09, 99301.12, + 99301.12, 99301.16, + 99301.16, 99301.21, + 99301.21, 99301.25, + 99301.25, 99301.29, + 99301.29, 99301.34, + 99301.34, 99301.38, + 99301.38, 99301.41, + 99301.41, 99301.46, + 99301.46, 99301.5, + 99301.5, 99301.54, + 99301.54, 99301.59, + 99301.59, 99301.62, + 99301.62, 99301.66, + 99301.66, 99301.71, + 99301.71, 99301.75, + 99301.75, 99301.79, + 99301.79, 99301.84, + 99301.84, 99301.88, + 99301.88, 99301.91, + 99301.91, 99301.96, + 99301.96, 99302, + 99302, 99302.04, + 99302.04, 99302.09, + 99302.09, 99302.12, + 99302.12, 99302.16, + 99302.16, 99302.21, + 99302.21, 99302.25, + 99302.25, 99302.29, + 99302.29, 99302.34, + 99302.34, 99302.38, + 99302.38, 99302.41, + 99302.41, 99302.46, + 99302.46, 99302.5, + 99302.5, 99302.54, + 99302.54, 99302.59, + 99302.59, 99302.62, + 99302.62, 99302.66, + 99302.66, 99302.71, + 99302.71, 99302.75, + 99302.75, 99302.79, + 99302.79, 99302.84, + 99302.84, 99302.88, + 99302.88, 99302.91, + 99302.91, 99302.96, + 99302.96, 99303, + 99303, 99303.04, + 99303.04, 99303.09, + 99303.09, 99303.12, + 99303.12, 99303.16, + 99303.16, 99303.21, + 99303.21, 99303.25, + 99303.25, 99303.29, + 99303.29, 99303.34, + 99303.34, 99303.38, + 99303.38, 99303.41, + 99303.41, 99303.46, + 99303.46, 99303.5, + 99303.5, 99303.54, + 99303.54, 99303.59, + 99303.59, 99303.62, + 99303.62, 99303.66, + 99303.66, 99303.71, + 99303.71, 99303.75, + 99303.75, 99303.79, + 99303.79, 99303.84, + 99303.84, 99303.88, + 99303.88, 99303.91, + 99303.91, 99303.96, + 99303.96, 99304, + 99304, 99304.04, + 99304.04, 99304.09, + 99304.09, 99304.12, + 99304.12, 99304.16, + 99304.16, 99304.21, + 99304.21, 99304.25, + 99304.25, 99304.29, + 99304.29, 99304.34, + 99304.34, 99304.38, + 99304.38, 99304.41, + 99304.41, 99304.46, + 99304.46, 99304.5, + 99304.5, 99304.54, + 99304.54, 99304.59, + 99304.59, 99304.62, + 99304.62, 99304.66, + 99304.66, 99304.71, + 99304.71, 99304.75, + 99304.75, 99304.79, + 99304.79, 99304.84, + 99304.84, 99304.88, + 99304.88, 99304.91, + 99304.91, 99304.96, + 99304.96, 99305, + 99305, 99305.04, + 99305.04, 99305.09, + 99305.09, 99305.12, + 99305.12, 99305.16, + 99305.16, 99305.21, + 99305.21, 99305.25, + 99305.25, 99305.29, + 99305.29, 99305.34, + 99305.34, 99305.38, + 99305.38, 99305.41, + 99305.41, 99305.46, + 99305.46, 99305.5, + 99305.5, 99305.54, + 99305.54, 99305.59, + 99305.59, 99305.62, + 99305.62, 99305.66, + 99305.66, 99305.71, + 99305.71, 99305.75, + 99305.75, 99305.79, + 99305.79, 99305.84, + 99305.84, 99305.88, + 99305.88, 99305.91, + 99305.91, 99305.96, + 99305.96, 99306, + 99306, 99306.04, + 99306.04, 99306.09, + 99306.09, 99306.12, + 99306.12, 99306.16, + 99306.16, 99306.21, + 99306.21, 99306.25, + 99306.25, 99306.29, + 99306.29, 99306.34, + 99306.34, 99306.38, + 99306.38, 99306.41, + 99306.41, 99306.46, + 99306.46, 99306.5, + 99306.5, 99306.54, + 99306.54, 99306.59, + 99306.59, 99306.62, + 99306.62, 99306.66, + 99306.66, 99306.71, + 99306.71, 99306.75, + 99306.75, 99306.79, + 99306.79, 99306.84, + 99306.84, 99306.88, + 99306.88, 99306.91, + 99306.91, 99306.96, + 99306.96, 99307, + 99307, 99307.04, + 99307.04, 99307.09, + 99307.09, 99307.12, + 99307.12, 99307.16, + 99307.16, 99307.21, + 99307.21, 99307.25, + 99307.25, 99307.29, + 99307.29, 99307.34, + 99307.34, 99307.38, + 99307.38, 99307.41, + 99307.41, 99307.46, + 99307.46, 99307.5, + 99307.5, 99307.54, + 99307.54, 99307.59, + 99307.59, 99307.62, + 99307.62, 99307.66, + 99307.66, 99307.71, + 99307.71, 99307.75, + 99307.75, 99307.79, + 99307.79, 99307.84, + 99307.84, 99307.88, + 99307.88, 99307.91, + 99307.91, 99307.96, + 99307.96, 99308, + 99308, 99308.04, + 99308.04, 99308.09, + 99308.09, 99308.12, + 99308.12, 99308.16, + 99308.16, 99308.21, + 99308.21, 99308.25, + 99308.25, 99308.29, + 99308.29, 99308.34, + 99308.34, 99308.38, + 99308.38, 99308.41, + 99308.41, 99308.46, + 99308.46, 99308.5, + 99308.5, 99308.54, + 99308.54, 99308.59, + 99308.59, 99308.62, + 99308.62, 99308.66, + 99308.66, 99308.71, + 99308.71, 99308.75, + 99308.75, 99308.79, + 99308.79, 99308.84, + 99308.84, 99308.88, + 99308.88, 99308.91, + 99308.91, 99308.96, + 99308.96, 99309, + 99309, 99309.04, + 99309.04, 99309.09, + 99309.09, 99309.12, + 99309.12, 99309.16, + 99309.16, 99309.21, + 99309.21, 99309.25, + 99309.25, 99309.29, + 99309.29, 99309.34, + 99309.34, 99309.38, + 99309.38, 99309.41, + 99309.41, 99309.46, + 99309.46, 99309.5, + 99309.5, 99309.54, + 99309.54, 99309.59, + 99309.59, 99309.62, + 99309.62, 99309.66, + 99309.66, 99309.71, + 99309.71, 99309.75, + 99309.75, 99309.79, + 99309.79, 99309.84, + 99309.84, 99309.88, + 99309.88, 99309.91, + 99309.91, 99309.96, + 99309.96, 99310, + 99310, 99310.04, + 99310.04, 99310.09, + 99310.09, 99310.12, + 99310.12, 99310.16, + 99310.16, 99310.21, + 99310.21, 99310.25, + 99310.25, 99310.29, + 99310.29, 99310.34, + 99310.34, 99310.38, + 99310.38, 99310.41, + 99310.41, 99310.46, + 99310.46, 99310.5, + 99310.5, 99310.54, + 99310.54, 99310.59, + 99310.59, 99310.62, + 99310.62, 99310.66, + 99310.66, 99310.71, + 99310.71, 99310.75, + 99310.75, 99310.79, + 99310.79, 99310.84, + 99310.84, 99310.88, + 99310.88, 99310.91, + 99310.91, 99310.96, + 99310.96, 99311, + 99311, 99311.04, + 99311.04, 99311.09, + 99311.09, 99311.12, + 99311.12, 99311.16, + 99311.16, 99311.21, + 99311.21, 99311.25, + 99311.25, 99311.29, + 99311.29, 99311.34, + 99311.34, 99311.38, + 99311.38, 99311.41, + 99311.41, 99311.46, + 99311.46, 99311.5, + 99311.5, 99311.54, + 99311.54, 99311.59, + 99311.59, 99311.62, + 99311.62, 99311.66, + 99311.66, 99311.71, + 99311.71, 99311.75, + 99311.75, 99311.79, + 99311.79, 99311.84, + 99311.84, 99311.88, + 99311.88, 99311.91, + 99311.91, 99311.96, + 99311.96, 99312, + 99312, 99312.04, + 99312.04, 99312.09, + 99312.09, 99312.12, + 99312.12, 99312.16, + 99312.16, 99312.21, + 99312.21, 99312.25, + 99312.25, 99312.29, + 99312.29, 99312.34, + 99312.34, 99312.38, + 99312.38, 99312.41, + 99312.41, 99312.46, + 99312.46, 99312.5, + 99312.5, 99312.54, + 99312.54, 99312.59, + 99312.59, 99312.62, + 99312.62, 99312.66, + 99312.66, 99312.71, + 99312.71, 99312.75, + 99312.75, 99312.79, + 99312.79, 99312.84, + 99312.84, 99312.88, + 99312.88, 99312.91, + 99312.91, 99312.96, + 99312.96, 99313, + 99313, 99313.04, + 99313.04, 99313.09, + 99313.09, 99313.12, + 99313.12, 99313.16, + 99313.16, 99313.21, + 99313.21, 99313.25, + 99313.25, 99313.29, + 99313.29, 99313.34, + 99313.34, 99313.38, + 99313.38, 99313.41, + 99313.41, 99313.46, + 99313.46, 99313.5, + 99313.5, 99313.54, + 99313.54, 99313.59, + 99313.59, 99313.62, + 99313.62, 99313.66, + 99313.66, 99313.71, + 99313.71, 99313.75, + 99313.75, 99313.79, + 99313.79, 99313.84, + 99313.84, 99313.88, + 99313.88, 99313.91, + 99313.91, 99313.96, + 99313.96, 99314, + 99314, 99314.04, + 99314.04, 99314.09, + 99314.09, 99314.12, + 99314.12, 99314.16, + 99314.16, 99314.21, + 99314.21, 99314.25, + 99314.25, 99314.29, + 99314.29, 99314.34, + 99314.34, 99314.38, + 99314.38, 99314.41, + 99314.41, 99314.46, + 99314.46, 99314.5, + 99314.5, 99314.54, + 99314.54, 99314.59, + 99314.59, 99314.62, + 99314.62, 99314.66, + 99314.66, 99314.71, + 99314.71, 99314.75, + 99314.75, 99314.79, + 99314.79, 99314.84, + 99314.84, 99314.88, + 99314.88, 99314.91, + 99314.91, 99314.96, + 99314.96, 99315, + 99315, 99315.04, + 99315.04, 99315.09, + 99315.09, 99315.12, + 99315.12, 99315.16, + 99315.16, 99315.21, + 99315.21, 99315.25, + 99315.25, 99315.29, + 99315.29, 99315.34, + 99315.34, 99315.38, + 99315.38, 99315.41, + 99315.41, 99315.46, + 99315.46, 99315.5, + 99315.5, 99315.54, + 99315.54, 99315.59, + 99315.59, 99315.62, + 99315.62, 99315.66, + 99315.66, 99315.71, + 99315.71, 99315.75, + 99315.75, 99315.79, + 99315.79, 99315.84, + 99315.84, 99315.88, + 99315.88, 99315.91, + 99315.91, 99315.96, + 99315.96, 99316, + 99316, 99316.04, + 99316.04, 99316.09, + 99316.09, 99316.12, + 99316.12, 99316.16, + 99316.16, 99316.21, + 99316.21, 99316.25, + 99316.25, 99316.29, + 99316.29, 99316.34, + 99316.34, 99316.38, + 99316.38, 99316.41, + 99316.41, 99316.46, + 99316.46, 99316.5, + 99316.5, 99316.54, + 99316.54, 99316.59, + 99316.59, 99316.62, + 99316.62, 99316.66, + 99316.66, 99316.71, + 99316.71, 99316.75, + 99316.75, 99316.79, + 99316.79, 99316.84, + 99316.84, 99316.88, + 99316.88, 99316.91, + 99316.91, 99316.96, + 99316.96, 99317, + 99317, 99317.04, + 99317.04, 99317.09, + 99317.09, 99317.12, + 99317.12, 99317.16, + 99317.16, 99317.21, + 99317.21, 99317.25, + 99317.25, 99317.29, + 99317.29, 99317.34, + 99317.34, 99317.38, + 99317.38, 99317.41, + 99317.41, 99317.46, + 99317.46, 99317.5, + 99317.5, 99317.54, + 99317.54, 99317.59, + 99317.59, 99317.62, + 99317.62, 99317.66, + 99317.66, 99317.71, + 99317.71, 99317.75, + 99317.75, 99317.79, + 99317.79, 99317.84, + 99317.84, 99317.88, + 99317.88, 99317.91, + 99317.91, 99317.96, + 99317.96, 99318, + 99318, 99318.04, + 99318.04, 99318.09, + 99318.09, 99318.12, + 99318.12, 99318.16, + 99318.16, 99318.21, + 99318.21, 99318.25, + 99318.25, 99318.29, + 99318.29, 99318.34, + 99318.34, 99318.38, + 99318.38, 99318.41, + 99318.41, 99318.46, + 99318.46, 99318.5, + 99318.5, 99318.54, + 99318.54, 99318.59, + 99318.59, 99318.62, + 99318.62, 99318.66, + 99318.66, 99318.71, + 99318.71, 99318.75, + 99318.75, 99318.79, + 99318.79, 99318.84, + 99318.84, 99318.88, + 99318.88, 99318.91, + 99318.91, 99318.96, + 99318.96, 99319, + 99319, 99319.04, + 99319.04, 99319.09, + 99319.09, 99319.12, + 99319.12, 99319.16, + 99319.16, 99319.21, + 99319.21, 99319.25, + 99319.25, 99319.29, + 99319.29, 99319.34, + 99319.34, 99319.38, + 99319.38, 99319.41, + 99319.41, 99319.46, + 99319.46, 99319.5, + 99319.5, 99319.54, + 99319.54, 99319.59, + 99319.59, 99319.62, + 99319.62, 99319.66, + 99319.66, 99319.71, + 99319.71, 99319.75, + 99319.75, 99319.79, + 99319.79, 99319.84, + 99319.84, 99319.88, + 99319.88, 99319.91, + 99319.91, 99319.96, + 99319.96, 99320, + 99320, 99320.04, + 99320.04, 99320.09, + 99320.09, 99320.12, + 99320.12, 99320.16, + 99320.16, 99320.21, + 99320.21, 99320.25, + 99320.25, 99320.29, + 99320.29, 99320.34, + 99320.34, 99320.38, + 99320.38, 99320.41, + 99320.41, 99320.46, + 99320.46, 99320.5, + 99320.5, 99320.54, + 99320.54, 99320.59, + 99320.59, 99320.62, + 99320.62, 99320.66, + 99320.66, 99320.71, + 99320.71, 99320.75, + 99320.75, 99320.79, + 99320.79, 99320.84, + 99320.84, 99320.88, + 99320.88, 99320.91, + 99320.91, 99320.96, + 99320.96, 99321, + 99321, 99321.04, + 99321.04, 99321.09, + 99321.09, 99321.12, + 99321.12, 99321.16, + 99321.16, 99321.21, + 99321.21, 99321.25, + 99321.25, 99321.29, + 99321.29, 99321.34, + 99321.34, 99321.38, + 99321.38, 99321.41, + 99321.41, 99321.46, + 99321.46, 99321.5, + 99321.5, 99321.54, + 99321.54, 99321.59, + 99321.59, 99321.62, + 99321.62, 99321.66, + 99321.66, 99321.71, + 99321.71, 99321.75, + 99321.75, 99321.79, + 99321.79, 99321.84, + 99321.84, 99321.88, + 99321.88, 99321.91, + 99321.91, 99321.96, + 99321.96, 99322, + 99322, 99322.04, + 99322.04, 99322.09, + 99322.09, 99322.12, + 99322.12, 99322.16, + 99322.16, 99322.21, + 99322.21, 99322.25, + 99322.25, 99322.29, + 99322.29, 99322.34, + 99322.34, 99322.38, + 99322.38, 99322.41, + 99322.41, 99322.46, + 99322.46, 99322.5, + 99322.5, 99322.54, + 99322.54, 99322.59, + 99322.59, 99322.62, + 99322.62, 99322.66, + 99322.66, 99322.71, + 99322.71, 99322.75, + 99322.75, 99322.79, + 99322.79, 99322.84, + 99322.84, 99322.88, + 99322.88, 99322.91, + 99322.91, 99322.96, + 99322.96, 99323, + 99323, 99323.04, + 99323.04, 99323.09, + 99323.09, 99323.12, + 99323.12, 99323.16, + 99323.16, 99323.21, + 99323.21, 99323.25, + 99323.25, 99323.29, + 99323.29, 99323.34, + 99323.34, 99323.38, + 99323.38, 99323.41, + 99323.41, 99323.46, + 99323.46, 99323.5, + 99323.5, 99323.54, + 99323.54, 99323.59, + 99323.59, 99323.62, + 99323.62, 99323.66, + 99323.66, 99323.71, + 99323.71, 99323.75, + 99323.75, 99323.79, + 99323.79, 99323.84, + 99323.84, 99323.88, + 99323.88, 99323.91, + 99323.91, 99323.96, + 99323.96, 99324, + 99324, 99324.04, + 99324.04, 99324.09, + 99324.09, 99324.12, + 99324.12, 99324.16, + 99324.16, 99324.21, + 99324.21, 99324.25, + 99324.25, 99324.29, + 99324.29, 99324.34, + 99324.34, 99324.38, + 99324.38, 99324.41, + 99324.41, 99324.46, + 99324.46, 99324.5, + 99324.5, 99324.54, + 99324.54, 99324.59, + 99324.59, 99324.62, + 99324.62, 99324.66, + 99324.66, 99324.71, + 99324.71, 99324.75, + 99324.75, 99324.79, + 99324.79, 99324.84, + 99324.84, 99324.88, + 99324.88, 99324.91, + 99324.91, 99324.96, + 99324.96, 99325, + 99325, 99325.04, + 99325.04, 99325.09, + 99325.09, 99325.12, + 99325.12, 99325.16, + 99325.16, 99325.21, + 99325.21, 99325.25, + 99325.25, 99325.29, + 99325.29, 99325.34, + 99325.34, 99325.38, + 99325.38, 99325.41, + 99325.41, 99325.46, + 99325.46, 99325.5, + 99325.5, 99325.54, + 99325.54, 99325.59, + 99325.59, 99325.62, + 99325.62, 99325.66, + 99325.66, 99325.71, + 99325.71, 99325.75, + 99325.75, 99325.79, + 99325.79, 99325.84, + 99325.84, 99325.88, + 99325.88, 99325.91, + 99325.91, 99325.96, + 99325.96, 99326, + 99326, 99326.04, + 99326.04, 99326.09, + 99326.09, 99326.12, + 99326.12, 99326.16, + 99326.16, 99326.21, + 99326.21, 99326.25, + 99326.25, 99326.29, + 99326.29, 99326.34, + 99326.34, 99326.38, + 99326.38, 99326.41, + 99326.41, 99326.46, + 99326.46, 99326.5, + 99326.5, 99326.54, + 99326.54, 99326.59, + 99326.59, 99326.62, + 99326.62, 99326.66, + 99326.66, 99326.71, + 99326.71, 99326.75, + 99326.75, 99326.79, + 99326.79, 99326.84, + 99326.84, 99326.88, + 99326.88, 99326.91, + 99326.91, 99326.96, + 99326.96, 99327, + 99327, 99327.04, + 99327.04, 99327.09, + 99327.09, 99327.12, + 99327.12, 99327.16, + 99327.16, 99327.21, + 99327.21, 99327.25, + 99327.25, 99327.29, + 99327.29, 99327.34, + 99327.34, 99327.38, + 99327.38, 99327.41, + 99327.41, 99327.46, + 99327.46, 99327.5, + 99327.5, 99327.54, + 99327.54, 99327.59, + 99327.59, 99327.62, + 99327.62, 99327.66, + 99327.66, 99327.71, + 99327.71, 99327.75, + 99327.75, 99327.79, + 99327.79, 99327.84, + 99327.84, 99327.88, + 99327.88, 99327.91, + 99327.91, 99327.96, + 99327.96, 99328, + 99328, 99328.04, + 99328.04, 99328.09, + 99328.09, 99328.12, + 99328.12, 99328.16, + 99328.16, 99328.21, + 99328.21, 99328.25, + 99328.25, 99328.29, + 99328.29, 99328.34, + 99328.34, 99328.38, + 99328.38, 99328.41, + 99328.41, 99328.46, + 99328.46, 99328.5, + 99328.5, 99328.54, + 99328.54, 99328.59, + 99328.59, 99328.62, + 99328.62, 99328.66, + 99328.66, 99328.71, + 99328.71, 99328.75, + 99328.75, 99328.79, + 99328.79, 99328.84, + 99328.84, 99328.88, + 99328.88, 99328.91, + 99328.91, 99328.96, + 99328.96, 99329, + 99329, 99329.04, + 99329.04, 99329.09, + 99329.09, 99329.12, + 99329.12, 99329.16, + 99329.16, 99329.21, + 99329.21, 99329.25, + 99329.25, 99329.29, + 99329.29, 99329.34, + 99329.34, 99329.38, + 99329.38, 99329.41, + 99329.41, 99329.46, + 99329.46, 99329.5, + 99329.5, 99329.54, + 99329.54, 99329.59, + 99329.59, 99329.62, + 99329.62, 99329.66, + 99329.66, 99329.71, + 99329.71, 99329.75, + 99329.75, 99329.79, + 99329.79, 99329.84, + 99329.84, 99329.88, + 99329.88, 99329.91, + 99329.91, 99329.96, + 99329.96, 99330, + 99330, 99330.04, + 99330.04, 99330.09, + 99330.09, 99330.12, + 99330.12, 99330.16, + 99330.16, 99330.21, + 99330.21, 99330.25, + 99330.25, 99330.29, + 99330.29, 99330.34, + 99330.34, 99330.38, + 99330.38, 99330.41, + 99330.41, 99330.46, + 99330.46, 99330.5, + 99330.5, 99330.54, + 99330.54, 99330.59, + 99330.59, 99330.62, + 99330.62, 99330.66, + 99330.66, 99330.71, + 99330.71, 99330.75, + 99330.75, 99330.79, + 99330.79, 99330.84, + 99330.84, 99330.88, + 99330.88, 99330.91, + 99330.91, 99330.96, + 99330.96, 99331, + 99331, 99331.04, + 99331.04, 99331.09, + 99331.09, 99331.12, + 99331.12, 99331.16, + 99331.16, 99331.21, + 99331.21, 99331.25, + 99331.25, 99331.29, + 99331.29, 99331.34, + 99331.34, 99331.38, + 99331.38, 99331.41, + 99331.41, 99331.46, + 99331.46, 99331.5, + 99331.5, 99331.54, + 99331.54, 99331.59, + 99331.59, 99331.62, + 99331.62, 99331.66, + 99331.66, 99331.71, + 99331.71, 99331.75, + 99331.75, 99331.79, + 99331.79, 99331.84, + 99331.84, 99331.88, + 99331.88, 99331.91, + 99331.91, 99331.96, + 99331.96, 99332, + 99332, 99332.04, + 99332.04, 99332.09, + 99332.09, 99332.12, + 99332.12, 99332.16, + 99332.16, 99332.21, + 99332.21, 99332.25, + 99332.25, 99332.29, + 99332.29, 99332.34, + 99332.34, 99332.38, + 99332.38, 99332.41, + 99332.41, 99332.46, + 99332.46, 99332.5, + 99332.5, 99332.54, + 99332.54, 99332.59, + 99332.59, 99332.62, + 99332.62, 99332.66, + 99332.66, 99332.71, + 99332.71, 99332.75, + 99332.75, 99332.79, + 99332.79, 99332.84, + 99332.84, 99332.88, + 99332.88, 99332.91, + 99332.91, 99332.96, + 99332.96, 99333, + 99333, 99333.04, + 99333.04, 99333.09, + 99333.09, 99333.12, + 99333.12, 99333.16, + 99333.16, 99333.21, + 99333.21, 99333.25, + 99333.25, 99333.29, + 99333.29, 99333.34, + 99333.34, 99333.38, + 99333.38, 99333.41, + 99333.41, 99333.46, + 99333.46, 99333.5, + 99333.5, 99333.54, + 99333.54, 99333.59, + 99333.59, 99333.62, + 99333.62, 99333.66, + 99333.66, 99333.71, + 99333.71, 99333.75, + 99333.75, 99333.79, + 99333.79, 99333.84, + 99333.84, 99333.88, + 99333.88, 99333.91, + 99333.91, 99333.96, + 99333.96, 99334, + 99334, 99334.04, + 99334.04, 99334.09, + 99334.09, 99334.12, + 99334.12, 99334.16, + 99334.16, 99334.21, + 99334.21, 99334.25, + 99334.25, 99334.29, + 99334.29, 99334.34, + 99334.34, 99334.38, + 99334.38, 99334.41, + 99334.41, 99334.46, + 99334.46, 99334.5, + 99334.5, 99334.54, + 99334.54, 99334.59, + 99334.59, 99334.62, + 99334.62, 99334.66, + 99334.66, 99334.71, + 99334.71, 99334.75, + 99334.75, 99334.79, + 99334.79, 99334.84, + 99334.84, 99334.88, + 99334.88, 99334.91, + 99334.91, 99334.96, + 99334.96, 99335, + 99335, 99335.04, + 99335.04, 99335.09, + 99335.09, 99335.12, + 99335.12, 99335.16, + 99335.16, 99335.21, + 99335.21, 99335.25, + 99335.25, 99335.29, + 99335.29, 99335.34, + 99335.34, 99335.38, + 99335.38, 99335.41, + 99335.41, 99335.46, + 99335.46, 99335.5, + 99335.5, 99335.54, + 99335.54, 99335.59, + 99335.59, 99335.62, + 99335.62, 99335.66, + 99335.66, 99335.71, + 99335.71, 99335.75, + 99335.75, 99335.79, + 99335.79, 99335.84, + 99335.84, 99335.88, + 99335.88, 99335.91, + 99335.91, 99335.96, + 99335.96, 99336, + 99336, 99336.04, + 99336.04, 99336.09, + 99336.09, 99336.12, + 99336.12, 99336.16, + 99336.16, 99336.21, + 99336.21, 99336.25, + 99336.25, 99336.29, + 99336.29, 99336.34, + 99336.34, 99336.38, + 99336.38, 99336.41, + 99336.41, 99336.46, + 99336.46, 99336.5, + 99336.5, 99336.54, + 99336.54, 99336.59, + 99336.59, 99336.62, + 99336.62, 99336.66, + 99336.66, 99336.71, + 99336.71, 99336.75, + 99336.75, 99336.79, + 99336.79, 99336.84, + 99336.84, 99336.88, + 99336.88, 99336.91, + 99336.91, 99336.96, + 99336.96, 99337, + 99337, 99337.04, + 99337.04, 99337.09, + 99337.09, 99337.12, + 99337.12, 99337.16, + 99337.16, 99337.21, + 99337.21, 99337.25, + 99337.25, 99337.29, + 99337.29, 99337.34, + 99337.34, 99337.38, + 99337.38, 99337.41, + 99337.41, 99337.46, + 99337.46, 99337.5, + 99337.5, 99337.54, + 99337.54, 99337.59, + 99337.59, 99337.62, + 99337.62, 99337.66, + 99337.66, 99337.71, + 99337.71, 99337.75, + 99337.75, 99337.79, + 99337.79, 99337.84, + 99337.84, 99337.88, + 99337.88, 99337.91, + 99337.91, 99337.96, + 99337.96, 99338, + 99338, 99338.04, + 99338.04, 99338.09, + 99338.09, 99338.12, + 99338.12, 99338.16, + 99338.16, 99338.21, + 99338.21, 99338.25, + 99338.25, 99338.29, + 99338.29, 99338.34, + 99338.34, 99338.38, + 99338.38, 99338.41, + 99338.41, 99338.46, + 99338.46, 99338.5, + 99338.5, 99338.54, + 99338.54, 99338.59, + 99338.59, 99338.62, + 99338.62, 99338.66, + 99338.66, 99338.71, + 99338.71, 99338.75, + 99338.75, 99338.79, + 99338.79, 99338.84, + 99338.84, 99338.88, + 99338.88, 99338.91, + 99338.91, 99338.96, + 99338.96, 99339, + 99339, 99339.04, + 99339.04, 99339.09, + 99339.09, 99339.12, + 99339.12, 99339.16, + 99339.16, 99339.21, + 99339.21, 99339.25, + 99339.25, 99339.29, + 99339.29, 99339.34, + 99339.34, 99339.38, + 99339.38, 99339.41, + 99339.41, 99339.46, + 99339.46, 99339.5, + 99339.5, 99339.54, + 99339.54, 99339.59, + 99339.59, 99339.62, + 99339.62, 99339.66, + 99339.66, 99339.71, + 99339.71, 99339.75, + 99339.75, 99339.79, + 99339.79, 99339.84, + 99339.84, 99339.88, + 99339.88, 99339.91, + 99339.91, 99339.96, + 99339.96, 99340, + 99340, 99340.04, + 99340.04, 99340.09, + 99340.09, 99340.12, + 99340.12, 99340.16, + 99340.16, 99340.21, + 99340.21, 99340.25, + 99340.25, 99340.29, + 99340.29, 99340.34, + 99340.34, 99340.38, + 99340.38, 99340.41, + 99340.41, 99340.46, + 99340.46, 99340.5, + 99340.5, 99340.54, + 99340.54, 99340.59, + 99340.59, 99340.62, + 99340.62, 99340.66, + 99340.66, 99340.71, + 99340.71, 99340.75, + 99340.75, 99340.79, + 99340.79, 99340.84, + 99340.84, 99340.88, + 99340.88, 99340.91, + 99340.91, 99340.96, + 99340.96, 99341, + 99341, 99341.04, + 99341.04, 99341.09, + 99341.09, 99341.12, + 99341.12, 99341.16, + 99341.16, 99341.21, + 99341.21, 99341.25, + 99341.25, 99341.29, + 99341.29, 99341.34, + 99341.34, 99341.38, + 99341.38, 99341.41, + 99341.41, 99341.46, + 99341.46, 99341.5, + 99341.5, 99341.54, + 99341.54, 99341.59, + 99341.59, 99341.62, + 99341.62, 99341.66, + 99341.66, 99341.71, + 99341.71, 99341.75, + 99341.75, 99341.79, + 99341.79, 99341.84, + 99341.84, 99341.88, + 99341.88, 99341.91, + 99341.91, 99341.96, + 99341.96, 99342, + 99342, 99342.04, + 99342.04, 99342.09, + 99342.09, 99342.12, + 99342.12, 99342.16, + 99342.16, 99342.21, + 99342.21, 99342.25, + 99342.25, 99342.29, + 99342.29, 99342.34, + 99342.34, 99342.38, + 99342.38, 99342.41, + 99342.41, 99342.46, + 99342.46, 99342.5, + 99342.5, 99342.54, + 99342.54, 99342.59, + 99342.59, 99342.62, + 99342.62, 99342.66, + 99342.66, 99342.71, + 99342.71, 99342.75, + 99342.75, 99342.79, + 99342.79, 99342.84, + 99342.84, 99342.88, + 99342.88, 99342.91, + 99342.91, 99342.96, + 99342.96, 99343, + 99343, 99343.04, + 99343.04, 99343.09, + 99343.09, 99343.12, + 99343.12, 99343.16, + 99343.16, 99343.21, + 99343.21, 99343.25, + 99343.25, 99343.29, + 99343.29, 99343.34, + 99343.34, 99343.38, + 99343.38, 99343.41, + 99343.41, 99343.46, + 99343.46, 99343.5, + 99343.5, 99343.54, + 99343.54, 99343.59, + 99343.59, 99343.62, + 99343.62, 99343.66, + 99343.66, 99343.71, + 99343.71, 99343.75, + 99343.75, 99343.79, + 99343.79, 99343.84, + 99343.84, 99343.88, + 99343.88, 99343.91, + 99343.91, 99343.96, + 99343.96, 99344, + 99344, 99344.04, + 99344.04, 99344.09, + 99344.09, 99344.12, + 99344.12, 99344.16, + 99344.16, 99344.21, + 99344.21, 99344.25, + 99344.25, 99344.29, + 99344.29, 99344.34, + 99344.34, 99344.38, + 99344.38, 99344.41, + 99344.41, 99344.46, + 99344.46, 99344.5, + 99344.5, 99344.54, + 99344.54, 99344.59, + 99344.59, 99344.62, + 99344.62, 99344.66, + 99344.66, 99344.71, + 99344.71, 99344.75, + 99344.75, 99344.79, + 99344.79, 99344.84, + 99344.84, 99344.88, + 99344.88, 99344.91, + 99344.91, 99344.96, + 99344.96, 99345, + 99345, 99345.04, + 99345.04, 99345.09, + 99345.09, 99345.12, + 99345.12, 99345.16, + 99345.16, 99345.21, + 99345.21, 99345.25, + 99345.25, 99345.29, + 99345.29, 99345.34, + 99345.34, 99345.38, + 99345.38, 99345.41, + 99345.41, 99345.46, + 99345.46, 99345.5, + 99345.5, 99345.54, + 99345.54, 99345.59, + 99345.59, 99345.62, + 99345.62, 99345.66, + 99345.66, 99345.71, + 99345.71, 99345.75, + 99345.75, 99345.79, + 99345.79, 99345.84, + 99345.84, 99345.88, + 99345.88, 99345.91, + 99345.91, 99345.96 ; +} diff --git a/splitnc/test/data/iceh-1yearly-mean_0001.cdl b/splitnc/test/data/iceh-1yearly-mean_0001.cdl new file mode 100644 index 0000000..a3c9257 --- /dev/null +++ b/splitnc/test/data/iceh-1yearly-mean_0001.cdl @@ -0,0 +1,97 @@ +netcdf iceh-1yearly-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (1 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:cell_methods = "area: mean where sea time: mean" ; + siconc:time_rep = "averaged" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "year_1" ; + :comment = "This year has 365 days" ; + :comment2 = "File started on model date 02730101" ; + :history = "This dataset was created on 2026-05-15 at 12:30:06.6" ; + :io_flavor = "io_netcdf" ; +data: + + time = 182.5 ; + + time_bounds = + 0, 365 ; +} diff --git a/splitnc/test/data/iceh-1yearly-mean_0272.cdl b/splitnc/test/data/iceh-1yearly-mean_0272.cdl new file mode 100644 index 0000000..5822903 --- /dev/null +++ b/splitnc/test/data/iceh-1yearly-mean_0272.cdl @@ -0,0 +1,97 @@ +netcdf iceh-1yearly-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (1 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:cell_methods = "area: mean where sea time: mean" ; + siconc:time_rep = "averaged" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "year_1" ; + :comment = "This year has 365 days" ; + :comment2 = "File started on model date 02730101" ; + :history = "This dataset was created on 2026-05-15 at 12:30:06.6" ; + :io_flavor = "io_netcdf" ; +data: + + time = 99346 ; + + time_bounds = + 98980, 99346 ; +} diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 9201935..52849d4 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -333,6 +333,57 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): "1yr", "access-esm1p6.cice5.2d.tarea.fx.nc", ), + ( + # Test an hourly ice 2D field + "iceh-1hourly-mean_0272.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.1hr.mean.0272.nc", + ), + ( + # Test an timestep/hourly ice 2D field + "iceh-1-mean_0272.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.1hr.0272.nc", + ), + # ( + # # FIXME: This test currently fails as the time val is at the end of + # # the interval so the year in the filename isn't right + # # Test a yearly ice 2D field + # "iceh-1yearly-mean_0272.cdl", + # "siconc", + # "1yr", + # "access-esm1p6.cice5.2d.siconc.1yr.mean.0272.nc", + # ), + ( + # Test a yearly ice 2D field with the year manually tweaked to be 0001 + "iceh-1yearly-mean_0001.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.1yr.mean.0001.nc", + ), + ( + # Test an hourly 2d atmos field + "aiihca.pc-010101.cdl", + "fld_s05i216", + "1yr", + "access-esm1p6.um7p3.2d.fld_s05i216.1hr.mean.0101.nc", + ), + ( + # Test a 3-hourly 2d atmos field + "aiihca.pi-010101_3hr.cdl", + "fld_s00i409", + "1yr", + "access-esm1p6.um7p3.2d.fld_s00i409.3hr.0101.nc", + ), + ( + # Test a 6-hourly 2d atmos field + "aiihca.pj-010101_6hr.cdl", + "fld_s03i245", + "1yr", + "access-esm1p6.um7p3.2d.fld_s03i245.6hr.mean.0101.nc", + ), ] ) def test_build_filenames(tmp_path, use_esm1p6, cdl_file, field, output_freq, expected_filename): From 0712bd1db0fd60cdbfb6ddc19bbbe84866209b7d Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 25 May 2026 11:29:14 +1000 Subject: [PATCH 09/25] Filename timestamp creation now uses time_bnds if possible. open_dataset time handling tweaked. Ommitted test case now passes, another now fails --- splitnc/splitnc.py | 19 ++++++++++++++++--- splitnc/test/test_splitnc.py | 18 +++++++++--------- 2 files changed, 25 insertions(+), 12 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index a3ee50f..89b724d 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -288,7 +288,7 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ d["freq"] = "1mon" elif "iceh-1daily-" in filename or "_dai.nc" in filename: d["freq"] = "1day" - elif match:=re.match(".+_(\d+hr).nc", filename): + elif match:=re.match(r".+_(\d+hr).nc", filename): # Get the frequency from the atmosphere regex match for Xhr d["freq"] = match[1] elif "iceh-1hourly-" in filename or "iceh-1-" in filename or "aiihca.pc" in filename: @@ -321,8 +321,21 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ fmt = '%4Y-%m-%d' else: fmt = '%4Y-%m-%dT%H:%M:%S' + # Get the appropriately truncated datetime for the average time - d['datestamp'] = "." + ds['time'].mean().dt.strftime(fmt).data.flatten()[0] + try: + # Try the time bounds + time_arr = ds[ds['time'].attrs["bounds"]] + logging.debug("Using time bounds to calculate filename timestamp") + except KeyError: + # If there are no time bounds just use time + logging.debug("Unable to find time bounds, using time to calculate filename timestamp") + time_arr = ds['time'] + + # Calculate the middle point + first, last = time_arr.min(), time_arr.max() + datestamp_dt = (first + (last - first) / 2).dt + d['datestamp'] = "." + datestamp_dt.strftime(fmt).data.flatten()[0] return template.format(**d) @@ -342,7 +355,7 @@ def process_file( filepath = Path(filepath) # Use cftime to suppress warnings - decoder = xr.coders.CFDatetimeCoder(use_cftime=True) + decoder = xr.coders.CFDatetimeCoder(time_unit='us') with xr.open_dataset(filepath, decode_times=decoder) as ds: # Resolve any regex in the excluded_vars list if excluded_vars: diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 52849d4..2f38ca9 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -342,20 +342,20 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): ), ( # Test an timestep/hourly ice 2D field + # FIXME: This test currently fails as the start time bounds in this + # file are all 0, which is not correct... will try to fix in the + # source file's creation then update the .cdl "iceh-1-mean_0272.cdl", "siconc", "1yr", "access-esm1p6.cice5.2d.siconc.1hr.0272.nc", ), - # ( - # # FIXME: This test currently fails as the time val is at the end of - # # the interval so the year in the filename isn't right - # # Test a yearly ice 2D field - # "iceh-1yearly-mean_0272.cdl", - # "siconc", - # "1yr", - # "access-esm1p6.cice5.2d.siconc.1yr.mean.0272.nc", - # ), + ( + "iceh-1yearly-mean_0272.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.1yr.mean.0272.nc", + ), ( # Test a yearly ice 2D field with the year manually tweaked to be 0001 "iceh-1yearly-mean_0001.cdl", From 87701857ac1f3ac23b4bb2b169ed5f243d6db28c Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 1 Jun 2026 14:02:52 +1000 Subject: [PATCH 10/25] Updated ToDo for yearly/subhourly files --- splitnc/splitnc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index 89b724d..b22672a 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -279,10 +279,10 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ d["freq"] = "fx" else: # Attempt to parse from expected filenames - # TODO: what do yearly filenames look like for atmos? - # What about subhourly for ice/atmos? + # TODO: Are sub-hourly ice files a thing? What do their filenames look like? filename = input_filepath.name if "iceh-1yearly-" in filename: + # There shouldn't be any yearly freq files for atmosphere d["freq"] = "1yr" elif "iceh-1monthly-" in filename or "_mon.nc" in filename: d["freq"] = "1mon" @@ -294,6 +294,7 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ elif "iceh-1hourly-" in filename or "iceh-1-" in filename or "aiihca.pc" in filename: d["freq"] = "1hr" else: + # No sub-hourly frequency data expected atmosphere raise ValueError(f"Unable to deduce frequency from filename while building output filename for {input_filepath}") # Time cell_method: Should be able to deduce from the cell_method From 4562ffa4ef8c2307d9ad3b1554e02d17152ffaa0 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 1 Jun 2026 15:18:26 +1000 Subject: [PATCH 11/25] Added command line arg for file-freq. Commented out previously failing test --- splitnc/splitnc.py | 21 +++++++++++++++++---- splitnc/test/test_splitnc.py | 22 +++++++++++----------- 2 files changed, 28 insertions(+), 15 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index b22672a..b18bd4d 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -232,7 +232,7 @@ def update_history_attr(ds, new_history): ds.attrs["history"] = old_history + new_history -def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_file_freq="1yr"): +def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, file_freq="1yr"): """ Build the filename used for the output. @@ -314,11 +314,11 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, output_ else: # Truncate average time val by output file frequency # datetimes do not correctly zero-pad so need to use %4Y - if re.match(r'\d+(yr|dec)', output_file_freq): + if re.match(r'\d+(yr|dec)', file_freq): fmt = '%4Y' - elif re.match(r'\d+mon', output_file_freq): + elif re.match(r'\d+mon', file_freq): fmt = '%4Y-%m' - elif re.match(r'\d+day', output_file_freq): + elif re.match(r'\d+day', file_freq): fmt = '%4Y-%m-%d' else: fmt = '%4Y-%m-%dT%H:%M:%S' @@ -351,6 +351,7 @@ def process_file( overwrite=False, update_history=True, esm1p6_filename=True, + file_freq="1yr", ): logging.debug(f"Processing {filepath}") filepath = Path(filepath) @@ -458,6 +459,7 @@ def process_file( field_name=v, input_filepath=filepath, esm1p6_filename=esm1p6_filename, + file_freq=file_freq, ) output_filepath = output_dir / filename logging.debug(f"Output filepath is {output_filepath}") @@ -551,6 +553,16 @@ def globbable_string_list(string_list): " splitnc will attempt to deduce all the components of the filename. " "If this option is not given {field}_{original_filename} will be used." ) + parser.add_argument( + "--file-freq", + default="1yr", + help="Specify the frequency of the files (not the data), e.g. if each " + "file contains a month of data then the file-frequency is '1mon'. Used " + "to determine the resolution of the timestamp for ESM1.6 filenames. " + "Follows the ACCESS frequency vocabulary (e.g. '1yr', '1mon', '1day', " + "'1hr'), any unrecognised frequency will use the full timestamp. " + "Defaults to '1yr'." + ) parser.add_argument( "--output-dir", help="Output directory for the processed files. If not given output " @@ -623,6 +635,7 @@ def main(): overwrite=args.overwrite, update_history=not args.dont_update_history, esm1p6_filename=args.use_esm1p6_filenames, + file_freq=args.file_freq, ) diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 2f38ca9..d0380aa 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -340,16 +340,16 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): "1yr", "access-esm1p6.cice5.2d.siconc.1hr.mean.0272.nc", ), - ( - # Test an timestep/hourly ice 2D field - # FIXME: This test currently fails as the start time bounds in this - # file are all 0, which is not correct... will try to fix in the - # source file's creation then update the .cdl - "iceh-1-mean_0272.cdl", - "siconc", - "1yr", - "access-esm1p6.cice5.2d.siconc.1hr.0272.nc", - ), +# ( +# # Test an timestep/hourly ice 2D field +# # FIXME: This test currently fails as the start time bounds in this +# # file are all 0, which is not correct... will try to fix in the +# # source file's creation then update the .cdl +# "iceh-1-mean_0272.cdl", +# "siconc", +# "1yr", +# "access-esm1p6.cice5.2d.siconc.1hr.0272.nc", +# ), ( "iceh-1yearly-mean_0272.cdl", "siconc", @@ -397,7 +397,7 @@ def test_build_filenames(tmp_path, use_esm1p6, cdl_file, field, output_freq, exp field, Path(cdl_file.replace('.cdl', '.nc')), esm1p6_filename=use_esm1p6, - output_file_freq=output_freq, + file_freq=output_freq, ) if not use_esm1p6: From e18d769914bd53012272220996d51a9ea85dd016 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 1 Jun 2026 16:24:00 +1000 Subject: [PATCH 12/25] Tweaked handling of commandline options so that required ones can be specified again. --- splitnc/splitnc.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index b18bd4d..2c60ede 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -478,6 +478,11 @@ def process_file( #### Main def arg_parse(cmdline_args=None): + # If -c/--command-line-file is being used then all other args are ignored + # This affects which are "required" (or nargs for filepaths) + args = sys.argv if cmdline_args is None else cmdline_args + cmd_file_arg_present = "-c" in args or "--command-line-file" in args + parser = argparse.ArgumentParser( prog="splitnc", description="Splits a multi-field netCDF file into separate one-field files", @@ -504,7 +509,7 @@ def globbable_string_list(string_list): # required and --cmd-line-file can be used on it's own parser.add_argument( "filepaths", - nargs="*", + nargs="*" if cmd_file_arg_present else "+", default=[], type=globbable_string_list, help="One or more filepaths to process", From ca6b2f6b6d3f2913f15f47d8e71bde8ff05275ef Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Fri, 12 Jun 2026 14:16:14 +1000 Subject: [PATCH 13/25] Ice timestep files now fail to parse since freq is unknown. Updated test to expect failure in this case --- splitnc/splitnc.py | 2 +- splitnc/test/test_splitnc.py | 56 +++++++++++++++++++++--------------- 2 files changed, 34 insertions(+), 24 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index 2c60ede..41b5601 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -291,7 +291,7 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, file_fr elif match:=re.match(r".+_(\d+hr).nc", filename): # Get the frequency from the atmosphere regex match for Xhr d["freq"] = match[1] - elif "iceh-1hourly-" in filename or "iceh-1-" in filename or "aiihca.pc" in filename: + elif "iceh-1hourly-" in filename or "aiihca.pc" in filename: d["freq"] = "1hr" else: # No sub-hourly frequency data expected atmosphere diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index d0380aa..c4f4817 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -340,16 +340,17 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): "1yr", "access-esm1p6.cice5.2d.siconc.1hr.mean.0272.nc", ), -# ( -# # Test an timestep/hourly ice 2D field -# # FIXME: This test currently fails as the start time bounds in this -# # file are all 0, which is not correct... will try to fix in the -# # source file's creation then update the .cdl -# "iceh-1-mean_0272.cdl", -# "siconc", -# "1yr", -# "access-esm1p6.cice5.2d.siconc.1hr.0272.nc", -# ), + ( + # Test an timestep/hourly ice 2D field + # The frequency of timestep files is not defined, so it will fail + # to build an ESM1.6 filename + # The time bounds for this file are also incorrect but we expect a + # failure anyway so it doesn't matter + "iceh-1-mean_0272.cdl", + "siconc", + "1yr", + ValueError("Unable to deduce frequency"), + ), ( "iceh-1yearly-mean_0272.cdl", "siconc", @@ -390,18 +391,27 @@ def test_build_filenames(tmp_path, use_esm1p6, cdl_file, field, output_freq, exp # Create a file to test on ncfile = make_nc(tmp_path, f"test/data/{cdl_file}") - decoder = xr.coders.CFDatetimeCoder(time_unit='us') - with xr.open_dataset(ncfile, decode_times=decoder) as ds: - actual_filename = build_filename( - ds, - field, - Path(cdl_file.replace('.cdl', '.nc')), - esm1p6_filename=use_esm1p6, - file_freq=output_freq, - ) + def _build_filename(): + decoder = xr.coders.CFDatetimeCoder(time_unit='us') + with xr.open_dataset(ncfile, decode_times=decoder) as ds: + actual_filename = build_filename( + ds, + field, + Path(cdl_file.replace('.cdl', '.nc')), + esm1p6_filename=use_esm1p6, + file_freq=output_freq, + ) + + return actual_filename + + if use_esm1p6 and isinstance(expected_filename, Exception): + with pytest.raises(type(expected_filename), match=str(expected_filename)): + _ = _build_filename() + else: + actual_filename = _build_filename() - if not use_esm1p6: - # If we're not using the ESM1.6 filepattern we expect field_file.nc - expected_filename = f"{field}_{Path(cdl_file.replace('.cdl', '.nc'))}" + if not use_esm1p6: + # If we're not using the ESM1.6 filepattern we expect field_file.nc + expected_filename = f"{field}_{Path(cdl_file.replace('.cdl', '.nc'))}" - assert actual_filename == expected_filename + assert actual_filename == expected_filename From c9ef98dba2bcb613800a4abb88d73b806ab09214 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 15 Jun 2026 15:57:36 +1000 Subject: [PATCH 14/25] Updated comments to indicate no sub-hourly data expected --- splitnc/splitnc.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index 41b5601..f978aff 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -279,7 +279,6 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, file_fr d["freq"] = "fx" else: # Attempt to parse from expected filenames - # TODO: Are sub-hourly ice files a thing? What do their filenames look like? filename = input_filepath.name if "iceh-1yearly-" in filename: # There shouldn't be any yearly freq files for atmosphere @@ -294,7 +293,7 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, file_fr elif "iceh-1hourly-" in filename or "aiihca.pc" in filename: d["freq"] = "1hr" else: - # No sub-hourly frequency data expected atmosphere + # No sub-hourly frequency data expected raise ValueError(f"Unable to deduce frequency from filename while building output filename for {input_filepath}") # Time cell_method: Should be able to deduce from the cell_method From ee4c8e9c6a633e1d00547e3431416c02b754f1f9 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 15 Jun 2026 16:19:16 +1000 Subject: [PATCH 15/25] Default arguments for esm1p6_filename now match default commandline option --- splitnc/splitnc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index f978aff..36f3d22 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -232,7 +232,7 @@ def update_history_attr(ds, new_history): ds.attrs["history"] = old_history + new_history -def build_filename(ds, field_name, input_filepath, esm1p6_filename=True, file_freq="1yr"): +def build_filename(ds, field_name, input_filepath, esm1p6_filename=False, file_freq="1yr"): """ Build the filename used for the output. @@ -349,7 +349,7 @@ def process_file( output_dir=None, overwrite=False, update_history=True, - esm1p6_filename=True, + esm1p6_filename=False, file_freq="1yr", ): logging.debug(f"Processing {filepath}") From ddbc0eea3ec73c86df950a65deb7e9301326fc96 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 15 Jun 2026 16:49:22 +1000 Subject: [PATCH 16/25] Updated test to match comment --- splitnc/test/test_splitnc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index c4f4817..85cf5b5 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -322,9 +322,9 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): ( # Test a daily ice 3D field "iceh-1daily-mean_2345-01.cdl", - "aice", + "siitdconc", "1yr", - "access-esm1p6.cice5.2d.aice.1day.mean.2345.nc", + "access-esm1p6.cice5.3d.siitdconc.1day.mean.2345.nc", ), ( # Test a daily ice fx field From 518791ea77bdcf0a6b9f6766a6cd6db4a414ada5 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Mon, 15 Jun 2026 21:48:56 +1000 Subject: [PATCH 17/25] Tweaked handling of frequency parsing to support Xhr/day/mon for ice files + tests --- splitnc/splitnc.py | 26 +- splitnc/test/data/iceh-2daily-mean_0272.cdl | 537 ++ splitnc/test/data/iceh-2hourly-mean_0272.cdl | 5462 +++++++++++++++++ splitnc/test/data/iceh-2monthly-mean_0272.cdl | 616 ++ splitnc/test/test_splitnc.py | 21 + 5 files changed, 6656 insertions(+), 6 deletions(-) create mode 100644 splitnc/test/data/iceh-2daily-mean_0272.cdl create mode 100644 splitnc/test/data/iceh-2hourly-mean_0272.cdl create mode 100644 splitnc/test/data/iceh-2monthly-mean_0272.cdl diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index 36f3d22..d44be32 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -280,17 +280,31 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=False, file_f else: # Attempt to parse from expected filenames filename = input_filepath.name - if "iceh-1yearly-" in filename: - # There shouldn't be any yearly freq files for atmosphere - d["freq"] = "1yr" - elif "iceh-1monthly-" in filename or "_mon.nc" in filename: + + # Define the expected ice filenames + # e.g. iceh-2hourly-mean_0272.nc, iceh-1yearly-mean_0272.nc + ice_regex = r"iceh-(?P\d+)(?Pyearly|monthly|daily|hourly)-" + ice_unit_mapping = { + "yearly": "yr", + "monthly": "mon", + "daily": "day", + "hourly": "hr" + } + + if match:=re.match(ice_regex, filename): + # Extract the frequency number and units for ice files + d["freq"] = f"{match['num']}{ice_unit_mapping[match['unit']]}" + elif "_mon.nc" in filename: + # Match the monthly pattern for atmosphere files d["freq"] = "1mon" - elif "iceh-1daily-" in filename or "_dai.nc" in filename: + elif "_dai.nc" in filename: + # Match the daily pattern for atmosphere files d["freq"] = "1day" elif match:=re.match(r".+_(\d+hr).nc", filename): # Get the frequency from the atmosphere regex match for Xhr d["freq"] = match[1] - elif "iceh-1hourly-" in filename or "aiihca.pc" in filename: + elif "aiihca.pc" in filename: + # Match another pattern for hourly atmosphere files d["freq"] = "1hr" else: # No sub-hourly frequency data expected diff --git a/splitnc/test/data/iceh-2daily-mean_0272.cdl b/splitnc/test/data/iceh-2daily-mean_0272.cdl new file mode 100644 index 0000000..84ef384 --- /dev/null +++ b/splitnc/test/data/iceh-2daily-mean_0272.cdl @@ -0,0 +1,537 @@ +netcdf iceh-2daily-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (183 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float aice(time, nj, ni) ; + aice:units = "1" ; + aice:long_name = "ice area (aggregate)" ; + aice:coordinates = "TLON TLAT time" ; + aice:cell_measures = "area: tarea" ; + aice:missing_value = 1.e+30f ; + aice:_FillValue = 1.e+30f ; + aice:cell_methods = "time: mean" ; + aice:time_rep = "averaged" ; + float dvsdtt(time, nj, ni) ; + dvsdtt:units = "cm/day" ; + dvsdtt:long_name = "snow volume tendency thermo" ; + dvsdtt:coordinates = "TLON TLAT time" ; + dvsdtt:cell_measures = "area: tarea" ; + dvsdtt:missing_value = 1.e+30f ; + dvsdtt:_FillValue = 1.e+30f ; + dvsdtt:cell_methods = "time: mean" ; + dvsdtt:time_rep = "averaged" ; + float dvsdtd(time, nj, ni) ; + dvsdtd:units = "cm/day" ; + dvsdtd:long_name = "snow volume tendency dynamics" ; + dvsdtd:coordinates = "TLON TLAT time" ; + dvsdtd:cell_measures = "area: tarea" ; + dvsdtd:missing_value = 1.e+30f ; + dvsdtd:_FillValue = 1.e+30f ; + dvsdtd:cell_methods = "time: mean" ; + dvsdtd:time_rep = "averaged" ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:cell_methods = "area: mean where sea time: mean" ; + siconc:time_rep = "averaged" ; + float sitimefrac(time, nj, ni) ; + sitimefrac:units = "1" ; + sitimefrac:long_name = "fraction of time-avg interval that ice is present" ; + sitimefrac:coordinates = "TLON TLAT time" ; + sitimefrac:cell_measures = "area: tarea" ; + sitimefrac:comment = "ice extent flag" ; + sitimefrac:missing_value = 1.e+30f ; + sitimefrac:_FillValue = 1.e+30f ; + sitimefrac:cell_methods = "area: mean where sea time: mean" ; + sitimefrac:time_rep = "averaged" ; + float sithick(time, nj, ni) ; + sithick:units = "m" ; + sithick:long_name = "Sea-Ice Thickness" ; + sithick:coordinates = "TLON TLAT time" ; + sithick:cell_measures = "area: tarea" ; + sithick:comment = "area weighted average of volume divided by ice area" ; + sithick:missing_value = 1.e+30f ; + sithick:_FillValue = 1.e+30f ; + sithick:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sithick:time_rep = "averaged" ; + float siage(time, nj, ni) ; + siage:units = "s" ; + siage:long_name = "Age of Sea Ice" ; + siage:coordinates = "TLON TLAT time" ; + siage:cell_measures = "area: tarea" ; + siage:comment = "area weighted average of age of sea ice" ; + siage:missing_value = 1.e+30f ; + siage:_FillValue = 1.e+30f ; + siage:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siage:time_rep = "averaged" ; + float sifb(time, nj, ni) ; + sifb:units = "m" ; + sifb:long_name = "Sea-Ice Freeboard" ; + sifb:coordinates = "TLON TLAT time" ; + sifb:cell_measures = "area: tarea" ; + sifb:comment = "area weighted average of height of sea ice above ocean surface" ; + sifb:missing_value = 1.e+30f ; + sifb:_FillValue = 1.e+30f ; + sifb:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sifb:time_rep = "averaged" ; + float sitempbot(time, nj, ni) ; + sitempbot:units = "K" ; + sitempbot:long_name = "Temperature at Ice-Ocean Interface" ; + sitempbot:coordinates = "TLON TLAT time" ; + sitempbot:cell_measures = "area: tarea" ; + sitempbot:comment = "area weighted average of ice-ocean interface temperature" ; + sitempbot:missing_value = 1.e+30f ; + sitempbot:_FillValue = 1.e+30f ; + sitempbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sitempbot:time_rep = "averaged" ; + float siu(time, nj, ni) ; + siu:units = "m/s" ; + siu:long_name = "X-Component of Sea-Ice Velocity" ; + siu:coordinates = "ULON ULAT time" ; + siu:cell_measures = "area: uarea" ; + siu:comment = "area weighted average" ; + siu:missing_value = 1.e+30f ; + siu:_FillValue = 1.e+30f ; + siu:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siu:time_rep = "averaged" ; + float siv(time, nj, ni) ; + siv:units = "m/s" ; + siv:long_name = "Y-Component of Sea-Ice Velocity" ; + siv:coordinates = "ULON ULAT time" ; + siv:cell_measures = "area: uarea" ; + siv:comment = "area weighted average" ; + siv:missing_value = 1.e+30f ; + siv:_FillValue = 1.e+30f ; + siv:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siv:time_rep = "averaged" ; + float siforcetiltx(time, nj, ni) ; + siforcetiltx:units = "N m^-2" ; + siforcetiltx:long_name = "Sea-Surface Tilt Term in Force Balance (X-Component)" ; + siforcetiltx:coordinates = "ULON ULAT time" ; + siforcetiltx:cell_measures = "area: uarea" ; + siforcetiltx:comment = "area weighted average" ; + siforcetiltx:missing_value = 1.e+30f ; + siforcetiltx:_FillValue = 1.e+30f ; + siforcetiltx:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcetiltx:time_rep = "averaged" ; + float siforcetilty(time, nj, ni) ; + siforcetilty:units = "N m^-2" ; + siforcetilty:long_name = "Sea-Surface Tilt Term in Force Balance (Y-Component)" ; + siforcetilty:coordinates = "ULON ULAT time" ; + siforcetilty:cell_measures = "area: uarea" ; + siforcetilty:comment = "area weighted average" ; + siforcetilty:missing_value = 1.e+30f ; + siforcetilty:_FillValue = 1.e+30f ; + siforcetilty:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcetilty:time_rep = "averaged" ; + float siforcecoriolx(time, nj, ni) ; + siforcecoriolx:units = "N m^-2" ; + siforcecoriolx:long_name = "Coriolis Force Term in Force Balance (X-Component)" ; + siforcecoriolx:coordinates = "ULON ULAT time" ; + siforcecoriolx:cell_measures = "area: uarea" ; + siforcecoriolx:comment = "area weighted average" ; + siforcecoriolx:missing_value = 1.e+30f ; + siforcecoriolx:_FillValue = 1.e+30f ; + siforcecoriolx:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcecoriolx:time_rep = "averaged" ; + float siforcecorioly(time, nj, ni) ; + siforcecorioly:units = "N m^-2" ; + siforcecorioly:long_name = "Coriolis Force Term in Force Balance (Y-Component)" ; + siforcecorioly:coordinates = "ULON ULAT time" ; + siforcecorioly:cell_measures = "area: uarea" ; + siforcecorioly:comment = "area weighted average" ; + siforcecorioly:missing_value = 1.e+30f ; + siforcecorioly:_FillValue = 1.e+30f ; + siforcecorioly:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcecorioly:time_rep = "averaged" ; + float siforceintstrx(time, nj, ni) ; + siforceintstrx:units = "N m^-2" ; + siforceintstrx:long_name = "Internal Stress Term in Force Balance (X-Component)" ; + siforceintstrx:coordinates = "ULON ULAT time" ; + siforceintstrx:cell_measures = "area: uarea" ; + siforceintstrx:comment = "area weighted average" ; + siforceintstrx:missing_value = 1.e+30f ; + siforceintstrx:_FillValue = 1.e+30f ; + siforceintstrx:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforceintstrx:time_rep = "averaged" ; + float siforceintstry(time, nj, ni) ; + siforceintstry:units = "N m^-2" ; + siforceintstry:long_name = "Internal Stress Term in Force Balance (Y-Component)" ; + siforceintstry:coordinates = "ULON ULAT time" ; + siforceintstry:cell_measures = "area: uarea" ; + siforceintstry:comment = "area weighted average" ; + siforceintstry:missing_value = 1.e+30f ; + siforceintstry:_FillValue = 1.e+30f ; + siforceintstry:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforceintstry:time_rep = "averaged" ; + float sispeed(time, nj, ni) ; + sispeed:units = "m/s" ; + sispeed:long_name = "Sea-Ice Speed" ; + sispeed:coordinates = "ULON ULAT time" ; + sispeed:cell_measures = "area: uarea" ; + sispeed:comment = "area weighted average" ; + sispeed:missing_value = 1.e+30f ; + sispeed:_FillValue = 1.e+30f ; + sispeed:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sispeed:time_rep = "averaged" ; + float sihc(time, nj, ni) ; + sihc:units = "J m^-2" ; + sihc:long_name = "Sea-Ice Heat Content" ; + sihc:coordinates = "TLON TLAT time" ; + sihc:cell_measures = "area: tarea" ; + sihc:comment = "per unit grid cell area" ; + sihc:missing_value = 1.e+30f ; + sihc:_FillValue = 1.e+30f ; + sihc:cell_methods = "area: mean where sea time: mean" ; + sihc:time_rep = "averaged" ; + float sisnhc(time, nj, ni) ; + sisnhc:units = "J m^-2" ; + sisnhc:long_name = "Snow Heat Content" ; + sisnhc:coordinates = "TLON TLAT time" ; + sisnhc:cell_measures = "area: tarea" ; + sisnhc:comment = "per unit grid cell area" ; + sisnhc:missing_value = 1.e+30f ; + sisnhc:_FillValue = 1.e+30f ; + sisnhc:cell_methods = "area: mean where sea time: mean" ; + sisnhc:time_rep = "averaged" ; + float siflsensbot(time, nj, ni) ; + siflsensbot:units = "W m^-2" ; + siflsensbot:long_name = "Net Upward Sensible Heat Flux under Sea Ice" ; + siflsensbot:coordinates = "TLON TLAT time" ; + siflsensbot:cell_measures = "area: tarea" ; + siflsensbot:comment = "area weighted average, positive downward, per sea ice area" ; + siflsensbot:missing_value = 1.e+30f ; + siflsensbot:_FillValue = 1.e+30f ; + siflsensbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflsensbot:time_rep = "averaged" ; + float siflcondtop(time, nj, ni) ; + siflcondtop:units = "W m^-2" ; + siflcondtop:long_name = "Net Conductive Heat Flux in Sea Ice at the Surface" ; + siflcondtop:coordinates = "TLON TLAT time" ; + siflcondtop:cell_measures = "area: tarea" ; + siflcondtop:comment = "area weighted average, positive downward, per sea ice area" ; + siflcondtop:missing_value = 1.e+30f ; + siflcondtop:_FillValue = 1.e+30f ; + siflcondtop:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflcondtop:time_rep = "averaged" ; + float siflcondbot(time, nj, ni) ; + siflcondbot:units = "W m^-2" ; + siflcondbot:long_name = "Net Conductive Heat Flux in Sea Ice at the Base" ; + siflcondbot:coordinates = "TLON TLAT time" ; + siflcondbot:cell_measures = "area: tarea" ; + siflcondbot:comment = "area weighted average, positive downward, per sea ice area" ; + siflcondbot:missing_value = 1.e+30f ; + siflcondbot:_FillValue = 1.e+30f ; + siflcondbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflcondbot:time_rep = "averaged" ; + float sisaltmass(time, nj, ni) ; + sisaltmass:units = "kg m^-2" ; + sisaltmass:long_name = "Mass of Salt in Sea Ice" ; + sisaltmass:coordinates = "TLON TLAT time" ; + sisaltmass:cell_measures = "area: tarea" ; + sisaltmass:comment = "per unit grid cell area" ; + sisaltmass:missing_value = 1.e+30f ; + sisaltmass:_FillValue = 1.e+30f ; + sisaltmass:cell_methods = "area: mean where sea time: mean" ; + sisaltmass:time_rep = "averaged" ; + float siitdconc(time, nc, nj, ni) ; + siitdconc:units = "%" ; + siitdconc:long_name = "Sea-Ice Area Percentage in Ice Thickness Categories" ; + siitdconc:coordinates = "TLON TLAT NCAT time" ; + siitdconc:cell_measures = "area: tarea" ; + siitdconc:missing_value = 1.e+30f ; + siitdconc:_FillValue = 1.e+30f ; + siitdconc:cell_methods = "time: mean" ; + siitdconc:time_rep = "averaged" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "day_2" ; + :comment = "This year has 366 days" ; + :comment2 = "File started on model date 02720103" ; + :history = "This dataset was created on 2026-05-15 at 13:41:30.7" ; + :io_flavor = "io_netcdf" ; +data: + + time = 98981.5, 98983.5, 98985.5, 98987.5, 98989.5, 98991.5, 98993.5, + 98995.5, 98997.5, 98999.5, 99001.5, 99003.5, 99005.5, 99007.5, 99009.5, + 99011.5, 99013.5, 99015.5, 99017.5, 99019.5, 99021.5, 99023.5, 99025.5, + 99027.5, 99029.5, 99031.5, 99033.5, 99035.5, 99037.5, 99039.5, 99041.5, + 99043.5, 99045.5, 99047.5, 99049.5, 99051.5, 99053.5, 99055.5, 99057.5, + 99059.5, 99061.5, 99063.5, 99065.5, 99067.5, 99069.5, 99071.5, 99073.5, + 99075.5, 99077.5, 99079.5, 99081.5, 99083.5, 99085.5, 99087.5, 99089.5, + 99091.5, 99093.5, 99095.5, 99097.5, 99099.5, 99101.5, 99103.5, 99105.5, + 99107.5, 99109.5, 99111.5, 99113.5, 99115.5, 99117.5, 99119.5, 99121.5, + 99123.5, 99125.5, 99127.5, 99129.5, 99131.5, 99133.5, 99135.5, 99137.5, + 99139.5, 99141.5, 99143.5, 99145.5, 99147.5, 99149.5, 99151.5, 99153.5, + 99155.5, 99157.5, 99159.5, 99161.5, 99163.5, 99165.5, 99167.5, 99169.5, + 99171.5, 99173.5, 99175.5, 99177.5, 99179.5, 99181.5, 99183.5, 99185.5, + 99187.5, 99189.5, 99191.5, 99193.5, 99195.5, 99197.5, 99199.5, 99201.5, + 99203.5, 99205.5, 99207.5, 99209.5, 99211.5, 99213.5, 99215.5, 99217.5, + 99219.5, 99221.5, 99223.5, 99225.5, 99227.5, 99229.5, 99231.5, 99233.5, + 99235.5, 99237.5, 99239.5, 99241.5, 99243.5, 99245.5, 99247.5, 99249.5, + 99251.5, 99253.5, 99255.5, 99257.5, 99259.5, 99261.5, 99263.5, 99265.5, + 99267.5, 99269.5, 99271.5, 99273.5, 99275.5, 99277.5, 99279.5, 99281.5, + 99283.5, 99285.5, 99287.5, 99289.5, 99291.5, 99293.5, 99295.5, 99297.5, + 99299.5, 99301.5, 99303.5, 99305.5, 99307.5, 99309.5, 99311.5, 99313.5, + 99315.5, 99317.5, 99319.5, 99321.5, 99323.5, 99325.5, 99327.5, 99329.5, + 99331.5, 99333.5, 99335.5, 99337.5, 99339.5, 99341.5, 99343.5, 99345.5 ; + + time_bounds = + 98980, 98982, + 98982, 98984, + 98984, 98986, + 98986, 98988, + 98988, 98990, + 98990, 98992, + 98992, 98994, + 98994, 98996, + 98996, 98998, + 98998, 99000, + 99000, 99002, + 99002, 99004, + 99004, 99006, + 99006, 99008, + 99008, 99010, + 99010, 99012, + 99012, 99014, + 99014, 99016, + 99016, 99018, + 99018, 99020, + 99020, 99022, + 99022, 99024, + 99024, 99026, + 99026, 99028, + 99028, 99030, + 99030, 99032, + 99032, 99034, + 99034, 99036, + 99036, 99038, + 99038, 99040, + 99040, 99042, + 99042, 99044, + 99044, 99046, + 99046, 99048, + 99048, 99050, + 99050, 99052, + 99052, 99054, + 99054, 99056, + 99056, 99058, + 99058, 99060, + 99060, 99062, + 99062, 99064, + 99064, 99066, + 99066, 99068, + 99068, 99070, + 99070, 99072, + 99072, 99074, + 99074, 99076, + 99076, 99078, + 99078, 99080, + 99080, 99082, + 99082, 99084, + 99084, 99086, + 99086, 99088, + 99088, 99090, + 99090, 99092, + 99092, 99094, + 99094, 99096, + 99096, 99098, + 99098, 99100, + 99100, 99102, + 99102, 99104, + 99104, 99106, + 99106, 99108, + 99108, 99110, + 99110, 99112, + 99112, 99114, + 99114, 99116, + 99116, 99118, + 99118, 99120, + 99120, 99122, + 99122, 99124, + 99124, 99126, + 99126, 99128, + 99128, 99130, + 99130, 99132, + 99132, 99134, + 99134, 99136, + 99136, 99138, + 99138, 99140, + 99140, 99142, + 99142, 99144, + 99144, 99146, + 99146, 99148, + 99148, 99150, + 99150, 99152, + 99152, 99154, + 99154, 99156, + 99156, 99158, + 99158, 99160, + 99160, 99162, + 99162, 99164, + 99164, 99166, + 99166, 99168, + 99168, 99170, + 99170, 99172, + 99172, 99174, + 99174, 99176, + 99176, 99178, + 99178, 99180, + 99180, 99182, + 99182, 99184, + 99184, 99186, + 99186, 99188, + 99188, 99190, + 99190, 99192, + 99192, 99194, + 99194, 99196, + 99196, 99198, + 99198, 99200, + 99200, 99202, + 99202, 99204, + 99204, 99206, + 99206, 99208, + 99208, 99210, + 99210, 99212, + 99212, 99214, + 99214, 99216, + 99216, 99218, + 99218, 99220, + 99220, 99222, + 99222, 99224, + 99224, 99226, + 99226, 99228, + 99228, 99230, + 99230, 99232, + 99232, 99234, + 99234, 99236, + 99236, 99238, + 99238, 99240, + 99240, 99242, + 99242, 99244, + 99244, 99246, + 99246, 99248, + 99248, 99250, + 99250, 99252, + 99252, 99254, + 99254, 99256, + 99256, 99258, + 99258, 99260, + 99260, 99262, + 99262, 99264, + 99264, 99266, + 99266, 99268, + 99268, 99270, + 99270, 99272, + 99272, 99274, + 99274, 99276, + 99276, 99278, + 99278, 99280, + 99280, 99282, + 99282, 99284, + 99284, 99286, + 99286, 99288, + 99288, 99290, + 99290, 99292, + 99292, 99294, + 99294, 99296, + 99296, 99298, + 99298, 99300, + 99300, 99302, + 99302, 99304, + 99304, 99306, + 99306, 99308, + 99308, 99310, + 99310, 99312, + 99312, 99314, + 99314, 99316, + 99316, 99318, + 99318, 99320, + 99320, 99322, + 99322, 99324, + 99324, 99326, + 99326, 99328, + 99328, 99330, + 99330, 99332, + 99332, 99334, + 99334, 99336, + 99336, 99338, + 99338, 99340, + 99340, 99342, + 99342, 99344, + 99344, 99346 ; +} diff --git a/splitnc/test/data/iceh-2hourly-mean_0272.cdl b/splitnc/test/data/iceh-2hourly-mean_0272.cdl new file mode 100644 index 0000000..a349a37 --- /dev/null +++ b/splitnc/test/data/iceh-2hourly-mean_0272.cdl @@ -0,0 +1,5462 @@ +netcdf iceh-2hourly-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (4391 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:cell_methods = "area: mean where sea time: mean" ; + siconc:time_rep = "averaged" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "hour_2" ; + :comment = "This year has 366 days" ; + :comment2 = "File started on model date 02720101" ; + :history = "This dataset was created on 2026-05-15 at 13:41:13.0" ; + :io_flavor = "io_netcdf" ; +data: + + time = 98980.0833333333, 98980.1666666667, 98980.25, 98980.3333333333, + 98980.4166666667, 98980.5, 98980.5833333333, 98980.6666666667, 98980.75, + 98980.8333333333, 98980.9166666667, 98981, 98981.0833333333, + 98981.1666666667, 98981.25, 98981.3333333333, 98981.4166666667, 98981.5, + 98981.5833333333, 98981.6666666667, 98981.75, 98981.8333333333, + 98981.9166666667, 98982, 98982.0833333333, 98982.1666666667, 98982.25, + 98982.3333333333, 98982.4166666667, 98982.5, 98982.5833333333, + 98982.6666666667, 98982.75, 98982.8333333333, 98982.9166666667, 98983, + 98983.0833333333, 98983.1666666667, 98983.25, 98983.3333333333, + 98983.4166666667, 98983.5, 98983.5833333333, 98983.6666666667, 98983.75, + 98983.8333333333, 98983.9166666667, 98984, 98984.0833333333, + 98984.1666666667, 98984.25, 98984.3333333333, 98984.4166666667, 98984.5, + 98984.5833333333, 98984.6666666667, 98984.75, 98984.8333333333, + 98984.9166666667, 98985, 98985.0833333333, 98985.1666666667, 98985.25, + 98985.3333333333, 98985.4166666667, 98985.5, 98985.5833333333, + 98985.6666666667, 98985.75, 98985.8333333333, 98985.9166666667, 98986, + 98986.0833333333, 98986.1666666667, 98986.25, 98986.3333333333, + 98986.4166666667, 98986.5, 98986.5833333333, 98986.6666666667, 98986.75, + 98986.8333333333, 98986.9166666667, 98987, 98987.0833333333, + 98987.1666666667, 98987.25, 98987.3333333333, 98987.4166666667, 98987.5, + 98987.5833333333, 98987.6666666667, 98987.75, 98987.8333333333, + 98987.9166666667, 98988, 98988.0833333333, 98988.1666666667, 98988.25, + 98988.3333333333, 98988.4166666667, 98988.5, 98988.5833333333, + 98988.6666666667, 98988.75, 98988.8333333333, 98988.9166666667, 98989, + 98989.0833333333, 98989.1666666667, 98989.25, 98989.3333333333, + 98989.4166666667, 98989.5, 98989.5833333333, 98989.6666666667, 98989.75, + 98989.8333333333, 98989.9166666667, 98990, 98990.0833333333, + 98990.1666666667, 98990.25, 98990.3333333333, 98990.4166666667, 98990.5, + 98990.5833333333, 98990.6666666667, 98990.75, 98990.8333333333, + 98990.9166666667, 98991, 98991.0833333333, 98991.1666666667, 98991.25, + 98991.3333333333, 98991.4166666667, 98991.5, 98991.5833333333, + 98991.6666666667, 98991.75, 98991.8333333333, 98991.9166666667, 98992, + 98992.0833333333, 98992.1666666667, 98992.25, 98992.3333333333, + 98992.4166666667, 98992.5, 98992.5833333333, 98992.6666666667, 98992.75, + 98992.8333333333, 98992.9166666667, 98993, 98993.0833333333, + 98993.1666666667, 98993.25, 98993.3333333333, 98993.4166666667, 98993.5, + 98993.5833333333, 98993.6666666667, 98993.75, 98993.8333333333, + 98993.9166666667, 98994, 98994.0833333333, 98994.1666666667, 98994.25, + 98994.3333333333, 98994.4166666667, 98994.5, 98994.5833333333, + 98994.6666666667, 98994.75, 98994.8333333333, 98994.9166666667, 98995, + 98995.0833333333, 98995.1666666667, 98995.25, 98995.3333333333, + 98995.4166666667, 98995.5, 98995.5833333333, 98995.6666666667, 98995.75, + 98995.8333333333, 98995.9166666667, 98996, 98996.0833333333, + 98996.1666666667, 98996.25, 98996.3333333333, 98996.4166666667, 98996.5, + 98996.5833333333, 98996.6666666667, 98996.75, 98996.8333333333, + 98996.9166666667, 98997, 98997.0833333333, 98997.1666666667, 98997.25, + 98997.3333333333, 98997.4166666667, 98997.5, 98997.5833333333, + 98997.6666666667, 98997.75, 98997.8333333333, 98997.9166666667, 98998, + 98998.0833333333, 98998.1666666667, 98998.25, 98998.3333333333, + 98998.4166666667, 98998.5, 98998.5833333333, 98998.6666666667, 98998.75, + 98998.8333333333, 98998.9166666667, 98999, 98999.0833333333, + 98999.1666666667, 98999.25, 98999.3333333333, 98999.4166666667, 98999.5, + 98999.5833333333, 98999.6666666667, 98999.75, 98999.8333333333, + 98999.9166666667, 99000, 99000.0833333333, 99000.1666666667, 99000.25, + 99000.3333333333, 99000.4166666667, 99000.5, 99000.5833333333, + 99000.6666666667, 99000.75, 99000.8333333333, 99000.9166666667, 99001, + 99001.0833333333, 99001.1666666667, 99001.25, 99001.3333333333, + 99001.4166666667, 99001.5, 99001.5833333333, 99001.6666666667, 99001.75, + 99001.8333333333, 99001.9166666667, 99002, 99002.0833333333, + 99002.1666666667, 99002.25, 99002.3333333333, 99002.4166666667, 99002.5, + 99002.5833333333, 99002.6666666667, 99002.75, 99002.8333333333, + 99002.9166666667, 99003, 99003.0833333333, 99003.1666666667, 99003.25, + 99003.3333333333, 99003.4166666667, 99003.5, 99003.5833333333, + 99003.6666666667, 99003.75, 99003.8333333333, 99003.9166666667, 99004, + 99004.0833333333, 99004.1666666667, 99004.25, 99004.3333333333, + 99004.4166666667, 99004.5, 99004.5833333333, 99004.6666666667, 99004.75, + 99004.8333333333, 99004.9166666667, 99005, 99005.0833333333, + 99005.1666666667, 99005.25, 99005.3333333333, 99005.4166666667, 99005.5, + 99005.5833333333, 99005.6666666667, 99005.75, 99005.8333333333, + 99005.9166666667, 99006, 99006.0833333333, 99006.1666666667, 99006.25, + 99006.3333333333, 99006.4166666667, 99006.5, 99006.5833333333, + 99006.6666666667, 99006.75, 99006.8333333333, 99006.9166666667, 99007, + 99007.0833333333, 99007.1666666667, 99007.25, 99007.3333333333, + 99007.4166666667, 99007.5, 99007.5833333333, 99007.6666666667, 99007.75, + 99007.8333333333, 99007.9166666667, 99008, 99008.0833333333, + 99008.1666666667, 99008.25, 99008.3333333333, 99008.4166666667, 99008.5, + 99008.5833333333, 99008.6666666667, 99008.75, 99008.8333333333, + 99008.9166666667, 99009, 99009.0833333333, 99009.1666666667, 99009.25, + 99009.3333333333, 99009.4166666667, 99009.5, 99009.5833333333, + 99009.6666666667, 99009.75, 99009.8333333333, 99009.9166666667, 99010, + 99010.0833333333, 99010.1666666667, 99010.25, 99010.3333333333, + 99010.4166666667, 99010.5, 99010.5833333333, 99010.6666666667, 99010.75, + 99010.8333333333, 99010.9166666667, 99011, 99011.0833333333, + 99011.1666666667, 99011.25, 99011.3333333333, 99011.4166666667, 99011.5, + 99011.5833333333, 99011.6666666667, 99011.75, 99011.8333333333, + 99011.9166666667, 99012, 99012.0833333333, 99012.1666666667, 99012.25, + 99012.3333333333, 99012.4166666667, 99012.5, 99012.5833333333, + 99012.6666666667, 99012.75, 99012.8333333333, 99012.9166666667, 99013, + 99013.0833333333, 99013.1666666667, 99013.25, 99013.3333333333, + 99013.4166666667, 99013.5, 99013.5833333333, 99013.6666666667, 99013.75, + 99013.8333333333, 99013.9166666667, 99014, 99014.0833333333, + 99014.1666666667, 99014.25, 99014.3333333333, 99014.4166666667, 99014.5, + 99014.5833333333, 99014.6666666667, 99014.75, 99014.8333333333, + 99014.9166666667, 99015, 99015.0833333333, 99015.1666666667, 99015.25, + 99015.3333333333, 99015.4166666667, 99015.5, 99015.5833333333, + 99015.6666666667, 99015.75, 99015.8333333333, 99015.9166666667, 99016, + 99016.0833333333, 99016.1666666667, 99016.25, 99016.3333333333, + 99016.4166666667, 99016.5, 99016.5833333333, 99016.6666666667, 99016.75, + 99016.8333333333, 99016.9166666667, 99017, 99017.0833333333, + 99017.1666666667, 99017.25, 99017.3333333333, 99017.4166666667, 99017.5, + 99017.5833333333, 99017.6666666667, 99017.75, 99017.8333333333, + 99017.9166666667, 99018, 99018.0833333333, 99018.1666666667, 99018.25, + 99018.3333333333, 99018.4166666667, 99018.5, 99018.5833333333, + 99018.6666666667, 99018.75, 99018.8333333333, 99018.9166666667, 99019, + 99019.0833333333, 99019.1666666667, 99019.25, 99019.3333333333, + 99019.4166666667, 99019.5, 99019.5833333333, 99019.6666666667, 99019.75, + 99019.8333333333, 99019.9166666667, 99020, 99020.0833333333, + 99020.1666666667, 99020.25, 99020.3333333333, 99020.4166666667, 99020.5, + 99020.5833333333, 99020.6666666667, 99020.75, 99020.8333333333, + 99020.9166666667, 99021, 99021.0833333333, 99021.1666666667, 99021.25, + 99021.3333333333, 99021.4166666667, 99021.5, 99021.5833333333, + 99021.6666666667, 99021.75, 99021.8333333333, 99021.9166666667, 99022, + 99022.0833333333, 99022.1666666667, 99022.25, 99022.3333333333, + 99022.4166666667, 99022.5, 99022.5833333333, 99022.6666666667, 99022.75, + 99022.8333333333, 99022.9166666667, 99023, 99023.0833333333, + 99023.1666666667, 99023.25, 99023.3333333333, 99023.4166666667, 99023.5, + 99023.5833333333, 99023.6666666667, 99023.75, 99023.8333333333, + 99023.9166666667, 99024, 99024.0833333333, 99024.1666666667, 99024.25, + 99024.3333333333, 99024.4166666667, 99024.5, 99024.5833333333, + 99024.6666666667, 99024.75, 99024.8333333333, 99024.9166666667, 99025, + 99025.0833333333, 99025.1666666667, 99025.25, 99025.3333333333, + 99025.4166666667, 99025.5, 99025.5833333333, 99025.6666666667, 99025.75, + 99025.8333333333, 99025.9166666667, 99026, 99026.0833333333, + 99026.1666666667, 99026.25, 99026.3333333333, 99026.4166666667, 99026.5, + 99026.5833333333, 99026.6666666667, 99026.75, 99026.8333333333, + 99026.9166666667, 99027, 99027.0833333333, 99027.1666666667, 99027.25, + 99027.3333333333, 99027.4166666667, 99027.5, 99027.5833333333, + 99027.6666666667, 99027.75, 99027.8333333333, 99027.9166666667, 99028, + 99028.0833333333, 99028.1666666667, 99028.25, 99028.3333333333, + 99028.4166666667, 99028.5, 99028.5833333333, 99028.6666666667, 99028.75, + 99028.8333333333, 99028.9166666667, 99029, 99029.0833333333, + 99029.1666666667, 99029.25, 99029.3333333333, 99029.4166666667, 99029.5, + 99029.5833333333, 99029.6666666667, 99029.75, 99029.8333333333, + 99029.9166666667, 99030, 99030.0833333333, 99030.1666666667, 99030.25, + 99030.3333333333, 99030.4166666667, 99030.5, 99030.5833333333, + 99030.6666666667, 99030.75, 99030.8333333333, 99030.9166666667, 99031, + 99031.0833333333, 99031.1666666667, 99031.25, 99031.3333333333, + 99031.4166666667, 99031.5, 99031.5833333333, 99031.6666666667, 99031.75, + 99031.8333333333, 99031.9166666667, 99032, 99032.0833333333, + 99032.1666666667, 99032.25, 99032.3333333333, 99032.4166666667, 99032.5, + 99032.5833333333, 99032.6666666667, 99032.75, 99032.8333333333, + 99032.9166666667, 99033, 99033.0833333333, 99033.1666666667, 99033.25, + 99033.3333333333, 99033.4166666667, 99033.5, 99033.5833333333, + 99033.6666666667, 99033.75, 99033.8333333333, 99033.9166666667, 99034, + 99034.0833333333, 99034.1666666667, 99034.25, 99034.3333333333, + 99034.4166666667, 99034.5, 99034.5833333333, 99034.6666666667, 99034.75, + 99034.8333333333, 99034.9166666667, 99035, 99035.0833333333, + 99035.1666666667, 99035.25, 99035.3333333333, 99035.4166666667, 99035.5, + 99035.5833333333, 99035.6666666667, 99035.75, 99035.8333333333, + 99035.9166666667, 99036, 99036.0833333333, 99036.1666666667, 99036.25, + 99036.3333333333, 99036.4166666667, 99036.5, 99036.5833333333, + 99036.6666666667, 99036.75, 99036.8333333333, 99036.9166666667, 99037, + 99037.0833333333, 99037.1666666667, 99037.25, 99037.3333333333, + 99037.4166666667, 99037.5, 99037.5833333333, 99037.6666666667, 99037.75, + 99037.8333333333, 99037.9166666667, 99038, 99038.0833333333, + 99038.1666666667, 99038.25, 99038.3333333333, 99038.4166666667, 99038.5, + 99038.5833333333, 99038.6666666667, 99038.75, 99038.8333333333, + 99038.9166666667, 99039, 99039.0833333333, 99039.1666666667, 99039.25, + 99039.3333333333, 99039.4166666667, 99039.5, 99039.5833333333, + 99039.6666666667, 99039.75, 99039.8333333333, 99039.9166666667, 99040, + 99040.0833333333, 99040.1666666667, 99040.25, 99040.3333333333, + 99040.4166666667, 99040.5, 99040.5833333333, 99040.6666666667, 99040.75, + 99040.8333333333, 99040.9166666667, 99041, 99041.0833333333, + 99041.1666666667, 99041.25, 99041.3333333333, 99041.4166666667, 99041.5, + 99041.5833333333, 99041.6666666667, 99041.75, 99041.8333333333, + 99041.9166666667, 99042, 99042.0833333333, 99042.1666666667, 99042.25, + 99042.3333333333, 99042.4166666667, 99042.5, 99042.5833333333, + 99042.6666666667, 99042.75, 99042.8333333333, 99042.9166666667, 99043, + 99043.0833333333, 99043.1666666667, 99043.25, 99043.3333333333, + 99043.4166666667, 99043.5, 99043.5833333333, 99043.6666666667, 99043.75, + 99043.8333333333, 99043.9166666667, 99044, 99044.0833333333, + 99044.1666666667, 99044.25, 99044.3333333333, 99044.4166666667, 99044.5, + 99044.5833333333, 99044.6666666667, 99044.75, 99044.8333333333, + 99044.9166666667, 99045, 99045.0833333333, 99045.1666666667, 99045.25, + 99045.3333333333, 99045.4166666667, 99045.5, 99045.5833333333, + 99045.6666666667, 99045.75, 99045.8333333333, 99045.9166666667, 99046, + 99046.0833333333, 99046.1666666667, 99046.25, 99046.3333333333, + 99046.4166666667, 99046.5, 99046.5833333333, 99046.6666666667, 99046.75, + 99046.8333333333, 99046.9166666667, 99047, 99047.0833333333, + 99047.1666666667, 99047.25, 99047.3333333333, 99047.4166666667, 99047.5, + 99047.5833333333, 99047.6666666667, 99047.75, 99047.8333333333, + 99047.9166666667, 99048, 99048.0833333333, 99048.1666666667, 99048.25, + 99048.3333333333, 99048.4166666667, 99048.5, 99048.5833333333, + 99048.6666666667, 99048.75, 99048.8333333333, 99048.9166666667, 99049, + 99049.0833333333, 99049.1666666667, 99049.25, 99049.3333333333, + 99049.4166666667, 99049.5, 99049.5833333333, 99049.6666666667, 99049.75, + 99049.8333333333, 99049.9166666667, 99050, 99050.0833333333, + 99050.1666666667, 99050.25, 99050.3333333333, 99050.4166666667, 99050.5, + 99050.5833333333, 99050.6666666667, 99050.75, 99050.8333333333, + 99050.9166666667, 99051, 99051.0833333333, 99051.1666666667, 99051.25, + 99051.3333333333, 99051.4166666667, 99051.5, 99051.5833333333, + 99051.6666666667, 99051.75, 99051.8333333333, 99051.9166666667, 99052, + 99052.0833333333, 99052.1666666667, 99052.25, 99052.3333333333, + 99052.4166666667, 99052.5, 99052.5833333333, 99052.6666666667, 99052.75, + 99052.8333333333, 99052.9166666667, 99053, 99053.0833333333, + 99053.1666666667, 99053.25, 99053.3333333333, 99053.4166666667, 99053.5, + 99053.5833333333, 99053.6666666667, 99053.75, 99053.8333333333, + 99053.9166666667, 99054, 99054.0833333333, 99054.1666666667, 99054.25, + 99054.3333333333, 99054.4166666667, 99054.5, 99054.5833333333, + 99054.6666666667, 99054.75, 99054.8333333333, 99054.9166666667, 99055, + 99055.0833333333, 99055.1666666667, 99055.25, 99055.3333333333, + 99055.4166666667, 99055.5, 99055.5833333333, 99055.6666666667, 99055.75, + 99055.8333333333, 99055.9166666667, 99056, 99056.0833333333, + 99056.1666666667, 99056.25, 99056.3333333333, 99056.4166666667, 99056.5, + 99056.5833333333, 99056.6666666667, 99056.75, 99056.8333333333, + 99056.9166666667, 99057, 99057.0833333333, 99057.1666666667, 99057.25, + 99057.3333333333, 99057.4166666667, 99057.5, 99057.5833333333, + 99057.6666666667, 99057.75, 99057.8333333333, 99057.9166666667, 99058, + 99058.0833333333, 99058.1666666667, 99058.25, 99058.3333333333, + 99058.4166666667, 99058.5, 99058.5833333333, 99058.6666666667, 99058.75, + 99058.8333333333, 99058.9166666667, 99059, 99059.0833333333, + 99059.1666666667, 99059.25, 99059.3333333333, 99059.4166666667, 99059.5, + 99059.5833333333, 99059.6666666667, 99059.75, 99059.8333333333, + 99059.9166666667, 99060, 99060.0833333333, 99060.1666666667, 99060.25, + 99060.3333333333, 99060.4166666667, 99060.5, 99060.5833333333, + 99060.6666666667, 99060.75, 99060.8333333333, 99060.9166666667, 99061, + 99061.0833333333, 99061.1666666667, 99061.25, 99061.3333333333, + 99061.4166666667, 99061.5, 99061.5833333333, 99061.6666666667, 99061.75, + 99061.8333333333, 99061.9166666667, 99062, 99062.0833333333, + 99062.1666666667, 99062.25, 99062.3333333333, 99062.4166666667, 99062.5, + 99062.5833333333, 99062.6666666667, 99062.75, 99062.8333333333, + 99062.9166666667, 99063, 99063.0833333333, 99063.1666666667, 99063.25, + 99063.3333333333, 99063.4166666667, 99063.5, 99063.5833333333, + 99063.6666666667, 99063.75, 99063.8333333333, 99063.9166666667, 99064, + 99064.0833333333, 99064.1666666667, 99064.25, 99064.3333333333, + 99064.4166666667, 99064.5, 99064.5833333333, 99064.6666666667, 99064.75, + 99064.8333333333, 99064.9166666667, 99065, 99065.0833333333, + 99065.1666666667, 99065.25, 99065.3333333333, 99065.4166666667, 99065.5, + 99065.5833333333, 99065.6666666667, 99065.75, 99065.8333333333, + 99065.9166666667, 99066, 99066.0833333333, 99066.1666666667, 99066.25, + 99066.3333333333, 99066.4166666667, 99066.5, 99066.5833333333, + 99066.6666666667, 99066.75, 99066.8333333333, 99066.9166666667, 99067, + 99067.0833333333, 99067.1666666667, 99067.25, 99067.3333333333, + 99067.4166666667, 99067.5, 99067.5833333333, 99067.6666666667, 99067.75, + 99067.8333333333, 99067.9166666667, 99068, 99068.0833333333, + 99068.1666666667, 99068.25, 99068.3333333333, 99068.4166666667, 99068.5, + 99068.5833333333, 99068.6666666667, 99068.75, 99068.8333333333, + 99068.9166666667, 99069, 99069.0833333333, 99069.1666666667, 99069.25, + 99069.3333333333, 99069.4166666667, 99069.5, 99069.5833333333, + 99069.6666666667, 99069.75, 99069.8333333333, 99069.9166666667, 99070, + 99070.0833333333, 99070.1666666667, 99070.25, 99070.3333333333, + 99070.4166666667, 99070.5, 99070.5833333333, 99070.6666666667, 99070.75, + 99070.8333333333, 99070.9166666667, 99071, 99071.0833333333, + 99071.1666666667, 99071.25, 99071.3333333333, 99071.4166666667, 99071.5, + 99071.5833333333, 99071.6666666667, 99071.75, 99071.8333333333, + 99071.9166666667, 99072, 99072.0833333333, 99072.1666666667, 99072.25, + 99072.3333333333, 99072.4166666667, 99072.5, 99072.5833333333, + 99072.6666666667, 99072.75, 99072.8333333333, 99072.9166666667, 99073, + 99073.0833333333, 99073.1666666667, 99073.25, 99073.3333333333, + 99073.4166666667, 99073.5, 99073.5833333333, 99073.6666666667, 99073.75, + 99073.8333333333, 99073.9166666667, 99074, 99074.0833333333, + 99074.1666666667, 99074.25, 99074.3333333333, 99074.4166666667, 99074.5, + 99074.5833333333, 99074.6666666667, 99074.75, 99074.8333333333, + 99074.9166666667, 99075, 99075.0833333333, 99075.1666666667, 99075.25, + 99075.3333333333, 99075.4166666667, 99075.5, 99075.5833333333, + 99075.6666666667, 99075.75, 99075.8333333333, 99075.9166666667, 99076, + 99076.0833333333, 99076.1666666667, 99076.25, 99076.3333333333, + 99076.4166666667, 99076.5, 99076.5833333333, 99076.6666666667, 99076.75, + 99076.8333333333, 99076.9166666667, 99077, 99077.0833333333, + 99077.1666666667, 99077.25, 99077.3333333333, 99077.4166666667, 99077.5, + 99077.5833333333, 99077.6666666667, 99077.75, 99077.8333333333, + 99077.9166666667, 99078, 99078.0833333333, 99078.1666666667, 99078.25, + 99078.3333333333, 99078.4166666667, 99078.5, 99078.5833333333, + 99078.6666666667, 99078.75, 99078.8333333333, 99078.9166666667, 99079, + 99079.0833333333, 99079.1666666667, 99079.25, 99079.3333333333, + 99079.4166666667, 99079.5, 99079.5833333333, 99079.6666666667, 99079.75, + 99079.8333333333, 99079.9166666667, 99080, 99080.0833333333, + 99080.1666666667, 99080.25, 99080.3333333333, 99080.4166666667, 99080.5, + 99080.5833333333, 99080.6666666667, 99080.75, 99080.8333333333, + 99080.9166666667, 99081, 99081.0833333333, 99081.1666666667, 99081.25, + 99081.3333333333, 99081.4166666667, 99081.5, 99081.5833333333, + 99081.6666666667, 99081.75, 99081.8333333333, 99081.9166666667, 99082, + 99082.0833333333, 99082.1666666667, 99082.25, 99082.3333333333, + 99082.4166666667, 99082.5, 99082.5833333333, 99082.6666666667, 99082.75, + 99082.8333333333, 99082.9166666667, 99083, 99083.0833333333, + 99083.1666666667, 99083.25, 99083.3333333333, 99083.4166666667, 99083.5, + 99083.5833333333, 99083.6666666667, 99083.75, 99083.8333333333, + 99083.9166666667, 99084, 99084.0833333333, 99084.1666666667, 99084.25, + 99084.3333333333, 99084.4166666667, 99084.5, 99084.5833333333, + 99084.6666666667, 99084.75, 99084.8333333333, 99084.9166666667, 99085, + 99085.0833333333, 99085.1666666667, 99085.25, 99085.3333333333, + 99085.4166666667, 99085.5, 99085.5833333333, 99085.6666666667, 99085.75, + 99085.8333333333, 99085.9166666667, 99086, 99086.0833333333, + 99086.1666666667, 99086.25, 99086.3333333333, 99086.4166666667, 99086.5, + 99086.5833333333, 99086.6666666667, 99086.75, 99086.8333333333, + 99086.9166666667, 99087, 99087.0833333333, 99087.1666666667, 99087.25, + 99087.3333333333, 99087.4166666667, 99087.5, 99087.5833333333, + 99087.6666666667, 99087.75, 99087.8333333333, 99087.9166666667, 99088, + 99088.0833333333, 99088.1666666667, 99088.25, 99088.3333333333, + 99088.4166666667, 99088.5, 99088.5833333333, 99088.6666666667, 99088.75, + 99088.8333333333, 99088.9166666667, 99089, 99089.0833333333, + 99089.1666666667, 99089.25, 99089.3333333333, 99089.4166666667, 99089.5, + 99089.5833333333, 99089.6666666667, 99089.75, 99089.8333333333, + 99089.9166666667, 99090, 99090.0833333333, 99090.1666666667, 99090.25, + 99090.3333333333, 99090.4166666667, 99090.5, 99090.5833333333, + 99090.6666666667, 99090.75, 99090.8333333333, 99090.9166666667, 99091, + 99091.0833333333, 99091.1666666667, 99091.25, 99091.3333333333, + 99091.4166666667, 99091.5, 99091.5833333333, 99091.6666666667, 99091.75, + 99091.8333333333, 99091.9166666667, 99092, 99092.0833333333, + 99092.1666666667, 99092.25, 99092.3333333333, 99092.4166666667, 99092.5, + 99092.5833333333, 99092.6666666667, 99092.75, 99092.8333333333, + 99092.9166666667, 99093, 99093.0833333333, 99093.1666666667, 99093.25, + 99093.3333333333, 99093.4166666667, 99093.5, 99093.5833333333, + 99093.6666666667, 99093.75, 99093.8333333333, 99093.9166666667, 99094, + 99094.0833333333, 99094.1666666667, 99094.25, 99094.3333333333, + 99094.4166666667, 99094.5, 99094.5833333333, 99094.6666666667, 99094.75, + 99094.8333333333, 99094.9166666667, 99095, 99095.0833333333, + 99095.1666666667, 99095.25, 99095.3333333333, 99095.4166666667, 99095.5, + 99095.5833333333, 99095.6666666667, 99095.75, 99095.8333333333, + 99095.9166666667, 99096, 99096.0833333333, 99096.1666666667, 99096.25, + 99096.3333333333, 99096.4166666667, 99096.5, 99096.5833333333, + 99096.6666666667, 99096.75, 99096.8333333333, 99096.9166666667, 99097, + 99097.0833333333, 99097.1666666667, 99097.25, 99097.3333333333, + 99097.4166666667, 99097.5, 99097.5833333333, 99097.6666666667, 99097.75, + 99097.8333333333, 99097.9166666667, 99098, 99098.0833333333, + 99098.1666666667, 99098.25, 99098.3333333333, 99098.4166666667, 99098.5, + 99098.5833333333, 99098.6666666667, 99098.75, 99098.8333333333, + 99098.9166666667, 99099, 99099.0833333333, 99099.1666666667, 99099.25, + 99099.3333333333, 99099.4166666667, 99099.5, 99099.5833333333, + 99099.6666666667, 99099.75, 99099.8333333333, 99099.9166666667, 99100, + 99100.0833333333, 99100.1666666667, 99100.25, 99100.3333333333, + 99100.4166666667, 99100.5, 99100.5833333333, 99100.6666666667, 99100.75, + 99100.8333333333, 99100.9166666667, 99101, 99101.0833333333, + 99101.1666666667, 99101.25, 99101.3333333333, 99101.4166666667, 99101.5, + 99101.5833333333, 99101.6666666667, 99101.75, 99101.8333333333, + 99101.9166666667, 99102, 99102.0833333333, 99102.1666666667, 99102.25, + 99102.3333333333, 99102.4166666667, 99102.5, 99102.5833333333, + 99102.6666666667, 99102.75, 99102.8333333333, 99102.9166666667, 99103, + 99103.0833333333, 99103.1666666667, 99103.25, 99103.3333333333, + 99103.4166666667, 99103.5, 99103.5833333333, 99103.6666666667, 99103.75, + 99103.8333333333, 99103.9166666667, 99104, 99104.0833333333, + 99104.1666666667, 99104.25, 99104.3333333333, 99104.4166666667, 99104.5, + 99104.5833333333, 99104.6666666667, 99104.75, 99104.8333333333, + 99104.9166666667, 99105, 99105.0833333333, 99105.1666666667, 99105.25, + 99105.3333333333, 99105.4166666667, 99105.5, 99105.5833333333, + 99105.6666666667, 99105.75, 99105.8333333333, 99105.9166666667, 99106, + 99106.0833333333, 99106.1666666667, 99106.25, 99106.3333333333, + 99106.4166666667, 99106.5, 99106.5833333333, 99106.6666666667, 99106.75, + 99106.8333333333, 99106.9166666667, 99107, 99107.0833333333, + 99107.1666666667, 99107.25, 99107.3333333333, 99107.4166666667, 99107.5, + 99107.5833333333, 99107.6666666667, 99107.75, 99107.8333333333, + 99107.9166666667, 99108, 99108.0833333333, 99108.1666666667, 99108.25, + 99108.3333333333, 99108.4166666667, 99108.5, 99108.5833333333, + 99108.6666666667, 99108.75, 99108.8333333333, 99108.9166666667, 99109, + 99109.0833333333, 99109.1666666667, 99109.25, 99109.3333333333, + 99109.4166666667, 99109.5, 99109.5833333333, 99109.6666666667, 99109.75, + 99109.8333333333, 99109.9166666667, 99110, 99110.0833333333, + 99110.1666666667, 99110.25, 99110.3333333333, 99110.4166666667, 99110.5, + 99110.5833333333, 99110.6666666667, 99110.75, 99110.8333333333, + 99110.9166666667, 99111, 99111.0833333333, 99111.1666666667, 99111.25, + 99111.3333333333, 99111.4166666667, 99111.5, 99111.5833333333, + 99111.6666666667, 99111.75, 99111.8333333333, 99111.9166666667, 99112, + 99112.0833333333, 99112.1666666667, 99112.25, 99112.3333333333, + 99112.4166666667, 99112.5, 99112.5833333333, 99112.6666666667, 99112.75, + 99112.8333333333, 99112.9166666667, 99113, 99113.0833333333, + 99113.1666666667, 99113.25, 99113.3333333333, 99113.4166666667, 99113.5, + 99113.5833333333, 99113.6666666667, 99113.75, 99113.8333333333, + 99113.9166666667, 99114, 99114.0833333333, 99114.1666666667, 99114.25, + 99114.3333333333, 99114.4166666667, 99114.5, 99114.5833333333, + 99114.6666666667, 99114.75, 99114.8333333333, 99114.9166666667, 99115, + 99115.0833333333, 99115.1666666667, 99115.25, 99115.3333333333, + 99115.4166666667, 99115.5, 99115.5833333333, 99115.6666666667, 99115.75, + 99115.8333333333, 99115.9166666667, 99116, 99116.0833333333, + 99116.1666666667, 99116.25, 99116.3333333333, 99116.4166666667, 99116.5, + 99116.5833333333, 99116.6666666667, 99116.75, 99116.8333333333, + 99116.9166666667, 99117, 99117.0833333333, 99117.1666666667, 99117.25, + 99117.3333333333, 99117.4166666667, 99117.5, 99117.5833333333, + 99117.6666666667, 99117.75, 99117.8333333333, 99117.9166666667, 99118, + 99118.0833333333, 99118.1666666667, 99118.25, 99118.3333333333, + 99118.4166666667, 99118.5, 99118.5833333333, 99118.6666666667, 99118.75, + 99118.8333333333, 99118.9166666667, 99119, 99119.0833333333, + 99119.1666666667, 99119.25, 99119.3333333333, 99119.4166666667, 99119.5, + 99119.5833333333, 99119.6666666667, 99119.75, 99119.8333333333, + 99119.9166666667, 99120, 99120.0833333333, 99120.1666666667, 99120.25, + 99120.3333333333, 99120.4166666667, 99120.5, 99120.5833333333, + 99120.6666666667, 99120.75, 99120.8333333333, 99120.9166666667, 99121, + 99121.0833333333, 99121.1666666667, 99121.25, 99121.3333333333, + 99121.4166666667, 99121.5, 99121.5833333333, 99121.6666666667, 99121.75, + 99121.8333333333, 99121.9166666667, 99122, 99122.0833333333, + 99122.1666666667, 99122.25, 99122.3333333333, 99122.4166666667, 99122.5, + 99122.5833333333, 99122.6666666667, 99122.75, 99122.8333333333, + 99122.9166666667, 99123, 99123.0833333333, 99123.1666666667, 99123.25, + 99123.3333333333, 99123.4166666667, 99123.5, 99123.5833333333, + 99123.6666666667, 99123.75, 99123.8333333333, 99123.9166666667, 99124, + 99124.0833333333, 99124.1666666667, 99124.25, 99124.3333333333, + 99124.4166666667, 99124.5, 99124.5833333333, 99124.6666666667, 99124.75, + 99124.8333333333, 99124.9166666667, 99125, 99125.0833333333, + 99125.1666666667, 99125.25, 99125.3333333333, 99125.4166666667, 99125.5, + 99125.5833333333, 99125.6666666667, 99125.75, 99125.8333333333, + 99125.9166666667, 99126, 99126.0833333333, 99126.1666666667, 99126.25, + 99126.3333333333, 99126.4166666667, 99126.5, 99126.5833333333, + 99126.6666666667, 99126.75, 99126.8333333333, 99126.9166666667, 99127, + 99127.0833333333, 99127.1666666667, 99127.25, 99127.3333333333, + 99127.4166666667, 99127.5, 99127.5833333333, 99127.6666666667, 99127.75, + 99127.8333333333, 99127.9166666667, 99128, 99128.0833333333, + 99128.1666666667, 99128.25, 99128.3333333333, 99128.4166666667, 99128.5, + 99128.5833333333, 99128.6666666667, 99128.75, 99128.8333333333, + 99128.9166666667, 99129, 99129.0833333333, 99129.1666666667, 99129.25, + 99129.3333333333, 99129.4166666667, 99129.5, 99129.5833333333, + 99129.6666666667, 99129.75, 99129.8333333333, 99129.9166666667, 99130, + 99130.0833333333, 99130.1666666667, 99130.25, 99130.3333333333, + 99130.4166666667, 99130.5, 99130.5833333333, 99130.6666666667, 99130.75, + 99130.8333333333, 99130.9166666667, 99131, 99131.0833333333, + 99131.1666666667, 99131.25, 99131.3333333333, 99131.4166666667, 99131.5, + 99131.5833333333, 99131.6666666667, 99131.75, 99131.8333333333, + 99131.9166666667, 99132, 99132.0833333333, 99132.1666666667, 99132.25, + 99132.3333333333, 99132.4166666667, 99132.5, 99132.5833333333, + 99132.6666666667, 99132.75, 99132.8333333333, 99132.9166666667, 99133, + 99133.0833333333, 99133.1666666667, 99133.25, 99133.3333333333, + 99133.4166666667, 99133.5, 99133.5833333333, 99133.6666666667, 99133.75, + 99133.8333333333, 99133.9166666667, 99134, 99134.0833333333, + 99134.1666666667, 99134.25, 99134.3333333333, 99134.4166666667, 99134.5, + 99134.5833333333, 99134.6666666667, 99134.75, 99134.8333333333, + 99134.9166666667, 99135, 99135.0833333333, 99135.1666666667, 99135.25, + 99135.3333333333, 99135.4166666667, 99135.5, 99135.5833333333, + 99135.6666666667, 99135.75, 99135.8333333333, 99135.9166666667, 99136, + 99136.0833333333, 99136.1666666667, 99136.25, 99136.3333333333, + 99136.4166666667, 99136.5, 99136.5833333333, 99136.6666666667, 99136.75, + 99136.8333333333, 99136.9166666667, 99137, 99137.0833333333, + 99137.1666666667, 99137.25, 99137.3333333333, 99137.4166666667, 99137.5, + 99137.5833333333, 99137.6666666667, 99137.75, 99137.8333333333, + 99137.9166666667, 99138, 99138.0833333333, 99138.1666666667, 99138.25, + 99138.3333333333, 99138.4166666667, 99138.5, 99138.5833333333, + 99138.6666666667, 99138.75, 99138.8333333333, 99138.9166666667, 99139, + 99139.0833333333, 99139.1666666667, 99139.25, 99139.3333333333, + 99139.4166666667, 99139.5, 99139.5833333333, 99139.6666666667, 99139.75, + 99139.8333333333, 99139.9166666667, 99140, 99140.0833333333, + 99140.1666666667, 99140.25, 99140.3333333333, 99140.4166666667, 99140.5, + 99140.5833333333, 99140.6666666667, 99140.75, 99140.8333333333, + 99140.9166666667, 99141, 99141.0833333333, 99141.1666666667, 99141.25, + 99141.3333333333, 99141.4166666667, 99141.5, 99141.5833333333, + 99141.6666666667, 99141.75, 99141.8333333333, 99141.9166666667, 99142, + 99142.0833333333, 99142.1666666667, 99142.25, 99142.3333333333, + 99142.4166666667, 99142.5, 99142.5833333333, 99142.6666666667, 99142.75, + 99142.8333333333, 99142.9166666667, 99143, 99143.0833333333, + 99143.1666666667, 99143.25, 99143.3333333333, 99143.4166666667, 99143.5, + 99143.5833333333, 99143.6666666667, 99143.75, 99143.8333333333, + 99143.9166666667, 99144, 99144.0833333333, 99144.1666666667, 99144.25, + 99144.3333333333, 99144.4166666667, 99144.5, 99144.5833333333, + 99144.6666666667, 99144.75, 99144.8333333333, 99144.9166666667, 99145, + 99145.0833333333, 99145.1666666667, 99145.25, 99145.3333333333, + 99145.4166666667, 99145.5, 99145.5833333333, 99145.6666666667, 99145.75, + 99145.8333333333, 99145.9166666667, 99146, 99146.0833333333, + 99146.1666666667, 99146.25, 99146.3333333333, 99146.4166666667, 99146.5, + 99146.5833333333, 99146.6666666667, 99146.75, 99146.8333333333, + 99146.9166666667, 99147, 99147.0833333333, 99147.1666666667, 99147.25, + 99147.3333333333, 99147.4166666667, 99147.5, 99147.5833333333, + 99147.6666666667, 99147.75, 99147.8333333333, 99147.9166666667, 99148, + 99148.0833333333, 99148.1666666667, 99148.25, 99148.3333333333, + 99148.4166666667, 99148.5, 99148.5833333333, 99148.6666666667, 99148.75, + 99148.8333333333, 99148.9166666667, 99149, 99149.0833333333, + 99149.1666666667, 99149.25, 99149.3333333333, 99149.4166666667, 99149.5, + 99149.5833333333, 99149.6666666667, 99149.75, 99149.8333333333, + 99149.9166666667, 99150, 99150.0833333333, 99150.1666666667, 99150.25, + 99150.3333333333, 99150.4166666667, 99150.5, 99150.5833333333, + 99150.6666666667, 99150.75, 99150.8333333333, 99150.9166666667, 99151, + 99151.0833333333, 99151.1666666667, 99151.25, 99151.3333333333, + 99151.4166666667, 99151.5, 99151.5833333333, 99151.6666666667, 99151.75, + 99151.8333333333, 99151.9166666667, 99152, 99152.0833333333, + 99152.1666666667, 99152.25, 99152.3333333333, 99152.4166666667, 99152.5, + 99152.5833333333, 99152.6666666667, 99152.75, 99152.8333333333, + 99152.9166666667, 99153, 99153.0833333333, 99153.1666666667, 99153.25, + 99153.3333333333, 99153.4166666667, 99153.5, 99153.5833333333, + 99153.6666666667, 99153.75, 99153.8333333333, 99153.9166666667, 99154, + 99154.0833333333, 99154.1666666667, 99154.25, 99154.3333333333, + 99154.4166666667, 99154.5, 99154.5833333333, 99154.6666666667, 99154.75, + 99154.8333333333, 99154.9166666667, 99155, 99155.0833333333, + 99155.1666666667, 99155.25, 99155.3333333333, 99155.4166666667, 99155.5, + 99155.5833333333, 99155.6666666667, 99155.75, 99155.8333333333, + 99155.9166666667, 99156, 99156.0833333333, 99156.1666666667, 99156.25, + 99156.3333333333, 99156.4166666667, 99156.5, 99156.5833333333, + 99156.6666666667, 99156.75, 99156.8333333333, 99156.9166666667, 99157, + 99157.0833333333, 99157.1666666667, 99157.25, 99157.3333333333, + 99157.4166666667, 99157.5, 99157.5833333333, 99157.6666666667, 99157.75, + 99157.8333333333, 99157.9166666667, 99158, 99158.0833333333, + 99158.1666666667, 99158.25, 99158.3333333333, 99158.4166666667, 99158.5, + 99158.5833333333, 99158.6666666667, 99158.75, 99158.8333333333, + 99158.9166666667, 99159, 99159.0833333333, 99159.1666666667, 99159.25, + 99159.3333333333, 99159.4166666667, 99159.5, 99159.5833333333, + 99159.6666666667, 99159.75, 99159.8333333333, 99159.9166666667, 99160, + 99160.0833333333, 99160.1666666667, 99160.25, 99160.3333333333, + 99160.4166666667, 99160.5, 99160.5833333333, 99160.6666666667, 99160.75, + 99160.8333333333, 99160.9166666667, 99161, 99161.0833333333, + 99161.1666666667, 99161.25, 99161.3333333333, 99161.4166666667, 99161.5, + 99161.5833333333, 99161.6666666667, 99161.75, 99161.8333333333, + 99161.9166666667, 99162, 99162.0833333333, 99162.1666666667, 99162.25, + 99162.3333333333, 99162.4166666667, 99162.5, 99162.5833333333, + 99162.6666666667, 99162.75, 99162.8333333333, 99162.9166666667, 99163, + 99163.0833333333, 99163.1666666667, 99163.25, 99163.3333333333, + 99163.4166666667, 99163.5, 99163.5833333333, 99163.6666666667, 99163.75, + 99163.8333333333, 99163.9166666667, 99164, 99164.0833333333, + 99164.1666666667, 99164.25, 99164.3333333333, 99164.4166666667, 99164.5, + 99164.5833333333, 99164.6666666667, 99164.75, 99164.8333333333, + 99164.9166666667, 99165, 99165.0833333333, 99165.1666666667, 99165.25, + 99165.3333333333, 99165.4166666667, 99165.5, 99165.5833333333, + 99165.6666666667, 99165.75, 99165.8333333333, 99165.9166666667, 99166, + 99166.0833333333, 99166.1666666667, 99166.25, 99166.3333333333, + 99166.4166666667, 99166.5, 99166.5833333333, 99166.6666666667, 99166.75, + 99166.8333333333, 99166.9166666667, 99167, 99167.0833333333, + 99167.1666666667, 99167.25, 99167.3333333333, 99167.4166666667, 99167.5, + 99167.5833333333, 99167.6666666667, 99167.75, 99167.8333333333, + 99167.9166666667, 99168, 99168.0833333333, 99168.1666666667, 99168.25, + 99168.3333333333, 99168.4166666667, 99168.5, 99168.5833333333, + 99168.6666666667, 99168.75, 99168.8333333333, 99168.9166666667, 99169, + 99169.0833333333, 99169.1666666667, 99169.25, 99169.3333333333, + 99169.4166666667, 99169.5, 99169.5833333333, 99169.6666666667, 99169.75, + 99169.8333333333, 99169.9166666667, 99170, 99170.0833333333, + 99170.1666666667, 99170.25, 99170.3333333333, 99170.4166666667, 99170.5, + 99170.5833333333, 99170.6666666667, 99170.75, 99170.8333333333, + 99170.9166666667, 99171, 99171.0833333333, 99171.1666666667, 99171.25, + 99171.3333333333, 99171.4166666667, 99171.5, 99171.5833333333, + 99171.6666666667, 99171.75, 99171.8333333333, 99171.9166666667, 99172, + 99172.0833333333, 99172.1666666667, 99172.25, 99172.3333333333, + 99172.4166666667, 99172.5, 99172.5833333333, 99172.6666666667, 99172.75, + 99172.8333333333, 99172.9166666667, 99173, 99173.0833333333, + 99173.1666666667, 99173.25, 99173.3333333333, 99173.4166666667, 99173.5, + 99173.5833333333, 99173.6666666667, 99173.75, 99173.8333333333, + 99173.9166666667, 99174, 99174.0833333333, 99174.1666666667, 99174.25, + 99174.3333333333, 99174.4166666667, 99174.5, 99174.5833333333, + 99174.6666666667, 99174.75, 99174.8333333333, 99174.9166666667, 99175, + 99175.0833333333, 99175.1666666667, 99175.25, 99175.3333333333, + 99175.4166666667, 99175.5, 99175.5833333333, 99175.6666666667, 99175.75, + 99175.8333333333, 99175.9166666667, 99176, 99176.0833333333, + 99176.1666666667, 99176.25, 99176.3333333333, 99176.4166666667, 99176.5, + 99176.5833333333, 99176.6666666667, 99176.75, 99176.8333333333, + 99176.9166666667, 99177, 99177.0833333333, 99177.1666666667, 99177.25, + 99177.3333333333, 99177.4166666667, 99177.5, 99177.5833333333, + 99177.6666666667, 99177.75, 99177.8333333333, 99177.9166666667, 99178, + 99178.0833333333, 99178.1666666667, 99178.25, 99178.3333333333, + 99178.4166666667, 99178.5, 99178.5833333333, 99178.6666666667, 99178.75, + 99178.8333333333, 99178.9166666667, 99179, 99179.0833333333, + 99179.1666666667, 99179.25, 99179.3333333333, 99179.4166666667, 99179.5, + 99179.5833333333, 99179.6666666667, 99179.75, 99179.8333333333, + 99179.9166666667, 99180, 99180.0833333333, 99180.1666666667, 99180.25, + 99180.3333333333, 99180.4166666667, 99180.5, 99180.5833333333, + 99180.6666666667, 99180.75, 99180.8333333333, 99180.9166666667, 99181, + 99181.0833333333, 99181.1666666667, 99181.25, 99181.3333333333, + 99181.4166666667, 99181.5, 99181.5833333333, 99181.6666666667, 99181.75, + 99181.8333333333, 99181.9166666667, 99182, 99182.0833333333, + 99182.1666666667, 99182.25, 99182.3333333333, 99182.4166666667, 99182.5, + 99182.5833333333, 99182.6666666667, 99182.75, 99182.8333333333, + 99182.9166666667, 99183, 99183.0833333333, 99183.1666666667, 99183.25, + 99183.3333333333, 99183.4166666667, 99183.5, 99183.5833333333, + 99183.6666666667, 99183.75, 99183.8333333333, 99183.9166666667, 99184, + 99184.0833333333, 99184.1666666667, 99184.25, 99184.3333333333, + 99184.4166666667, 99184.5, 99184.5833333333, 99184.6666666667, 99184.75, + 99184.8333333333, 99184.9166666667, 99185, 99185.0833333333, + 99185.1666666667, 99185.25, 99185.3333333333, 99185.4166666667, 99185.5, + 99185.5833333333, 99185.6666666667, 99185.75, 99185.8333333333, + 99185.9166666667, 99186, 99186.0833333333, 99186.1666666667, 99186.25, + 99186.3333333333, 99186.4166666667, 99186.5, 99186.5833333333, + 99186.6666666667, 99186.75, 99186.8333333333, 99186.9166666667, 99187, + 99187.0833333333, 99187.1666666667, 99187.25, 99187.3333333333, + 99187.4166666667, 99187.5, 99187.5833333333, 99187.6666666667, 99187.75, + 99187.8333333333, 99187.9166666667, 99188, 99188.0833333333, + 99188.1666666667, 99188.25, 99188.3333333333, 99188.4166666667, 99188.5, + 99188.5833333333, 99188.6666666667, 99188.75, 99188.8333333333, + 99188.9166666667, 99189, 99189.0833333333, 99189.1666666667, 99189.25, + 99189.3333333333, 99189.4166666667, 99189.5, 99189.5833333333, + 99189.6666666667, 99189.75, 99189.8333333333, 99189.9166666667, 99190, + 99190.0833333333, 99190.1666666667, 99190.25, 99190.3333333333, + 99190.4166666667, 99190.5, 99190.5833333333, 99190.6666666667, 99190.75, + 99190.8333333333, 99190.9166666667, 99191, 99191.0833333333, + 99191.1666666667, 99191.25, 99191.3333333333, 99191.4166666667, 99191.5, + 99191.5833333333, 99191.6666666667, 99191.75, 99191.8333333333, + 99191.9166666667, 99192, 99192.0833333333, 99192.1666666667, 99192.25, + 99192.3333333333, 99192.4166666667, 99192.5, 99192.5833333333, + 99192.6666666667, 99192.75, 99192.8333333333, 99192.9166666667, 99193, + 99193.0833333333, 99193.1666666667, 99193.25, 99193.3333333333, + 99193.4166666667, 99193.5, 99193.5833333333, 99193.6666666667, 99193.75, + 99193.8333333333, 99193.9166666667, 99194, 99194.0833333333, + 99194.1666666667, 99194.25, 99194.3333333333, 99194.4166666667, 99194.5, + 99194.5833333333, 99194.6666666667, 99194.75, 99194.8333333333, + 99194.9166666667, 99195, 99195.0833333333, 99195.1666666667, 99195.25, + 99195.3333333333, 99195.4166666667, 99195.5, 99195.5833333333, + 99195.6666666667, 99195.75, 99195.8333333333, 99195.9166666667, 99196, + 99196.0833333333, 99196.1666666667, 99196.25, 99196.3333333333, + 99196.4166666667, 99196.5, 99196.5833333333, 99196.6666666667, 99196.75, + 99196.8333333333, 99196.9166666667, 99197, 99197.0833333333, + 99197.1666666667, 99197.25, 99197.3333333333, 99197.4166666667, 99197.5, + 99197.5833333333, 99197.6666666667, 99197.75, 99197.8333333333, + 99197.9166666667, 99198, 99198.0833333333, 99198.1666666667, 99198.25, + 99198.3333333333, 99198.4166666667, 99198.5, 99198.5833333333, + 99198.6666666667, 99198.75, 99198.8333333333, 99198.9166666667, 99199, + 99199.0833333333, 99199.1666666667, 99199.25, 99199.3333333333, + 99199.4166666667, 99199.5, 99199.5833333333, 99199.6666666667, 99199.75, + 99199.8333333333, 99199.9166666667, 99200, 99200.0833333333, + 99200.1666666667, 99200.25, 99200.3333333333, 99200.4166666667, 99200.5, + 99200.5833333333, 99200.6666666667, 99200.75, 99200.8333333333, + 99200.9166666667, 99201, 99201.0833333333, 99201.1666666667, 99201.25, + 99201.3333333333, 99201.4166666667, 99201.5, 99201.5833333333, + 99201.6666666667, 99201.75, 99201.8333333333, 99201.9166666667, 99202, + 99202.0833333333, 99202.1666666667, 99202.25, 99202.3333333333, + 99202.4166666667, 99202.5, 99202.5833333333, 99202.6666666667, 99202.75, + 99202.8333333333, 99202.9166666667, 99203, 99203.0833333333, + 99203.1666666667, 99203.25, 99203.3333333333, 99203.4166666667, 99203.5, + 99203.5833333333, 99203.6666666667, 99203.75, 99203.8333333333, + 99203.9166666667, 99204, 99204.0833333333, 99204.1666666667, 99204.25, + 99204.3333333333, 99204.4166666667, 99204.5, 99204.5833333333, + 99204.6666666667, 99204.75, 99204.8333333333, 99204.9166666667, 99205, + 99205.0833333333, 99205.1666666667, 99205.25, 99205.3333333333, + 99205.4166666667, 99205.5, 99205.5833333333, 99205.6666666667, 99205.75, + 99205.8333333333, 99205.9166666667, 99206, 99206.0833333333, + 99206.1666666667, 99206.25, 99206.3333333333, 99206.4166666667, 99206.5, + 99206.5833333333, 99206.6666666667, 99206.75, 99206.8333333333, + 99206.9166666667, 99207, 99207.0833333333, 99207.1666666667, 99207.25, + 99207.3333333333, 99207.4166666667, 99207.5, 99207.5833333333, + 99207.6666666667, 99207.75, 99207.8333333333, 99207.9166666667, 99208, + 99208.0833333333, 99208.1666666667, 99208.25, 99208.3333333333, + 99208.4166666667, 99208.5, 99208.5833333333, 99208.6666666667, 99208.75, + 99208.8333333333, 99208.9166666667, 99209, 99209.0833333333, + 99209.1666666667, 99209.25, 99209.3333333333, 99209.4166666667, 99209.5, + 99209.5833333333, 99209.6666666667, 99209.75, 99209.8333333333, + 99209.9166666667, 99210, 99210.0833333333, 99210.1666666667, 99210.25, + 99210.3333333333, 99210.4166666667, 99210.5, 99210.5833333333, + 99210.6666666667, 99210.75, 99210.8333333333, 99210.9166666667, 99211, + 99211.0833333333, 99211.1666666667, 99211.25, 99211.3333333333, + 99211.4166666667, 99211.5, 99211.5833333333, 99211.6666666667, 99211.75, + 99211.8333333333, 99211.9166666667, 99212, 99212.0833333333, + 99212.1666666667, 99212.25, 99212.3333333333, 99212.4166666667, 99212.5, + 99212.5833333333, 99212.6666666667, 99212.75, 99212.8333333333, + 99212.9166666667, 99213, 99213.0833333333, 99213.1666666667, 99213.25, + 99213.3333333333, 99213.4166666667, 99213.5, 99213.5833333333, + 99213.6666666667, 99213.75, 99213.8333333333, 99213.9166666667, 99214, + 99214.0833333333, 99214.1666666667, 99214.25, 99214.3333333333, + 99214.4166666667, 99214.5, 99214.5833333333, 99214.6666666667, 99214.75, + 99214.8333333333, 99214.9166666667, 99215, 99215.0833333333, + 99215.1666666667, 99215.25, 99215.3333333333, 99215.4166666667, 99215.5, + 99215.5833333333, 99215.6666666667, 99215.75, 99215.8333333333, + 99215.9166666667, 99216, 99216.0833333333, 99216.1666666667, 99216.25, + 99216.3333333333, 99216.4166666667, 99216.5, 99216.5833333333, + 99216.6666666667, 99216.75, 99216.8333333333, 99216.9166666667, 99217, + 99217.0833333333, 99217.1666666667, 99217.25, 99217.3333333333, + 99217.4166666667, 99217.5, 99217.5833333333, 99217.6666666667, 99217.75, + 99217.8333333333, 99217.9166666667, 99218, 99218.0833333333, + 99218.1666666667, 99218.25, 99218.3333333333, 99218.4166666667, 99218.5, + 99218.5833333333, 99218.6666666667, 99218.75, 99218.8333333333, + 99218.9166666667, 99219, 99219.0833333333, 99219.1666666667, 99219.25, + 99219.3333333333, 99219.4166666667, 99219.5, 99219.5833333333, + 99219.6666666667, 99219.75, 99219.8333333333, 99219.9166666667, 99220, + 99220.0833333333, 99220.1666666667, 99220.25, 99220.3333333333, + 99220.4166666667, 99220.5, 99220.5833333333, 99220.6666666667, 99220.75, + 99220.8333333333, 99220.9166666667, 99221, 99221.0833333333, + 99221.1666666667, 99221.25, 99221.3333333333, 99221.4166666667, 99221.5, + 99221.5833333333, 99221.6666666667, 99221.75, 99221.8333333333, + 99221.9166666667, 99222, 99222.0833333333, 99222.1666666667, 99222.25, + 99222.3333333333, 99222.4166666667, 99222.5, 99222.5833333333, + 99222.6666666667, 99222.75, 99222.8333333333, 99222.9166666667, 99223, + 99223.0833333333, 99223.1666666667, 99223.25, 99223.3333333333, + 99223.4166666667, 99223.5, 99223.5833333333, 99223.6666666667, 99223.75, + 99223.8333333333, 99223.9166666667, 99224, 99224.0833333333, + 99224.1666666667, 99224.25, 99224.3333333333, 99224.4166666667, 99224.5, + 99224.5833333333, 99224.6666666667, 99224.75, 99224.8333333333, + 99224.9166666667, 99225, 99225.0833333333, 99225.1666666667, 99225.25, + 99225.3333333333, 99225.4166666667, 99225.5, 99225.5833333333, + 99225.6666666667, 99225.75, 99225.8333333333, 99225.9166666667, 99226, + 99226.0833333333, 99226.1666666667, 99226.25, 99226.3333333333, + 99226.4166666667, 99226.5, 99226.5833333333, 99226.6666666667, 99226.75, + 99226.8333333333, 99226.9166666667, 99227, 99227.0833333333, + 99227.1666666667, 99227.25, 99227.3333333333, 99227.4166666667, 99227.5, + 99227.5833333333, 99227.6666666667, 99227.75, 99227.8333333333, + 99227.9166666667, 99228, 99228.0833333333, 99228.1666666667, 99228.25, + 99228.3333333333, 99228.4166666667, 99228.5, 99228.5833333333, + 99228.6666666667, 99228.75, 99228.8333333333, 99228.9166666667, 99229, + 99229.0833333333, 99229.1666666667, 99229.25, 99229.3333333333, + 99229.4166666667, 99229.5, 99229.5833333333, 99229.6666666667, 99229.75, + 99229.8333333333, 99229.9166666667, 99230, 99230.0833333333, + 99230.1666666667, 99230.25, 99230.3333333333, 99230.4166666667, 99230.5, + 99230.5833333333, 99230.6666666667, 99230.75, 99230.8333333333, + 99230.9166666667, 99231, 99231.0833333333, 99231.1666666667, 99231.25, + 99231.3333333333, 99231.4166666667, 99231.5, 99231.5833333333, + 99231.6666666667, 99231.75, 99231.8333333333, 99231.9166666667, 99232, + 99232.0833333333, 99232.1666666667, 99232.25, 99232.3333333333, + 99232.4166666667, 99232.5, 99232.5833333333, 99232.6666666667, 99232.75, + 99232.8333333333, 99232.9166666667, 99233, 99233.0833333333, + 99233.1666666667, 99233.25, 99233.3333333333, 99233.4166666667, 99233.5, + 99233.5833333333, 99233.6666666667, 99233.75, 99233.8333333333, + 99233.9166666667, 99234, 99234.0833333333, 99234.1666666667, 99234.25, + 99234.3333333333, 99234.4166666667, 99234.5, 99234.5833333333, + 99234.6666666667, 99234.75, 99234.8333333333, 99234.9166666667, 99235, + 99235.0833333333, 99235.1666666667, 99235.25, 99235.3333333333, + 99235.4166666667, 99235.5, 99235.5833333333, 99235.6666666667, 99235.75, + 99235.8333333333, 99235.9166666667, 99236, 99236.0833333333, + 99236.1666666667, 99236.25, 99236.3333333333, 99236.4166666667, 99236.5, + 99236.5833333333, 99236.6666666667, 99236.75, 99236.8333333333, + 99236.9166666667, 99237, 99237.0833333333, 99237.1666666667, 99237.25, + 99237.3333333333, 99237.4166666667, 99237.5, 99237.5833333333, + 99237.6666666667, 99237.75, 99237.8333333333, 99237.9166666667, 99238, + 99238.0833333333, 99238.1666666667, 99238.25, 99238.3333333333, + 99238.4166666667, 99238.5, 99238.5833333333, 99238.6666666667, 99238.75, + 99238.8333333333, 99238.9166666667, 99239, 99239.0833333333, + 99239.1666666667, 99239.25, 99239.3333333333, 99239.4166666667, 99239.5, + 99239.5833333333, 99239.6666666667, 99239.75, 99239.8333333333, + 99239.9166666667, 99240, 99240.0833333333, 99240.1666666667, 99240.25, + 99240.3333333333, 99240.4166666667, 99240.5, 99240.5833333333, + 99240.6666666667, 99240.75, 99240.8333333333, 99240.9166666667, 99241, + 99241.0833333333, 99241.1666666667, 99241.25, 99241.3333333333, + 99241.4166666667, 99241.5, 99241.5833333333, 99241.6666666667, 99241.75, + 99241.8333333333, 99241.9166666667, 99242, 99242.0833333333, + 99242.1666666667, 99242.25, 99242.3333333333, 99242.4166666667, 99242.5, + 99242.5833333333, 99242.6666666667, 99242.75, 99242.8333333333, + 99242.9166666667, 99243, 99243.0833333333, 99243.1666666667, 99243.25, + 99243.3333333333, 99243.4166666667, 99243.5, 99243.5833333333, + 99243.6666666667, 99243.75, 99243.8333333333, 99243.9166666667, 99244, + 99244.0833333333, 99244.1666666667, 99244.25, 99244.3333333333, + 99244.4166666667, 99244.5, 99244.5833333333, 99244.6666666667, 99244.75, + 99244.8333333333, 99244.9166666667, 99245, 99245.0833333333, + 99245.1666666667, 99245.25, 99245.3333333333, 99245.4166666667, 99245.5, + 99245.5833333333, 99245.6666666667, 99245.75, 99245.8333333333, + 99245.9166666667, 99246, 99246.0833333333, 99246.1666666667, 99246.25, + 99246.3333333333, 99246.4166666667, 99246.5, 99246.5833333333, + 99246.6666666667, 99246.75, 99246.8333333333, 99246.9166666667, 99247, + 99247.0833333333, 99247.1666666667, 99247.25, 99247.3333333333, + 99247.4166666667, 99247.5, 99247.5833333333, 99247.6666666667, 99247.75, + 99247.8333333333, 99247.9166666667, 99248, 99248.0833333333, + 99248.1666666667, 99248.25, 99248.3333333333, 99248.4166666667, 99248.5, + 99248.5833333333, 99248.6666666667, 99248.75, 99248.8333333333, + 99248.9166666667, 99249, 99249.0833333333, 99249.1666666667, 99249.25, + 99249.3333333333, 99249.4166666667, 99249.5, 99249.5833333333, + 99249.6666666667, 99249.75, 99249.8333333333, 99249.9166666667, 99250, + 99250.0833333333, 99250.1666666667, 99250.25, 99250.3333333333, + 99250.4166666667, 99250.5, 99250.5833333333, 99250.6666666667, 99250.75, + 99250.8333333333, 99250.9166666667, 99251, 99251.0833333333, + 99251.1666666667, 99251.25, 99251.3333333333, 99251.4166666667, 99251.5, + 99251.5833333333, 99251.6666666667, 99251.75, 99251.8333333333, + 99251.9166666667, 99252, 99252.0833333333, 99252.1666666667, 99252.25, + 99252.3333333333, 99252.4166666667, 99252.5, 99252.5833333333, + 99252.6666666667, 99252.75, 99252.8333333333, 99252.9166666667, 99253, + 99253.0833333333, 99253.1666666667, 99253.25, 99253.3333333333, + 99253.4166666667, 99253.5, 99253.5833333333, 99253.6666666667, 99253.75, + 99253.8333333333, 99253.9166666667, 99254, 99254.0833333333, + 99254.1666666667, 99254.25, 99254.3333333333, 99254.4166666667, 99254.5, + 99254.5833333333, 99254.6666666667, 99254.75, 99254.8333333333, + 99254.9166666667, 99255, 99255.0833333333, 99255.1666666667, 99255.25, + 99255.3333333333, 99255.4166666667, 99255.5, 99255.5833333333, + 99255.6666666667, 99255.75, 99255.8333333333, 99255.9166666667, 99256, + 99256.0833333333, 99256.1666666667, 99256.25, 99256.3333333333, + 99256.4166666667, 99256.5, 99256.5833333333, 99256.6666666667, 99256.75, + 99256.8333333333, 99256.9166666667, 99257, 99257.0833333333, + 99257.1666666667, 99257.25, 99257.3333333333, 99257.4166666667, 99257.5, + 99257.5833333333, 99257.6666666667, 99257.75, 99257.8333333333, + 99257.9166666667, 99258, 99258.0833333333, 99258.1666666667, 99258.25, + 99258.3333333333, 99258.4166666667, 99258.5, 99258.5833333333, + 99258.6666666667, 99258.75, 99258.8333333333, 99258.9166666667, 99259, + 99259.0833333333, 99259.1666666667, 99259.25, 99259.3333333333, + 99259.4166666667, 99259.5, 99259.5833333333, 99259.6666666667, 99259.75, + 99259.8333333333, 99259.9166666667, 99260, 99260.0833333333, + 99260.1666666667, 99260.25, 99260.3333333333, 99260.4166666667, 99260.5, + 99260.5833333333, 99260.6666666667, 99260.75, 99260.8333333333, + 99260.9166666667, 99261, 99261.0833333333, 99261.1666666667, 99261.25, + 99261.3333333333, 99261.4166666667, 99261.5, 99261.5833333333, + 99261.6666666667, 99261.75, 99261.8333333333, 99261.9166666667, 99262, + 99262.0833333333, 99262.1666666667, 99262.25, 99262.3333333333, + 99262.4166666667, 99262.5, 99262.5833333333, 99262.6666666667, 99262.75, + 99262.8333333333, 99262.9166666667, 99263, 99263.0833333333, + 99263.1666666667, 99263.25, 99263.3333333333, 99263.4166666667, 99263.5, + 99263.5833333333, 99263.6666666667, 99263.75, 99263.8333333333, + 99263.9166666667, 99264, 99264.0833333333, 99264.1666666667, 99264.25, + 99264.3333333333, 99264.4166666667, 99264.5, 99264.5833333333, + 99264.6666666667, 99264.75, 99264.8333333333, 99264.9166666667, 99265, + 99265.0833333333, 99265.1666666667, 99265.25, 99265.3333333333, + 99265.4166666667, 99265.5, 99265.5833333333, 99265.6666666667, 99265.75, + 99265.8333333333, 99265.9166666667, 99266, 99266.0833333333, + 99266.1666666667, 99266.25, 99266.3333333333, 99266.4166666667, 99266.5, + 99266.5833333333, 99266.6666666667, 99266.75, 99266.8333333333, + 99266.9166666667, 99267, 99267.0833333333, 99267.1666666667, 99267.25, + 99267.3333333333, 99267.4166666667, 99267.5, 99267.5833333333, + 99267.6666666667, 99267.75, 99267.8333333333, 99267.9166666667, 99268, + 99268.0833333333, 99268.1666666667, 99268.25, 99268.3333333333, + 99268.4166666667, 99268.5, 99268.5833333333, 99268.6666666667, 99268.75, + 99268.8333333333, 99268.9166666667, 99269, 99269.0833333333, + 99269.1666666667, 99269.25, 99269.3333333333, 99269.4166666667, 99269.5, + 99269.5833333333, 99269.6666666667, 99269.75, 99269.8333333333, + 99269.9166666667, 99270, 99270.0833333333, 99270.1666666667, 99270.25, + 99270.3333333333, 99270.4166666667, 99270.5, 99270.5833333333, + 99270.6666666667, 99270.75, 99270.8333333333, 99270.9166666667, 99271, + 99271.0833333333, 99271.1666666667, 99271.25, 99271.3333333333, + 99271.4166666667, 99271.5, 99271.5833333333, 99271.6666666667, 99271.75, + 99271.8333333333, 99271.9166666667, 99272, 99272.0833333333, + 99272.1666666667, 99272.25, 99272.3333333333, 99272.4166666667, 99272.5, + 99272.5833333333, 99272.6666666667, 99272.75, 99272.8333333333, + 99272.9166666667, 99273, 99273.0833333333, 99273.1666666667, 99273.25, + 99273.3333333333, 99273.4166666667, 99273.5, 99273.5833333333, + 99273.6666666667, 99273.75, 99273.8333333333, 99273.9166666667, 99274, + 99274.0833333333, 99274.1666666667, 99274.25, 99274.3333333333, + 99274.4166666667, 99274.5, 99274.5833333333, 99274.6666666667, 99274.75, + 99274.8333333333, 99274.9166666667, 99275, 99275.0833333333, + 99275.1666666667, 99275.25, 99275.3333333333, 99275.4166666667, 99275.5, + 99275.5833333333, 99275.6666666667, 99275.75, 99275.8333333333, + 99275.9166666667, 99276, 99276.0833333333, 99276.1666666667, 99276.25, + 99276.3333333333, 99276.4166666667, 99276.5, 99276.5833333333, + 99276.6666666667, 99276.75, 99276.8333333333, 99276.9166666667, 99277, + 99277.0833333333, 99277.1666666667, 99277.25, 99277.3333333333, + 99277.4166666667, 99277.5, 99277.5833333333, 99277.6666666667, 99277.75, + 99277.8333333333, 99277.9166666667, 99278, 99278.0833333333, + 99278.1666666667, 99278.25, 99278.3333333333, 99278.4166666667, 99278.5, + 99278.5833333333, 99278.6666666667, 99278.75, 99278.8333333333, + 99278.9166666667, 99279, 99279.0833333333, 99279.1666666667, 99279.25, + 99279.3333333333, 99279.4166666667, 99279.5, 99279.5833333333, + 99279.6666666667, 99279.75, 99279.8333333333, 99279.9166666667, 99280, + 99280.0833333333, 99280.1666666667, 99280.25, 99280.3333333333, + 99280.4166666667, 99280.5, 99280.5833333333, 99280.6666666667, 99280.75, + 99280.8333333333, 99280.9166666667, 99281, 99281.0833333333, + 99281.1666666667, 99281.25, 99281.3333333333, 99281.4166666667, 99281.5, + 99281.5833333333, 99281.6666666667, 99281.75, 99281.8333333333, + 99281.9166666667, 99282, 99282.0833333333, 99282.1666666667, 99282.25, + 99282.3333333333, 99282.4166666667, 99282.5, 99282.5833333333, + 99282.6666666667, 99282.75, 99282.8333333333, 99282.9166666667, 99283, + 99283.0833333333, 99283.1666666667, 99283.25, 99283.3333333333, + 99283.4166666667, 99283.5, 99283.5833333333, 99283.6666666667, 99283.75, + 99283.8333333333, 99283.9166666667, 99284, 99284.0833333333, + 99284.1666666667, 99284.25, 99284.3333333333, 99284.4166666667, 99284.5, + 99284.5833333333, 99284.6666666667, 99284.75, 99284.8333333333, + 99284.9166666667, 99285, 99285.0833333333, 99285.1666666667, 99285.25, + 99285.3333333333, 99285.4166666667, 99285.5, 99285.5833333333, + 99285.6666666667, 99285.75, 99285.8333333333, 99285.9166666667, 99286, + 99286.0833333333, 99286.1666666667, 99286.25, 99286.3333333333, + 99286.4166666667, 99286.5, 99286.5833333333, 99286.6666666667, 99286.75, + 99286.8333333333, 99286.9166666667, 99287, 99287.0833333333, + 99287.1666666667, 99287.25, 99287.3333333333, 99287.4166666667, 99287.5, + 99287.5833333333, 99287.6666666667, 99287.75, 99287.8333333333, + 99287.9166666667, 99288, 99288.0833333333, 99288.1666666667, 99288.25, + 99288.3333333333, 99288.4166666667, 99288.5, 99288.5833333333, + 99288.6666666667, 99288.75, 99288.8333333333, 99288.9166666667, 99289, + 99289.0833333333, 99289.1666666667, 99289.25, 99289.3333333333, + 99289.4166666667, 99289.5, 99289.5833333333, 99289.6666666667, 99289.75, + 99289.8333333333, 99289.9166666667, 99290, 99290.0833333333, + 99290.1666666667, 99290.25, 99290.3333333333, 99290.4166666667, 99290.5, + 99290.5833333333, 99290.6666666667, 99290.75, 99290.8333333333, + 99290.9166666667, 99291, 99291.0833333333, 99291.1666666667, 99291.25, + 99291.3333333333, 99291.4166666667, 99291.5, 99291.5833333333, + 99291.6666666667, 99291.75, 99291.8333333333, 99291.9166666667, 99292, + 99292.0833333333, 99292.1666666667, 99292.25, 99292.3333333333, + 99292.4166666667, 99292.5, 99292.5833333333, 99292.6666666667, 99292.75, + 99292.8333333333, 99292.9166666667, 99293, 99293.0833333333, + 99293.1666666667, 99293.25, 99293.3333333333, 99293.4166666667, 99293.5, + 99293.5833333333, 99293.6666666667, 99293.75, 99293.8333333333, + 99293.9166666667, 99294, 99294.0833333333, 99294.1666666667, 99294.25, + 99294.3333333333, 99294.4166666667, 99294.5, 99294.5833333333, + 99294.6666666667, 99294.75, 99294.8333333333, 99294.9166666667, 99295, + 99295.0833333333, 99295.1666666667, 99295.25, 99295.3333333333, + 99295.4166666667, 99295.5, 99295.5833333333, 99295.6666666667, 99295.75, + 99295.8333333333, 99295.9166666667, 99296, 99296.0833333333, + 99296.1666666667, 99296.25, 99296.3333333333, 99296.4166666667, 99296.5, + 99296.5833333333, 99296.6666666667, 99296.75, 99296.8333333333, + 99296.9166666667, 99297, 99297.0833333333, 99297.1666666667, 99297.25, + 99297.3333333333, 99297.4166666667, 99297.5, 99297.5833333333, + 99297.6666666667, 99297.75, 99297.8333333333, 99297.9166666667, 99298, + 99298.0833333333, 99298.1666666667, 99298.25, 99298.3333333333, + 99298.4166666667, 99298.5, 99298.5833333333, 99298.6666666667, 99298.75, + 99298.8333333333, 99298.9166666667, 99299, 99299.0833333333, + 99299.1666666667, 99299.25, 99299.3333333333, 99299.4166666667, 99299.5, + 99299.5833333333, 99299.6666666667, 99299.75, 99299.8333333333, + 99299.9166666667, 99300, 99300.0833333333, 99300.1666666667, 99300.25, + 99300.3333333333, 99300.4166666667, 99300.5, 99300.5833333333, + 99300.6666666667, 99300.75, 99300.8333333333, 99300.9166666667, 99301, + 99301.0833333333, 99301.1666666667, 99301.25, 99301.3333333333, + 99301.4166666667, 99301.5, 99301.5833333333, 99301.6666666667, 99301.75, + 99301.8333333333, 99301.9166666667, 99302, 99302.0833333333, + 99302.1666666667, 99302.25, 99302.3333333333, 99302.4166666667, 99302.5, + 99302.5833333333, 99302.6666666667, 99302.75, 99302.8333333333, + 99302.9166666667, 99303, 99303.0833333333, 99303.1666666667, 99303.25, + 99303.3333333333, 99303.4166666667, 99303.5, 99303.5833333333, + 99303.6666666667, 99303.75, 99303.8333333333, 99303.9166666667, 99304, + 99304.0833333333, 99304.1666666667, 99304.25, 99304.3333333333, + 99304.4166666667, 99304.5, 99304.5833333333, 99304.6666666667, 99304.75, + 99304.8333333333, 99304.9166666667, 99305, 99305.0833333333, + 99305.1666666667, 99305.25, 99305.3333333333, 99305.4166666667, 99305.5, + 99305.5833333333, 99305.6666666667, 99305.75, 99305.8333333333, + 99305.9166666667, 99306, 99306.0833333333, 99306.1666666667, 99306.25, + 99306.3333333333, 99306.4166666667, 99306.5, 99306.5833333333, + 99306.6666666667, 99306.75, 99306.8333333333, 99306.9166666667, 99307, + 99307.0833333333, 99307.1666666667, 99307.25, 99307.3333333333, + 99307.4166666667, 99307.5, 99307.5833333333, 99307.6666666667, 99307.75, + 99307.8333333333, 99307.9166666667, 99308, 99308.0833333333, + 99308.1666666667, 99308.25, 99308.3333333333, 99308.4166666667, 99308.5, + 99308.5833333333, 99308.6666666667, 99308.75, 99308.8333333333, + 99308.9166666667, 99309, 99309.0833333333, 99309.1666666667, 99309.25, + 99309.3333333333, 99309.4166666667, 99309.5, 99309.5833333333, + 99309.6666666667, 99309.75, 99309.8333333333, 99309.9166666667, 99310, + 99310.0833333333, 99310.1666666667, 99310.25, 99310.3333333333, + 99310.4166666667, 99310.5, 99310.5833333333, 99310.6666666667, 99310.75, + 99310.8333333333, 99310.9166666667, 99311, 99311.0833333333, + 99311.1666666667, 99311.25, 99311.3333333333, 99311.4166666667, 99311.5, + 99311.5833333333, 99311.6666666667, 99311.75, 99311.8333333333, + 99311.9166666667, 99312, 99312.0833333333, 99312.1666666667, 99312.25, + 99312.3333333333, 99312.4166666667, 99312.5, 99312.5833333333, + 99312.6666666667, 99312.75, 99312.8333333333, 99312.9166666667, 99313, + 99313.0833333333, 99313.1666666667, 99313.25, 99313.3333333333, + 99313.4166666667, 99313.5, 99313.5833333333, 99313.6666666667, 99313.75, + 99313.8333333333, 99313.9166666667, 99314, 99314.0833333333, + 99314.1666666667, 99314.25, 99314.3333333333, 99314.4166666667, 99314.5, + 99314.5833333333, 99314.6666666667, 99314.75, 99314.8333333333, + 99314.9166666667, 99315, 99315.0833333333, 99315.1666666667, 99315.25, + 99315.3333333333, 99315.4166666667, 99315.5, 99315.5833333333, + 99315.6666666667, 99315.75, 99315.8333333333, 99315.9166666667, 99316, + 99316.0833333333, 99316.1666666667, 99316.25, 99316.3333333333, + 99316.4166666667, 99316.5, 99316.5833333333, 99316.6666666667, 99316.75, + 99316.8333333333, 99316.9166666667, 99317, 99317.0833333333, + 99317.1666666667, 99317.25, 99317.3333333333, 99317.4166666667, 99317.5, + 99317.5833333333, 99317.6666666667, 99317.75, 99317.8333333333, + 99317.9166666667, 99318, 99318.0833333333, 99318.1666666667, 99318.25, + 99318.3333333333, 99318.4166666667, 99318.5, 99318.5833333333, + 99318.6666666667, 99318.75, 99318.8333333333, 99318.9166666667, 99319, + 99319.0833333333, 99319.1666666667, 99319.25, 99319.3333333333, + 99319.4166666667, 99319.5, 99319.5833333333, 99319.6666666667, 99319.75, + 99319.8333333333, 99319.9166666667, 99320, 99320.0833333333, + 99320.1666666667, 99320.25, 99320.3333333333, 99320.4166666667, 99320.5, + 99320.5833333333, 99320.6666666667, 99320.75, 99320.8333333333, + 99320.9166666667, 99321, 99321.0833333333, 99321.1666666667, 99321.25, + 99321.3333333333, 99321.4166666667, 99321.5, 99321.5833333333, + 99321.6666666667, 99321.75, 99321.8333333333, 99321.9166666667, 99322, + 99322.0833333333, 99322.1666666667, 99322.25, 99322.3333333333, + 99322.4166666667, 99322.5, 99322.5833333333, 99322.6666666667, 99322.75, + 99322.8333333333, 99322.9166666667, 99323, 99323.0833333333, + 99323.1666666667, 99323.25, 99323.3333333333, 99323.4166666667, 99323.5, + 99323.5833333333, 99323.6666666667, 99323.75, 99323.8333333333, + 99323.9166666667, 99324, 99324.0833333333, 99324.1666666667, 99324.25, + 99324.3333333333, 99324.4166666667, 99324.5, 99324.5833333333, + 99324.6666666667, 99324.75, 99324.8333333333, 99324.9166666667, 99325, + 99325.0833333333, 99325.1666666667, 99325.25, 99325.3333333333, + 99325.4166666667, 99325.5, 99325.5833333333, 99325.6666666667, 99325.75, + 99325.8333333333, 99325.9166666667, 99326, 99326.0833333333, + 99326.1666666667, 99326.25, 99326.3333333333, 99326.4166666667, 99326.5, + 99326.5833333333, 99326.6666666667, 99326.75, 99326.8333333333, + 99326.9166666667, 99327, 99327.0833333333, 99327.1666666667, 99327.25, + 99327.3333333333, 99327.4166666667, 99327.5, 99327.5833333333, + 99327.6666666667, 99327.75, 99327.8333333333, 99327.9166666667, 99328, + 99328.0833333333, 99328.1666666667, 99328.25, 99328.3333333333, + 99328.4166666667, 99328.5, 99328.5833333333, 99328.6666666667, 99328.75, + 99328.8333333333, 99328.9166666667, 99329, 99329.0833333333, + 99329.1666666667, 99329.25, 99329.3333333333, 99329.4166666667, 99329.5, + 99329.5833333333, 99329.6666666667, 99329.75, 99329.8333333333, + 99329.9166666667, 99330, 99330.0833333333, 99330.1666666667, 99330.25, + 99330.3333333333, 99330.4166666667, 99330.5, 99330.5833333333, + 99330.6666666667, 99330.75, 99330.8333333333, 99330.9166666667, 99331, + 99331.0833333333, 99331.1666666667, 99331.25, 99331.3333333333, + 99331.4166666667, 99331.5, 99331.5833333333, 99331.6666666667, 99331.75, + 99331.8333333333, 99331.9166666667, 99332, 99332.0833333333, + 99332.1666666667, 99332.25, 99332.3333333333, 99332.4166666667, 99332.5, + 99332.5833333333, 99332.6666666667, 99332.75, 99332.8333333333, + 99332.9166666667, 99333, 99333.0833333333, 99333.1666666667, 99333.25, + 99333.3333333333, 99333.4166666667, 99333.5, 99333.5833333333, + 99333.6666666667, 99333.75, 99333.8333333333, 99333.9166666667, 99334, + 99334.0833333333, 99334.1666666667, 99334.25, 99334.3333333333, + 99334.4166666667, 99334.5, 99334.5833333333, 99334.6666666667, 99334.75, + 99334.8333333333, 99334.9166666667, 99335, 99335.0833333333, + 99335.1666666667, 99335.25, 99335.3333333333, 99335.4166666667, 99335.5, + 99335.5833333333, 99335.6666666667, 99335.75, 99335.8333333333, + 99335.9166666667, 99336, 99336.0833333333, 99336.1666666667, 99336.25, + 99336.3333333333, 99336.4166666667, 99336.5, 99336.5833333333, + 99336.6666666667, 99336.75, 99336.8333333333, 99336.9166666667, 99337, + 99337.0833333333, 99337.1666666667, 99337.25, 99337.3333333333, + 99337.4166666667, 99337.5, 99337.5833333333, 99337.6666666667, 99337.75, + 99337.8333333333, 99337.9166666667, 99338, 99338.0833333333, + 99338.1666666667, 99338.25, 99338.3333333333, 99338.4166666667, 99338.5, + 99338.5833333333, 99338.6666666667, 99338.75, 99338.8333333333, + 99338.9166666667, 99339, 99339.0833333333, 99339.1666666667, 99339.25, + 99339.3333333333, 99339.4166666667, 99339.5, 99339.5833333333, + 99339.6666666667, 99339.75, 99339.8333333333, 99339.9166666667, 99340, + 99340.0833333333, 99340.1666666667, 99340.25, 99340.3333333333, + 99340.4166666667, 99340.5, 99340.5833333333, 99340.6666666667, 99340.75, + 99340.8333333333, 99340.9166666667, 99341, 99341.0833333333, + 99341.1666666667, 99341.25, 99341.3333333333, 99341.4166666667, 99341.5, + 99341.5833333333, 99341.6666666667, 99341.75, 99341.8333333333, + 99341.9166666667, 99342, 99342.0833333333, 99342.1666666667, 99342.25, + 99342.3333333333, 99342.4166666667, 99342.5, 99342.5833333333, + 99342.6666666667, 99342.75, 99342.8333333333, 99342.9166666667, 99343, + 99343.0833333333, 99343.1666666667, 99343.25, 99343.3333333333, + 99343.4166666667, 99343.5, 99343.5833333333, 99343.6666666667, 99343.75, + 99343.8333333333, 99343.9166666667, 99344, 99344.0833333333, + 99344.1666666667, 99344.25, 99344.3333333333, 99344.4166666667, 99344.5, + 99344.5833333333, 99344.6666666667, 99344.75, 99344.8333333333, + 99344.9166666667, 99345, 99345.0833333333, 99345.1666666667, 99345.25, + 99345.3333333333, 99345.4166666667, 99345.5, 99345.5833333333, + 99345.6666666667, 99345.75, 99345.8333333333, 99345.9166666667 ; + + time_bounds = + 98980, 98980.09, + 98980.09, 98980.16, + 98980.16, 98980.25, + 98980.25, 98980.34, + 98980.34, 98980.41, + 98980.41, 98980.5, + 98980.5, 98980.59, + 98980.59, 98980.66, + 98980.66, 98980.75, + 98980.75, 98980.84, + 98980.84, 98980.91, + 98980.91, 98981, + 98981, 98981.09, + 98981.09, 98981.16, + 98981.16, 98981.25, + 98981.25, 98981.34, + 98981.34, 98981.41, + 98981.41, 98981.5, + 98981.5, 98981.59, + 98981.59, 98981.66, + 98981.66, 98981.75, + 98981.75, 98981.84, + 98981.84, 98981.91, + 98981.91, 98982, + 98982, 98982.09, + 98982.09, 98982.16, + 98982.16, 98982.25, + 98982.25, 98982.34, + 98982.34, 98982.41, + 98982.41, 98982.5, + 98982.5, 98982.59, + 98982.59, 98982.66, + 98982.66, 98982.75, + 98982.75, 98982.84, + 98982.84, 98982.91, + 98982.91, 98983, + 98983, 98983.09, + 98983.09, 98983.16, + 98983.16, 98983.25, + 98983.25, 98983.34, + 98983.34, 98983.41, + 98983.41, 98983.5, + 98983.5, 98983.59, + 98983.59, 98983.66, + 98983.66, 98983.75, + 98983.75, 98983.84, + 98983.84, 98983.91, + 98983.91, 98984, + 98984, 98984.09, + 98984.09, 98984.16, + 98984.16, 98984.25, + 98984.25, 98984.34, + 98984.34, 98984.41, + 98984.41, 98984.5, + 98984.5, 98984.59, + 98984.59, 98984.66, + 98984.66, 98984.75, + 98984.75, 98984.84, + 98984.84, 98984.91, + 98984.91, 98985, + 98985, 98985.09, + 98985.09, 98985.16, + 98985.16, 98985.25, + 98985.25, 98985.34, + 98985.34, 98985.41, + 98985.41, 98985.5, + 98985.5, 98985.59, + 98985.59, 98985.66, + 98985.66, 98985.75, + 98985.75, 98985.84, + 98985.84, 98985.91, + 98985.91, 98986, + 98986, 98986.09, + 98986.09, 98986.16, + 98986.16, 98986.25, + 98986.25, 98986.34, + 98986.34, 98986.41, + 98986.41, 98986.5, + 98986.5, 98986.59, + 98986.59, 98986.66, + 98986.66, 98986.75, + 98986.75, 98986.84, + 98986.84, 98986.91, + 98986.91, 98987, + 98987, 98987.09, + 98987.09, 98987.16, + 98987.16, 98987.25, + 98987.25, 98987.34, + 98987.34, 98987.41, + 98987.41, 98987.5, + 98987.5, 98987.59, + 98987.59, 98987.66, + 98987.66, 98987.75, + 98987.75, 98987.84, + 98987.84, 98987.91, + 98987.91, 98988, + 98988, 98988.09, + 98988.09, 98988.16, + 98988.16, 98988.25, + 98988.25, 98988.34, + 98988.34, 98988.41, + 98988.41, 98988.5, + 98988.5, 98988.59, + 98988.59, 98988.66, + 98988.66, 98988.75, + 98988.75, 98988.84, + 98988.84, 98988.91, + 98988.91, 98989, + 98989, 98989.09, + 98989.09, 98989.16, + 98989.16, 98989.25, + 98989.25, 98989.34, + 98989.34, 98989.41, + 98989.41, 98989.5, + 98989.5, 98989.59, + 98989.59, 98989.66, + 98989.66, 98989.75, + 98989.75, 98989.84, + 98989.84, 98989.91, + 98989.91, 98990, + 98990, 98990.09, + 98990.09, 98990.16, + 98990.16, 98990.25, + 98990.25, 98990.34, + 98990.34, 98990.41, + 98990.41, 98990.5, + 98990.5, 98990.59, + 98990.59, 98990.66, + 98990.66, 98990.75, + 98990.75, 98990.84, + 98990.84, 98990.91, + 98990.91, 98991, + 98991, 98991.09, + 98991.09, 98991.16, + 98991.16, 98991.25, + 98991.25, 98991.34, + 98991.34, 98991.41, + 98991.41, 98991.5, + 98991.5, 98991.59, + 98991.59, 98991.66, + 98991.66, 98991.75, + 98991.75, 98991.84, + 98991.84, 98991.91, + 98991.91, 98992, + 98992, 98992.09, + 98992.09, 98992.16, + 98992.16, 98992.25, + 98992.25, 98992.34, + 98992.34, 98992.41, + 98992.41, 98992.5, + 98992.5, 98992.59, + 98992.59, 98992.66, + 98992.66, 98992.75, + 98992.75, 98992.84, + 98992.84, 98992.91, + 98992.91, 98993, + 98993, 98993.09, + 98993.09, 98993.16, + 98993.16, 98993.25, + 98993.25, 98993.34, + 98993.34, 98993.41, + 98993.41, 98993.5, + 98993.5, 98993.59, + 98993.59, 98993.66, + 98993.66, 98993.75, + 98993.75, 98993.84, + 98993.84, 98993.91, + 98993.91, 98994, + 98994, 98994.09, + 98994.09, 98994.16, + 98994.16, 98994.25, + 98994.25, 98994.34, + 98994.34, 98994.41, + 98994.41, 98994.5, + 98994.5, 98994.59, + 98994.59, 98994.66, + 98994.66, 98994.75, + 98994.75, 98994.84, + 98994.84, 98994.91, + 98994.91, 98995, + 98995, 98995.09, + 98995.09, 98995.16, + 98995.16, 98995.25, + 98995.25, 98995.34, + 98995.34, 98995.41, + 98995.41, 98995.5, + 98995.5, 98995.59, + 98995.59, 98995.66, + 98995.66, 98995.75, + 98995.75, 98995.84, + 98995.84, 98995.91, + 98995.91, 98996, + 98996, 98996.09, + 98996.09, 98996.16, + 98996.16, 98996.25, + 98996.25, 98996.34, + 98996.34, 98996.41, + 98996.41, 98996.5, + 98996.5, 98996.59, + 98996.59, 98996.66, + 98996.66, 98996.75, + 98996.75, 98996.84, + 98996.84, 98996.91, + 98996.91, 98997, + 98997, 98997.09, + 98997.09, 98997.16, + 98997.16, 98997.25, + 98997.25, 98997.34, + 98997.34, 98997.41, + 98997.41, 98997.5, + 98997.5, 98997.59, + 98997.59, 98997.66, + 98997.66, 98997.75, + 98997.75, 98997.84, + 98997.84, 98997.91, + 98997.91, 98998, + 98998, 98998.09, + 98998.09, 98998.16, + 98998.16, 98998.25, + 98998.25, 98998.34, + 98998.34, 98998.41, + 98998.41, 98998.5, + 98998.5, 98998.59, + 98998.59, 98998.66, + 98998.66, 98998.75, + 98998.75, 98998.84, + 98998.84, 98998.91, + 98998.91, 98999, + 98999, 98999.09, + 98999.09, 98999.16, + 98999.16, 98999.25, + 98999.25, 98999.34, + 98999.34, 98999.41, + 98999.41, 98999.5, + 98999.5, 98999.59, + 98999.59, 98999.66, + 98999.66, 98999.75, + 98999.75, 98999.84, + 98999.84, 98999.91, + 98999.91, 99000, + 99000, 99000.09, + 99000.09, 99000.16, + 99000.16, 99000.25, + 99000.25, 99000.34, + 99000.34, 99000.41, + 99000.41, 99000.5, + 99000.5, 99000.59, + 99000.59, 99000.66, + 99000.66, 99000.75, + 99000.75, 99000.84, + 99000.84, 99000.91, + 99000.91, 99001, + 99001, 99001.09, + 99001.09, 99001.16, + 99001.16, 99001.25, + 99001.25, 99001.34, + 99001.34, 99001.41, + 99001.41, 99001.5, + 99001.5, 99001.59, + 99001.59, 99001.66, + 99001.66, 99001.75, + 99001.75, 99001.84, + 99001.84, 99001.91, + 99001.91, 99002, + 99002, 99002.09, + 99002.09, 99002.16, + 99002.16, 99002.25, + 99002.25, 99002.34, + 99002.34, 99002.41, + 99002.41, 99002.5, + 99002.5, 99002.59, + 99002.59, 99002.66, + 99002.66, 99002.75, + 99002.75, 99002.84, + 99002.84, 99002.91, + 99002.91, 99003, + 99003, 99003.09, + 99003.09, 99003.16, + 99003.16, 99003.25, + 99003.25, 99003.34, + 99003.34, 99003.41, + 99003.41, 99003.5, + 99003.5, 99003.59, + 99003.59, 99003.66, + 99003.66, 99003.75, + 99003.75, 99003.84, + 99003.84, 99003.91, + 99003.91, 99004, + 99004, 99004.09, + 99004.09, 99004.16, + 99004.16, 99004.25, + 99004.25, 99004.34, + 99004.34, 99004.41, + 99004.41, 99004.5, + 99004.5, 99004.59, + 99004.59, 99004.66, + 99004.66, 99004.75, + 99004.75, 99004.84, + 99004.84, 99004.91, + 99004.91, 99005, + 99005, 99005.09, + 99005.09, 99005.16, + 99005.16, 99005.25, + 99005.25, 99005.34, + 99005.34, 99005.41, + 99005.41, 99005.5, + 99005.5, 99005.59, + 99005.59, 99005.66, + 99005.66, 99005.75, + 99005.75, 99005.84, + 99005.84, 99005.91, + 99005.91, 99006, + 99006, 99006.09, + 99006.09, 99006.16, + 99006.16, 99006.25, + 99006.25, 99006.34, + 99006.34, 99006.41, + 99006.41, 99006.5, + 99006.5, 99006.59, + 99006.59, 99006.66, + 99006.66, 99006.75, + 99006.75, 99006.84, + 99006.84, 99006.91, + 99006.91, 99007, + 99007, 99007.09, + 99007.09, 99007.16, + 99007.16, 99007.25, + 99007.25, 99007.34, + 99007.34, 99007.41, + 99007.41, 99007.5, + 99007.5, 99007.59, + 99007.59, 99007.66, + 99007.66, 99007.75, + 99007.75, 99007.84, + 99007.84, 99007.91, + 99007.91, 99008, + 99008, 99008.09, + 99008.09, 99008.16, + 99008.16, 99008.25, + 99008.25, 99008.34, + 99008.34, 99008.41, + 99008.41, 99008.5, + 99008.5, 99008.59, + 99008.59, 99008.66, + 99008.66, 99008.75, + 99008.75, 99008.84, + 99008.84, 99008.91, + 99008.91, 99009, + 99009, 99009.09, + 99009.09, 99009.16, + 99009.16, 99009.25, + 99009.25, 99009.34, + 99009.34, 99009.41, + 99009.41, 99009.5, + 99009.5, 99009.59, + 99009.59, 99009.66, + 99009.66, 99009.75, + 99009.75, 99009.84, + 99009.84, 99009.91, + 99009.91, 99010, + 99010, 99010.09, + 99010.09, 99010.16, + 99010.16, 99010.25, + 99010.25, 99010.34, + 99010.34, 99010.41, + 99010.41, 99010.5, + 99010.5, 99010.59, + 99010.59, 99010.66, + 99010.66, 99010.75, + 99010.75, 99010.84, + 99010.84, 99010.91, + 99010.91, 99011, + 99011, 99011.09, + 99011.09, 99011.16, + 99011.16, 99011.25, + 99011.25, 99011.34, + 99011.34, 99011.41, + 99011.41, 99011.5, + 99011.5, 99011.59, + 99011.59, 99011.66, + 99011.66, 99011.75, + 99011.75, 99011.84, + 99011.84, 99011.91, + 99011.91, 99012, + 99012, 99012.09, + 99012.09, 99012.16, + 99012.16, 99012.25, + 99012.25, 99012.34, + 99012.34, 99012.41, + 99012.41, 99012.5, + 99012.5, 99012.59, + 99012.59, 99012.66, + 99012.66, 99012.75, + 99012.75, 99012.84, + 99012.84, 99012.91, + 99012.91, 99013, + 99013, 99013.09, + 99013.09, 99013.16, + 99013.16, 99013.25, + 99013.25, 99013.34, + 99013.34, 99013.41, + 99013.41, 99013.5, + 99013.5, 99013.59, + 99013.59, 99013.66, + 99013.66, 99013.75, + 99013.75, 99013.84, + 99013.84, 99013.91, + 99013.91, 99014, + 99014, 99014.09, + 99014.09, 99014.16, + 99014.16, 99014.25, + 99014.25, 99014.34, + 99014.34, 99014.41, + 99014.41, 99014.5, + 99014.5, 99014.59, + 99014.59, 99014.66, + 99014.66, 99014.75, + 99014.75, 99014.84, + 99014.84, 99014.91, + 99014.91, 99015, + 99015, 99015.09, + 99015.09, 99015.16, + 99015.16, 99015.25, + 99015.25, 99015.34, + 99015.34, 99015.41, + 99015.41, 99015.5, + 99015.5, 99015.59, + 99015.59, 99015.66, + 99015.66, 99015.75, + 99015.75, 99015.84, + 99015.84, 99015.91, + 99015.91, 99016, + 99016, 99016.09, + 99016.09, 99016.16, + 99016.16, 99016.25, + 99016.25, 99016.34, + 99016.34, 99016.41, + 99016.41, 99016.5, + 99016.5, 99016.59, + 99016.59, 99016.66, + 99016.66, 99016.75, + 99016.75, 99016.84, + 99016.84, 99016.91, + 99016.91, 99017, + 99017, 99017.09, + 99017.09, 99017.16, + 99017.16, 99017.25, + 99017.25, 99017.34, + 99017.34, 99017.41, + 99017.41, 99017.5, + 99017.5, 99017.59, + 99017.59, 99017.66, + 99017.66, 99017.75, + 99017.75, 99017.84, + 99017.84, 99017.91, + 99017.91, 99018, + 99018, 99018.09, + 99018.09, 99018.16, + 99018.16, 99018.25, + 99018.25, 99018.34, + 99018.34, 99018.41, + 99018.41, 99018.5, + 99018.5, 99018.59, + 99018.59, 99018.66, + 99018.66, 99018.75, + 99018.75, 99018.84, + 99018.84, 99018.91, + 99018.91, 99019, + 99019, 99019.09, + 99019.09, 99019.16, + 99019.16, 99019.25, + 99019.25, 99019.34, + 99019.34, 99019.41, + 99019.41, 99019.5, + 99019.5, 99019.59, + 99019.59, 99019.66, + 99019.66, 99019.75, + 99019.75, 99019.84, + 99019.84, 99019.91, + 99019.91, 99020, + 99020, 99020.09, + 99020.09, 99020.16, + 99020.16, 99020.25, + 99020.25, 99020.34, + 99020.34, 99020.41, + 99020.41, 99020.5, + 99020.5, 99020.59, + 99020.59, 99020.66, + 99020.66, 99020.75, + 99020.75, 99020.84, + 99020.84, 99020.91, + 99020.91, 99021, + 99021, 99021.09, + 99021.09, 99021.16, + 99021.16, 99021.25, + 99021.25, 99021.34, + 99021.34, 99021.41, + 99021.41, 99021.5, + 99021.5, 99021.59, + 99021.59, 99021.66, + 99021.66, 99021.75, + 99021.75, 99021.84, + 99021.84, 99021.91, + 99021.91, 99022, + 99022, 99022.09, + 99022.09, 99022.16, + 99022.16, 99022.25, + 99022.25, 99022.34, + 99022.34, 99022.41, + 99022.41, 99022.5, + 99022.5, 99022.59, + 99022.59, 99022.66, + 99022.66, 99022.75, + 99022.75, 99022.84, + 99022.84, 99022.91, + 99022.91, 99023, + 99023, 99023.09, + 99023.09, 99023.16, + 99023.16, 99023.25, + 99023.25, 99023.34, + 99023.34, 99023.41, + 99023.41, 99023.5, + 99023.5, 99023.59, + 99023.59, 99023.66, + 99023.66, 99023.75, + 99023.75, 99023.84, + 99023.84, 99023.91, + 99023.91, 99024, + 99024, 99024.09, + 99024.09, 99024.16, + 99024.16, 99024.25, + 99024.25, 99024.34, + 99024.34, 99024.41, + 99024.41, 99024.5, + 99024.5, 99024.59, + 99024.59, 99024.66, + 99024.66, 99024.75, + 99024.75, 99024.84, + 99024.84, 99024.91, + 99024.91, 99025, + 99025, 99025.09, + 99025.09, 99025.16, + 99025.16, 99025.25, + 99025.25, 99025.34, + 99025.34, 99025.41, + 99025.41, 99025.5, + 99025.5, 99025.59, + 99025.59, 99025.66, + 99025.66, 99025.75, + 99025.75, 99025.84, + 99025.84, 99025.91, + 99025.91, 99026, + 99026, 99026.09, + 99026.09, 99026.16, + 99026.16, 99026.25, + 99026.25, 99026.34, + 99026.34, 99026.41, + 99026.41, 99026.5, + 99026.5, 99026.59, + 99026.59, 99026.66, + 99026.66, 99026.75, + 99026.75, 99026.84, + 99026.84, 99026.91, + 99026.91, 99027, + 99027, 99027.09, + 99027.09, 99027.16, + 99027.16, 99027.25, + 99027.25, 99027.34, + 99027.34, 99027.41, + 99027.41, 99027.5, + 99027.5, 99027.59, + 99027.59, 99027.66, + 99027.66, 99027.75, + 99027.75, 99027.84, + 99027.84, 99027.91, + 99027.91, 99028, + 99028, 99028.09, + 99028.09, 99028.16, + 99028.16, 99028.25, + 99028.25, 99028.34, + 99028.34, 99028.41, + 99028.41, 99028.5, + 99028.5, 99028.59, + 99028.59, 99028.66, + 99028.66, 99028.75, + 99028.75, 99028.84, + 99028.84, 99028.91, + 99028.91, 99029, + 99029, 99029.09, + 99029.09, 99029.16, + 99029.16, 99029.25, + 99029.25, 99029.34, + 99029.34, 99029.41, + 99029.41, 99029.5, + 99029.5, 99029.59, + 99029.59, 99029.66, + 99029.66, 99029.75, + 99029.75, 99029.84, + 99029.84, 99029.91, + 99029.91, 99030, + 99030, 99030.09, + 99030.09, 99030.16, + 99030.16, 99030.25, + 99030.25, 99030.34, + 99030.34, 99030.41, + 99030.41, 99030.5, + 99030.5, 99030.59, + 99030.59, 99030.66, + 99030.66, 99030.75, + 99030.75, 99030.84, + 99030.84, 99030.91, + 99030.91, 99031, + 99031, 99031.09, + 99031.09, 99031.16, + 99031.16, 99031.25, + 99031.25, 99031.34, + 99031.34, 99031.41, + 99031.41, 99031.5, + 99031.5, 99031.59, + 99031.59, 99031.66, + 99031.66, 99031.75, + 99031.75, 99031.84, + 99031.84, 99031.91, + 99031.91, 99032, + 99032, 99032.09, + 99032.09, 99032.16, + 99032.16, 99032.25, + 99032.25, 99032.34, + 99032.34, 99032.41, + 99032.41, 99032.5, + 99032.5, 99032.59, + 99032.59, 99032.66, + 99032.66, 99032.75, + 99032.75, 99032.84, + 99032.84, 99032.91, + 99032.91, 99033, + 99033, 99033.09, + 99033.09, 99033.16, + 99033.16, 99033.25, + 99033.25, 99033.34, + 99033.34, 99033.41, + 99033.41, 99033.5, + 99033.5, 99033.59, + 99033.59, 99033.66, + 99033.66, 99033.75, + 99033.75, 99033.84, + 99033.84, 99033.91, + 99033.91, 99034, + 99034, 99034.09, + 99034.09, 99034.16, + 99034.16, 99034.25, + 99034.25, 99034.34, + 99034.34, 99034.41, + 99034.41, 99034.5, + 99034.5, 99034.59, + 99034.59, 99034.66, + 99034.66, 99034.75, + 99034.75, 99034.84, + 99034.84, 99034.91, + 99034.91, 99035, + 99035, 99035.09, + 99035.09, 99035.16, + 99035.16, 99035.25, + 99035.25, 99035.34, + 99035.34, 99035.41, + 99035.41, 99035.5, + 99035.5, 99035.59, + 99035.59, 99035.66, + 99035.66, 99035.75, + 99035.75, 99035.84, + 99035.84, 99035.91, + 99035.91, 99036, + 99036, 99036.09, + 99036.09, 99036.16, + 99036.16, 99036.25, + 99036.25, 99036.34, + 99036.34, 99036.41, + 99036.41, 99036.5, + 99036.5, 99036.59, + 99036.59, 99036.66, + 99036.66, 99036.75, + 99036.75, 99036.84, + 99036.84, 99036.91, + 99036.91, 99037, + 99037, 99037.09, + 99037.09, 99037.16, + 99037.16, 99037.25, + 99037.25, 99037.34, + 99037.34, 99037.41, + 99037.41, 99037.5, + 99037.5, 99037.59, + 99037.59, 99037.66, + 99037.66, 99037.75, + 99037.75, 99037.84, + 99037.84, 99037.91, + 99037.91, 99038, + 99038, 99038.09, + 99038.09, 99038.16, + 99038.16, 99038.25, + 99038.25, 99038.34, + 99038.34, 99038.41, + 99038.41, 99038.5, + 99038.5, 99038.59, + 99038.59, 99038.66, + 99038.66, 99038.75, + 99038.75, 99038.84, + 99038.84, 99038.91, + 99038.91, 99039, + 99039, 99039.09, + 99039.09, 99039.16, + 99039.16, 99039.25, + 99039.25, 99039.34, + 99039.34, 99039.41, + 99039.41, 99039.5, + 99039.5, 99039.59, + 99039.59, 99039.66, + 99039.66, 99039.75, + 99039.75, 99039.84, + 99039.84, 99039.91, + 99039.91, 99040, + 99040, 99040.09, + 99040.09, 99040.16, + 99040.16, 99040.25, + 99040.25, 99040.34, + 99040.34, 99040.41, + 99040.41, 99040.5, + 99040.5, 99040.59, + 99040.59, 99040.66, + 99040.66, 99040.75, + 99040.75, 99040.84, + 99040.84, 99040.91, + 99040.91, 99041, + 99041, 99041.09, + 99041.09, 99041.16, + 99041.16, 99041.25, + 99041.25, 99041.34, + 99041.34, 99041.41, + 99041.41, 99041.5, + 99041.5, 99041.59, + 99041.59, 99041.66, + 99041.66, 99041.75, + 99041.75, 99041.84, + 99041.84, 99041.91, + 99041.91, 99042, + 99042, 99042.09, + 99042.09, 99042.16, + 99042.16, 99042.25, + 99042.25, 99042.34, + 99042.34, 99042.41, + 99042.41, 99042.5, + 99042.5, 99042.59, + 99042.59, 99042.66, + 99042.66, 99042.75, + 99042.75, 99042.84, + 99042.84, 99042.91, + 99042.91, 99043, + 99043, 99043.09, + 99043.09, 99043.16, + 99043.16, 99043.25, + 99043.25, 99043.34, + 99043.34, 99043.41, + 99043.41, 99043.5, + 99043.5, 99043.59, + 99043.59, 99043.66, + 99043.66, 99043.75, + 99043.75, 99043.84, + 99043.84, 99043.91, + 99043.91, 99044, + 99044, 99044.09, + 99044.09, 99044.16, + 99044.16, 99044.25, + 99044.25, 99044.34, + 99044.34, 99044.41, + 99044.41, 99044.5, + 99044.5, 99044.59, + 99044.59, 99044.66, + 99044.66, 99044.75, + 99044.75, 99044.84, + 99044.84, 99044.91, + 99044.91, 99045, + 99045, 99045.09, + 99045.09, 99045.16, + 99045.16, 99045.25, + 99045.25, 99045.34, + 99045.34, 99045.41, + 99045.41, 99045.5, + 99045.5, 99045.59, + 99045.59, 99045.66, + 99045.66, 99045.75, + 99045.75, 99045.84, + 99045.84, 99045.91, + 99045.91, 99046, + 99046, 99046.09, + 99046.09, 99046.16, + 99046.16, 99046.25, + 99046.25, 99046.34, + 99046.34, 99046.41, + 99046.41, 99046.5, + 99046.5, 99046.59, + 99046.59, 99046.66, + 99046.66, 99046.75, + 99046.75, 99046.84, + 99046.84, 99046.91, + 99046.91, 99047, + 99047, 99047.09, + 99047.09, 99047.16, + 99047.16, 99047.25, + 99047.25, 99047.34, + 99047.34, 99047.41, + 99047.41, 99047.5, + 99047.5, 99047.59, + 99047.59, 99047.66, + 99047.66, 99047.75, + 99047.75, 99047.84, + 99047.84, 99047.91, + 99047.91, 99048, + 99048, 99048.09, + 99048.09, 99048.16, + 99048.16, 99048.25, + 99048.25, 99048.34, + 99048.34, 99048.41, + 99048.41, 99048.5, + 99048.5, 99048.59, + 99048.59, 99048.66, + 99048.66, 99048.75, + 99048.75, 99048.84, + 99048.84, 99048.91, + 99048.91, 99049, + 99049, 99049.09, + 99049.09, 99049.16, + 99049.16, 99049.25, + 99049.25, 99049.34, + 99049.34, 99049.41, + 99049.41, 99049.5, + 99049.5, 99049.59, + 99049.59, 99049.66, + 99049.66, 99049.75, + 99049.75, 99049.84, + 99049.84, 99049.91, + 99049.91, 99050, + 99050, 99050.09, + 99050.09, 99050.16, + 99050.16, 99050.25, + 99050.25, 99050.34, + 99050.34, 99050.41, + 99050.41, 99050.5, + 99050.5, 99050.59, + 99050.59, 99050.66, + 99050.66, 99050.75, + 99050.75, 99050.84, + 99050.84, 99050.91, + 99050.91, 99051, + 99051, 99051.09, + 99051.09, 99051.16, + 99051.16, 99051.25, + 99051.25, 99051.34, + 99051.34, 99051.41, + 99051.41, 99051.5, + 99051.5, 99051.59, + 99051.59, 99051.66, + 99051.66, 99051.75, + 99051.75, 99051.84, + 99051.84, 99051.91, + 99051.91, 99052, + 99052, 99052.09, + 99052.09, 99052.16, + 99052.16, 99052.25, + 99052.25, 99052.34, + 99052.34, 99052.41, + 99052.41, 99052.5, + 99052.5, 99052.59, + 99052.59, 99052.66, + 99052.66, 99052.75, + 99052.75, 99052.84, + 99052.84, 99052.91, + 99052.91, 99053, + 99053, 99053.09, + 99053.09, 99053.16, + 99053.16, 99053.25, + 99053.25, 99053.34, + 99053.34, 99053.41, + 99053.41, 99053.5, + 99053.5, 99053.59, + 99053.59, 99053.66, + 99053.66, 99053.75, + 99053.75, 99053.84, + 99053.84, 99053.91, + 99053.91, 99054, + 99054, 99054.09, + 99054.09, 99054.16, + 99054.16, 99054.25, + 99054.25, 99054.34, + 99054.34, 99054.41, + 99054.41, 99054.5, + 99054.5, 99054.59, + 99054.59, 99054.66, + 99054.66, 99054.75, + 99054.75, 99054.84, + 99054.84, 99054.91, + 99054.91, 99055, + 99055, 99055.09, + 99055.09, 99055.16, + 99055.16, 99055.25, + 99055.25, 99055.34, + 99055.34, 99055.41, + 99055.41, 99055.5, + 99055.5, 99055.59, + 99055.59, 99055.66, + 99055.66, 99055.75, + 99055.75, 99055.84, + 99055.84, 99055.91, + 99055.91, 99056, + 99056, 99056.09, + 99056.09, 99056.16, + 99056.16, 99056.25, + 99056.25, 99056.34, + 99056.34, 99056.41, + 99056.41, 99056.5, + 99056.5, 99056.59, + 99056.59, 99056.66, + 99056.66, 99056.75, + 99056.75, 99056.84, + 99056.84, 99056.91, + 99056.91, 99057, + 99057, 99057.09, + 99057.09, 99057.16, + 99057.16, 99057.25, + 99057.25, 99057.34, + 99057.34, 99057.41, + 99057.41, 99057.5, + 99057.5, 99057.59, + 99057.59, 99057.66, + 99057.66, 99057.75, + 99057.75, 99057.84, + 99057.84, 99057.91, + 99057.91, 99058, + 99058, 99058.09, + 99058.09, 99058.16, + 99058.16, 99058.25, + 99058.25, 99058.34, + 99058.34, 99058.41, + 99058.41, 99058.5, + 99058.5, 99058.59, + 99058.59, 99058.66, + 99058.66, 99058.75, + 99058.75, 99058.84, + 99058.84, 99058.91, + 99058.91, 99059, + 99059, 99059.09, + 99059.09, 99059.16, + 99059.16, 99059.25, + 99059.25, 99059.34, + 99059.34, 99059.41, + 99059.41, 99059.5, + 99059.5, 99059.59, + 99059.59, 99059.66, + 99059.66, 99059.75, + 99059.75, 99059.84, + 99059.84, 99059.91, + 99059.91, 99060, + 99060, 99060.09, + 99060.09, 99060.16, + 99060.16, 99060.25, + 99060.25, 99060.34, + 99060.34, 99060.41, + 99060.41, 99060.5, + 99060.5, 99060.59, + 99060.59, 99060.66, + 99060.66, 99060.75, + 99060.75, 99060.84, + 99060.84, 99060.91, + 99060.91, 99061, + 99061, 99061.09, + 99061.09, 99061.16, + 99061.16, 99061.25, + 99061.25, 99061.34, + 99061.34, 99061.41, + 99061.41, 99061.5, + 99061.5, 99061.59, + 99061.59, 99061.66, + 99061.66, 99061.75, + 99061.75, 99061.84, + 99061.84, 99061.91, + 99061.91, 99062, + 99062, 99062.09, + 99062.09, 99062.16, + 99062.16, 99062.25, + 99062.25, 99062.34, + 99062.34, 99062.41, + 99062.41, 99062.5, + 99062.5, 99062.59, + 99062.59, 99062.66, + 99062.66, 99062.75, + 99062.75, 99062.84, + 99062.84, 99062.91, + 99062.91, 99063, + 99063, 99063.09, + 99063.09, 99063.16, + 99063.16, 99063.25, + 99063.25, 99063.34, + 99063.34, 99063.41, + 99063.41, 99063.5, + 99063.5, 99063.59, + 99063.59, 99063.66, + 99063.66, 99063.75, + 99063.75, 99063.84, + 99063.84, 99063.91, + 99063.91, 99064, + 99064, 99064.09, + 99064.09, 99064.16, + 99064.16, 99064.25, + 99064.25, 99064.34, + 99064.34, 99064.41, + 99064.41, 99064.5, + 99064.5, 99064.59, + 99064.59, 99064.66, + 99064.66, 99064.75, + 99064.75, 99064.84, + 99064.84, 99064.91, + 99064.91, 99065, + 99065, 99065.09, + 99065.09, 99065.16, + 99065.16, 99065.25, + 99065.25, 99065.34, + 99065.34, 99065.41, + 99065.41, 99065.5, + 99065.5, 99065.59, + 99065.59, 99065.66, + 99065.66, 99065.75, + 99065.75, 99065.84, + 99065.84, 99065.91, + 99065.91, 99066, + 99066, 99066.09, + 99066.09, 99066.16, + 99066.16, 99066.25, + 99066.25, 99066.34, + 99066.34, 99066.41, + 99066.41, 99066.5, + 99066.5, 99066.59, + 99066.59, 99066.66, + 99066.66, 99066.75, + 99066.75, 99066.84, + 99066.84, 99066.91, + 99066.91, 99067, + 99067, 99067.09, + 99067.09, 99067.16, + 99067.16, 99067.25, + 99067.25, 99067.34, + 99067.34, 99067.41, + 99067.41, 99067.5, + 99067.5, 99067.59, + 99067.59, 99067.66, + 99067.66, 99067.75, + 99067.75, 99067.84, + 99067.84, 99067.91, + 99067.91, 99068, + 99068, 99068.09, + 99068.09, 99068.16, + 99068.16, 99068.25, + 99068.25, 99068.34, + 99068.34, 99068.41, + 99068.41, 99068.5, + 99068.5, 99068.59, + 99068.59, 99068.66, + 99068.66, 99068.75, + 99068.75, 99068.84, + 99068.84, 99068.91, + 99068.91, 99069, + 99069, 99069.09, + 99069.09, 99069.16, + 99069.16, 99069.25, + 99069.25, 99069.34, + 99069.34, 99069.41, + 99069.41, 99069.5, + 99069.5, 99069.59, + 99069.59, 99069.66, + 99069.66, 99069.75, + 99069.75, 99069.84, + 99069.84, 99069.91, + 99069.91, 99070, + 99070, 99070.09, + 99070.09, 99070.16, + 99070.16, 99070.25, + 99070.25, 99070.34, + 99070.34, 99070.41, + 99070.41, 99070.5, + 99070.5, 99070.59, + 99070.59, 99070.66, + 99070.66, 99070.75, + 99070.75, 99070.84, + 99070.84, 99070.91, + 99070.91, 99071, + 99071, 99071.09, + 99071.09, 99071.16, + 99071.16, 99071.25, + 99071.25, 99071.34, + 99071.34, 99071.41, + 99071.41, 99071.5, + 99071.5, 99071.59, + 99071.59, 99071.66, + 99071.66, 99071.75, + 99071.75, 99071.84, + 99071.84, 99071.91, + 99071.91, 99072, + 99072, 99072.09, + 99072.09, 99072.16, + 99072.16, 99072.25, + 99072.25, 99072.34, + 99072.34, 99072.41, + 99072.41, 99072.5, + 99072.5, 99072.59, + 99072.59, 99072.66, + 99072.66, 99072.75, + 99072.75, 99072.84, + 99072.84, 99072.91, + 99072.91, 99073, + 99073, 99073.09, + 99073.09, 99073.16, + 99073.16, 99073.25, + 99073.25, 99073.34, + 99073.34, 99073.41, + 99073.41, 99073.5, + 99073.5, 99073.59, + 99073.59, 99073.66, + 99073.66, 99073.75, + 99073.75, 99073.84, + 99073.84, 99073.91, + 99073.91, 99074, + 99074, 99074.09, + 99074.09, 99074.16, + 99074.16, 99074.25, + 99074.25, 99074.34, + 99074.34, 99074.41, + 99074.41, 99074.5, + 99074.5, 99074.59, + 99074.59, 99074.66, + 99074.66, 99074.75, + 99074.75, 99074.84, + 99074.84, 99074.91, + 99074.91, 99075, + 99075, 99075.09, + 99075.09, 99075.16, + 99075.16, 99075.25, + 99075.25, 99075.34, + 99075.34, 99075.41, + 99075.41, 99075.5, + 99075.5, 99075.59, + 99075.59, 99075.66, + 99075.66, 99075.75, + 99075.75, 99075.84, + 99075.84, 99075.91, + 99075.91, 99076, + 99076, 99076.09, + 99076.09, 99076.16, + 99076.16, 99076.25, + 99076.25, 99076.34, + 99076.34, 99076.41, + 99076.41, 99076.5, + 99076.5, 99076.59, + 99076.59, 99076.66, + 99076.66, 99076.75, + 99076.75, 99076.84, + 99076.84, 99076.91, + 99076.91, 99077, + 99077, 99077.09, + 99077.09, 99077.16, + 99077.16, 99077.25, + 99077.25, 99077.34, + 99077.34, 99077.41, + 99077.41, 99077.5, + 99077.5, 99077.59, + 99077.59, 99077.66, + 99077.66, 99077.75, + 99077.75, 99077.84, + 99077.84, 99077.91, + 99077.91, 99078, + 99078, 99078.09, + 99078.09, 99078.16, + 99078.16, 99078.25, + 99078.25, 99078.34, + 99078.34, 99078.41, + 99078.41, 99078.5, + 99078.5, 99078.59, + 99078.59, 99078.66, + 99078.66, 99078.75, + 99078.75, 99078.84, + 99078.84, 99078.91, + 99078.91, 99079, + 99079, 99079.09, + 99079.09, 99079.16, + 99079.16, 99079.25, + 99079.25, 99079.34, + 99079.34, 99079.41, + 99079.41, 99079.5, + 99079.5, 99079.59, + 99079.59, 99079.66, + 99079.66, 99079.75, + 99079.75, 99079.84, + 99079.84, 99079.91, + 99079.91, 99080, + 99080, 99080.09, + 99080.09, 99080.16, + 99080.16, 99080.25, + 99080.25, 99080.34, + 99080.34, 99080.41, + 99080.41, 99080.5, + 99080.5, 99080.59, + 99080.59, 99080.66, + 99080.66, 99080.75, + 99080.75, 99080.84, + 99080.84, 99080.91, + 99080.91, 99081, + 99081, 99081.09, + 99081.09, 99081.16, + 99081.16, 99081.25, + 99081.25, 99081.34, + 99081.34, 99081.41, + 99081.41, 99081.5, + 99081.5, 99081.59, + 99081.59, 99081.66, + 99081.66, 99081.75, + 99081.75, 99081.84, + 99081.84, 99081.91, + 99081.91, 99082, + 99082, 99082.09, + 99082.09, 99082.16, + 99082.16, 99082.25, + 99082.25, 99082.34, + 99082.34, 99082.41, + 99082.41, 99082.5, + 99082.5, 99082.59, + 99082.59, 99082.66, + 99082.66, 99082.75, + 99082.75, 99082.84, + 99082.84, 99082.91, + 99082.91, 99083, + 99083, 99083.09, + 99083.09, 99083.16, + 99083.16, 99083.25, + 99083.25, 99083.34, + 99083.34, 99083.41, + 99083.41, 99083.5, + 99083.5, 99083.59, + 99083.59, 99083.66, + 99083.66, 99083.75, + 99083.75, 99083.84, + 99083.84, 99083.91, + 99083.91, 99084, + 99084, 99084.09, + 99084.09, 99084.16, + 99084.16, 99084.25, + 99084.25, 99084.34, + 99084.34, 99084.41, + 99084.41, 99084.5, + 99084.5, 99084.59, + 99084.59, 99084.66, + 99084.66, 99084.75, + 99084.75, 99084.84, + 99084.84, 99084.91, + 99084.91, 99085, + 99085, 99085.09, + 99085.09, 99085.16, + 99085.16, 99085.25, + 99085.25, 99085.34, + 99085.34, 99085.41, + 99085.41, 99085.5, + 99085.5, 99085.59, + 99085.59, 99085.66, + 99085.66, 99085.75, + 99085.75, 99085.84, + 99085.84, 99085.91, + 99085.91, 99086, + 99086, 99086.09, + 99086.09, 99086.16, + 99086.16, 99086.25, + 99086.25, 99086.34, + 99086.34, 99086.41, + 99086.41, 99086.5, + 99086.5, 99086.59, + 99086.59, 99086.66, + 99086.66, 99086.75, + 99086.75, 99086.84, + 99086.84, 99086.91, + 99086.91, 99087, + 99087, 99087.09, + 99087.09, 99087.16, + 99087.16, 99087.25, + 99087.25, 99087.34, + 99087.34, 99087.41, + 99087.41, 99087.5, + 99087.5, 99087.59, + 99087.59, 99087.66, + 99087.66, 99087.75, + 99087.75, 99087.84, + 99087.84, 99087.91, + 99087.91, 99088, + 99088, 99088.09, + 99088.09, 99088.16, + 99088.16, 99088.25, + 99088.25, 99088.34, + 99088.34, 99088.41, + 99088.41, 99088.5, + 99088.5, 99088.59, + 99088.59, 99088.66, + 99088.66, 99088.75, + 99088.75, 99088.84, + 99088.84, 99088.91, + 99088.91, 99089, + 99089, 99089.09, + 99089.09, 99089.16, + 99089.16, 99089.25, + 99089.25, 99089.34, + 99089.34, 99089.41, + 99089.41, 99089.5, + 99089.5, 99089.59, + 99089.59, 99089.66, + 99089.66, 99089.75, + 99089.75, 99089.84, + 99089.84, 99089.91, + 99089.91, 99090, + 99090, 99090.09, + 99090.09, 99090.16, + 99090.16, 99090.25, + 99090.25, 99090.34, + 99090.34, 99090.41, + 99090.41, 99090.5, + 99090.5, 99090.59, + 99090.59, 99090.66, + 99090.66, 99090.75, + 99090.75, 99090.84, + 99090.84, 99090.91, + 99090.91, 99091, + 99091, 99091.09, + 99091.09, 99091.16, + 99091.16, 99091.25, + 99091.25, 99091.34, + 99091.34, 99091.41, + 99091.41, 99091.5, + 99091.5, 99091.59, + 99091.59, 99091.66, + 99091.66, 99091.75, + 99091.75, 99091.84, + 99091.84, 99091.91, + 99091.91, 99092, + 99092, 99092.09, + 99092.09, 99092.16, + 99092.16, 99092.25, + 99092.25, 99092.34, + 99092.34, 99092.41, + 99092.41, 99092.5, + 99092.5, 99092.59, + 99092.59, 99092.66, + 99092.66, 99092.75, + 99092.75, 99092.84, + 99092.84, 99092.91, + 99092.91, 99093, + 99093, 99093.09, + 99093.09, 99093.16, + 99093.16, 99093.25, + 99093.25, 99093.34, + 99093.34, 99093.41, + 99093.41, 99093.5, + 99093.5, 99093.59, + 99093.59, 99093.66, + 99093.66, 99093.75, + 99093.75, 99093.84, + 99093.84, 99093.91, + 99093.91, 99094, + 99094, 99094.09, + 99094.09, 99094.16, + 99094.16, 99094.25, + 99094.25, 99094.34, + 99094.34, 99094.41, + 99094.41, 99094.5, + 99094.5, 99094.59, + 99094.59, 99094.66, + 99094.66, 99094.75, + 99094.75, 99094.84, + 99094.84, 99094.91, + 99094.91, 99095, + 99095, 99095.09, + 99095.09, 99095.16, + 99095.16, 99095.25, + 99095.25, 99095.34, + 99095.34, 99095.41, + 99095.41, 99095.5, + 99095.5, 99095.59, + 99095.59, 99095.66, + 99095.66, 99095.75, + 99095.75, 99095.84, + 99095.84, 99095.91, + 99095.91, 99096, + 99096, 99096.09, + 99096.09, 99096.16, + 99096.16, 99096.25, + 99096.25, 99096.34, + 99096.34, 99096.41, + 99096.41, 99096.5, + 99096.5, 99096.59, + 99096.59, 99096.66, + 99096.66, 99096.75, + 99096.75, 99096.84, + 99096.84, 99096.91, + 99096.91, 99097, + 99097, 99097.09, + 99097.09, 99097.16, + 99097.16, 99097.25, + 99097.25, 99097.34, + 99097.34, 99097.41, + 99097.41, 99097.5, + 99097.5, 99097.59, + 99097.59, 99097.66, + 99097.66, 99097.75, + 99097.75, 99097.84, + 99097.84, 99097.91, + 99097.91, 99098, + 99098, 99098.09, + 99098.09, 99098.16, + 99098.16, 99098.25, + 99098.25, 99098.34, + 99098.34, 99098.41, + 99098.41, 99098.5, + 99098.5, 99098.59, + 99098.59, 99098.66, + 99098.66, 99098.75, + 99098.75, 99098.84, + 99098.84, 99098.91, + 99098.91, 99099, + 99099, 99099.09, + 99099.09, 99099.16, + 99099.16, 99099.25, + 99099.25, 99099.34, + 99099.34, 99099.41, + 99099.41, 99099.5, + 99099.5, 99099.59, + 99099.59, 99099.66, + 99099.66, 99099.75, + 99099.75, 99099.84, + 99099.84, 99099.91, + 99099.91, 99100, + 99100, 99100.09, + 99100.09, 99100.16, + 99100.16, 99100.25, + 99100.25, 99100.34, + 99100.34, 99100.41, + 99100.41, 99100.5, + 99100.5, 99100.59, + 99100.59, 99100.66, + 99100.66, 99100.75, + 99100.75, 99100.84, + 99100.84, 99100.91, + 99100.91, 99101, + 99101, 99101.09, + 99101.09, 99101.16, + 99101.16, 99101.25, + 99101.25, 99101.34, + 99101.34, 99101.41, + 99101.41, 99101.5, + 99101.5, 99101.59, + 99101.59, 99101.66, + 99101.66, 99101.75, + 99101.75, 99101.84, + 99101.84, 99101.91, + 99101.91, 99102, + 99102, 99102.09, + 99102.09, 99102.16, + 99102.16, 99102.25, + 99102.25, 99102.34, + 99102.34, 99102.41, + 99102.41, 99102.5, + 99102.5, 99102.59, + 99102.59, 99102.66, + 99102.66, 99102.75, + 99102.75, 99102.84, + 99102.84, 99102.91, + 99102.91, 99103, + 99103, 99103.09, + 99103.09, 99103.16, + 99103.16, 99103.25, + 99103.25, 99103.34, + 99103.34, 99103.41, + 99103.41, 99103.5, + 99103.5, 99103.59, + 99103.59, 99103.66, + 99103.66, 99103.75, + 99103.75, 99103.84, + 99103.84, 99103.91, + 99103.91, 99104, + 99104, 99104.09, + 99104.09, 99104.16, + 99104.16, 99104.25, + 99104.25, 99104.34, + 99104.34, 99104.41, + 99104.41, 99104.5, + 99104.5, 99104.59, + 99104.59, 99104.66, + 99104.66, 99104.75, + 99104.75, 99104.84, + 99104.84, 99104.91, + 99104.91, 99105, + 99105, 99105.09, + 99105.09, 99105.16, + 99105.16, 99105.25, + 99105.25, 99105.34, + 99105.34, 99105.41, + 99105.41, 99105.5, + 99105.5, 99105.59, + 99105.59, 99105.66, + 99105.66, 99105.75, + 99105.75, 99105.84, + 99105.84, 99105.91, + 99105.91, 99106, + 99106, 99106.09, + 99106.09, 99106.16, + 99106.16, 99106.25, + 99106.25, 99106.34, + 99106.34, 99106.41, + 99106.41, 99106.5, + 99106.5, 99106.59, + 99106.59, 99106.66, + 99106.66, 99106.75, + 99106.75, 99106.84, + 99106.84, 99106.91, + 99106.91, 99107, + 99107, 99107.09, + 99107.09, 99107.16, + 99107.16, 99107.25, + 99107.25, 99107.34, + 99107.34, 99107.41, + 99107.41, 99107.5, + 99107.5, 99107.59, + 99107.59, 99107.66, + 99107.66, 99107.75, + 99107.75, 99107.84, + 99107.84, 99107.91, + 99107.91, 99108, + 99108, 99108.09, + 99108.09, 99108.16, + 99108.16, 99108.25, + 99108.25, 99108.34, + 99108.34, 99108.41, + 99108.41, 99108.5, + 99108.5, 99108.59, + 99108.59, 99108.66, + 99108.66, 99108.75, + 99108.75, 99108.84, + 99108.84, 99108.91, + 99108.91, 99109, + 99109, 99109.09, + 99109.09, 99109.16, + 99109.16, 99109.25, + 99109.25, 99109.34, + 99109.34, 99109.41, + 99109.41, 99109.5, + 99109.5, 99109.59, + 99109.59, 99109.66, + 99109.66, 99109.75, + 99109.75, 99109.84, + 99109.84, 99109.91, + 99109.91, 99110, + 99110, 99110.09, + 99110.09, 99110.16, + 99110.16, 99110.25, + 99110.25, 99110.34, + 99110.34, 99110.41, + 99110.41, 99110.5, + 99110.5, 99110.59, + 99110.59, 99110.66, + 99110.66, 99110.75, + 99110.75, 99110.84, + 99110.84, 99110.91, + 99110.91, 99111, + 99111, 99111.09, + 99111.09, 99111.16, + 99111.16, 99111.25, + 99111.25, 99111.34, + 99111.34, 99111.41, + 99111.41, 99111.5, + 99111.5, 99111.59, + 99111.59, 99111.66, + 99111.66, 99111.75, + 99111.75, 99111.84, + 99111.84, 99111.91, + 99111.91, 99112, + 99112, 99112.09, + 99112.09, 99112.16, + 99112.16, 99112.25, + 99112.25, 99112.34, + 99112.34, 99112.41, + 99112.41, 99112.5, + 99112.5, 99112.59, + 99112.59, 99112.66, + 99112.66, 99112.75, + 99112.75, 99112.84, + 99112.84, 99112.91, + 99112.91, 99113, + 99113, 99113.09, + 99113.09, 99113.16, + 99113.16, 99113.25, + 99113.25, 99113.34, + 99113.34, 99113.41, + 99113.41, 99113.5, + 99113.5, 99113.59, + 99113.59, 99113.66, + 99113.66, 99113.75, + 99113.75, 99113.84, + 99113.84, 99113.91, + 99113.91, 99114, + 99114, 99114.09, + 99114.09, 99114.16, + 99114.16, 99114.25, + 99114.25, 99114.34, + 99114.34, 99114.41, + 99114.41, 99114.5, + 99114.5, 99114.59, + 99114.59, 99114.66, + 99114.66, 99114.75, + 99114.75, 99114.84, + 99114.84, 99114.91, + 99114.91, 99115, + 99115, 99115.09, + 99115.09, 99115.16, + 99115.16, 99115.25, + 99115.25, 99115.34, + 99115.34, 99115.41, + 99115.41, 99115.5, + 99115.5, 99115.59, + 99115.59, 99115.66, + 99115.66, 99115.75, + 99115.75, 99115.84, + 99115.84, 99115.91, + 99115.91, 99116, + 99116, 99116.09, + 99116.09, 99116.16, + 99116.16, 99116.25, + 99116.25, 99116.34, + 99116.34, 99116.41, + 99116.41, 99116.5, + 99116.5, 99116.59, + 99116.59, 99116.66, + 99116.66, 99116.75, + 99116.75, 99116.84, + 99116.84, 99116.91, + 99116.91, 99117, + 99117, 99117.09, + 99117.09, 99117.16, + 99117.16, 99117.25, + 99117.25, 99117.34, + 99117.34, 99117.41, + 99117.41, 99117.5, + 99117.5, 99117.59, + 99117.59, 99117.66, + 99117.66, 99117.75, + 99117.75, 99117.84, + 99117.84, 99117.91, + 99117.91, 99118, + 99118, 99118.09, + 99118.09, 99118.16, + 99118.16, 99118.25, + 99118.25, 99118.34, + 99118.34, 99118.41, + 99118.41, 99118.5, + 99118.5, 99118.59, + 99118.59, 99118.66, + 99118.66, 99118.75, + 99118.75, 99118.84, + 99118.84, 99118.91, + 99118.91, 99119, + 99119, 99119.09, + 99119.09, 99119.16, + 99119.16, 99119.25, + 99119.25, 99119.34, + 99119.34, 99119.41, + 99119.41, 99119.5, + 99119.5, 99119.59, + 99119.59, 99119.66, + 99119.66, 99119.75, + 99119.75, 99119.84, + 99119.84, 99119.91, + 99119.91, 99120, + 99120, 99120.09, + 99120.09, 99120.16, + 99120.16, 99120.25, + 99120.25, 99120.34, + 99120.34, 99120.41, + 99120.41, 99120.5, + 99120.5, 99120.59, + 99120.59, 99120.66, + 99120.66, 99120.75, + 99120.75, 99120.84, + 99120.84, 99120.91, + 99120.91, 99121, + 99121, 99121.09, + 99121.09, 99121.16, + 99121.16, 99121.25, + 99121.25, 99121.34, + 99121.34, 99121.41, + 99121.41, 99121.5, + 99121.5, 99121.59, + 99121.59, 99121.66, + 99121.66, 99121.75, + 99121.75, 99121.84, + 99121.84, 99121.91, + 99121.91, 99122, + 99122, 99122.09, + 99122.09, 99122.16, + 99122.16, 99122.25, + 99122.25, 99122.34, + 99122.34, 99122.41, + 99122.41, 99122.5, + 99122.5, 99122.59, + 99122.59, 99122.66, + 99122.66, 99122.75, + 99122.75, 99122.84, + 99122.84, 99122.91, + 99122.91, 99123, + 99123, 99123.09, + 99123.09, 99123.16, + 99123.16, 99123.25, + 99123.25, 99123.34, + 99123.34, 99123.41, + 99123.41, 99123.5, + 99123.5, 99123.59, + 99123.59, 99123.66, + 99123.66, 99123.75, + 99123.75, 99123.84, + 99123.84, 99123.91, + 99123.91, 99124, + 99124, 99124.09, + 99124.09, 99124.16, + 99124.16, 99124.25, + 99124.25, 99124.34, + 99124.34, 99124.41, + 99124.41, 99124.5, + 99124.5, 99124.59, + 99124.59, 99124.66, + 99124.66, 99124.75, + 99124.75, 99124.84, + 99124.84, 99124.91, + 99124.91, 99125, + 99125, 99125.09, + 99125.09, 99125.16, + 99125.16, 99125.25, + 99125.25, 99125.34, + 99125.34, 99125.41, + 99125.41, 99125.5, + 99125.5, 99125.59, + 99125.59, 99125.66, + 99125.66, 99125.75, + 99125.75, 99125.84, + 99125.84, 99125.91, + 99125.91, 99126, + 99126, 99126.09, + 99126.09, 99126.16, + 99126.16, 99126.25, + 99126.25, 99126.34, + 99126.34, 99126.41, + 99126.41, 99126.5, + 99126.5, 99126.59, + 99126.59, 99126.66, + 99126.66, 99126.75, + 99126.75, 99126.84, + 99126.84, 99126.91, + 99126.91, 99127, + 99127, 99127.09, + 99127.09, 99127.16, + 99127.16, 99127.25, + 99127.25, 99127.34, + 99127.34, 99127.41, + 99127.41, 99127.5, + 99127.5, 99127.59, + 99127.59, 99127.66, + 99127.66, 99127.75, + 99127.75, 99127.84, + 99127.84, 99127.91, + 99127.91, 99128, + 99128, 99128.09, + 99128.09, 99128.16, + 99128.16, 99128.25, + 99128.25, 99128.34, + 99128.34, 99128.41, + 99128.41, 99128.5, + 99128.5, 99128.59, + 99128.59, 99128.66, + 99128.66, 99128.75, + 99128.75, 99128.84, + 99128.84, 99128.91, + 99128.91, 99129, + 99129, 99129.09, + 99129.09, 99129.16, + 99129.16, 99129.25, + 99129.25, 99129.34, + 99129.34, 99129.41, + 99129.41, 99129.5, + 99129.5, 99129.59, + 99129.59, 99129.66, + 99129.66, 99129.75, + 99129.75, 99129.84, + 99129.84, 99129.91, + 99129.91, 99130, + 99130, 99130.09, + 99130.09, 99130.16, + 99130.16, 99130.25, + 99130.25, 99130.34, + 99130.34, 99130.41, + 99130.41, 99130.5, + 99130.5, 99130.59, + 99130.59, 99130.66, + 99130.66, 99130.75, + 99130.75, 99130.84, + 99130.84, 99130.91, + 99130.91, 99131, + 99131, 99131.09, + 99131.09, 99131.16, + 99131.16, 99131.25, + 99131.25, 99131.34, + 99131.34, 99131.41, + 99131.41, 99131.5, + 99131.5, 99131.59, + 99131.59, 99131.66, + 99131.66, 99131.75, + 99131.75, 99131.84, + 99131.84, 99131.91, + 99131.91, 99132, + 99132, 99132.09, + 99132.09, 99132.16, + 99132.16, 99132.25, + 99132.25, 99132.34, + 99132.34, 99132.41, + 99132.41, 99132.5, + 99132.5, 99132.59, + 99132.59, 99132.66, + 99132.66, 99132.75, + 99132.75, 99132.84, + 99132.84, 99132.91, + 99132.91, 99133, + 99133, 99133.09, + 99133.09, 99133.16, + 99133.16, 99133.25, + 99133.25, 99133.34, + 99133.34, 99133.41, + 99133.41, 99133.5, + 99133.5, 99133.59, + 99133.59, 99133.66, + 99133.66, 99133.75, + 99133.75, 99133.84, + 99133.84, 99133.91, + 99133.91, 99134, + 99134, 99134.09, + 99134.09, 99134.16, + 99134.16, 99134.25, + 99134.25, 99134.34, + 99134.34, 99134.41, + 99134.41, 99134.5, + 99134.5, 99134.59, + 99134.59, 99134.66, + 99134.66, 99134.75, + 99134.75, 99134.84, + 99134.84, 99134.91, + 99134.91, 99135, + 99135, 99135.09, + 99135.09, 99135.16, + 99135.16, 99135.25, + 99135.25, 99135.34, + 99135.34, 99135.41, + 99135.41, 99135.5, + 99135.5, 99135.59, + 99135.59, 99135.66, + 99135.66, 99135.75, + 99135.75, 99135.84, + 99135.84, 99135.91, + 99135.91, 99136, + 99136, 99136.09, + 99136.09, 99136.16, + 99136.16, 99136.25, + 99136.25, 99136.34, + 99136.34, 99136.41, + 99136.41, 99136.5, + 99136.5, 99136.59, + 99136.59, 99136.66, + 99136.66, 99136.75, + 99136.75, 99136.84, + 99136.84, 99136.91, + 99136.91, 99137, + 99137, 99137.09, + 99137.09, 99137.16, + 99137.16, 99137.25, + 99137.25, 99137.34, + 99137.34, 99137.41, + 99137.41, 99137.5, + 99137.5, 99137.59, + 99137.59, 99137.66, + 99137.66, 99137.75, + 99137.75, 99137.84, + 99137.84, 99137.91, + 99137.91, 99138, + 99138, 99138.09, + 99138.09, 99138.16, + 99138.16, 99138.25, + 99138.25, 99138.34, + 99138.34, 99138.41, + 99138.41, 99138.5, + 99138.5, 99138.59, + 99138.59, 99138.66, + 99138.66, 99138.75, + 99138.75, 99138.84, + 99138.84, 99138.91, + 99138.91, 99139, + 99139, 99139.09, + 99139.09, 99139.16, + 99139.16, 99139.25, + 99139.25, 99139.34, + 99139.34, 99139.41, + 99139.41, 99139.5, + 99139.5, 99139.59, + 99139.59, 99139.66, + 99139.66, 99139.75, + 99139.75, 99139.84, + 99139.84, 99139.91, + 99139.91, 99140, + 99140, 99140.09, + 99140.09, 99140.16, + 99140.16, 99140.25, + 99140.25, 99140.34, + 99140.34, 99140.41, + 99140.41, 99140.5, + 99140.5, 99140.59, + 99140.59, 99140.66, + 99140.66, 99140.75, + 99140.75, 99140.84, + 99140.84, 99140.91, + 99140.91, 99141, + 99141, 99141.09, + 99141.09, 99141.16, + 99141.16, 99141.25, + 99141.25, 99141.34, + 99141.34, 99141.41, + 99141.41, 99141.5, + 99141.5, 99141.59, + 99141.59, 99141.66, + 99141.66, 99141.75, + 99141.75, 99141.84, + 99141.84, 99141.91, + 99141.91, 99142, + 99142, 99142.09, + 99142.09, 99142.16, + 99142.16, 99142.25, + 99142.25, 99142.34, + 99142.34, 99142.41, + 99142.41, 99142.5, + 99142.5, 99142.59, + 99142.59, 99142.66, + 99142.66, 99142.75, + 99142.75, 99142.84, + 99142.84, 99142.91, + 99142.91, 99143, + 99143, 99143.09, + 99143.09, 99143.16, + 99143.16, 99143.25, + 99143.25, 99143.34, + 99143.34, 99143.41, + 99143.41, 99143.5, + 99143.5, 99143.59, + 99143.59, 99143.66, + 99143.66, 99143.75, + 99143.75, 99143.84, + 99143.84, 99143.91, + 99143.91, 99144, + 99144, 99144.09, + 99144.09, 99144.16, + 99144.16, 99144.25, + 99144.25, 99144.34, + 99144.34, 99144.41, + 99144.41, 99144.5, + 99144.5, 99144.59, + 99144.59, 99144.66, + 99144.66, 99144.75, + 99144.75, 99144.84, + 99144.84, 99144.91, + 99144.91, 99145, + 99145, 99145.09, + 99145.09, 99145.16, + 99145.16, 99145.25, + 99145.25, 99145.34, + 99145.34, 99145.41, + 99145.41, 99145.5, + 99145.5, 99145.59, + 99145.59, 99145.66, + 99145.66, 99145.75, + 99145.75, 99145.84, + 99145.84, 99145.91, + 99145.91, 99146, + 99146, 99146.09, + 99146.09, 99146.16, + 99146.16, 99146.25, + 99146.25, 99146.34, + 99146.34, 99146.41, + 99146.41, 99146.5, + 99146.5, 99146.59, + 99146.59, 99146.66, + 99146.66, 99146.75, + 99146.75, 99146.84, + 99146.84, 99146.91, + 99146.91, 99147, + 99147, 99147.09, + 99147.09, 99147.16, + 99147.16, 99147.25, + 99147.25, 99147.34, + 99147.34, 99147.41, + 99147.41, 99147.5, + 99147.5, 99147.59, + 99147.59, 99147.66, + 99147.66, 99147.75, + 99147.75, 99147.84, + 99147.84, 99147.91, + 99147.91, 99148, + 99148, 99148.09, + 99148.09, 99148.16, + 99148.16, 99148.25, + 99148.25, 99148.34, + 99148.34, 99148.41, + 99148.41, 99148.5, + 99148.5, 99148.59, + 99148.59, 99148.66, + 99148.66, 99148.75, + 99148.75, 99148.84, + 99148.84, 99148.91, + 99148.91, 99149, + 99149, 99149.09, + 99149.09, 99149.16, + 99149.16, 99149.25, + 99149.25, 99149.34, + 99149.34, 99149.41, + 99149.41, 99149.5, + 99149.5, 99149.59, + 99149.59, 99149.66, + 99149.66, 99149.75, + 99149.75, 99149.84, + 99149.84, 99149.91, + 99149.91, 99150, + 99150, 99150.09, + 99150.09, 99150.16, + 99150.16, 99150.25, + 99150.25, 99150.34, + 99150.34, 99150.41, + 99150.41, 99150.5, + 99150.5, 99150.59, + 99150.59, 99150.66, + 99150.66, 99150.75, + 99150.75, 99150.84, + 99150.84, 99150.91, + 99150.91, 99151, + 99151, 99151.09, + 99151.09, 99151.16, + 99151.16, 99151.25, + 99151.25, 99151.34, + 99151.34, 99151.41, + 99151.41, 99151.5, + 99151.5, 99151.59, + 99151.59, 99151.66, + 99151.66, 99151.75, + 99151.75, 99151.84, + 99151.84, 99151.91, + 99151.91, 99152, + 99152, 99152.09, + 99152.09, 99152.16, + 99152.16, 99152.25, + 99152.25, 99152.34, + 99152.34, 99152.41, + 99152.41, 99152.5, + 99152.5, 99152.59, + 99152.59, 99152.66, + 99152.66, 99152.75, + 99152.75, 99152.84, + 99152.84, 99152.91, + 99152.91, 99153, + 99153, 99153.09, + 99153.09, 99153.16, + 99153.16, 99153.25, + 99153.25, 99153.34, + 99153.34, 99153.41, + 99153.41, 99153.5, + 99153.5, 99153.59, + 99153.59, 99153.66, + 99153.66, 99153.75, + 99153.75, 99153.84, + 99153.84, 99153.91, + 99153.91, 99154, + 99154, 99154.09, + 99154.09, 99154.16, + 99154.16, 99154.25, + 99154.25, 99154.34, + 99154.34, 99154.41, + 99154.41, 99154.5, + 99154.5, 99154.59, + 99154.59, 99154.66, + 99154.66, 99154.75, + 99154.75, 99154.84, + 99154.84, 99154.91, + 99154.91, 99155, + 99155, 99155.09, + 99155.09, 99155.16, + 99155.16, 99155.25, + 99155.25, 99155.34, + 99155.34, 99155.41, + 99155.41, 99155.5, + 99155.5, 99155.59, + 99155.59, 99155.66, + 99155.66, 99155.75, + 99155.75, 99155.84, + 99155.84, 99155.91, + 99155.91, 99156, + 99156, 99156.09, + 99156.09, 99156.16, + 99156.16, 99156.25, + 99156.25, 99156.34, + 99156.34, 99156.41, + 99156.41, 99156.5, + 99156.5, 99156.59, + 99156.59, 99156.66, + 99156.66, 99156.75, + 99156.75, 99156.84, + 99156.84, 99156.91, + 99156.91, 99157, + 99157, 99157.09, + 99157.09, 99157.16, + 99157.16, 99157.25, + 99157.25, 99157.34, + 99157.34, 99157.41, + 99157.41, 99157.5, + 99157.5, 99157.59, + 99157.59, 99157.66, + 99157.66, 99157.75, + 99157.75, 99157.84, + 99157.84, 99157.91, + 99157.91, 99158, + 99158, 99158.09, + 99158.09, 99158.16, + 99158.16, 99158.25, + 99158.25, 99158.34, + 99158.34, 99158.41, + 99158.41, 99158.5, + 99158.5, 99158.59, + 99158.59, 99158.66, + 99158.66, 99158.75, + 99158.75, 99158.84, + 99158.84, 99158.91, + 99158.91, 99159, + 99159, 99159.09, + 99159.09, 99159.16, + 99159.16, 99159.25, + 99159.25, 99159.34, + 99159.34, 99159.41, + 99159.41, 99159.5, + 99159.5, 99159.59, + 99159.59, 99159.66, + 99159.66, 99159.75, + 99159.75, 99159.84, + 99159.84, 99159.91, + 99159.91, 99160, + 99160, 99160.09, + 99160.09, 99160.16, + 99160.16, 99160.25, + 99160.25, 99160.34, + 99160.34, 99160.41, + 99160.41, 99160.5, + 99160.5, 99160.59, + 99160.59, 99160.66, + 99160.66, 99160.75, + 99160.75, 99160.84, + 99160.84, 99160.91, + 99160.91, 99161, + 99161, 99161.09, + 99161.09, 99161.16, + 99161.16, 99161.25, + 99161.25, 99161.34, + 99161.34, 99161.41, + 99161.41, 99161.5, + 99161.5, 99161.59, + 99161.59, 99161.66, + 99161.66, 99161.75, + 99161.75, 99161.84, + 99161.84, 99161.91, + 99161.91, 99162, + 99162, 99162.09, + 99162.09, 99162.16, + 99162.16, 99162.25, + 99162.25, 99162.34, + 99162.34, 99162.41, + 99162.41, 99162.5, + 99162.5, 99162.59, + 99162.59, 99162.66, + 99162.66, 99162.75, + 99162.75, 99162.84, + 99162.84, 99162.91, + 99162.91, 99163, + 99163, 99163.09, + 99163.09, 99163.16, + 99163.16, 99163.25, + 99163.25, 99163.34, + 99163.34, 99163.41, + 99163.41, 99163.5, + 99163.5, 99163.59, + 99163.59, 99163.66, + 99163.66, 99163.75, + 99163.75, 99163.84, + 99163.84, 99163.91, + 99163.91, 99164, + 99164, 99164.09, + 99164.09, 99164.16, + 99164.16, 99164.25, + 99164.25, 99164.34, + 99164.34, 99164.41, + 99164.41, 99164.5, + 99164.5, 99164.59, + 99164.59, 99164.66, + 99164.66, 99164.75, + 99164.75, 99164.84, + 99164.84, 99164.91, + 99164.91, 99165, + 99165, 99165.09, + 99165.09, 99165.16, + 99165.16, 99165.25, + 99165.25, 99165.34, + 99165.34, 99165.41, + 99165.41, 99165.5, + 99165.5, 99165.59, + 99165.59, 99165.66, + 99165.66, 99165.75, + 99165.75, 99165.84, + 99165.84, 99165.91, + 99165.91, 99166, + 99166, 99166.09, + 99166.09, 99166.16, + 99166.16, 99166.25, + 99166.25, 99166.34, + 99166.34, 99166.41, + 99166.41, 99166.5, + 99166.5, 99166.59, + 99166.59, 99166.66, + 99166.66, 99166.75, + 99166.75, 99166.84, + 99166.84, 99166.91, + 99166.91, 99167, + 99167, 99167.09, + 99167.09, 99167.16, + 99167.16, 99167.25, + 99167.25, 99167.34, + 99167.34, 99167.41, + 99167.41, 99167.5, + 99167.5, 99167.59, + 99167.59, 99167.66, + 99167.66, 99167.75, + 99167.75, 99167.84, + 99167.84, 99167.91, + 99167.91, 99168, + 99168, 99168.09, + 99168.09, 99168.16, + 99168.16, 99168.25, + 99168.25, 99168.34, + 99168.34, 99168.41, + 99168.41, 99168.5, + 99168.5, 99168.59, + 99168.59, 99168.66, + 99168.66, 99168.75, + 99168.75, 99168.84, + 99168.84, 99168.91, + 99168.91, 99169, + 99169, 99169.09, + 99169.09, 99169.16, + 99169.16, 99169.25, + 99169.25, 99169.34, + 99169.34, 99169.41, + 99169.41, 99169.5, + 99169.5, 99169.59, + 99169.59, 99169.66, + 99169.66, 99169.75, + 99169.75, 99169.84, + 99169.84, 99169.91, + 99169.91, 99170, + 99170, 99170.09, + 99170.09, 99170.16, + 99170.16, 99170.25, + 99170.25, 99170.34, + 99170.34, 99170.41, + 99170.41, 99170.5, + 99170.5, 99170.59, + 99170.59, 99170.66, + 99170.66, 99170.75, + 99170.75, 99170.84, + 99170.84, 99170.91, + 99170.91, 99171, + 99171, 99171.09, + 99171.09, 99171.16, + 99171.16, 99171.25, + 99171.25, 99171.34, + 99171.34, 99171.41, + 99171.41, 99171.5, + 99171.5, 99171.59, + 99171.59, 99171.66, + 99171.66, 99171.75, + 99171.75, 99171.84, + 99171.84, 99171.91, + 99171.91, 99172, + 99172, 99172.09, + 99172.09, 99172.16, + 99172.16, 99172.25, + 99172.25, 99172.34, + 99172.34, 99172.41, + 99172.41, 99172.5, + 99172.5, 99172.59, + 99172.59, 99172.66, + 99172.66, 99172.75, + 99172.75, 99172.84, + 99172.84, 99172.91, + 99172.91, 99173, + 99173, 99173.09, + 99173.09, 99173.16, + 99173.16, 99173.25, + 99173.25, 99173.34, + 99173.34, 99173.41, + 99173.41, 99173.5, + 99173.5, 99173.59, + 99173.59, 99173.66, + 99173.66, 99173.75, + 99173.75, 99173.84, + 99173.84, 99173.91, + 99173.91, 99174, + 99174, 99174.09, + 99174.09, 99174.16, + 99174.16, 99174.25, + 99174.25, 99174.34, + 99174.34, 99174.41, + 99174.41, 99174.5, + 99174.5, 99174.59, + 99174.59, 99174.66, + 99174.66, 99174.75, + 99174.75, 99174.84, + 99174.84, 99174.91, + 99174.91, 99175, + 99175, 99175.09, + 99175.09, 99175.16, + 99175.16, 99175.25, + 99175.25, 99175.34, + 99175.34, 99175.41, + 99175.41, 99175.5, + 99175.5, 99175.59, + 99175.59, 99175.66, + 99175.66, 99175.75, + 99175.75, 99175.84, + 99175.84, 99175.91, + 99175.91, 99176, + 99176, 99176.09, + 99176.09, 99176.16, + 99176.16, 99176.25, + 99176.25, 99176.34, + 99176.34, 99176.41, + 99176.41, 99176.5, + 99176.5, 99176.59, + 99176.59, 99176.66, + 99176.66, 99176.75, + 99176.75, 99176.84, + 99176.84, 99176.91, + 99176.91, 99177, + 99177, 99177.09, + 99177.09, 99177.16, + 99177.16, 99177.25, + 99177.25, 99177.34, + 99177.34, 99177.41, + 99177.41, 99177.5, + 99177.5, 99177.59, + 99177.59, 99177.66, + 99177.66, 99177.75, + 99177.75, 99177.84, + 99177.84, 99177.91, + 99177.91, 99178, + 99178, 99178.09, + 99178.09, 99178.16, + 99178.16, 99178.25, + 99178.25, 99178.34, + 99178.34, 99178.41, + 99178.41, 99178.5, + 99178.5, 99178.59, + 99178.59, 99178.66, + 99178.66, 99178.75, + 99178.75, 99178.84, + 99178.84, 99178.91, + 99178.91, 99179, + 99179, 99179.09, + 99179.09, 99179.16, + 99179.16, 99179.25, + 99179.25, 99179.34, + 99179.34, 99179.41, + 99179.41, 99179.5, + 99179.5, 99179.59, + 99179.59, 99179.66, + 99179.66, 99179.75, + 99179.75, 99179.84, + 99179.84, 99179.91, + 99179.91, 99180, + 99180, 99180.09, + 99180.09, 99180.16, + 99180.16, 99180.25, + 99180.25, 99180.34, + 99180.34, 99180.41, + 99180.41, 99180.5, + 99180.5, 99180.59, + 99180.59, 99180.66, + 99180.66, 99180.75, + 99180.75, 99180.84, + 99180.84, 99180.91, + 99180.91, 99181, + 99181, 99181.09, + 99181.09, 99181.16, + 99181.16, 99181.25, + 99181.25, 99181.34, + 99181.34, 99181.41, + 99181.41, 99181.5, + 99181.5, 99181.59, + 99181.59, 99181.66, + 99181.66, 99181.75, + 99181.75, 99181.84, + 99181.84, 99181.91, + 99181.91, 99182, + 99182, 99182.09, + 99182.09, 99182.16, + 99182.16, 99182.25, + 99182.25, 99182.34, + 99182.34, 99182.41, + 99182.41, 99182.5, + 99182.5, 99182.59, + 99182.59, 99182.66, + 99182.66, 99182.75, + 99182.75, 99182.84, + 99182.84, 99182.91, + 99182.91, 99183, + 99183, 99183.09, + 99183.09, 99183.16, + 99183.16, 99183.25, + 99183.25, 99183.34, + 99183.34, 99183.41, + 99183.41, 99183.5, + 99183.5, 99183.59, + 99183.59, 99183.66, + 99183.66, 99183.75, + 99183.75, 99183.84, + 99183.84, 99183.91, + 99183.91, 99184, + 99184, 99184.09, + 99184.09, 99184.16, + 99184.16, 99184.25, + 99184.25, 99184.34, + 99184.34, 99184.41, + 99184.41, 99184.5, + 99184.5, 99184.59, + 99184.59, 99184.66, + 99184.66, 99184.75, + 99184.75, 99184.84, + 99184.84, 99184.91, + 99184.91, 99185, + 99185, 99185.09, + 99185.09, 99185.16, + 99185.16, 99185.25, + 99185.25, 99185.34, + 99185.34, 99185.41, + 99185.41, 99185.5, + 99185.5, 99185.59, + 99185.59, 99185.66, + 99185.66, 99185.75, + 99185.75, 99185.84, + 99185.84, 99185.91, + 99185.91, 99186, + 99186, 99186.09, + 99186.09, 99186.16, + 99186.16, 99186.25, + 99186.25, 99186.34, + 99186.34, 99186.41, + 99186.41, 99186.5, + 99186.5, 99186.59, + 99186.59, 99186.66, + 99186.66, 99186.75, + 99186.75, 99186.84, + 99186.84, 99186.91, + 99186.91, 99187, + 99187, 99187.09, + 99187.09, 99187.16, + 99187.16, 99187.25, + 99187.25, 99187.34, + 99187.34, 99187.41, + 99187.41, 99187.5, + 99187.5, 99187.59, + 99187.59, 99187.66, + 99187.66, 99187.75, + 99187.75, 99187.84, + 99187.84, 99187.91, + 99187.91, 99188, + 99188, 99188.09, + 99188.09, 99188.16, + 99188.16, 99188.25, + 99188.25, 99188.34, + 99188.34, 99188.41, + 99188.41, 99188.5, + 99188.5, 99188.59, + 99188.59, 99188.66, + 99188.66, 99188.75, + 99188.75, 99188.84, + 99188.84, 99188.91, + 99188.91, 99189, + 99189, 99189.09, + 99189.09, 99189.16, + 99189.16, 99189.25, + 99189.25, 99189.34, + 99189.34, 99189.41, + 99189.41, 99189.5, + 99189.5, 99189.59, + 99189.59, 99189.66, + 99189.66, 99189.75, + 99189.75, 99189.84, + 99189.84, 99189.91, + 99189.91, 99190, + 99190, 99190.09, + 99190.09, 99190.16, + 99190.16, 99190.25, + 99190.25, 99190.34, + 99190.34, 99190.41, + 99190.41, 99190.5, + 99190.5, 99190.59, + 99190.59, 99190.66, + 99190.66, 99190.75, + 99190.75, 99190.84, + 99190.84, 99190.91, + 99190.91, 99191, + 99191, 99191.09, + 99191.09, 99191.16, + 99191.16, 99191.25, + 99191.25, 99191.34, + 99191.34, 99191.41, + 99191.41, 99191.5, + 99191.5, 99191.59, + 99191.59, 99191.66, + 99191.66, 99191.75, + 99191.75, 99191.84, + 99191.84, 99191.91, + 99191.91, 99192, + 99192, 99192.09, + 99192.09, 99192.16, + 99192.16, 99192.25, + 99192.25, 99192.34, + 99192.34, 99192.41, + 99192.41, 99192.5, + 99192.5, 99192.59, + 99192.59, 99192.66, + 99192.66, 99192.75, + 99192.75, 99192.84, + 99192.84, 99192.91, + 99192.91, 99193, + 99193, 99193.09, + 99193.09, 99193.16, + 99193.16, 99193.25, + 99193.25, 99193.34, + 99193.34, 99193.41, + 99193.41, 99193.5, + 99193.5, 99193.59, + 99193.59, 99193.66, + 99193.66, 99193.75, + 99193.75, 99193.84, + 99193.84, 99193.91, + 99193.91, 99194, + 99194, 99194.09, + 99194.09, 99194.16, + 99194.16, 99194.25, + 99194.25, 99194.34, + 99194.34, 99194.41, + 99194.41, 99194.5, + 99194.5, 99194.59, + 99194.59, 99194.66, + 99194.66, 99194.75, + 99194.75, 99194.84, + 99194.84, 99194.91, + 99194.91, 99195, + 99195, 99195.09, + 99195.09, 99195.16, + 99195.16, 99195.25, + 99195.25, 99195.34, + 99195.34, 99195.41, + 99195.41, 99195.5, + 99195.5, 99195.59, + 99195.59, 99195.66, + 99195.66, 99195.75, + 99195.75, 99195.84, + 99195.84, 99195.91, + 99195.91, 99196, + 99196, 99196.09, + 99196.09, 99196.16, + 99196.16, 99196.25, + 99196.25, 99196.34, + 99196.34, 99196.41, + 99196.41, 99196.5, + 99196.5, 99196.59, + 99196.59, 99196.66, + 99196.66, 99196.75, + 99196.75, 99196.84, + 99196.84, 99196.91, + 99196.91, 99197, + 99197, 99197.09, + 99197.09, 99197.16, + 99197.16, 99197.25, + 99197.25, 99197.34, + 99197.34, 99197.41, + 99197.41, 99197.5, + 99197.5, 99197.59, + 99197.59, 99197.66, + 99197.66, 99197.75, + 99197.75, 99197.84, + 99197.84, 99197.91, + 99197.91, 99198, + 99198, 99198.09, + 99198.09, 99198.16, + 99198.16, 99198.25, + 99198.25, 99198.34, + 99198.34, 99198.41, + 99198.41, 99198.5, + 99198.5, 99198.59, + 99198.59, 99198.66, + 99198.66, 99198.75, + 99198.75, 99198.84, + 99198.84, 99198.91, + 99198.91, 99199, + 99199, 99199.09, + 99199.09, 99199.16, + 99199.16, 99199.25, + 99199.25, 99199.34, + 99199.34, 99199.41, + 99199.41, 99199.5, + 99199.5, 99199.59, + 99199.59, 99199.66, + 99199.66, 99199.75, + 99199.75, 99199.84, + 99199.84, 99199.91, + 99199.91, 99200, + 99200, 99200.09, + 99200.09, 99200.16, + 99200.16, 99200.25, + 99200.25, 99200.34, + 99200.34, 99200.41, + 99200.41, 99200.5, + 99200.5, 99200.59, + 99200.59, 99200.66, + 99200.66, 99200.75, + 99200.75, 99200.84, + 99200.84, 99200.91, + 99200.91, 99201, + 99201, 99201.09, + 99201.09, 99201.16, + 99201.16, 99201.25, + 99201.25, 99201.34, + 99201.34, 99201.41, + 99201.41, 99201.5, + 99201.5, 99201.59, + 99201.59, 99201.66, + 99201.66, 99201.75, + 99201.75, 99201.84, + 99201.84, 99201.91, + 99201.91, 99202, + 99202, 99202.09, + 99202.09, 99202.16, + 99202.16, 99202.25, + 99202.25, 99202.34, + 99202.34, 99202.41, + 99202.41, 99202.5, + 99202.5, 99202.59, + 99202.59, 99202.66, + 99202.66, 99202.75, + 99202.75, 99202.84, + 99202.84, 99202.91, + 99202.91, 99203, + 99203, 99203.09, + 99203.09, 99203.16, + 99203.16, 99203.25, + 99203.25, 99203.34, + 99203.34, 99203.41, + 99203.41, 99203.5, + 99203.5, 99203.59, + 99203.59, 99203.66, + 99203.66, 99203.75, + 99203.75, 99203.84, + 99203.84, 99203.91, + 99203.91, 99204, + 99204, 99204.09, + 99204.09, 99204.16, + 99204.16, 99204.25, + 99204.25, 99204.34, + 99204.34, 99204.41, + 99204.41, 99204.5, + 99204.5, 99204.59, + 99204.59, 99204.66, + 99204.66, 99204.75, + 99204.75, 99204.84, + 99204.84, 99204.91, + 99204.91, 99205, + 99205, 99205.09, + 99205.09, 99205.16, + 99205.16, 99205.25, + 99205.25, 99205.34, + 99205.34, 99205.41, + 99205.41, 99205.5, + 99205.5, 99205.59, + 99205.59, 99205.66, + 99205.66, 99205.75, + 99205.75, 99205.84, + 99205.84, 99205.91, + 99205.91, 99206, + 99206, 99206.09, + 99206.09, 99206.16, + 99206.16, 99206.25, + 99206.25, 99206.34, + 99206.34, 99206.41, + 99206.41, 99206.5, + 99206.5, 99206.59, + 99206.59, 99206.66, + 99206.66, 99206.75, + 99206.75, 99206.84, + 99206.84, 99206.91, + 99206.91, 99207, + 99207, 99207.09, + 99207.09, 99207.16, + 99207.16, 99207.25, + 99207.25, 99207.34, + 99207.34, 99207.41, + 99207.41, 99207.5, + 99207.5, 99207.59, + 99207.59, 99207.66, + 99207.66, 99207.75, + 99207.75, 99207.84, + 99207.84, 99207.91, + 99207.91, 99208, + 99208, 99208.09, + 99208.09, 99208.16, + 99208.16, 99208.25, + 99208.25, 99208.34, + 99208.34, 99208.41, + 99208.41, 99208.5, + 99208.5, 99208.59, + 99208.59, 99208.66, + 99208.66, 99208.75, + 99208.75, 99208.84, + 99208.84, 99208.91, + 99208.91, 99209, + 99209, 99209.09, + 99209.09, 99209.16, + 99209.16, 99209.25, + 99209.25, 99209.34, + 99209.34, 99209.41, + 99209.41, 99209.5, + 99209.5, 99209.59, + 99209.59, 99209.66, + 99209.66, 99209.75, + 99209.75, 99209.84, + 99209.84, 99209.91, + 99209.91, 99210, + 99210, 99210.09, + 99210.09, 99210.16, + 99210.16, 99210.25, + 99210.25, 99210.34, + 99210.34, 99210.41, + 99210.41, 99210.5, + 99210.5, 99210.59, + 99210.59, 99210.66, + 99210.66, 99210.75, + 99210.75, 99210.84, + 99210.84, 99210.91, + 99210.91, 99211, + 99211, 99211.09, + 99211.09, 99211.16, + 99211.16, 99211.25, + 99211.25, 99211.34, + 99211.34, 99211.41, + 99211.41, 99211.5, + 99211.5, 99211.59, + 99211.59, 99211.66, + 99211.66, 99211.75, + 99211.75, 99211.84, + 99211.84, 99211.91, + 99211.91, 99212, + 99212, 99212.09, + 99212.09, 99212.16, + 99212.16, 99212.25, + 99212.25, 99212.34, + 99212.34, 99212.41, + 99212.41, 99212.5, + 99212.5, 99212.59, + 99212.59, 99212.66, + 99212.66, 99212.75, + 99212.75, 99212.84, + 99212.84, 99212.91, + 99212.91, 99213, + 99213, 99213.09, + 99213.09, 99213.16, + 99213.16, 99213.25, + 99213.25, 99213.34, + 99213.34, 99213.41, + 99213.41, 99213.5, + 99213.5, 99213.59, + 99213.59, 99213.66, + 99213.66, 99213.75, + 99213.75, 99213.84, + 99213.84, 99213.91, + 99213.91, 99214, + 99214, 99214.09, + 99214.09, 99214.16, + 99214.16, 99214.25, + 99214.25, 99214.34, + 99214.34, 99214.41, + 99214.41, 99214.5, + 99214.5, 99214.59, + 99214.59, 99214.66, + 99214.66, 99214.75, + 99214.75, 99214.84, + 99214.84, 99214.91, + 99214.91, 99215, + 99215, 99215.09, + 99215.09, 99215.16, + 99215.16, 99215.25, + 99215.25, 99215.34, + 99215.34, 99215.41, + 99215.41, 99215.5, + 99215.5, 99215.59, + 99215.59, 99215.66, + 99215.66, 99215.75, + 99215.75, 99215.84, + 99215.84, 99215.91, + 99215.91, 99216, + 99216, 99216.09, + 99216.09, 99216.16, + 99216.16, 99216.25, + 99216.25, 99216.34, + 99216.34, 99216.41, + 99216.41, 99216.5, + 99216.5, 99216.59, + 99216.59, 99216.66, + 99216.66, 99216.75, + 99216.75, 99216.84, + 99216.84, 99216.91, + 99216.91, 99217, + 99217, 99217.09, + 99217.09, 99217.16, + 99217.16, 99217.25, + 99217.25, 99217.34, + 99217.34, 99217.41, + 99217.41, 99217.5, + 99217.5, 99217.59, + 99217.59, 99217.66, + 99217.66, 99217.75, + 99217.75, 99217.84, + 99217.84, 99217.91, + 99217.91, 99218, + 99218, 99218.09, + 99218.09, 99218.16, + 99218.16, 99218.25, + 99218.25, 99218.34, + 99218.34, 99218.41, + 99218.41, 99218.5, + 99218.5, 99218.59, + 99218.59, 99218.66, + 99218.66, 99218.75, + 99218.75, 99218.84, + 99218.84, 99218.91, + 99218.91, 99219, + 99219, 99219.09, + 99219.09, 99219.16, + 99219.16, 99219.25, + 99219.25, 99219.34, + 99219.34, 99219.41, + 99219.41, 99219.5, + 99219.5, 99219.59, + 99219.59, 99219.66, + 99219.66, 99219.75, + 99219.75, 99219.84, + 99219.84, 99219.91, + 99219.91, 99220, + 99220, 99220.09, + 99220.09, 99220.16, + 99220.16, 99220.25, + 99220.25, 99220.34, + 99220.34, 99220.41, + 99220.41, 99220.5, + 99220.5, 99220.59, + 99220.59, 99220.66, + 99220.66, 99220.75, + 99220.75, 99220.84, + 99220.84, 99220.91, + 99220.91, 99221, + 99221, 99221.09, + 99221.09, 99221.16, + 99221.16, 99221.25, + 99221.25, 99221.34, + 99221.34, 99221.41, + 99221.41, 99221.5, + 99221.5, 99221.59, + 99221.59, 99221.66, + 99221.66, 99221.75, + 99221.75, 99221.84, + 99221.84, 99221.91, + 99221.91, 99222, + 99222, 99222.09, + 99222.09, 99222.16, + 99222.16, 99222.25, + 99222.25, 99222.34, + 99222.34, 99222.41, + 99222.41, 99222.5, + 99222.5, 99222.59, + 99222.59, 99222.66, + 99222.66, 99222.75, + 99222.75, 99222.84, + 99222.84, 99222.91, + 99222.91, 99223, + 99223, 99223.09, + 99223.09, 99223.16, + 99223.16, 99223.25, + 99223.25, 99223.34, + 99223.34, 99223.41, + 99223.41, 99223.5, + 99223.5, 99223.59, + 99223.59, 99223.66, + 99223.66, 99223.75, + 99223.75, 99223.84, + 99223.84, 99223.91, + 99223.91, 99224, + 99224, 99224.09, + 99224.09, 99224.16, + 99224.16, 99224.25, + 99224.25, 99224.34, + 99224.34, 99224.41, + 99224.41, 99224.5, + 99224.5, 99224.59, + 99224.59, 99224.66, + 99224.66, 99224.75, + 99224.75, 99224.84, + 99224.84, 99224.91, + 99224.91, 99225, + 99225, 99225.09, + 99225.09, 99225.16, + 99225.16, 99225.25, + 99225.25, 99225.34, + 99225.34, 99225.41, + 99225.41, 99225.5, + 99225.5, 99225.59, + 99225.59, 99225.66, + 99225.66, 99225.75, + 99225.75, 99225.84, + 99225.84, 99225.91, + 99225.91, 99226, + 99226, 99226.09, + 99226.09, 99226.16, + 99226.16, 99226.25, + 99226.25, 99226.34, + 99226.34, 99226.41, + 99226.41, 99226.5, + 99226.5, 99226.59, + 99226.59, 99226.66, + 99226.66, 99226.75, + 99226.75, 99226.84, + 99226.84, 99226.91, + 99226.91, 99227, + 99227, 99227.09, + 99227.09, 99227.16, + 99227.16, 99227.25, + 99227.25, 99227.34, + 99227.34, 99227.41, + 99227.41, 99227.5, + 99227.5, 99227.59, + 99227.59, 99227.66, + 99227.66, 99227.75, + 99227.75, 99227.84, + 99227.84, 99227.91, + 99227.91, 99228, + 99228, 99228.09, + 99228.09, 99228.16, + 99228.16, 99228.25, + 99228.25, 99228.34, + 99228.34, 99228.41, + 99228.41, 99228.5, + 99228.5, 99228.59, + 99228.59, 99228.66, + 99228.66, 99228.75, + 99228.75, 99228.84, + 99228.84, 99228.91, + 99228.91, 99229, + 99229, 99229.09, + 99229.09, 99229.16, + 99229.16, 99229.25, + 99229.25, 99229.34, + 99229.34, 99229.41, + 99229.41, 99229.5, + 99229.5, 99229.59, + 99229.59, 99229.66, + 99229.66, 99229.75, + 99229.75, 99229.84, + 99229.84, 99229.91, + 99229.91, 99230, + 99230, 99230.09, + 99230.09, 99230.16, + 99230.16, 99230.25, + 99230.25, 99230.34, + 99230.34, 99230.41, + 99230.41, 99230.5, + 99230.5, 99230.59, + 99230.59, 99230.66, + 99230.66, 99230.75, + 99230.75, 99230.84, + 99230.84, 99230.91, + 99230.91, 99231, + 99231, 99231.09, + 99231.09, 99231.16, + 99231.16, 99231.25, + 99231.25, 99231.34, + 99231.34, 99231.41, + 99231.41, 99231.5, + 99231.5, 99231.59, + 99231.59, 99231.66, + 99231.66, 99231.75, + 99231.75, 99231.84, + 99231.84, 99231.91, + 99231.91, 99232, + 99232, 99232.09, + 99232.09, 99232.16, + 99232.16, 99232.25, + 99232.25, 99232.34, + 99232.34, 99232.41, + 99232.41, 99232.5, + 99232.5, 99232.59, + 99232.59, 99232.66, + 99232.66, 99232.75, + 99232.75, 99232.84, + 99232.84, 99232.91, + 99232.91, 99233, + 99233, 99233.09, + 99233.09, 99233.16, + 99233.16, 99233.25, + 99233.25, 99233.34, + 99233.34, 99233.41, + 99233.41, 99233.5, + 99233.5, 99233.59, + 99233.59, 99233.66, + 99233.66, 99233.75, + 99233.75, 99233.84, + 99233.84, 99233.91, + 99233.91, 99234, + 99234, 99234.09, + 99234.09, 99234.16, + 99234.16, 99234.25, + 99234.25, 99234.34, + 99234.34, 99234.41, + 99234.41, 99234.5, + 99234.5, 99234.59, + 99234.59, 99234.66, + 99234.66, 99234.75, + 99234.75, 99234.84, + 99234.84, 99234.91, + 99234.91, 99235, + 99235, 99235.09, + 99235.09, 99235.16, + 99235.16, 99235.25, + 99235.25, 99235.34, + 99235.34, 99235.41, + 99235.41, 99235.5, + 99235.5, 99235.59, + 99235.59, 99235.66, + 99235.66, 99235.75, + 99235.75, 99235.84, + 99235.84, 99235.91, + 99235.91, 99236, + 99236, 99236.09, + 99236.09, 99236.16, + 99236.16, 99236.25, + 99236.25, 99236.34, + 99236.34, 99236.41, + 99236.41, 99236.5, + 99236.5, 99236.59, + 99236.59, 99236.66, + 99236.66, 99236.75, + 99236.75, 99236.84, + 99236.84, 99236.91, + 99236.91, 99237, + 99237, 99237.09, + 99237.09, 99237.16, + 99237.16, 99237.25, + 99237.25, 99237.34, + 99237.34, 99237.41, + 99237.41, 99237.5, + 99237.5, 99237.59, + 99237.59, 99237.66, + 99237.66, 99237.75, + 99237.75, 99237.84, + 99237.84, 99237.91, + 99237.91, 99238, + 99238, 99238.09, + 99238.09, 99238.16, + 99238.16, 99238.25, + 99238.25, 99238.34, + 99238.34, 99238.41, + 99238.41, 99238.5, + 99238.5, 99238.59, + 99238.59, 99238.66, + 99238.66, 99238.75, + 99238.75, 99238.84, + 99238.84, 99238.91, + 99238.91, 99239, + 99239, 99239.09, + 99239.09, 99239.16, + 99239.16, 99239.25, + 99239.25, 99239.34, + 99239.34, 99239.41, + 99239.41, 99239.5, + 99239.5, 99239.59, + 99239.59, 99239.66, + 99239.66, 99239.75, + 99239.75, 99239.84, + 99239.84, 99239.91, + 99239.91, 99240, + 99240, 99240.09, + 99240.09, 99240.16, + 99240.16, 99240.25, + 99240.25, 99240.34, + 99240.34, 99240.41, + 99240.41, 99240.5, + 99240.5, 99240.59, + 99240.59, 99240.66, + 99240.66, 99240.75, + 99240.75, 99240.84, + 99240.84, 99240.91, + 99240.91, 99241, + 99241, 99241.09, + 99241.09, 99241.16, + 99241.16, 99241.25, + 99241.25, 99241.34, + 99241.34, 99241.41, + 99241.41, 99241.5, + 99241.5, 99241.59, + 99241.59, 99241.66, + 99241.66, 99241.75, + 99241.75, 99241.84, + 99241.84, 99241.91, + 99241.91, 99242, + 99242, 99242.09, + 99242.09, 99242.16, + 99242.16, 99242.25, + 99242.25, 99242.34, + 99242.34, 99242.41, + 99242.41, 99242.5, + 99242.5, 99242.59, + 99242.59, 99242.66, + 99242.66, 99242.75, + 99242.75, 99242.84, + 99242.84, 99242.91, + 99242.91, 99243, + 99243, 99243.09, + 99243.09, 99243.16, + 99243.16, 99243.25, + 99243.25, 99243.34, + 99243.34, 99243.41, + 99243.41, 99243.5, + 99243.5, 99243.59, + 99243.59, 99243.66, + 99243.66, 99243.75, + 99243.75, 99243.84, + 99243.84, 99243.91, + 99243.91, 99244, + 99244, 99244.09, + 99244.09, 99244.16, + 99244.16, 99244.25, + 99244.25, 99244.34, + 99244.34, 99244.41, + 99244.41, 99244.5, + 99244.5, 99244.59, + 99244.59, 99244.66, + 99244.66, 99244.75, + 99244.75, 99244.84, + 99244.84, 99244.91, + 99244.91, 99245, + 99245, 99245.09, + 99245.09, 99245.16, + 99245.16, 99245.25, + 99245.25, 99245.34, + 99245.34, 99245.41, + 99245.41, 99245.5, + 99245.5, 99245.59, + 99245.59, 99245.66, + 99245.66, 99245.75, + 99245.75, 99245.84, + 99245.84, 99245.91, + 99245.91, 99246, + 99246, 99246.09, + 99246.09, 99246.16, + 99246.16, 99246.25, + 99246.25, 99246.34, + 99246.34, 99246.41, + 99246.41, 99246.5, + 99246.5, 99246.59, + 99246.59, 99246.66, + 99246.66, 99246.75, + 99246.75, 99246.84, + 99246.84, 99246.91, + 99246.91, 99247, + 99247, 99247.09, + 99247.09, 99247.16, + 99247.16, 99247.25, + 99247.25, 99247.34, + 99247.34, 99247.41, + 99247.41, 99247.5, + 99247.5, 99247.59, + 99247.59, 99247.66, + 99247.66, 99247.75, + 99247.75, 99247.84, + 99247.84, 99247.91, + 99247.91, 99248, + 99248, 99248.09, + 99248.09, 99248.16, + 99248.16, 99248.25, + 99248.25, 99248.34, + 99248.34, 99248.41, + 99248.41, 99248.5, + 99248.5, 99248.59, + 99248.59, 99248.66, + 99248.66, 99248.75, + 99248.75, 99248.84, + 99248.84, 99248.91, + 99248.91, 99249, + 99249, 99249.09, + 99249.09, 99249.16, + 99249.16, 99249.25, + 99249.25, 99249.34, + 99249.34, 99249.41, + 99249.41, 99249.5, + 99249.5, 99249.59, + 99249.59, 99249.66, + 99249.66, 99249.75, + 99249.75, 99249.84, + 99249.84, 99249.91, + 99249.91, 99250, + 99250, 99250.09, + 99250.09, 99250.16, + 99250.16, 99250.25, + 99250.25, 99250.34, + 99250.34, 99250.41, + 99250.41, 99250.5, + 99250.5, 99250.59, + 99250.59, 99250.66, + 99250.66, 99250.75, + 99250.75, 99250.84, + 99250.84, 99250.91, + 99250.91, 99251, + 99251, 99251.09, + 99251.09, 99251.16, + 99251.16, 99251.25, + 99251.25, 99251.34, + 99251.34, 99251.41, + 99251.41, 99251.5, + 99251.5, 99251.59, + 99251.59, 99251.66, + 99251.66, 99251.75, + 99251.75, 99251.84, + 99251.84, 99251.91, + 99251.91, 99252, + 99252, 99252.09, + 99252.09, 99252.16, + 99252.16, 99252.25, + 99252.25, 99252.34, + 99252.34, 99252.41, + 99252.41, 99252.5, + 99252.5, 99252.59, + 99252.59, 99252.66, + 99252.66, 99252.75, + 99252.75, 99252.84, + 99252.84, 99252.91, + 99252.91, 99253, + 99253, 99253.09, + 99253.09, 99253.16, + 99253.16, 99253.25, + 99253.25, 99253.34, + 99253.34, 99253.41, + 99253.41, 99253.5, + 99253.5, 99253.59, + 99253.59, 99253.66, + 99253.66, 99253.75, + 99253.75, 99253.84, + 99253.84, 99253.91, + 99253.91, 99254, + 99254, 99254.09, + 99254.09, 99254.16, + 99254.16, 99254.25, + 99254.25, 99254.34, + 99254.34, 99254.41, + 99254.41, 99254.5, + 99254.5, 99254.59, + 99254.59, 99254.66, + 99254.66, 99254.75, + 99254.75, 99254.84, + 99254.84, 99254.91, + 99254.91, 99255, + 99255, 99255.09, + 99255.09, 99255.16, + 99255.16, 99255.25, + 99255.25, 99255.34, + 99255.34, 99255.41, + 99255.41, 99255.5, + 99255.5, 99255.59, + 99255.59, 99255.66, + 99255.66, 99255.75, + 99255.75, 99255.84, + 99255.84, 99255.91, + 99255.91, 99256, + 99256, 99256.09, + 99256.09, 99256.16, + 99256.16, 99256.25, + 99256.25, 99256.34, + 99256.34, 99256.41, + 99256.41, 99256.5, + 99256.5, 99256.59, + 99256.59, 99256.66, + 99256.66, 99256.75, + 99256.75, 99256.84, + 99256.84, 99256.91, + 99256.91, 99257, + 99257, 99257.09, + 99257.09, 99257.16, + 99257.16, 99257.25, + 99257.25, 99257.34, + 99257.34, 99257.41, + 99257.41, 99257.5, + 99257.5, 99257.59, + 99257.59, 99257.66, + 99257.66, 99257.75, + 99257.75, 99257.84, + 99257.84, 99257.91, + 99257.91, 99258, + 99258, 99258.09, + 99258.09, 99258.16, + 99258.16, 99258.25, + 99258.25, 99258.34, + 99258.34, 99258.41, + 99258.41, 99258.5, + 99258.5, 99258.59, + 99258.59, 99258.66, + 99258.66, 99258.75, + 99258.75, 99258.84, + 99258.84, 99258.91, + 99258.91, 99259, + 99259, 99259.09, + 99259.09, 99259.16, + 99259.16, 99259.25, + 99259.25, 99259.34, + 99259.34, 99259.41, + 99259.41, 99259.5, + 99259.5, 99259.59, + 99259.59, 99259.66, + 99259.66, 99259.75, + 99259.75, 99259.84, + 99259.84, 99259.91, + 99259.91, 99260, + 99260, 99260.09, + 99260.09, 99260.16, + 99260.16, 99260.25, + 99260.25, 99260.34, + 99260.34, 99260.41, + 99260.41, 99260.5, + 99260.5, 99260.59, + 99260.59, 99260.66, + 99260.66, 99260.75, + 99260.75, 99260.84, + 99260.84, 99260.91, + 99260.91, 99261, + 99261, 99261.09, + 99261.09, 99261.16, + 99261.16, 99261.25, + 99261.25, 99261.34, + 99261.34, 99261.41, + 99261.41, 99261.5, + 99261.5, 99261.59, + 99261.59, 99261.66, + 99261.66, 99261.75, + 99261.75, 99261.84, + 99261.84, 99261.91, + 99261.91, 99262, + 99262, 99262.09, + 99262.09, 99262.16, + 99262.16, 99262.25, + 99262.25, 99262.34, + 99262.34, 99262.41, + 99262.41, 99262.5, + 99262.5, 99262.59, + 99262.59, 99262.66, + 99262.66, 99262.75, + 99262.75, 99262.84, + 99262.84, 99262.91, + 99262.91, 99263, + 99263, 99263.09, + 99263.09, 99263.16, + 99263.16, 99263.25, + 99263.25, 99263.34, + 99263.34, 99263.41, + 99263.41, 99263.5, + 99263.5, 99263.59, + 99263.59, 99263.66, + 99263.66, 99263.75, + 99263.75, 99263.84, + 99263.84, 99263.91, + 99263.91, 99264, + 99264, 99264.09, + 99264.09, 99264.16, + 99264.16, 99264.25, + 99264.25, 99264.34, + 99264.34, 99264.41, + 99264.41, 99264.5, + 99264.5, 99264.59, + 99264.59, 99264.66, + 99264.66, 99264.75, + 99264.75, 99264.84, + 99264.84, 99264.91, + 99264.91, 99265, + 99265, 99265.09, + 99265.09, 99265.16, + 99265.16, 99265.25, + 99265.25, 99265.34, + 99265.34, 99265.41, + 99265.41, 99265.5, + 99265.5, 99265.59, + 99265.59, 99265.66, + 99265.66, 99265.75, + 99265.75, 99265.84, + 99265.84, 99265.91, + 99265.91, 99266, + 99266, 99266.09, + 99266.09, 99266.16, + 99266.16, 99266.25, + 99266.25, 99266.34, + 99266.34, 99266.41, + 99266.41, 99266.5, + 99266.5, 99266.59, + 99266.59, 99266.66, + 99266.66, 99266.75, + 99266.75, 99266.84, + 99266.84, 99266.91, + 99266.91, 99267, + 99267, 99267.09, + 99267.09, 99267.16, + 99267.16, 99267.25, + 99267.25, 99267.34, + 99267.34, 99267.41, + 99267.41, 99267.5, + 99267.5, 99267.59, + 99267.59, 99267.66, + 99267.66, 99267.75, + 99267.75, 99267.84, + 99267.84, 99267.91, + 99267.91, 99268, + 99268, 99268.09, + 99268.09, 99268.16, + 99268.16, 99268.25, + 99268.25, 99268.34, + 99268.34, 99268.41, + 99268.41, 99268.5, + 99268.5, 99268.59, + 99268.59, 99268.66, + 99268.66, 99268.75, + 99268.75, 99268.84, + 99268.84, 99268.91, + 99268.91, 99269, + 99269, 99269.09, + 99269.09, 99269.16, + 99269.16, 99269.25, + 99269.25, 99269.34, + 99269.34, 99269.41, + 99269.41, 99269.5, + 99269.5, 99269.59, + 99269.59, 99269.66, + 99269.66, 99269.75, + 99269.75, 99269.84, + 99269.84, 99269.91, + 99269.91, 99270, + 99270, 99270.09, + 99270.09, 99270.16, + 99270.16, 99270.25, + 99270.25, 99270.34, + 99270.34, 99270.41, + 99270.41, 99270.5, + 99270.5, 99270.59, + 99270.59, 99270.66, + 99270.66, 99270.75, + 99270.75, 99270.84, + 99270.84, 99270.91, + 99270.91, 99271, + 99271, 99271.09, + 99271.09, 99271.16, + 99271.16, 99271.25, + 99271.25, 99271.34, + 99271.34, 99271.41, + 99271.41, 99271.5, + 99271.5, 99271.59, + 99271.59, 99271.66, + 99271.66, 99271.75, + 99271.75, 99271.84, + 99271.84, 99271.91, + 99271.91, 99272, + 99272, 99272.09, + 99272.09, 99272.16, + 99272.16, 99272.25, + 99272.25, 99272.34, + 99272.34, 99272.41, + 99272.41, 99272.5, + 99272.5, 99272.59, + 99272.59, 99272.66, + 99272.66, 99272.75, + 99272.75, 99272.84, + 99272.84, 99272.91, + 99272.91, 99273, + 99273, 99273.09, + 99273.09, 99273.16, + 99273.16, 99273.25, + 99273.25, 99273.34, + 99273.34, 99273.41, + 99273.41, 99273.5, + 99273.5, 99273.59, + 99273.59, 99273.66, + 99273.66, 99273.75, + 99273.75, 99273.84, + 99273.84, 99273.91, + 99273.91, 99274, + 99274, 99274.09, + 99274.09, 99274.16, + 99274.16, 99274.25, + 99274.25, 99274.34, + 99274.34, 99274.41, + 99274.41, 99274.5, + 99274.5, 99274.59, + 99274.59, 99274.66, + 99274.66, 99274.75, + 99274.75, 99274.84, + 99274.84, 99274.91, + 99274.91, 99275, + 99275, 99275.09, + 99275.09, 99275.16, + 99275.16, 99275.25, + 99275.25, 99275.34, + 99275.34, 99275.41, + 99275.41, 99275.5, + 99275.5, 99275.59, + 99275.59, 99275.66, + 99275.66, 99275.75, + 99275.75, 99275.84, + 99275.84, 99275.91, + 99275.91, 99276, + 99276, 99276.09, + 99276.09, 99276.16, + 99276.16, 99276.25, + 99276.25, 99276.34, + 99276.34, 99276.41, + 99276.41, 99276.5, + 99276.5, 99276.59, + 99276.59, 99276.66, + 99276.66, 99276.75, + 99276.75, 99276.84, + 99276.84, 99276.91, + 99276.91, 99277, + 99277, 99277.09, + 99277.09, 99277.16, + 99277.16, 99277.25, + 99277.25, 99277.34, + 99277.34, 99277.41, + 99277.41, 99277.5, + 99277.5, 99277.59, + 99277.59, 99277.66, + 99277.66, 99277.75, + 99277.75, 99277.84, + 99277.84, 99277.91, + 99277.91, 99278, + 99278, 99278.09, + 99278.09, 99278.16, + 99278.16, 99278.25, + 99278.25, 99278.34, + 99278.34, 99278.41, + 99278.41, 99278.5, + 99278.5, 99278.59, + 99278.59, 99278.66, + 99278.66, 99278.75, + 99278.75, 99278.84, + 99278.84, 99278.91, + 99278.91, 99279, + 99279, 99279.09, + 99279.09, 99279.16, + 99279.16, 99279.25, + 99279.25, 99279.34, + 99279.34, 99279.41, + 99279.41, 99279.5, + 99279.5, 99279.59, + 99279.59, 99279.66, + 99279.66, 99279.75, + 99279.75, 99279.84, + 99279.84, 99279.91, + 99279.91, 99280, + 99280, 99280.09, + 99280.09, 99280.16, + 99280.16, 99280.25, + 99280.25, 99280.34, + 99280.34, 99280.41, + 99280.41, 99280.5, + 99280.5, 99280.59, + 99280.59, 99280.66, + 99280.66, 99280.75, + 99280.75, 99280.84, + 99280.84, 99280.91, + 99280.91, 99281, + 99281, 99281.09, + 99281.09, 99281.16, + 99281.16, 99281.25, + 99281.25, 99281.34, + 99281.34, 99281.41, + 99281.41, 99281.5, + 99281.5, 99281.59, + 99281.59, 99281.66, + 99281.66, 99281.75, + 99281.75, 99281.84, + 99281.84, 99281.91, + 99281.91, 99282, + 99282, 99282.09, + 99282.09, 99282.16, + 99282.16, 99282.25, + 99282.25, 99282.34, + 99282.34, 99282.41, + 99282.41, 99282.5, + 99282.5, 99282.59, + 99282.59, 99282.66, + 99282.66, 99282.75, + 99282.75, 99282.84, + 99282.84, 99282.91, + 99282.91, 99283, + 99283, 99283.09, + 99283.09, 99283.16, + 99283.16, 99283.25, + 99283.25, 99283.34, + 99283.34, 99283.41, + 99283.41, 99283.5, + 99283.5, 99283.59, + 99283.59, 99283.66, + 99283.66, 99283.75, + 99283.75, 99283.84, + 99283.84, 99283.91, + 99283.91, 99284, + 99284, 99284.09, + 99284.09, 99284.16, + 99284.16, 99284.25, + 99284.25, 99284.34, + 99284.34, 99284.41, + 99284.41, 99284.5, + 99284.5, 99284.59, + 99284.59, 99284.66, + 99284.66, 99284.75, + 99284.75, 99284.84, + 99284.84, 99284.91, + 99284.91, 99285, + 99285, 99285.09, + 99285.09, 99285.16, + 99285.16, 99285.25, + 99285.25, 99285.34, + 99285.34, 99285.41, + 99285.41, 99285.5, + 99285.5, 99285.59, + 99285.59, 99285.66, + 99285.66, 99285.75, + 99285.75, 99285.84, + 99285.84, 99285.91, + 99285.91, 99286, + 99286, 99286.09, + 99286.09, 99286.16, + 99286.16, 99286.25, + 99286.25, 99286.34, + 99286.34, 99286.41, + 99286.41, 99286.5, + 99286.5, 99286.59, + 99286.59, 99286.66, + 99286.66, 99286.75, + 99286.75, 99286.84, + 99286.84, 99286.91, + 99286.91, 99287, + 99287, 99287.09, + 99287.09, 99287.16, + 99287.16, 99287.25, + 99287.25, 99287.34, + 99287.34, 99287.41, + 99287.41, 99287.5, + 99287.5, 99287.59, + 99287.59, 99287.66, + 99287.66, 99287.75, + 99287.75, 99287.84, + 99287.84, 99287.91, + 99287.91, 99288, + 99288, 99288.09, + 99288.09, 99288.16, + 99288.16, 99288.25, + 99288.25, 99288.34, + 99288.34, 99288.41, + 99288.41, 99288.5, + 99288.5, 99288.59, + 99288.59, 99288.66, + 99288.66, 99288.75, + 99288.75, 99288.84, + 99288.84, 99288.91, + 99288.91, 99289, + 99289, 99289.09, + 99289.09, 99289.16, + 99289.16, 99289.25, + 99289.25, 99289.34, + 99289.34, 99289.41, + 99289.41, 99289.5, + 99289.5, 99289.59, + 99289.59, 99289.66, + 99289.66, 99289.75, + 99289.75, 99289.84, + 99289.84, 99289.91, + 99289.91, 99290, + 99290, 99290.09, + 99290.09, 99290.16, + 99290.16, 99290.25, + 99290.25, 99290.34, + 99290.34, 99290.41, + 99290.41, 99290.5, + 99290.5, 99290.59, + 99290.59, 99290.66, + 99290.66, 99290.75, + 99290.75, 99290.84, + 99290.84, 99290.91, + 99290.91, 99291, + 99291, 99291.09, + 99291.09, 99291.16, + 99291.16, 99291.25, + 99291.25, 99291.34, + 99291.34, 99291.41, + 99291.41, 99291.5, + 99291.5, 99291.59, + 99291.59, 99291.66, + 99291.66, 99291.75, + 99291.75, 99291.84, + 99291.84, 99291.91, + 99291.91, 99292, + 99292, 99292.09, + 99292.09, 99292.16, + 99292.16, 99292.25, + 99292.25, 99292.34, + 99292.34, 99292.41, + 99292.41, 99292.5, + 99292.5, 99292.59, + 99292.59, 99292.66, + 99292.66, 99292.75, + 99292.75, 99292.84, + 99292.84, 99292.91, + 99292.91, 99293, + 99293, 99293.09, + 99293.09, 99293.16, + 99293.16, 99293.25, + 99293.25, 99293.34, + 99293.34, 99293.41, + 99293.41, 99293.5, + 99293.5, 99293.59, + 99293.59, 99293.66, + 99293.66, 99293.75, + 99293.75, 99293.84, + 99293.84, 99293.91, + 99293.91, 99294, + 99294, 99294.09, + 99294.09, 99294.16, + 99294.16, 99294.25, + 99294.25, 99294.34, + 99294.34, 99294.41, + 99294.41, 99294.5, + 99294.5, 99294.59, + 99294.59, 99294.66, + 99294.66, 99294.75, + 99294.75, 99294.84, + 99294.84, 99294.91, + 99294.91, 99295, + 99295, 99295.09, + 99295.09, 99295.16, + 99295.16, 99295.25, + 99295.25, 99295.34, + 99295.34, 99295.41, + 99295.41, 99295.5, + 99295.5, 99295.59, + 99295.59, 99295.66, + 99295.66, 99295.75, + 99295.75, 99295.84, + 99295.84, 99295.91, + 99295.91, 99296, + 99296, 99296.09, + 99296.09, 99296.16, + 99296.16, 99296.25, + 99296.25, 99296.34, + 99296.34, 99296.41, + 99296.41, 99296.5, + 99296.5, 99296.59, + 99296.59, 99296.66, + 99296.66, 99296.75, + 99296.75, 99296.84, + 99296.84, 99296.91, + 99296.91, 99297, + 99297, 99297.09, + 99297.09, 99297.16, + 99297.16, 99297.25, + 99297.25, 99297.34, + 99297.34, 99297.41, + 99297.41, 99297.5, + 99297.5, 99297.59, + 99297.59, 99297.66, + 99297.66, 99297.75, + 99297.75, 99297.84, + 99297.84, 99297.91, + 99297.91, 99298, + 99298, 99298.09, + 99298.09, 99298.16, + 99298.16, 99298.25, + 99298.25, 99298.34, + 99298.34, 99298.41, + 99298.41, 99298.5, + 99298.5, 99298.59, + 99298.59, 99298.66, + 99298.66, 99298.75, + 99298.75, 99298.84, + 99298.84, 99298.91, + 99298.91, 99299, + 99299, 99299.09, + 99299.09, 99299.16, + 99299.16, 99299.25, + 99299.25, 99299.34, + 99299.34, 99299.41, + 99299.41, 99299.5, + 99299.5, 99299.59, + 99299.59, 99299.66, + 99299.66, 99299.75, + 99299.75, 99299.84, + 99299.84, 99299.91, + 99299.91, 99300, + 99300, 99300.09, + 99300.09, 99300.16, + 99300.16, 99300.25, + 99300.25, 99300.34, + 99300.34, 99300.41, + 99300.41, 99300.5, + 99300.5, 99300.59, + 99300.59, 99300.66, + 99300.66, 99300.75, + 99300.75, 99300.84, + 99300.84, 99300.91, + 99300.91, 99301, + 99301, 99301.09, + 99301.09, 99301.16, + 99301.16, 99301.25, + 99301.25, 99301.34, + 99301.34, 99301.41, + 99301.41, 99301.5, + 99301.5, 99301.59, + 99301.59, 99301.66, + 99301.66, 99301.75, + 99301.75, 99301.84, + 99301.84, 99301.91, + 99301.91, 99302, + 99302, 99302.09, + 99302.09, 99302.16, + 99302.16, 99302.25, + 99302.25, 99302.34, + 99302.34, 99302.41, + 99302.41, 99302.5, + 99302.5, 99302.59, + 99302.59, 99302.66, + 99302.66, 99302.75, + 99302.75, 99302.84, + 99302.84, 99302.91, + 99302.91, 99303, + 99303, 99303.09, + 99303.09, 99303.16, + 99303.16, 99303.25, + 99303.25, 99303.34, + 99303.34, 99303.41, + 99303.41, 99303.5, + 99303.5, 99303.59, + 99303.59, 99303.66, + 99303.66, 99303.75, + 99303.75, 99303.84, + 99303.84, 99303.91, + 99303.91, 99304, + 99304, 99304.09, + 99304.09, 99304.16, + 99304.16, 99304.25, + 99304.25, 99304.34, + 99304.34, 99304.41, + 99304.41, 99304.5, + 99304.5, 99304.59, + 99304.59, 99304.66, + 99304.66, 99304.75, + 99304.75, 99304.84, + 99304.84, 99304.91, + 99304.91, 99305, + 99305, 99305.09, + 99305.09, 99305.16, + 99305.16, 99305.25, + 99305.25, 99305.34, + 99305.34, 99305.41, + 99305.41, 99305.5, + 99305.5, 99305.59, + 99305.59, 99305.66, + 99305.66, 99305.75, + 99305.75, 99305.84, + 99305.84, 99305.91, + 99305.91, 99306, + 99306, 99306.09, + 99306.09, 99306.16, + 99306.16, 99306.25, + 99306.25, 99306.34, + 99306.34, 99306.41, + 99306.41, 99306.5, + 99306.5, 99306.59, + 99306.59, 99306.66, + 99306.66, 99306.75, + 99306.75, 99306.84, + 99306.84, 99306.91, + 99306.91, 99307, + 99307, 99307.09, + 99307.09, 99307.16, + 99307.16, 99307.25, + 99307.25, 99307.34, + 99307.34, 99307.41, + 99307.41, 99307.5, + 99307.5, 99307.59, + 99307.59, 99307.66, + 99307.66, 99307.75, + 99307.75, 99307.84, + 99307.84, 99307.91, + 99307.91, 99308, + 99308, 99308.09, + 99308.09, 99308.16, + 99308.16, 99308.25, + 99308.25, 99308.34, + 99308.34, 99308.41, + 99308.41, 99308.5, + 99308.5, 99308.59, + 99308.59, 99308.66, + 99308.66, 99308.75, + 99308.75, 99308.84, + 99308.84, 99308.91, + 99308.91, 99309, + 99309, 99309.09, + 99309.09, 99309.16, + 99309.16, 99309.25, + 99309.25, 99309.34, + 99309.34, 99309.41, + 99309.41, 99309.5, + 99309.5, 99309.59, + 99309.59, 99309.66, + 99309.66, 99309.75, + 99309.75, 99309.84, + 99309.84, 99309.91, + 99309.91, 99310, + 99310, 99310.09, + 99310.09, 99310.16, + 99310.16, 99310.25, + 99310.25, 99310.34, + 99310.34, 99310.41, + 99310.41, 99310.5, + 99310.5, 99310.59, + 99310.59, 99310.66, + 99310.66, 99310.75, + 99310.75, 99310.84, + 99310.84, 99310.91, + 99310.91, 99311, + 99311, 99311.09, + 99311.09, 99311.16, + 99311.16, 99311.25, + 99311.25, 99311.34, + 99311.34, 99311.41, + 99311.41, 99311.5, + 99311.5, 99311.59, + 99311.59, 99311.66, + 99311.66, 99311.75, + 99311.75, 99311.84, + 99311.84, 99311.91, + 99311.91, 99312, + 99312, 99312.09, + 99312.09, 99312.16, + 99312.16, 99312.25, + 99312.25, 99312.34, + 99312.34, 99312.41, + 99312.41, 99312.5, + 99312.5, 99312.59, + 99312.59, 99312.66, + 99312.66, 99312.75, + 99312.75, 99312.84, + 99312.84, 99312.91, + 99312.91, 99313, + 99313, 99313.09, + 99313.09, 99313.16, + 99313.16, 99313.25, + 99313.25, 99313.34, + 99313.34, 99313.41, + 99313.41, 99313.5, + 99313.5, 99313.59, + 99313.59, 99313.66, + 99313.66, 99313.75, + 99313.75, 99313.84, + 99313.84, 99313.91, + 99313.91, 99314, + 99314, 99314.09, + 99314.09, 99314.16, + 99314.16, 99314.25, + 99314.25, 99314.34, + 99314.34, 99314.41, + 99314.41, 99314.5, + 99314.5, 99314.59, + 99314.59, 99314.66, + 99314.66, 99314.75, + 99314.75, 99314.84, + 99314.84, 99314.91, + 99314.91, 99315, + 99315, 99315.09, + 99315.09, 99315.16, + 99315.16, 99315.25, + 99315.25, 99315.34, + 99315.34, 99315.41, + 99315.41, 99315.5, + 99315.5, 99315.59, + 99315.59, 99315.66, + 99315.66, 99315.75, + 99315.75, 99315.84, + 99315.84, 99315.91, + 99315.91, 99316, + 99316, 99316.09, + 99316.09, 99316.16, + 99316.16, 99316.25, + 99316.25, 99316.34, + 99316.34, 99316.41, + 99316.41, 99316.5, + 99316.5, 99316.59, + 99316.59, 99316.66, + 99316.66, 99316.75, + 99316.75, 99316.84, + 99316.84, 99316.91, + 99316.91, 99317, + 99317, 99317.09, + 99317.09, 99317.16, + 99317.16, 99317.25, + 99317.25, 99317.34, + 99317.34, 99317.41, + 99317.41, 99317.5, + 99317.5, 99317.59, + 99317.59, 99317.66, + 99317.66, 99317.75, + 99317.75, 99317.84, + 99317.84, 99317.91, + 99317.91, 99318, + 99318, 99318.09, + 99318.09, 99318.16, + 99318.16, 99318.25, + 99318.25, 99318.34, + 99318.34, 99318.41, + 99318.41, 99318.5, + 99318.5, 99318.59, + 99318.59, 99318.66, + 99318.66, 99318.75, + 99318.75, 99318.84, + 99318.84, 99318.91, + 99318.91, 99319, + 99319, 99319.09, + 99319.09, 99319.16, + 99319.16, 99319.25, + 99319.25, 99319.34, + 99319.34, 99319.41, + 99319.41, 99319.5, + 99319.5, 99319.59, + 99319.59, 99319.66, + 99319.66, 99319.75, + 99319.75, 99319.84, + 99319.84, 99319.91, + 99319.91, 99320, + 99320, 99320.09, + 99320.09, 99320.16, + 99320.16, 99320.25, + 99320.25, 99320.34, + 99320.34, 99320.41, + 99320.41, 99320.5, + 99320.5, 99320.59, + 99320.59, 99320.66, + 99320.66, 99320.75, + 99320.75, 99320.84, + 99320.84, 99320.91, + 99320.91, 99321, + 99321, 99321.09, + 99321.09, 99321.16, + 99321.16, 99321.25, + 99321.25, 99321.34, + 99321.34, 99321.41, + 99321.41, 99321.5, + 99321.5, 99321.59, + 99321.59, 99321.66, + 99321.66, 99321.75, + 99321.75, 99321.84, + 99321.84, 99321.91, + 99321.91, 99322, + 99322, 99322.09, + 99322.09, 99322.16, + 99322.16, 99322.25, + 99322.25, 99322.34, + 99322.34, 99322.41, + 99322.41, 99322.5, + 99322.5, 99322.59, + 99322.59, 99322.66, + 99322.66, 99322.75, + 99322.75, 99322.84, + 99322.84, 99322.91, + 99322.91, 99323, + 99323, 99323.09, + 99323.09, 99323.16, + 99323.16, 99323.25, + 99323.25, 99323.34, + 99323.34, 99323.41, + 99323.41, 99323.5, + 99323.5, 99323.59, + 99323.59, 99323.66, + 99323.66, 99323.75, + 99323.75, 99323.84, + 99323.84, 99323.91, + 99323.91, 99324, + 99324, 99324.09, + 99324.09, 99324.16, + 99324.16, 99324.25, + 99324.25, 99324.34, + 99324.34, 99324.41, + 99324.41, 99324.5, + 99324.5, 99324.59, + 99324.59, 99324.66, + 99324.66, 99324.75, + 99324.75, 99324.84, + 99324.84, 99324.91, + 99324.91, 99325, + 99325, 99325.09, + 99325.09, 99325.16, + 99325.16, 99325.25, + 99325.25, 99325.34, + 99325.34, 99325.41, + 99325.41, 99325.5, + 99325.5, 99325.59, + 99325.59, 99325.66, + 99325.66, 99325.75, + 99325.75, 99325.84, + 99325.84, 99325.91, + 99325.91, 99326, + 99326, 99326.09, + 99326.09, 99326.16, + 99326.16, 99326.25, + 99326.25, 99326.34, + 99326.34, 99326.41, + 99326.41, 99326.5, + 99326.5, 99326.59, + 99326.59, 99326.66, + 99326.66, 99326.75, + 99326.75, 99326.84, + 99326.84, 99326.91, + 99326.91, 99327, + 99327, 99327.09, + 99327.09, 99327.16, + 99327.16, 99327.25, + 99327.25, 99327.34, + 99327.34, 99327.41, + 99327.41, 99327.5, + 99327.5, 99327.59, + 99327.59, 99327.66, + 99327.66, 99327.75, + 99327.75, 99327.84, + 99327.84, 99327.91, + 99327.91, 99328, + 99328, 99328.09, + 99328.09, 99328.16, + 99328.16, 99328.25, + 99328.25, 99328.34, + 99328.34, 99328.41, + 99328.41, 99328.5, + 99328.5, 99328.59, + 99328.59, 99328.66, + 99328.66, 99328.75, + 99328.75, 99328.84, + 99328.84, 99328.91, + 99328.91, 99329, + 99329, 99329.09, + 99329.09, 99329.16, + 99329.16, 99329.25, + 99329.25, 99329.34, + 99329.34, 99329.41, + 99329.41, 99329.5, + 99329.5, 99329.59, + 99329.59, 99329.66, + 99329.66, 99329.75, + 99329.75, 99329.84, + 99329.84, 99329.91, + 99329.91, 99330, + 99330, 99330.09, + 99330.09, 99330.16, + 99330.16, 99330.25, + 99330.25, 99330.34, + 99330.34, 99330.41, + 99330.41, 99330.5, + 99330.5, 99330.59, + 99330.59, 99330.66, + 99330.66, 99330.75, + 99330.75, 99330.84, + 99330.84, 99330.91, + 99330.91, 99331, + 99331, 99331.09, + 99331.09, 99331.16, + 99331.16, 99331.25, + 99331.25, 99331.34, + 99331.34, 99331.41, + 99331.41, 99331.5, + 99331.5, 99331.59, + 99331.59, 99331.66, + 99331.66, 99331.75, + 99331.75, 99331.84, + 99331.84, 99331.91, + 99331.91, 99332, + 99332, 99332.09, + 99332.09, 99332.16, + 99332.16, 99332.25, + 99332.25, 99332.34, + 99332.34, 99332.41, + 99332.41, 99332.5, + 99332.5, 99332.59, + 99332.59, 99332.66, + 99332.66, 99332.75, + 99332.75, 99332.84, + 99332.84, 99332.91, + 99332.91, 99333, + 99333, 99333.09, + 99333.09, 99333.16, + 99333.16, 99333.25, + 99333.25, 99333.34, + 99333.34, 99333.41, + 99333.41, 99333.5, + 99333.5, 99333.59, + 99333.59, 99333.66, + 99333.66, 99333.75, + 99333.75, 99333.84, + 99333.84, 99333.91, + 99333.91, 99334, + 99334, 99334.09, + 99334.09, 99334.16, + 99334.16, 99334.25, + 99334.25, 99334.34, + 99334.34, 99334.41, + 99334.41, 99334.5, + 99334.5, 99334.59, + 99334.59, 99334.66, + 99334.66, 99334.75, + 99334.75, 99334.84, + 99334.84, 99334.91, + 99334.91, 99335, + 99335, 99335.09, + 99335.09, 99335.16, + 99335.16, 99335.25, + 99335.25, 99335.34, + 99335.34, 99335.41, + 99335.41, 99335.5, + 99335.5, 99335.59, + 99335.59, 99335.66, + 99335.66, 99335.75, + 99335.75, 99335.84, + 99335.84, 99335.91, + 99335.91, 99336, + 99336, 99336.09, + 99336.09, 99336.16, + 99336.16, 99336.25, + 99336.25, 99336.34, + 99336.34, 99336.41, + 99336.41, 99336.5, + 99336.5, 99336.59, + 99336.59, 99336.66, + 99336.66, 99336.75, + 99336.75, 99336.84, + 99336.84, 99336.91, + 99336.91, 99337, + 99337, 99337.09, + 99337.09, 99337.16, + 99337.16, 99337.25, + 99337.25, 99337.34, + 99337.34, 99337.41, + 99337.41, 99337.5, + 99337.5, 99337.59, + 99337.59, 99337.66, + 99337.66, 99337.75, + 99337.75, 99337.84, + 99337.84, 99337.91, + 99337.91, 99338, + 99338, 99338.09, + 99338.09, 99338.16, + 99338.16, 99338.25, + 99338.25, 99338.34, + 99338.34, 99338.41, + 99338.41, 99338.5, + 99338.5, 99338.59, + 99338.59, 99338.66, + 99338.66, 99338.75, + 99338.75, 99338.84, + 99338.84, 99338.91, + 99338.91, 99339, + 99339, 99339.09, + 99339.09, 99339.16, + 99339.16, 99339.25, + 99339.25, 99339.34, + 99339.34, 99339.41, + 99339.41, 99339.5, + 99339.5, 99339.59, + 99339.59, 99339.66, + 99339.66, 99339.75, + 99339.75, 99339.84, + 99339.84, 99339.91, + 99339.91, 99340, + 99340, 99340.09, + 99340.09, 99340.16, + 99340.16, 99340.25, + 99340.25, 99340.34, + 99340.34, 99340.41, + 99340.41, 99340.5, + 99340.5, 99340.59, + 99340.59, 99340.66, + 99340.66, 99340.75, + 99340.75, 99340.84, + 99340.84, 99340.91, + 99340.91, 99341, + 99341, 99341.09, + 99341.09, 99341.16, + 99341.16, 99341.25, + 99341.25, 99341.34, + 99341.34, 99341.41, + 99341.41, 99341.5, + 99341.5, 99341.59, + 99341.59, 99341.66, + 99341.66, 99341.75, + 99341.75, 99341.84, + 99341.84, 99341.91, + 99341.91, 99342, + 99342, 99342.09, + 99342.09, 99342.16, + 99342.16, 99342.25, + 99342.25, 99342.34, + 99342.34, 99342.41, + 99342.41, 99342.5, + 99342.5, 99342.59, + 99342.59, 99342.66, + 99342.66, 99342.75, + 99342.75, 99342.84, + 99342.84, 99342.91, + 99342.91, 99343, + 99343, 99343.09, + 99343.09, 99343.16, + 99343.16, 99343.25, + 99343.25, 99343.34, + 99343.34, 99343.41, + 99343.41, 99343.5, + 99343.5, 99343.59, + 99343.59, 99343.66, + 99343.66, 99343.75, + 99343.75, 99343.84, + 99343.84, 99343.91, + 99343.91, 99344, + 99344, 99344.09, + 99344.09, 99344.16, + 99344.16, 99344.25, + 99344.25, 99344.34, + 99344.34, 99344.41, + 99344.41, 99344.5, + 99344.5, 99344.59, + 99344.59, 99344.66, + 99344.66, 99344.75, + 99344.75, 99344.84, + 99344.84, 99344.91, + 99344.91, 99345, + 99345, 99345.09, + 99345.09, 99345.16, + 99345.16, 99345.25, + 99345.25, 99345.34, + 99345.34, 99345.41, + 99345.41, 99345.5, + 99345.5, 99345.59, + 99345.59, 99345.66, + 99345.66, 99345.75, + 99345.75, 99345.84, + 99345.84, 99345.91 ; +} diff --git a/splitnc/test/data/iceh-2monthly-mean_0272.cdl b/splitnc/test/data/iceh-2monthly-mean_0272.cdl new file mode 100644 index 0000000..af2e8b9 --- /dev/null +++ b/splitnc/test/data/iceh-2monthly-mean_0272.cdl @@ -0,0 +1,616 @@ +netcdf iceh-2monthly-mean_0272 { +dimensions: + d2 = 2 ; + ni = 360 ; + nj = 300 ; + nc = 5 ; + nkice = 1 ; + nksnow = 1 ; + nkbio = 2 ; + time = UNLIMITED ; // (6 currently) + nvertices = 4 ; +variables: + double time(time) ; + time:long_name = "model time" ; + time:units = "days since 0001-01-01 00:00:00" ; + time:calendar = "proleptic_gregorian" ; + time:bounds = "time_bounds" ; + float time_bounds(time, d2) ; + time_bounds:long_name = "boundaries for time-averaging interval" ; + time_bounds:units = "days since 0001-01-01 00:00:00" ; + float TLON(nj, ni) ; + TLON:long_name = "T grid center longitude" ; + TLON:units = "degrees_east" ; + TLON:missing_value = 1.e+30f ; + TLON:_FillValue = 1.e+30f ; + float TLAT(nj, ni) ; + TLAT:long_name = "T grid center latitude" ; + TLAT:units = "degrees_north" ; + TLAT:missing_value = 1.e+30f ; + TLAT:_FillValue = 1.e+30f ; + float ULON(nj, ni) ; + ULON:long_name = "U grid center longitude" ; + ULON:units = "degrees_east" ; + ULON:missing_value = 1.e+30f ; + ULON:_FillValue = 1.e+30f ; + float ULAT(nj, ni) ; + ULAT:long_name = "U grid center latitude" ; + ULAT:units = "degrees_north" ; + ULAT:missing_value = 1.e+30f ; + ULAT:_FillValue = 1.e+30f ; + ULAT:comment = "Latitude of NE corner of T grid cell" ; + float NCAT(nc) ; + NCAT:long_name = "category maximum thickness" ; + NCAT:units = "m" ; + float VGRDi(nkice) ; + VGRDi:long_name = "vertical ice levels" ; + VGRDi:units = "1" ; + float VGRDs(nksnow) ; + VGRDs:long_name = "vertical snow levels" ; + VGRDs:units = "1" ; + float VGRDb(nkbio) ; + VGRDb:long_name = "vertical ice-bio levels" ; + VGRDb:units = "1" ; + float tmask(nj, ni) ; + tmask:long_name = "ocean grid mask" ; + tmask:coordinates = "TLON TLAT" ; + tmask:comment = "0 = land, 1 = ocean" ; + tmask:missing_value = 1.e+30f ; + tmask:_FillValue = 1.e+30f ; + float tarea(nj, ni) ; + tarea:long_name = "area of T grid cells" ; + tarea:units = "m^2" ; + tarea:coordinates = "TLON TLAT" ; + tarea:missing_value = 1.e+30f ; + tarea:_FillValue = 1.e+30f ; + float uarea(nj, ni) ; + uarea:long_name = "area of U grid cells" ; + uarea:units = "m^2" ; + uarea:coordinates = "ULON ULAT" ; + uarea:missing_value = 1.e+30f ; + uarea:_FillValue = 1.e+30f ; + float aice(time, nj, ni) ; + aice:units = "1" ; + aice:long_name = "ice area (aggregate)" ; + aice:coordinates = "TLON TLAT time" ; + aice:cell_measures = "area: tarea" ; + aice:missing_value = 1.e+30f ; + aice:_FillValue = 1.e+30f ; + aice:cell_methods = "time: mean" ; + aice:time_rep = "averaged" ; + float dvsdtt(time, nj, ni) ; + dvsdtt:units = "cm/day" ; + dvsdtt:long_name = "snow volume tendency thermo" ; + dvsdtt:coordinates = "TLON TLAT time" ; + dvsdtt:cell_measures = "area: tarea" ; + dvsdtt:missing_value = 1.e+30f ; + dvsdtt:_FillValue = 1.e+30f ; + dvsdtt:cell_methods = "time: mean" ; + dvsdtt:time_rep = "averaged" ; + float dvsdtd(time, nj, ni) ; + dvsdtd:units = "cm/day" ; + dvsdtd:long_name = "snow volume tendency dynamics" ; + dvsdtd:coordinates = "TLON TLAT time" ; + dvsdtd:cell_measures = "area: tarea" ; + dvsdtd:missing_value = 1.e+30f ; + dvsdtd:_FillValue = 1.e+30f ; + dvsdtd:cell_methods = "time: mean" ; + dvsdtd:time_rep = "averaged" ; + float siconc(time, nj, ni) ; + siconc:units = "%" ; + siconc:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc:coordinates = "TLON TLAT time" ; + siconc:cell_measures = "area: tarea" ; + siconc:missing_value = 1.e+30f ; + siconc:_FillValue = 1.e+30f ; + siconc:cell_methods = "area: mean where sea time: mean" ; + siconc:time_rep = "averaged" ; + float sitimefrac(time, nj, ni) ; + sitimefrac:units = "1" ; + sitimefrac:long_name = "fraction of time-avg interval that ice is present" ; + sitimefrac:coordinates = "TLON TLAT time" ; + sitimefrac:cell_measures = "area: tarea" ; + sitimefrac:comment = "ice extent flag" ; + sitimefrac:missing_value = 1.e+30f ; + sitimefrac:_FillValue = 1.e+30f ; + sitimefrac:cell_methods = "area: mean where sea time: mean" ; + sitimefrac:time_rep = "averaged" ; + float sivol(time, nj, ni) ; + sivol:units = "m" ; + sivol:long_name = "Sea-Ice Volume per Area" ; + sivol:coordinates = "TLON TLAT time" ; + sivol:cell_measures = "area: tarea" ; + sivol:comment = "ice volume per unit grid cell area" ; + sivol:missing_value = 1.e+30f ; + sivol:_FillValue = 1.e+30f ; + sivol:cell_methods = "area: mean where sea time: mean" ; + sivol:time_rep = "averaged" ; + float sithick(time, nj, ni) ; + sithick:units = "m" ; + sithick:long_name = "Sea-Ice Thickness" ; + sithick:coordinates = "TLON TLAT time" ; + sithick:cell_measures = "area: tarea" ; + sithick:comment = "area weighted average of volume divided by ice area" ; + sithick:missing_value = 1.e+30f ; + sithick:_FillValue = 1.e+30f ; + sithick:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sithick:time_rep = "averaged" ; + float simass(time, nj, ni) ; + simass:units = "kg m^-2" ; + simass:long_name = "Sea-Ice Mass" ; + simass:coordinates = "TLON TLAT time" ; + simass:cell_measures = "area: tarea" ; + simass:comment = "ice mass per unit grid cell area" ; + simass:missing_value = 1.e+30f ; + simass:_FillValue = 1.e+30f ; + simass:cell_methods = "area: mean where sea time: mean" ; + simass:time_rep = "averaged" ; + float siage(time, nj, ni) ; + siage:units = "s" ; + siage:long_name = "Age of Sea Ice" ; + siage:coordinates = "TLON TLAT time" ; + siage:cell_measures = "area: tarea" ; + siage:comment = "area weighted average of age of sea ice" ; + siage:missing_value = 1.e+30f ; + siage:_FillValue = 1.e+30f ; + siage:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siage:time_rep = "averaged" ; + float sifb(time, nj, ni) ; + sifb:units = "m" ; + sifb:long_name = "Sea-Ice Freeboard" ; + sifb:coordinates = "TLON TLAT time" ; + sifb:cell_measures = "area: tarea" ; + sifb:comment = "area weighted average of height of sea ice above ocean surface" ; + sifb:missing_value = 1.e+30f ; + sifb:_FillValue = 1.e+30f ; + sifb:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sifb:time_rep = "averaged" ; + float sisnmass(time, nj, ni) ; + sisnmass:units = "kg m^-2" ; + sisnmass:long_name = "Snow Mass per Area" ; + sisnmass:coordinates = "TLON TLAT time" ; + sisnmass:cell_measures = "area: tarea" ; + sisnmass:comment = "snow mass per unit grid cell area" ; + sisnmass:missing_value = 1.e+30f ; + sisnmass:_FillValue = 1.e+30f ; + sisnmass:cell_methods = "area: mean where sea time: mean" ; + sisnmass:time_rep = "averaged" ; + float sitempbot(time, nj, ni) ; + sitempbot:units = "K" ; + sitempbot:long_name = "Temperature at Ice-Ocean Interface" ; + sitempbot:coordinates = "TLON TLAT time" ; + sitempbot:cell_measures = "area: tarea" ; + sitempbot:comment = "area weighted average of ice-ocean interface temperature" ; + sitempbot:missing_value = 1.e+30f ; + sitempbot:_FillValue = 1.e+30f ; + sitempbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sitempbot:time_rep = "averaged" ; + float siu(time, nj, ni) ; + siu:units = "m/s" ; + siu:long_name = "X-Component of Sea-Ice Velocity" ; + siu:coordinates = "ULON ULAT time" ; + siu:cell_measures = "area: uarea" ; + siu:comment = "area weighted average" ; + siu:missing_value = 1.e+30f ; + siu:_FillValue = 1.e+30f ; + siu:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siu:time_rep = "averaged" ; + float siv(time, nj, ni) ; + siv:units = "m/s" ; + siv:long_name = "Y-Component of Sea-Ice Velocity" ; + siv:coordinates = "ULON ULAT time" ; + siv:cell_measures = "area: uarea" ; + siv:comment = "area weighted average" ; + siv:missing_value = 1.e+30f ; + siv:_FillValue = 1.e+30f ; + siv:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siv:time_rep = "averaged" ; + float sidmasstranx(time, nj, ni) ; + sidmasstranx:units = "kg/s" ; + sidmasstranx:long_name = "X-Component of Sea-Ice Mass Transport" ; + sidmasstranx:coordinates = "ULON ULAT time" ; + sidmasstranx:cell_measures = "area: uarea" ; + sidmasstranx:comment = "includes sea-ice and snow transport" ; + sidmasstranx:missing_value = 1.e+30f ; + sidmasstranx:_FillValue = 1.e+30f ; + sidmasstranx:cell_methods = "area: mean where sea time: mean" ; + sidmasstranx:time_rep = "averaged" ; + float sidmasstrany(time, nj, ni) ; + sidmasstrany:units = "kg/s" ; + sidmasstrany:long_name = "Y-Component of Sea-Ice Mass Transport" ; + sidmasstrany:coordinates = "ULON ULAT time" ; + sidmasstrany:cell_measures = "area: uarea" ; + sidmasstrany:comment = "includes sea-ice and snow transport" ; + sidmasstrany:missing_value = 1.e+30f ; + sidmasstrany:_FillValue = 1.e+30f ; + sidmasstrany:cell_methods = "area: mean where sea time: mean" ; + sidmasstrany:time_rep = "averaged" ; + float sistrxdtop(time, nj, ni) ; + sistrxdtop:units = "N m^-2" ; + sistrxdtop:long_name = "X-Component of Atmospheric Stress on Sea Ice" ; + sistrxdtop:coordinates = "ULON ULAT time" ; + sistrxdtop:cell_measures = "area: uarea" ; + sistrxdtop:comment = "area weighted average" ; + sistrxdtop:missing_value = 1.e+30f ; + sistrxdtop:_FillValue = 1.e+30f ; + sistrxdtop:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sistrxdtop:time_rep = "averaged" ; + float sistrydtop(time, nj, ni) ; + sistrydtop:units = "N m^-2" ; + sistrydtop:long_name = "Y-Component of Atmospheric Stress on Sea Ice" ; + sistrydtop:coordinates = "ULON ULAT time" ; + sistrydtop:cell_measures = "area: uarea" ; + sistrydtop:comment = "area weighted average" ; + sistrydtop:missing_value = 1.e+30f ; + sistrydtop:_FillValue = 1.e+30f ; + sistrydtop:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sistrydtop:time_rep = "averaged" ; + float sistrxubot(time, nj, ni) ; + sistrxubot:units = "N m^-2" ; + sistrxubot:long_name = "X-Component of Ocean Stress on Sea Ice" ; + sistrxubot:coordinates = "ULON ULAT time" ; + sistrxubot:cell_measures = "area: uarea" ; + sistrxubot:comment = "area weighted average" ; + sistrxubot:missing_value = 1.e+30f ; + sistrxubot:_FillValue = 1.e+30f ; + sistrxubot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sistrxubot:time_rep = "averaged" ; + float sistryubot(time, nj, ni) ; + sistryubot:units = "N m^-2" ; + sistryubot:long_name = "Y-Component of Ocean Stress on Sea Ice" ; + sistryubot:coordinates = "ULON ULAT time" ; + sistryubot:cell_measures = "area: uarea" ; + sistryubot:comment = "area weighted average" ; + sistryubot:missing_value = 1.e+30f ; + sistryubot:_FillValue = 1.e+30f ; + sistryubot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sistryubot:time_rep = "averaged" ; + float siforcetiltx(time, nj, ni) ; + siforcetiltx:units = "N m^-2" ; + siforcetiltx:long_name = "Sea-Surface Tilt Term in Force Balance (X-Component)" ; + siforcetiltx:coordinates = "ULON ULAT time" ; + siforcetiltx:cell_measures = "area: uarea" ; + siforcetiltx:comment = "area weighted average" ; + siforcetiltx:missing_value = 1.e+30f ; + siforcetiltx:_FillValue = 1.e+30f ; + siforcetiltx:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcetiltx:time_rep = "averaged" ; + float siforcetilty(time, nj, ni) ; + siforcetilty:units = "N m^-2" ; + siforcetilty:long_name = "Sea-Surface Tilt Term in Force Balance (Y-Component)" ; + siforcetilty:coordinates = "ULON ULAT time" ; + siforcetilty:cell_measures = "area: uarea" ; + siforcetilty:comment = "area weighted average" ; + siforcetilty:missing_value = 1.e+30f ; + siforcetilty:_FillValue = 1.e+30f ; + siforcetilty:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcetilty:time_rep = "averaged" ; + float siforcecoriolx(time, nj, ni) ; + siforcecoriolx:units = "N m^-2" ; + siforcecoriolx:long_name = "Coriolis Force Term in Force Balance (X-Component)" ; + siforcecoriolx:coordinates = "ULON ULAT time" ; + siforcecoriolx:cell_measures = "area: uarea" ; + siforcecoriolx:comment = "area weighted average" ; + siforcecoriolx:missing_value = 1.e+30f ; + siforcecoriolx:_FillValue = 1.e+30f ; + siforcecoriolx:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcecoriolx:time_rep = "averaged" ; + float siforcecorioly(time, nj, ni) ; + siforcecorioly:units = "N m^-2" ; + siforcecorioly:long_name = "Coriolis Force Term in Force Balance (Y-Component)" ; + siforcecorioly:coordinates = "ULON ULAT time" ; + siforcecorioly:cell_measures = "area: uarea" ; + siforcecorioly:comment = "area weighted average" ; + siforcecorioly:missing_value = 1.e+30f ; + siforcecorioly:_FillValue = 1.e+30f ; + siforcecorioly:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforcecorioly:time_rep = "averaged" ; + float siforceintstrx(time, nj, ni) ; + siforceintstrx:units = "N m^-2" ; + siforceintstrx:long_name = "Internal Stress Term in Force Balance (X-Component)" ; + siforceintstrx:coordinates = "ULON ULAT time" ; + siforceintstrx:cell_measures = "area: uarea" ; + siforceintstrx:comment = "area weighted average" ; + siforceintstrx:missing_value = 1.e+30f ; + siforceintstrx:_FillValue = 1.e+30f ; + siforceintstrx:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforceintstrx:time_rep = "averaged" ; + float siforceintstry(time, nj, ni) ; + siforceintstry:units = "N m^-2" ; + siforceintstry:long_name = "Internal Stress Term in Force Balance (Y-Component)" ; + siforceintstry:coordinates = "ULON ULAT time" ; + siforceintstry:cell_measures = "area: uarea" ; + siforceintstry:comment = "area weighted average" ; + siforceintstry:missing_value = 1.e+30f ; + siforceintstry:_FillValue = 1.e+30f ; + siforceintstry:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siforceintstry:time_rep = "averaged" ; + float sicompstren(time, nj, ni) ; + sicompstren:units = "N/m" ; + sicompstren:long_name = "Compressive Sea Ice Strength" ; + sicompstren:coordinates = "ULON ULAT time" ; + sicompstren:cell_measures = "area: uarea" ; + sicompstren:comment = "area weighted average" ; + sicompstren:missing_value = 1.e+30f ; + sicompstren:_FillValue = 1.e+30f ; + sicompstren:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sicompstren:time_rep = "averaged" ; + float sidivvel(time, nj, ni) ; + sidivvel:units = "1/s" ; + sidivvel:long_name = "Divergence of the Sea-Ice Velocity Field" ; + sidivvel:coordinates = "ULON ULAT time" ; + sidivvel:cell_measures = "area: uarea" ; + sidivvel:comment = "area weighted average" ; + sidivvel:missing_value = 1.e+30f ; + sidivvel:_FillValue = 1.e+30f ; + sidivvel:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sidivvel:time_rep = "averaged" ; + float sispeed(time, nj, ni) ; + sispeed:units = "m/s" ; + sispeed:long_name = "Sea-Ice Speed" ; + sispeed:coordinates = "ULON ULAT time" ; + sispeed:cell_measures = "area: uarea" ; + sispeed:comment = "area weighted average" ; + sispeed:missing_value = 1.e+30f ; + sispeed:_FillValue = 1.e+30f ; + sispeed:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + sispeed:time_rep = "averaged" ; + float sihc(time, nj, ni) ; + sihc:units = "J m^-2" ; + sihc:long_name = "Sea-Ice Heat Content" ; + sihc:coordinates = "TLON TLAT time" ; + sihc:cell_measures = "area: tarea" ; + sihc:comment = "per unit grid cell area" ; + sihc:missing_value = 1.e+30f ; + sihc:_FillValue = 1.e+30f ; + sihc:cell_methods = "area: mean where sea time: mean" ; + sihc:time_rep = "averaged" ; + float sisnhc(time, nj, ni) ; + sisnhc:units = "J m^-2" ; + sisnhc:long_name = "Snow Heat Content" ; + sisnhc:coordinates = "TLON TLAT time" ; + sisnhc:cell_measures = "area: tarea" ; + sisnhc:comment = "per unit grid cell area" ; + sisnhc:missing_value = 1.e+30f ; + sisnhc:_FillValue = 1.e+30f ; + sisnhc:cell_methods = "area: mean where sea time: mean" ; + sisnhc:time_rep = "averaged" ; + float sidconcth(time, nj, ni) ; + sidconcth:units = "1/s" ; + sidconcth:long_name = "Sea-Ice Area Fraction Tendency Due to Thermodynamics" ; + sidconcth:coordinates = "TLON TLAT time" ; + sidconcth:cell_measures = "area: tarea" ; + sidconcth:missing_value = 1.e+30f ; + sidconcth:_FillValue = 1.e+30f ; + sidconcth:cell_methods = "area: mean where sea time: mean" ; + sidconcth:time_rep = "averaged" ; + float sidconcdyn(time, nj, ni) ; + sidconcdyn:units = "1/s" ; + sidconcdyn:long_name = "Sea-Ice Area Fraction Tendency Due to Dynamics" ; + sidconcdyn:coordinates = "TLON TLAT time" ; + sidconcdyn:cell_measures = "area: tarea" ; + sidconcdyn:missing_value = 1.e+30f ; + sidconcdyn:_FillValue = 1.e+30f ; + sidconcdyn:cell_methods = "area: mean where sea time: mean" ; + sidconcdyn:time_rep = "averaged" ; + float sidmassth(time, nj, ni) ; + sidmassth:units = "kg m^-2 s^-1" ; + sidmassth:long_name = "Sea-Ice Mass Change from Thermodynamics" ; + sidmassth:coordinates = "TLON TLAT time" ; + sidmassth:cell_measures = "area: tarea" ; + sidmassth:comment = "per unit grid cell area" ; + sidmassth:missing_value = 1.e+30f ; + sidmassth:_FillValue = 1.e+30f ; + sidmassth:cell_methods = "area: mean where sea time: mean" ; + sidmassth:time_rep = "averaged" ; + float sidmassdyn(time, nj, ni) ; + sidmassdyn:units = "kg m^-2 s^-1" ; + sidmassdyn:long_name = "Sea-Ice Mass Change from Dynamics" ; + sidmassdyn:coordinates = "TLON TLAT time" ; + sidmassdyn:cell_measures = "area: tarea" ; + sidmassdyn:comment = "per unit grid cell area" ; + sidmassdyn:missing_value = 1.e+30f ; + sidmassdyn:_FillValue = 1.e+30f ; + sidmassdyn:cell_methods = "area: mean where sea time: mean" ; + sidmassdyn:time_rep = "averaged" ; + float sidmassgrowthwat(time, nj, ni) ; + sidmassgrowthwat:units = "kg m^-2 s^-1" ; + sidmassgrowthwat:long_name = "Sea-Ice Mass Change Through Growth in Supercooled Open Water (Frazil)" ; + sidmassgrowthwat:coordinates = "TLON TLAT time" ; + sidmassgrowthwat:cell_measures = "area: tarea" ; + sidmassgrowthwat:comment = "per unit grid cell area" ; + sidmassgrowthwat:missing_value = 1.e+30f ; + sidmassgrowthwat:_FillValue = 1.e+30f ; + sidmassgrowthwat:cell_methods = "area: mean where sea time: mean" ; + sidmassgrowthwat:time_rep = "averaged" ; + float sidmassgrowthbot(time, nj, ni) ; + sidmassgrowthbot:units = "kg m^-2 s^-1" ; + sidmassgrowthbot:long_name = "Sea-Ice Mass Change Through Basal Growth" ; + sidmassgrowthbot:coordinates = "TLON TLAT time" ; + sidmassgrowthbot:cell_measures = "area: tarea" ; + sidmassgrowthbot:comment = "per unit grid cell area" ; + sidmassgrowthbot:missing_value = 1.e+30f ; + sidmassgrowthbot:_FillValue = 1.e+30f ; + sidmassgrowthbot:cell_methods = "area: mean where sea time: mean" ; + sidmassgrowthbot:time_rep = "averaged" ; + float sidmassgrowthsi(time, nj, ni) ; + sidmassgrowthsi:units = "kg m^-2 s^-1" ; + sidmassgrowthsi:long_name = "Sea-Ice Mass Change Through Snow-to-Ice Conversion" ; + sidmassgrowthsi:coordinates = "TLON TLAT time" ; + sidmassgrowthsi:cell_measures = "area: tarea" ; + sidmassgrowthsi:comment = "per unit grid cell area" ; + sidmassgrowthsi:missing_value = 1.e+30f ; + sidmassgrowthsi:_FillValue = 1.e+30f ; + sidmassgrowthsi:cell_methods = "area: mean where sea time: mean" ; + sidmassgrowthsi:time_rep = "averaged" ; + float sidmassevapsubl(time, nj, ni) ; + sidmassevapsubl:units = "kg m^-2 s^-1" ; + sidmassevapsubl:long_name = "Sea-Ice Mass Change Through Evaporation and Sublimation" ; + sidmassevapsubl:coordinates = "TLON TLAT time" ; + sidmassevapsubl:cell_measures = "area: tarea" ; + sidmassevapsubl:comment = "per unit grid cell area" ; + sidmassevapsubl:missing_value = 1.e+30f ; + sidmassevapsubl:_FillValue = 1.e+30f ; + sidmassevapsubl:cell_methods = "area: mean where sea time: mean" ; + sidmassevapsubl:time_rep = "averaged" ; + float sisndmasssubl(time, nj, ni) ; + sisndmasssubl:units = "kg m^-2 s^-1" ; + sisndmasssubl:long_name = "Snow Mass Rate of Change Through Evaporation or Sublimation" ; + sisndmasssubl:coordinates = "TLON TLAT time" ; + sisndmasssubl:cell_measures = "area: tarea" ; + sisndmasssubl:comment = "per unit grid cell area" ; + sisndmasssubl:missing_value = 1.e+30f ; + sisndmasssubl:_FillValue = 1.e+30f ; + sisndmasssubl:cell_methods = "area: mean where sea time: mean" ; + sisndmasssubl:time_rep = "averaged" ; + float sidmassmelttop(time, nj, ni) ; + sidmassmelttop:units = "kg m^-2 s^-1" ; + sidmassmelttop:long_name = "Sea-Ice Mass Change Through Surface Melting" ; + sidmassmelttop:coordinates = "TLON TLAT time" ; + sidmassmelttop:cell_measures = "area: tarea" ; + sidmassmelttop:comment = "per unit grid cell area" ; + sidmassmelttop:missing_value = 1.e+30f ; + sidmassmelttop:_FillValue = 1.e+30f ; + sidmassmelttop:cell_methods = "area: mean where sea time: mean" ; + sidmassmelttop:time_rep = "averaged" ; + float sidmassmeltbot(time, nj, ni) ; + sidmassmeltbot:units = "kg m^-2 s^-1" ; + sidmassmeltbot:long_name = "Sea-Ice Mass Change Through Bottom Melting" ; + sidmassmeltbot:coordinates = "TLON TLAT time" ; + sidmassmeltbot:cell_measures = "area: tarea" ; + sidmassmeltbot:comment = "per unit grid cell area" ; + sidmassmeltbot:missing_value = 1.e+30f ; + sidmassmeltbot:_FillValue = 1.e+30f ; + sidmassmeltbot:cell_methods = "area: mean where sea time: mean" ; + sidmassmeltbot:time_rep = "averaged" ; + float sidmassmeltlat(time, nj, ni) ; + sidmassmeltlat:units = "kg m^-2 s^-1" ; + sidmassmeltlat:long_name = "Sea-Ice Mass Change Through Lateral Melting" ; + sidmassmeltlat:coordinates = "TLON TLAT time" ; + sidmassmeltlat:cell_measures = "area: tarea" ; + sidmassmeltlat:comment = "per unit grid cell area" ; + sidmassmeltlat:missing_value = 1.e+30f ; + sidmassmeltlat:_FillValue = 1.e+30f ; + sidmassmeltlat:cell_methods = "area: mean where sea time: mean" ; + sidmassmeltlat:time_rep = "averaged" ; + float sisndmasssnf(time, nj, ni) ; + sisndmasssnf:units = "kg m^-2 s^-1" ; + sisndmasssnf:long_name = "Snow Mass Change Through Snowfall" ; + sisndmasssnf:coordinates = "TLON TLAT time" ; + sisndmasssnf:cell_measures = "area: tarea" ; + sisndmasssnf:comment = "Always positive or zero, per unit grid cell area" ; + sisndmasssnf:missing_value = 1.e+30f ; + sisndmasssnf:_FillValue = 1.e+30f ; + sisndmasssnf:cell_methods = "area: mean where sea time: mean" ; + sisndmasssnf:time_rep = "averaged" ; + float sisndmassmelt(time, nj, ni) ; + sisndmassmelt:units = "kg m^-2 s^-1" ; + sisndmassmelt:long_name = "Snow Mass Rate of Change Through Melt" ; + sisndmassmelt:coordinates = "TLON TLAT time" ; + sisndmassmelt:cell_measures = "area: tarea" ; + sisndmassmelt:comment = "Always negative or zero, per unit grid cell area" ; + sisndmassmelt:missing_value = 1.e+30f ; + sisndmassmelt:_FillValue = 1.e+30f ; + sisndmassmelt:cell_methods = "area: mean where sea time: mean" ; + sisndmassmelt:time_rep = "averaged" ; + float sisndmasssi(time, nj, ni) ; + sisndmasssi:units = "kg m^-2 s^-1" ; + sisndmasssi:long_name = "Snow Mass Rate of Change Through Snow-to-Ice Conversion" ; + sisndmasssi:coordinates = "TLON TLAT time" ; + sisndmasssi:cell_measures = "area: tarea" ; + sisndmasssi:comment = "Always negative or zero, per unit grid cell area" ; + sisndmasssi:missing_value = 1.e+30f ; + sisndmasssi:_FillValue = 1.e+30f ; + sisndmasssi:cell_methods = "area: mean where sea time: mean" ; + sisndmasssi:time_rep = "averaged" ; + float sisndmassdyn(time, nj, ni) ; + sisndmassdyn:units = "kg m-2 s-1" ; + sisndmassdyn:long_name = "Snow Mass Rate of Change Through Advection by Sea-Ice Dynamics" ; + sisndmassdyn:coordinates = "TLON TLAT time" ; + sisndmassdyn:cell_measures = "area: tarea" ; + sisndmassdyn:comment = "per unit grid cell area" ; + sisndmassdyn:missing_value = 1.e+30f ; + sisndmassdyn:_FillValue = 1.e+30f ; + sisndmassdyn:cell_methods = "area: mean where sea time: mean" ; + sisndmassdyn:time_rep = "averaged" ; + float siflsensbot(time, nj, ni) ; + siflsensbot:units = "W m^-2" ; + siflsensbot:long_name = "Net Upward Sensible Heat Flux under Sea Ice" ; + siflsensbot:coordinates = "TLON TLAT time" ; + siflsensbot:cell_measures = "area: tarea" ; + siflsensbot:comment = "area weighted average, positive downward, per sea ice area" ; + siflsensbot:missing_value = 1.e+30f ; + siflsensbot:_FillValue = 1.e+30f ; + siflsensbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflsensbot:time_rep = "averaged" ; + float siflcondtop(time, nj, ni) ; + siflcondtop:units = "W m^-2" ; + siflcondtop:long_name = "Net Conductive Heat Flux in Sea Ice at the Surface" ; + siflcondtop:coordinates = "TLON TLAT time" ; + siflcondtop:cell_measures = "area: tarea" ; + siflcondtop:comment = "area weighted average, positive downward, per sea ice area" ; + siflcondtop:missing_value = 1.e+30f ; + siflcondtop:_FillValue = 1.e+30f ; + siflcondtop:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflcondtop:time_rep = "averaged" ; + float siflcondbot(time, nj, ni) ; + siflcondbot:units = "W m^-2" ; + siflcondbot:long_name = "Net Conductive Heat Flux in Sea Ice at the Base" ; + siflcondbot:coordinates = "TLON TLAT time" ; + siflcondbot:cell_measures = "area: tarea" ; + siflcondbot:comment = "area weighted average, positive downward, per sea ice area" ; + siflcondbot:missing_value = 1.e+30f ; + siflcondbot:_FillValue = 1.e+30f ; + siflcondbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflcondbot:time_rep = "averaged" ; + float siflfwbot(time, nj, ni) ; + siflfwbot:units = "kg m^-2 s^-1" ; + siflfwbot:long_name = "Freshwater Flux from Sea Ice" ; + siflfwbot:coordinates = "TLON TLAT time" ; + siflfwbot:cell_measures = "area: tarea" ; + siflfwbot:comment = "area weighted average, positive downward, per sea ice area" ; + siflfwbot:missing_value = 1.e+30f ; + siflfwbot:_FillValue = 1.e+30f ; + siflfwbot:cell_methods = "area: time: mean where sea_ice (mask=siconc)" ; + siflfwbot:time_rep = "averaged" ; + float sisaltmass(time, nj, ni) ; + sisaltmass:units = "kg m^-2" ; + sisaltmass:long_name = "Mass of Salt in Sea Ice" ; + sisaltmass:coordinates = "TLON TLAT time" ; + sisaltmass:cell_measures = "area: tarea" ; + sisaltmass:comment = "per unit grid cell area" ; + sisaltmass:missing_value = 1.e+30f ; + sisaltmass:_FillValue = 1.e+30f ; + sisaltmass:cell_methods = "area: mean where sea time: mean" ; + sisaltmass:time_rep = "averaged" ; + float siitdconc(time, nc, nj, ni) ; + siitdconc:units = "%" ; + siitdconc:long_name = "Sea-Ice Area Percentage in Ice Thickness Categories" ; + siitdconc:coordinates = "TLON TLAT NCAT time" ; + siitdconc:cell_measures = "area: tarea" ; + siitdconc:missing_value = 1.e+30f ; + siitdconc:_FillValue = 1.e+30f ; + siitdconc:cell_methods = "time: mean" ; + siitdconc:time_rep = "averaged" ; + +// global attributes: + :title = "sea ice model output for CICE" ; + :contents = "Diagnostic and Prognostic Variables" ; + :source = "Los Alamos Sea Ice Model (CICE) Version 5" ; + :time_period_freq = "month_2" ; + :comment = "This year has 366 days" ; + :comment2 = "File started on model date 02720301" ; + :history = "This dataset was created on 2026-05-15 at 13:49:47.2" ; + :io_flavor = "io_netcdf" ; +data: + + time = 99025.5, 99086, 99147, 99208.5, 99269.5, 99330.5 ; + + time_bounds = + 98980, 99040, + 99040, 99101, + 99101, 99162, + 99162, 99224, + 99224, 99285, + 99285, 99346 ; +} diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 85cf5b5..0623b83 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -333,6 +333,27 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): "1yr", "access-esm1p6.cice5.2d.tarea.fx.nc", ), + ( + # Test a 2-hourly ice 2D field + "iceh-2hourly-mean_0272.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.2hr.mean.0272.nc", + ), + ( + # Test a 2-daily ice 2D field + "iceh-2daily-mean_0272.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.2day.mean.0272.nc", + ), + ( + # Test a 2-monthly ice 2D field + "iceh-2monthly-mean_0272.cdl", + "siconc", + "1yr", + "access-esm1p6.cice5.2d.siconc.2mon.mean.0272.nc", + ), ( # Test an hourly ice 2D field "iceh-1hourly-mean_0272.cdl", From 6e94bd9154af9727cba07a1a0f11ca740c96d490 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Tue, 16 Jun 2026 18:34:48 +1000 Subject: [PATCH 18/25] Extracted ESM1.6 filename fucntionality to a separate file --- splitnc/esm1p6.py | 137 +++++++++++++++++++++++++++++++++++++++++++++ splitnc/splitnc.py | 113 ++----------------------------------- 2 files changed, 143 insertions(+), 107 deletions(-) create mode 100644 splitnc/esm1p6.py diff --git a/splitnc/esm1p6.py b/splitnc/esm1p6.py new file mode 100644 index 0000000..3a0c423 --- /dev/null +++ b/splitnc/esm1p6.py @@ -0,0 +1,137 @@ +import logging +import re + + +def _build_model(): + # Model is always access-esm1p6 + return "access-esm1p6" + + +def _build_component(ds): + # Component: either CICE5 or UM7.3 + source = ds.attrs["source"] + if "Los Alamos Sea Ice Model (CICE) Version 5" in source: + return "cice5" + elif "Data from Met Office Unified Model" in source and \ + ds.attrs['um_version'] == "7.3": + return "um7p3" + else: + raise ValueError(f"Unknown source, {source}") + + +def _build_dimensions(ds, field_name): + # Dimensions: Don't count time when seeing if field is 2d or 3d + ndims = len([d for d in ds[field_name].dims if d!='time']) + if ndims == 2: + return "2d" + elif ndims == 3: + return "3d" + else: + raise ValueError(f"Unexpected number for dimensions, {ndims}") + + +def _build_frequency(ds, field_name, input_filepath): + # Frequency: use fx if no time dim + if 'time' not in ds[field_name].dims: + return "fx" + + # Attempt to parse from expected filenames + filename = input_filepath.name + + # Define the expected ice filenames + # e.g. iceh-2hourly-mean_0272.nc, iceh-1yearly-mean_0272.nc + ice_regex = r"iceh-(?P\d+)(?Pyearly|monthly|daily|hourly)-" + ice_unit_mapping = { + "yearly": "yr", + "monthly": "mon", + "daily": "day", + "hourly": "hr" + } + + if match:=re.match(ice_regex, filename): + # Extract the frequency number and units for ice files + return f"{match['num']}{ice_unit_mapping[match['unit']]}" + elif "_mon.nc" in filename: + # Match the monthly pattern for atmosphere files + return "1mon" + elif "_dai.nc" in filename: + # Match the daily pattern for atmosphere files + return "1day" + elif match:=re.match(r".+_(\d+hr).nc", filename): + # Get the frequency from the atmosphere regex match for Xhr + return match[1] + elif "aiihca.pc" in filename: + # Match another pattern for hourly atmosphere files + return "1hr" + + # No sub-hourly frequency data expected + raise ValueError("Unable to deduce frequency from filename") + + + +def _build_cell_method(ds, field_name): + # Time cell_method: Should be able to deduce from the cell_method + cell_method_regx = r"time: (\w+)" + try: + if m:= re.search(cell_method_regx, ds[field_name].attrs["cell_methods"]): + method = m[1] + # Since this element is optional add the . here + return "." + method + except KeyError: + # If there are no cell_method omit this element + return "" + + +def _build_datestamp(ds, field_name, file_freq): + if 'time' not in ds[field_name].dims: + # No datetime for fixed files + return "" + + # Truncate average time val by output file frequency + # datetimes do not correctly zero-pad so need to use %4Y + if re.match(r'\d+(yr|dec)', file_freq): + fmt = '%4Y' + elif re.match(r'\d+mon', file_freq): + fmt = '%4Y-%m' + elif re.match(r'\d+day', file_freq): + fmt = '%4Y-%m-%d' + else: + fmt = '%4Y-%m-%dT%H:%M:%S' + + # Get the appropriately truncated datetime for the average time + try: + # Try the time bounds + time_arr = ds[ds['time'].attrs["bounds"]] + logging.debug("Using time bounds to calculate filename timestamp") + except KeyError: + # If there are no time bounds just use time + logging.debug("Unable to find time bounds, using time to calculate filename timestamp") + time_arr = ds['time'] + + # Calculate the middle point + first, last = time_arr.min(), time_arr.max() + datestamp_dt = (first + (last - first) / 2).dt + + return "." + datestamp_dt.strftime(fmt).data.flatten()[0] + + +def build_esm1p6_filename(ds, field_name, input_filepath, esm1p6_filename=False, file_freq="1yr"): + template = "{model}.{component}.{dimensions}.{field}.{freq}{time_cell_method}{datestamp}.nc" + + # Model is always access-esm1p6 + try: + d = { + "model": _build_model(), + "component": _build_component(ds), + "dimensions": _build_dimensions(ds, field_name), + "field": field_name, + "freq": _build_frequency(ds, field_name, input_filepath), + "time_cell_method": _build_cell_method(ds, field_name), + "datestamp": _build_datestamp(ds, field_name, file_freq), + } + except ValueError as e: + # Reraise the exception with some extra information + e.add_note("While building output filename for field {field_name} and {input_filepath}") + raise + + return template.format(**d) diff --git a/splitnc/splitnc.py b/splitnc/splitnc.py index d44be32..551ec9f 100644 --- a/splitnc/splitnc.py +++ b/splitnc/splitnc.py @@ -10,6 +10,8 @@ import xarray as xr +from esm1p6 import build_esm1p6_filename + def determine_field_vars(ds): """ @@ -244,114 +246,11 @@ def build_filename(ds, field_name, input_filepath, esm1p6_filename=False, file_f Elements of this schema will be deduced from the Dataset, the original filename, and the given output file frequency. """ - if not esm1p6_filename: - return f"{field_name}_{input_filepath.name}" - - template = "{model}.{component}.{dimensions}.{field}.{freq}{time_cell_method}{datestamp}.nc" - - # Model is always access-esm1p6 - d = {"model": "access-esm1p6"} - - # Component: either CICE5 or UM7.3 - source = ds.attrs["source"] - if "Los Alamos Sea Ice Model (CICE) Version 5" in source: - d["component"] = "cice5" - elif "Data from Met Office Unified Model" in source and \ - ds.attrs['um_version'] == "7.3": - d["component"] = "um7p3" - else: - raise ValueError(f"Unknown source, {source}, while building output filename for field {field_name} and {input_filepath}") - - # Dimensions: Don't count time when seeing if field is 2d or 3d - ndims = len([d for d in ds[field_name].dims if d!='time']) - if ndims == 2: - d["dimensions"] = "2d" - elif ndims == 3: - d["dimensions"] = "3d" - else: - raise ValueError(f"Unexpected number for dimensions, {ndims}, while building output filename for field {field_name} and {input_filepath}") - - # Field name is already known - d["field"] = field_name - - # Frequency: use fx if no time dim - if 'time' not in ds[field_name].dims: - d["freq"] = "fx" - else: - # Attempt to parse from expected filenames - filename = input_filepath.name - - # Define the expected ice filenames - # e.g. iceh-2hourly-mean_0272.nc, iceh-1yearly-mean_0272.nc - ice_regex = r"iceh-(?P\d+)(?Pyearly|monthly|daily|hourly)-" - ice_unit_mapping = { - "yearly": "yr", - "monthly": "mon", - "daily": "day", - "hourly": "hr" - } - - if match:=re.match(ice_regex, filename): - # Extract the frequency number and units for ice files - d["freq"] = f"{match['num']}{ice_unit_mapping[match['unit']]}" - elif "_mon.nc" in filename: - # Match the monthly pattern for atmosphere files - d["freq"] = "1mon" - elif "_dai.nc" in filename: - # Match the daily pattern for atmosphere files - d["freq"] = "1day" - elif match:=re.match(r".+_(\d+hr).nc", filename): - # Get the frequency from the atmosphere regex match for Xhr - d["freq"] = match[1] - elif "aiihca.pc" in filename: - # Match another pattern for hourly atmosphere files - d["freq"] = "1hr" - else: - # No sub-hourly frequency data expected - raise ValueError(f"Unable to deduce frequency from filename while building output filename for {input_filepath}") - - # Time cell_method: Should be able to deduce from the cell_method - cell_method_regx = r"time: (\w+)" - try: - if m:= re.search(cell_method_regx, ds[field_name].attrs["cell_methods"]): - # Since this element is optional add the . here - d["time_cell_method"] = "." + m[1] - except KeyError: - # If there are no cell_method omit this element - d["time_cell_method"] = "" - - # Datestamp - if 'time' not in ds[field_name].dims: - # No datetime for fixed files - d["datestamp"] = "" + if esm1p6_filename: + return build_esm1p6_filename(ds, field_name, input_filepath, + esm1p6_filename=esm1p6_filename, file_freq=file_freq) else: - # Truncate average time val by output file frequency - # datetimes do not correctly zero-pad so need to use %4Y - if re.match(r'\d+(yr|dec)', file_freq): - fmt = '%4Y' - elif re.match(r'\d+mon', file_freq): - fmt = '%4Y-%m' - elif re.match(r'\d+day', file_freq): - fmt = '%4Y-%m-%d' - else: - fmt = '%4Y-%m-%dT%H:%M:%S' - - # Get the appropriately truncated datetime for the average time - try: - # Try the time bounds - time_arr = ds[ds['time'].attrs["bounds"]] - logging.debug("Using time bounds to calculate filename timestamp") - except KeyError: - # If there are no time bounds just use time - logging.debug("Unable to find time bounds, using time to calculate filename timestamp") - time_arr = ds['time'] - - # Calculate the middle point - first, last = time_arr.min(), time_arr.max() - datestamp_dt = (first + (last - first) / 2).dt - d['datestamp'] = "." + datestamp_dt.strftime(fmt).data.flatten()[0] - - return template.format(**d) + return f"{field_name}_{input_filepath.name}" def process_file( From 2b5836e497b86c8f5050d9cd36a8a0e8e9d289a0 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Tue, 16 Jun 2026 18:50:28 +1000 Subject: [PATCH 19/25] Instantaneous files now use "snap" for filename, added tests and better detection of instantaneous files --- splitnc/esm1p6.py | 9 ++++++++ splitnc/test/data/aiihca.pa-234501_mon.cdl | 10 ++++++++ splitnc/test/data/iceh-1hourly-mean_0272.cdl | 19 ++++++++++++++++ splitnc/test/test_splitnc.py | 24 +++++++++++++++++--- 4 files changed, 59 insertions(+), 3 deletions(-) diff --git a/splitnc/esm1p6.py b/splitnc/esm1p6.py index 3a0c423..5c3f571 100644 --- a/splitnc/esm1p6.py +++ b/splitnc/esm1p6.py @@ -73,8 +73,17 @@ def _build_cell_method(ds, field_name): # Time cell_method: Should be able to deduce from the cell_method cell_method_regx = r"time: (\w+)" try: + if 'time_rep' in ds[field_name].attrs and \ + ds[field_name].attrs['time_rep'] == "instantaneous": + # ice files sometimes have time_rep = instantaneous but not + # cell_methods = time: point + return ".snap" + if m:= re.search(cell_method_regx, ds[field_name].attrs["cell_methods"]): method = m[1] + if method == "point": + method = "snap" + # Since this element is optional add the . here return "." + method except KeyError: diff --git a/splitnc/test/data/aiihca.pa-234501_mon.cdl b/splitnc/test/data/aiihca.pa-234501_mon.cdl index b6ec437..9bb9153 100644 --- a/splitnc/test/data/aiihca.pa-234501_mon.cdl +++ b/splitnc/test/data/aiihca.pa-234501_mon.cdl @@ -1890,6 +1890,16 @@ variables: fld_s33i002:cell_methods = "time: mean" ; fld_s33i002:grid_mapping = "latitude_longitude" ; fld_s33i002:coordinates = "sigma_theta surface_altitude theta_level_height" ; + float fld_artificial(time, model_theta_level_number, lat, lon) ; + fld_artificial:_FillValue = 1.e+20f ; + fld_artificial:long_name = "ATM TRACER 2 AFTER TS" ; + fld_artificial:um_stash_source = "m01s33i002" ; + fld_artificial:missing_value = 1.e+20f ; + fld_artificial:cell_methods = "time: point" ; + fld_artificial:grid_mapping = "latitude_longitude" ; + fld_artificial:coordinates = "sigma_theta surface_altitude theta_level_height" ; + fld_artificial:notes = "this variable was added manually to test 'time: point' filenames" ; + // global attributes: :history = "File /scratch/p66/jxs599/access-esm/archive/Nov25-NewNitrogen-Nov25-NewNitrogen-6a5acd30/output200/atmosphere/aiihca.pai5jan converted with /g/data/vk83/apps/base_conda/envs/payu-1.2.0/lib/python3.10/site-packages/um2nc/um2netcdf.py 1.1.0 at 2025-12-04 20:03:16" ; diff --git a/splitnc/test/data/iceh-1hourly-mean_0272.cdl b/splitnc/test/data/iceh-1hourly-mean_0272.cdl index 9aa416d..9b55803 100644 --- a/splitnc/test/data/iceh-1hourly-mean_0272.cdl +++ b/splitnc/test/data/iceh-1hourly-mean_0272.cdl @@ -78,6 +78,25 @@ variables: siconc:_FillValue = 1.e+30f ; siconc:cell_methods = "area: mean where sea time: mean" ; siconc:time_rep = "averaged" ; + float siconc2(time, nj, ni) ; + siconc2:units = "%" ; + siconc2:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc2:coordinates = "TLON TLAT time" ; + siconc2:cell_measures = "area: tarea" ; + siconc2:missing_value = 1.e+30f ; + siconc2:_FillValue = 1.e+30f ; + siconc2:time_rep = "instantaneous" ; + siconc2:note = "this variable was manually copied from iced-1-mean_0272.cld and renamed to siconc2 to test time_rep instantaneous" ; + float siconc3(time, nj, ni) ; + siconc3:units = "%" ; + siconc3:long_name = "Sea-Ice Area Percentage (Ocean Grid)" ; + siconc3:coordinates = "TLON TLAT time" ; + siconc3:cell_measures = "area: tarea" ; + siconc3:missing_value = 1.e+30f ; + siconc3:_FillValue = 1.e+30f ; + siconc3:cell_methods = "area: mean where sea time: point" ; + siconc3:time_rep = "averaged" ; + siconc3:note = "this variable was manually copied from the original siconc above and renamed to siconc3 to test cell_method time: point" ; // global attributes: :title = "sea ice model output for CICE" ; diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 0623b83..1091578 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -18,7 +18,7 @@ r"(?P.+)_\d+", None, "fld_.+", - 217, + 218, ), ( # Test a monthly atmosphere file with esm1.6 filenames @@ -27,7 +27,7 @@ r"(?P.+)_\d+", None, "fld_.+", - 217, + 218, ), ( # Test a daily atmosphere file @@ -91,7 +91,7 @@ r"(?P.+)_\d+", None, "fld_.+", - 217, + 218, ), ( # Test a monthly atmosphere file with a single field with coords that need renaming @@ -361,6 +361,24 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): "1yr", "access-esm1p6.cice5.2d.siconc.1hr.mean.0272.nc", ), + ( + # Test an hourly instantaneous ice 2D field + # This variable has time_rep = instantaneous + # This field was manually added to the .cdl file + "iceh-1hourly-mean_0272.cdl", + "siconc2", + "1yr", + "access-esm1p6.cice5.2d.siconc2.1hr.snap.0272.nc", + ), + ( + # Test an hourly instantaneous ice 2D field + # This variable has time: point in the cell_methods + # This field was manually added to the .cdl file + "iceh-1hourly-mean_0272.cdl", + "siconc3", + "1yr", + "access-esm1p6.cice5.2d.siconc3.1hr.snap.0272.nc", + ), ( # Test an timestep/hourly ice 2D field # The frequency of timestep files is not defined, so it will fail From 49588d75b18f30f159d2d06f5103b5d2fdf0323d Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Wed, 17 Jun 2026 10:53:03 +1000 Subject: [PATCH 20/25] Tweaked _build_cell_methods to make it more reliable and consistent --- splitnc/esm1p6.py | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/splitnc/esm1p6.py b/splitnc/esm1p6.py index 5c3f571..80fd051 100644 --- a/splitnc/esm1p6.py +++ b/splitnc/esm1p6.py @@ -70,16 +70,21 @@ def _build_frequency(ds, field_name, input_filepath): def _build_cell_method(ds, field_name): - # Time cell_method: Should be able to deduce from the cell_method - cell_method_regx = r"time: (\w+)" + attrs = ds[field_name].attrs + try: - if 'time_rep' in ds[field_name].attrs and \ - ds[field_name].attrs['time_rep'] == "instantaneous": + if attrs['time_rep'] == "instantaneous": # ice files sometimes have time_rep = instantaneous but not # cell_methods = time: point return ".snap" + except KeyError: + # Continue if 'time_rep' not in attrs + pass - if m:= re.search(cell_method_regx, ds[field_name].attrs["cell_methods"]): + # Time cell_method: Should be able to deduce from the cell_method + cell_method_regx = r"time: (\w+)" + try: + if m:= re.search(cell_method_regx, attrs["cell_methods"]): method = m[1] if method == "point": method = "snap" @@ -87,8 +92,11 @@ def _build_cell_method(ds, field_name): # Since this element is optional add the . here return "." + method except KeyError: - # If there are no cell_method omit this element - return "" + # Continue if 'cell_methods' not in attrs + pass + + # Otherwise omit this element from the filename + return "" def _build_datestamp(ds, field_name, file_freq): From d51b3c02e097ce796f3532b7f2d55bfc38517836 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Wed, 17 Jun 2026 12:57:36 +1000 Subject: [PATCH 21/25] Attempting to move to src-layout since there are multiple modules now. Also added commandline script --- splitnc/pyproject.toml | 5 ++++- splitnc/src/splitnc/__init__.py | 1 + splitnc/{ => src/splitnc}/esm1p6.py | 0 splitnc/{ => src/splitnc}/splitnc.py | 2 +- splitnc/test/test_splitnc.py | 4 ++-- 5 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 splitnc/src/splitnc/__init__.py rename splitnc/{ => src/splitnc}/esm1p6.py (100%) rename splitnc/{ => src/splitnc}/splitnc.py (99%) diff --git a/splitnc/pyproject.toml b/splitnc/pyproject.toml index 7abbc0c..f662ce3 100644 --- a/splitnc/pyproject.toml +++ b/splitnc/pyproject.toml @@ -22,6 +22,9 @@ dependencies = [ "xarray>2025.1.2", ] +[project.scripts] +splitnc = "splitnc:main" + [build-system] build-backend = "setuptools.build_meta" requires = [ @@ -30,4 +33,4 @@ requires = [ [tool.pytest.ini_options] testpaths = "test" - pythonpath = "." + pythonpath = "src" diff --git a/splitnc/src/splitnc/__init__.py b/splitnc/src/splitnc/__init__.py new file mode 100644 index 0000000..ac42e8b --- /dev/null +++ b/splitnc/src/splitnc/__init__.py @@ -0,0 +1 @@ +from .splitnc import * diff --git a/splitnc/esm1p6.py b/splitnc/src/splitnc/esm1p6.py similarity index 100% rename from splitnc/esm1p6.py rename to splitnc/src/splitnc/esm1p6.py diff --git a/splitnc/splitnc.py b/splitnc/src/splitnc/splitnc.py similarity index 99% rename from splitnc/splitnc.py rename to splitnc/src/splitnc/splitnc.py index 551ec9f..24ebcb3 100644 --- a/splitnc/splitnc.py +++ b/splitnc/src/splitnc/splitnc.py @@ -10,7 +10,7 @@ import xarray as xr -from esm1p6 import build_esm1p6_filename +from splitnc.esm1p6 import build_esm1p6_filename def determine_field_vars(ds): diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 1091578..1cafd32 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -158,13 +158,13 @@ def test_splitnc(tmp_path, cdl_file, cmd_options, rename_regex, excluded_vars, with open(cmdline_file_path, 'w') as f: f.write(cmd_options) - cmd = f"python splitnc.py --command-line-file {cmdline_file_path}" + cmd = f"splitnc --command-line-file {cmdline_file_path}" else: # Need to mess about with quotes around the regex rename_regex = f"'{rename_regex}'" cmd_options = cmd_options.format(rename_regex=rename_regex) - cmd = f"python splitnc.py {cmd_options}" + cmd = f"splitnc {cmd_options}" # Attempt to split the file runcmd(cmd) From 14558d8a1ade65d627780b0d8d0f81ecb0d4902b Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Wed, 17 Jun 2026 14:50:08 +1000 Subject: [PATCH 22/25] Github runner is struggling with diskspace - so cleaning up ncfiles in tests --- splitnc/test/test_splitnc.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/splitnc/test/test_splitnc.py b/splitnc/test/test_splitnc.py index 1cafd32..cbb9e9b 100644 --- a/splitnc/test/test_splitnc.py +++ b/splitnc/test/test_splitnc.py @@ -1,3 +1,4 @@ +import os from pathlib import Path import pytest import re @@ -236,6 +237,8 @@ def test_splitnc(tmp_path, cdl_file, cmd_options, rename_regex, excluded_vars, assert len(output_files) == num_nc_files + os.remove(ncfile) + @pytest.mark.parametrize( "cdl_file,field_regex", @@ -286,6 +289,8 @@ def test_determine_field_vars(tmp_path, cdl_file, field_regex): # Check all the discovered fields match the regex assert all([re.match(field_regex, v) for v in field_list]) + os.remove(ncfile) + @pytest.mark.parametrize("use_esm1p6", [True, False]) @pytest.mark.parametrize( @@ -454,3 +459,5 @@ def _build_filename(): expected_filename = f"{field}_{Path(cdl_file.replace('.cdl', '.nc'))}" assert actual_filename == expected_filename + + os.remove(ncfile) From cd85ef7a27550088860cccd37e049d5bb5e62dc7 Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Wed, 17 Jun 2026 15:29:46 +1000 Subject: [PATCH 23/25] Py3.10 doesn't have exception.add_note, missing f for str --- splitnc/src/splitnc/esm1p6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splitnc/src/splitnc/esm1p6.py b/splitnc/src/splitnc/esm1p6.py index 80fd051..d1938c0 100644 --- a/splitnc/src/splitnc/esm1p6.py +++ b/splitnc/src/splitnc/esm1p6.py @@ -148,7 +148,7 @@ def build_esm1p6_filename(ds, field_name, input_filepath, esm1p6_filename=False, } except ValueError as e: # Reraise the exception with some extra information - e.add_note("While building output filename for field {field_name} and {input_filepath}") + e.args = (*e.args, f"While building output filename for field {field_name} and {input_filepath}") raise return template.format(**d) From d41e065700d0a23086ded76b71fbf808dba1d29b Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Wed, 17 Jun 2026 16:33:33 +1000 Subject: [PATCH 24/25] Removed unused import --- splitnc/test/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/splitnc/test/common.py b/splitnc/test/common.py index c8a5715..f144d88 100644 --- a/splitnc/test/common.py +++ b/splitnc/test/common.py @@ -1,6 +1,5 @@ import os from pathlib import Path -import pytest import shlex import subprocess From c6a97d0e9509c78b7b78964df0f661a9a93a9d3f Mon Sep 17 00:00:00 2001 From: Joshua Torrance Date: Wed, 17 Jun 2026 16:40:12 +1000 Subject: [PATCH 25/25] Updated readme with new commanline options and commandline script --- splitnc/README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/splitnc/README.md b/splitnc/README.md index 71cf3e9..81a3218 100644 --- a/splitnc/README.md +++ b/splitnc/README.md @@ -28,7 +28,7 @@ Newline characters in the file will be treated as whitespace, i.e. newlines can For example to replicate this command line, ``` -python splitnc.py --verbose --overwrite --output-dir /output/directory --shared-vars latitude_longitude --rename-regex "(?P.+)_\d+" /input/directory/*.nc +splitnc --verbose --overwrite --output-dir /output/directory --shared-vars latitude_longitude --rename-regex "(?P.+)_\d+" /input/directory/*.nc ``` the following file could be used; ``` @@ -68,6 +68,16 @@ options: --rename-regex REGEX Look for duplicated coordinate names that match the given regex and rename them to the first "newname" capture group in the regex. E.g. "(?P.*)_\d+" will match "time_0" and rename it to "time". + --use-esm1p6-filenames + Use the ESM1.6 filename pattern for the output files: + access-esm1p6.{component}.{dimensions}.{field}.{freq}.{time_cell_method}.{datestamp}.nc + splitnc will attempt to deduce all the components of the filename. If this option is not given + {field}_{original_filename} will be used. + --file-freq FILE_FREQ + Specify the frequency of the files (not the data), e.g. if each file contains a month of data + then the file-frequency is '1mon'. Used to determine the resolution of the timestamp for ESM1.6 + filenames. Follows the ACCESS frequency vocabulary (e.g. '1yr', '1mon', '1day', '1hr'), any + unrecognised frequency will use the full timestamp. Defaults to '1yr'. --output-dir OUTPUT_DIR Output directory for the processed files. If not given output files will be placed in the same directory as the original file. @@ -89,7 +99,7 @@ Alternatively create a new python environment and install `xarray` and `netCDF4` ### Atmosphere To use this script for split multi-field atmosphere files from ACCESS-ESM1.6: ```bash -python split-nc.py --shared-vars latitude_longitude --rename-regex "(?P.+)_\\d+" $INPUT_DIR/*.nc +splitnc --shared-vars latitude_longitude --rename-regex "(?P.+)_\\d+" $INPUT_DIR/*.nc ``` `splitnc` will automatically determine which variables are fields by looking at which variables depend on other variables. @@ -105,7 +115,7 @@ included in all files even though none of the field variable depend on it. ### Ice To use this script for split multi-field ice files from ACCESS-ESM1.6: ```bash -python split-nc.py --shared-vars uarea,tmask,tarea --excluded-vars VGRD. $INPUT_DIR/*.nc +splitnc --shared-vars uarea,tmask,tarea --excluded-vars VGRD. $INPUT_DIR/*.nc ``` In comparison to the atmosphere files, ice files have different shared-vars and there are no duplicated variables that require renaming.